This profile might be incomplete.
Open on social.rubikoid.ru RubikoidContact infoWebsite:
Telegram:
Personal infoAbout:
Yet another infosec cube. Python, DevOps/Sysadm, Reverse-engineering Speaks en, ru (native).
Wall 25 posts
Пока писал пост, сайт кейхрона ожидал и почти дает заказать... правда максимум пакет из десяти ;( Блядь я всей душей ненавижу #go (и amazon, который сделал такой уебищный SDK для S3 на этом уебанском языке). Эксепшены? Да нахуй они нужны, у нас будет err, который возвращается из стека глубиной в 100-200 функций, и удачи тебе, сука, найти источник этого злоебучего err. Пусть программист руками и дебаггером сам стек раскручивает, хули, ему ж делать нечего, правда? go норм А человекоподобный ошибки нет с текстом что именно ебнулочь ? I'm nearing a year of using this Linux laptop as a 50% daily driver and I really have to say… Linux's quality of life on an ordinary laptop is *embarrassing*. Like, I'm able to use it. But it is embarrassing. No normal person would put up with the garbage desktop Linux puts me through. I put up with it because I'm stubborn and ideologically motivated.
Show previous comments
@mcc Same. If I were not ideologically motivated, I’d laugh at the suggestion of using a Linux GUI for anything outside of some small niches. Irregular reminder for junior engineers: You absolutely SHOULD argue with random people on the internet. People who tell you that flamewars are useless, do it after they spent significant time participating in them. And yes, generic flamewars indeed *become* useless over time once you learn the main arguments and the rules of the game. You absolutely should learn those rules though. And no one will teach you that in the university. Do remember that it is a sparring, not a fight. And enjoy. I disagree. jk. I liked the last two bits at the end. Generally we've lost the ability to have civil disagreements. 10/10 Good advice. What the actual fuck. MacOS (XNU?) just ignores anything after `#` in shebangs. simpe check: `args.sh`: i=1 uname -a ```shell (wtf mastodon-glitch, where is my markdown button) Мои посты делятся на два типа: либо это участие в срачах, либо это описание того, почему у меня лежал интанс мастодона. Этот пост второго типа. В этот раз у меня начали подавать весьма печальные сигналы 2/4 дисков из raid1z, на которых хостится этот инстанс. А чё, месяц даунтайма всего)) Неожиданный (нет) side-effect этого мува в том, что кажется, половина связей с другими серверами феди как-то сломалась в том или ином виде. Мой инстанс месяц стабильно выдавал пятисотки (потому что он спрятан за CF), так что по идее, я должен был попасть в retry с ооочень долгим таймаутом. Q: Why can't iOS App Store programs process 32-bit integers greater than 2147483647? ValorMainStream вдруг прервал своё двухлетнее молчание новым пупом:
Show previous comments
Using #vim is easy once you learn a few basic keybindings. h and l - move left and right
Show previous comments
Can you answer this simple question about the C programming language? $ cat test.c What number does this program print? Anonymous poll
Poll
0
15
3.5%
1
127
29.5%
2
211
49%
other / results
431 people voted. 78
18.1%
Voting ended 9 May at 2:37.
Show previous comments
@whitequark C does not define the exact width of a byte. A char (read: byte) must be at least 8 bits wide, but can be as wide as the implementation wants. So if you have 12-bit chars and want to specify their values using \x, two hexadecimal digits won’t be enough. And saying “all following digits are part of the number” is easier for both the specification and the programmer than saying “the number of digits is ceil(CHAR_BIT/4).” In theory, in a world where you actually have systems with CHAR_BIT ≠ 8. |