[-] barubary@infosec.exchange 11 points 3 weeks ago

This is false. Lisp uses parentheses where other languages use (), [], {} or nothing at all. For example, in C I can write int i = 0, but the equivalent Lisp code involves three pairs of parentheses. Or take something like a[i] = f(i + 1) / 2 + p. The equivalent Lisp code is something like (setf (aref a i) (+ (/ (f (+ i 1)) 2) p)), and you can't tell me that's not a lot of parentheses.

[-] barubary@infosec.exchange 21 points 1 month ago* (last edited 1 month ago)

I like the original.

Comic by Jason Heeris, 2013. Panel 1: Person staring at screen with code: if c == ',': backtrack = 1 Panel 2: Zoomed out. Code now in big thought bubble Panel 3: Zoomed out more. Thought bubble: "... so if the current character is a comma, we set the backtracking flag ..." Panel 4: Zoomed out more. Thought bubble fills half the panel. It shows a state diagram, presumably part of a finite automaton corresponding to a regular expression. Panel 5: Zoomed out more. Thought bubble fills most of the panel. Flowchart. Step "parse" leads to decision "-i flag"; one branch to box with previous state diagram (scaled down), other branch to step "remote config", then decision "https" with branches out of visible area. Panel 6: Zoomed out more. Huge thought bubble with scribbled diagrams and notes and arrows connecting them. E.g. "commit #5763 to here caused bug or did it just expose it?", pointing to "new config format parser" and "callback for config state"; "CLI entry point" has a note on it saying "Sarah wrote this, maybe ask about weird parse logic?"; "remote config loader" has a note "no access to source - are we just recalculating its state later?". Panel 7: Back to normal zoom. Another person with a tie and coffee in hand peers over the screen: "Hey, so I just sent you an email about that thing". The thought bubble is collapsing into a black hole. Panel 8: Tie/coffee guy is walking off, whistling. Original person is back to staring at screen with code: if c == ',': backtrack = 1

[-] barubary@infosec.exchange 67 points 1 month ago

If you had let me write the C++ code, I could have literally destroyed your dataset in a couple of seconds.

[-] barubary@infosec.exchange 16 points 3 months ago

C) It's an obvious joke.

[-] barubary@infosec.exchange 19 points 3 months ago

Because let x: y is syntactically unambiguous, but you need to know that y names a type in order to correctly parse y x. (Or at least that's the case in C where a(b) may be a variable declaration or a function call depending on what typedefs are in scope.)

[-] barubary@infosec.exchange 18 points 3 months ago* (last edited 3 months ago)

POV: You open vim for the first time.

Screenshot of vim start screen. The instruction to exit vim is highlighted in red. It reads: VIM - Vi IMproved version 9.1.697 by Bram Moolenaar et al. Modified by team+vim@tracker.debian.org Vim is open source and freely distributable Help poor children in Uganda! type :help iccf for information type :q to exit type :help or  for on-line help type :help version9 for version info

[-] barubary@infosec.exchange 16 points 6 months ago

The same is true of std::endl. std::endl is simply defined as << '\n' << std::flush; nothing more, nothing less. In all cases where endl gives you a "properly translated" newline, so does \n.

[-] barubary@infosec.exchange 35 points 6 months ago

std::endl provides zero portability benefits. C++ does have a portable newline abstraction, but it is called \n, not endl.

[-] barubary@infosec.exchange 9 points 7 months ago

@stebo02 @Bogus5553 Neither of them require a return value, but void main isn't legal C++.

[-] barubary@infosec.exchange 68 points 7 months ago

Strictly speaking, it should be

Unsafe block syntax in C++

{  ...}
[-] barubary@infosec.exchange 14 points 2 years ago

@hstde @Spore Even better, the alphabetical index of function names was generated in English first and then translated, meaning the documentation looks like a scrambled mess in any other language because it is alphabetized according to what the English equivalent would be. #excel

view more: next ›

barubary

joined 2 years ago