archived stringclasses 2
values | author stringlengths 3 20 | author_fullname stringlengths 4 12 ⌀ | body stringlengths 0 22.5k | comment_type stringclasses 1
value | controversiality stringclasses 2
values | created_utc stringlengths 10 10 | edited stringlengths 4 12 | gilded stringclasses 7
values | id stringlengths 1 7 | link_id stringlengths 7 10 | locked stringclasses 2
values | name stringlengths 4 10 ⌀ | parent_id stringlengths 5 10 | permalink stringlengths 41 91 ⌀ | retrieved_on stringlengths 10 10 ⌀ | score stringlengths 1 4 | subreddit_id stringclasses 1
value | subreddit_name_prefixed stringclasses 1
value | subreddit_type stringclasses 1
value | total_awards_received stringclasses 19
values |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
True | dismalist | null | and that's why i don't use vim | null | 0 | 1315548089 | False | 0 | c2ik491 | t3_k9akm | null | t1_c2ik491 | t3_k9akm | null | 1427577291 | -2 | t5_2fwo | null | null | null |
True | nepidae | null | What we need is a web-app that can customize a cheat sheet. This seems to have some good information, but it doesn't fit full size even on 1080p.
If I could change the colors, size, font, order it would be nice. Nevertheless saving for future use. Even as an emacs user there are plenty of times that vim just makes sen... | null | 0 | 1315548201 | False | 0 | c2ik4kt | t3_k9akm | null | t1_c2ik4kt | t3_k9akm | null | 1427577296 | 1 | t5_2fwo | null | null | null |
True | ascii | null | :-)
I think that's a pretty reasonable middle ground. | null | 0 | 1315548349 | False | 0 | c2ik50t | t3_k8jbq | null | t1_c2ik50t | t1_c2ihbmf | null | 1428194912 | 2 | t5_2fwo | null | null | null |
True | mysticreddit | null | Ok, I've uploaded two versions: an on-screen version, and a print version.
Could you clarify what exactly you don't like please?
* a) Everything? The top half? The bottom half?
* b) Colors or Layout?
The bottom has 5 major columns, each sub-divided into 2. I've tried to use whitespace to separate them but maybe tha... | null | 0 | 1315548366 | True | 0 | c2ik52m | t3_k9akm | null | t1_c2ik52m | t1_c2ijygi | null | 1428194912 | 10 | t5_2fwo | null | null | null |
True | piranha | null | Snicker. Do either/both of them really put the function after the (THE, as in the only) sequence? | null | 0 | 1315548458 | False | 0 | c2ik5co | t3_k9h3s | null | t1_c2ik5co | t1_c2ij4u7 | null | 1427577306 | 3 | t5_2fwo | null | null | null |
True | mysticreddit | null | Fair enough -- it would be interesting getting feedback in a year or so, after more people have tried it.
In all honesty, it is more of a reference guide, then cheat sheet -- but I guess that would be arguing semantics. :-)
I'm still a Vim noob myself but putting this cheat sheet together has been a god-send -- stuff... | null | 0 | 1315548608 | False | 0 | c2ik5u1 | t3_k9akm | null | t1_c2ik5u1 | t1_c2iiu3w | null | 1427577311 | 1 | t5_2fwo | null | null | null |
True | jsolson | null | Either you're a madman, or this is one of the most fantastic trolls of the proggit community I've seen in years. I'm choosing to believe the latter. Bravo, sir. [Bravo](http://www.youtube.com/watch?v=whytAReStUQ&feature=related). | null | 0 | 1315548727 | False | 0 | c2ik66v | t3_k9akm | null | t1_c2ik66v | t3_k9akm | null | 1427577317 | 2 | t5_2fwo | null | null | null |
True | bjorn2k | null | I mean c++ style destructors. They are guaranteed to be called when an object goes out of scope. This means that you know at which moment your resource will be freed. For some resources you want to know. This is where IDisposable comes in or AutoClosable as Java 7 calls it. | null | 0 | 1315548813 | False | 0 | c2ik6gk | t3_k8gr4 | null | t1_c2ik6gk | t1_c2id13y | null | 1427577319 | 3 | t5_2fwo | null | null | null |
True | the_mental_ninja | null | not Jquery. pure javascript. | null | 0 | 1315549102 | False | 0 | c2ik7cl | t3_k7ewc | null | t1_c2ik7cl | t1_c2i3xpt | null | 1427577331 | 2 | t5_2fwo | null | null | null |
True | mysticreddit | null | Normally in Unix you would do this:
dos2unix <file_in_dos_format>
to convert the newlines (CR/LF) in dos format to unix format (LF).
You can do the same thing in Vim
vim <file_in_dos_format>
:set ff=unix
:w <new_file_in_unix_format>
Which will write the file out in Unix format, converting the end-o... | null | 0 | 1315549215 | False | 0 | c2ik7oi | t3_k9akm | null | t1_c2ik7oi | t1_c2ijx9q | null | 1427577335 | 1 | t5_2fwo | null | null | null |
True | astrangeguy | null | This is the boring part.(1)
(Some of) The big questions are:
* How are those Lambdas represented in the type system and the object system?
* Do we get function types? Are they unified with generics?
* What is the solution about co/contravariance? Is (Object) => List a subtype of (String) => Collection (it sho... | null | 0 | 1315549229 | True | 0 | c2ik7q2 | t3_k9h3s | null | t1_c2ik7q2 | t3_k9h3s | null | 1427577337 | 80 | t5_2fwo | null | null | null |
True | sviperll | null | No, Java lambdas will be desugared to some existing single-abstract-method (SAM) class that type checker will infer. Which is good since you will be able to use any existing library with lambdas without modification.
In expresstion
new Thread(() => a + b)
() => a + b will have type Runnable and in expression
... | null | 0 | 1315549251 | False | 0 | c2ik7sc | t3_k9h3s | null | t1_c2ik7sc | t1_c2ijxev | null | 1427577337 | 8 | t5_2fwo | null | null | null |
True | sviperll | null | I think they propose finally inference. So, lambdas will close over final variables as anonymous classed do. But variables will be declared final automatically if they are used in lambdas. | null | 0 | 1315549383 | False | 0 | c2ik86z | t3_k9h3s | null | t1_c2ik86z | t1_c2ik39z | null | 1427577342 | 7 | t5_2fwo | null | null | null |
True | bjorn2k | null | *"run some code" implicit*. If the destructor is empty there is no code to be run. If there is code to be run than I guess that you really want it to run. Empty functions are optimized out by the compiler. I don't know for sure if destructors are special in this way, I think virtual functions are, because if you have a... | null | 0 | 1315549411 | True | 0 | c2ik8a3 | t3_k8gr4 | null | t1_c2ik8a3 | t1_c2ic0m8 | null | 1427577343 | 2 | t5_2fwo | null | null | null |
True | monothorpe | null | I am trying to pointing out that you put this command with the `.vimrc` initialization code, and when placed in the init code, *this command does not do anything*. If you don't understand that, no need to reply and explain any further.
But thanks for the rest of this excellent cheat sheet. I learned something. | null | 0 | 1315549414 | False | 0 | c2ik8ag | t3_k9akm | null | t1_c2ik8ag | t1_c2ik7oi | null | 1427577343 | 1 | t5_2fwo | null | null | null |
True | rcklmbr | null | Not programming... well I guess it sorta is. | null | 0 | 1315549439 | False | 0 | c2ik8d6 | t3_k9rqy | null | t1_c2ik8d6 | t3_k9rqy | null | 1427577344 | -15 | t5_2fwo | null | null | null |
True | chrisdoner | null | The Haskell and J functions are half the size and clear for those who know those languages. Most of the other solutions are optimized and complete and will run in a tenth of the time as Clojure. I support your enthusiasm, though. | null | 0 | 1315549505 | False | 0 | c2ik8k3 | t3_k9rh0 | null | t1_c2ik8k3 | t3_k9rh0 | null | 1427577347 | 5 | t5_2fwo | null | null | null |
True | bonch | null | Native languages and training for those languages is seeing a renaissance. Much of this came about thanks to the rise of legitimate mobile development, specifically the iPhone SDK. | null | 0 | 1315549670 | False | 0 | c2ik92e | t3_k85xr | null | t1_c2ik92e | t3_k85xr | null | 1427577353 | 3 | t5_2fwo | null | null | null |
True | astrangeguy | null | They will at least close over the **this** pointer and that is enough to make C-style function pointers unable to represent them. | null | 0 | 1315549708 | False | 0 | c2ik95x | t3_k9h3s | null | t1_c2ik95x | t1_c2ik39z | null | 1427577354 | 3 | t5_2fwo | null | null | null |
True | godofpumpkins | null | > a Vim cheat sheet specifically designed or programmers by a programmer
...unlike all the other vim cheat sheets, made by the hordes of non-programmer Vim users specifically for non-programmers. | null | 0 | 1315549726 | False | 0 | c2ik97t | t3_k9akm | null | t1_c2ik97t | t3_k9akm | null | 1427577355 | 5 | t5_2fwo | null | null | null |
True | astrangeguy | null | This should be the official slogan for Java. | null | 0 | 1315549921 | False | 0 | c2ik9t3 | t3_k9h3s | null | t1_c2ik9t3 | t1_c2ijeqd | null | 1427577364 | 15 | t5_2fwo | null | null | null |
True | the_cat_kittles | null | being able to think like one while being the other is a valuable skill ...in a related note | null | 0 | 1315550027 | False | 0 | c2ika3q | t3_k9akm | null | t1_c2ika3q | t1_c2ijnfk | null | 1427577367 | 6 | t5_2fwo | null | null | null |
True | mysticreddit | null | Already did. Has the same problem as Vim -- Can't remap Caps, can't distuingish Ctrl-I seperate from Tab, etc. I'm not interested in 1970's editors. :/
| null | 0 | 1315550046 | True | 0 | c2ika5o | t3_k9akm | null | t1_c2ika5o | t1_c2ijpcd | null | 1427577367 | 1 | t5_2fwo | null | null | null |
True | the_cat_kittles | null | cool. i would like a list of commands, ordered by importance. Then you know where to start. | null | 0 | 1315550126 | False | 0 | c2ikada | t3_k9akm | null | t1_c2ikada | t3_k9akm | null | 1427577370 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1315550227 | False | 0 | c2ikamn | t3_k9rqy | null | t1_c2ikamn | t1_c2ik8d6 | null | 1427577373 | -2 | t5_2fwo | null | null | null |
True | coliolio | null | I laughed so hard at Lisp. | null | 0 | 1315550238 | False | 0 | c2ikann | t3_k8w37 | null | t1_c2ikann | t3_k8w37 | null | 1427577374 | 2 | t5_2fwo | null | null | null |
True | digitumn | null | En-Joy | null | 0 | 1315550287 | False | 0 | c2ikasf | t3_k9akm | null | t1_c2ikasf | t3_k9akm | null | 1427577377 | 2 | t5_2fwo | null | null | null |
True | [deleted] | null | Cool. I'm using CL at the moment because it's more or less required for a course I'm taking, but racket seems very appealing. And as the post above suggests, I'm tired of sharp-quoting functions.
> You should have really said "syntax chars / line" or something.
No problem, fixed.
> I also disagree that lines... | null | 0 | 1315550454 | False | 0 | c2ikb8v | t3_k8w37 | null | t1_c2ikb8v | t1_c2ijsgi | null | 1427577381 | 1 | t5_2fwo | null | null | null |
True | mysticreddit | null | I beg to differ.
I do vim -u none enough times throughout the day to test stuff, and I can't stand Vim without:
* :set nocompatible ruler laststatus=2 showcmd showmode number
* :set incsearch ignorecase smartcase hlsearch
* :set matchpairs=(:),{:},[:],<:>,?:\:
and of course my custom ruler, syntax, custom key ... | null | 0 | 1315550487 | False | 0 | c2ikbcc | t3_k9akm | null | t1_c2ikbcc | t1_c2iiqvg | null | 1427577383 | 0 | t5_2fwo | null | null | null |
True | [deleted] | null | Wow, they decided to just lift the c# syntax! OMG that's like admitting your a bit thick and deciding to just copy somebody elses homework. | null | 0 | 1315550581 | False | 0 | c2ikblk | t3_k9h3s | null | t1_c2ikblk | t3_k9h3s | null | 1427577387 | -9 | t5_2fwo | null | null | null |
True | she_did_what | null | You really need to make a guide to explain how to use it - i just dont know where to start to understand it.. And i have ok vim skills.. | null | 0 | 1315550665 | False | 0 | c2ikbtn | t3_k9akm | null | t1_c2ikbtn | t1_c2iit16 | null | 1427577390 | 2 | t5_2fwo | null | null | null |
True | shizzy0 | null | I want to know now too! | null | 0 | 1315550680 | False | 0 | c2ikbv6 | t3_k9h3s | null | t1_c2ikbv6 | t1_c2ik7q2 | null | 1427577390 | -1 | t5_2fwo | null | null | null |
True | mysticreddit | null | That's what :help fileformat is for :-) but hmm, maybe I should add a note about that to prevent confusion...
| null | 0 | 1315550710 | False | 0 | c2ikby4 | t3_k9akm | null | t1_c2ikby4 | t1_c2ik8ag | null | 1427577392 | 1 | t5_2fwo | null | null | null |
True | bjorn2k | null | It doesn't matter why he writes the article. If he got good arguments he can write them down to share, just to make the world a little better ;-). You can not accuse him of telling lies. | null | 0 | 1315550747 | False | 0 | c2ikc1u | t3_k8gr4 | null | t1_c2ikc1u | t1_c2id2so | null | 1427577393 | 3 | t5_2fwo | null | null | null |
True | stesch | null | The language alone isn't cutting it: [Shootout comparison](http://shootout.alioth.debian.org/u64/benchmark.php?test=all&lang=v8&lang2=hipe) | null | 0 | 1315550800 | False | 0 | c2ikc67 | t3_k9rqy | null | t1_c2ikc67 | t3_k9rqy | null | 1427577394 | 6 | t5_2fwo | null | null | null |
True | Amendmen7 | null | > I'm much more susceptible to malware on Linux because I have no fucking clue what I'm doing.
I chuckled pretty hard in my drunken room at this. I used to be at exactly the point you are at. All I can suggest is to come back to linux every few months. You'll eventually find that you're way more awesome at the comm... | null | 0 | 1315550808 | False | 0 | c2ikc75 | t3_k7qvj | null | t1_c2ikc75 | t1_c2ictgn | null | 1427577395 | 1 | t5_2fwo | null | null | null |
True | the_cat_kittles | null | hey- in case anyone is interested: http://www.reddit.com/r/vimcommands/ | null | 0 | 1315550853 | False | 0 | c2ikcbo | t3_k9akm | null | t1_c2ikcbo | t1_c2ikada | null | 1427577396 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1315550932 | False | 0 | c2ikcjf | t3_k9akm | null | t1_c2ikcjf | t1_c2ii4jb | null | 1427577399 | 1 | t5_2fwo | null | null | null |
True | 5a1 | null | yeah, Haskell isn't so bad at second glance. J looks a little like a variant of BrainF*** though, I don't know if I could ever seriously work in a language like that. No doubt though, the imperative languages can't even come close. I bet a Python guru could do much better on that snippet, though... it's potentially ... | null | 0 | 1315550944 | False | 0 | c2ikckp | t3_k9rh0 | null | t1_c2ikckp | t1_c2ik8k3 | null | 1427577402 | -1 | t5_2fwo | null | null | null |
True | [deleted] | null | I've been an avid vim user for more than a decade, and I've never used hjkl for movement.
Arrow keys for the win. Fuck the home row. | null | 0 | 1315551052 | False | 0 | c2ikcts | t3_k9akm | null | t1_c2ikcts | t1_c2ik48c | null | 1427577403 | 8 | t5_2fwo | null | null | null |
True | tinou | null | An isomorphism. Not a trivial one (= the identity). | null | 0 | 1315551186 | False | 0 | c2ikd5i | t3_k9cbj | null | t1_c2ikd5i | t1_c2ij7n0 | null | 1427577408 | 12 | t5_2fwo | null | null | null |
True | gc3 | null | Lisps's keyboard image is why Lisp stands for or Lots of Insipid Stupid Parenthesis. | null | 0 | 1315551264 | False | 0 | c2ikdcr | t3_k8w37 | null | t1_c2ikdcr | t3_k8w37 | null | 1427577410 | 1 | t5_2fwo | null | null | null |
True | fenux | null | Well asked Buzz Killington. | null | 0 | 1315551317 | False | 0 | c2ikdhl | t3_k9h3s | null | t1_c2ikdhl | t1_c2ik7q2 | null | 1427577413 | -1 | t5_2fwo | null | null | null |
True | [deleted] | null | Warning: don't comment on github! I commented once on the "rm -rf /usr/bin" thing (3+ months ago) and I still get notifications in my notification area - and I can't turn off notifications for that.
If this gets popular your github acc will be spammed with stupid idiot comments where people post cat pictures and shit... | null | 0 | 1315551325 | False | 0 | c2ikdi9 | t3_k9rqy | null | t1_c2ikdi9 | t3_k9rqy | null | 1427577413 | 34 | t5_2fwo | null | null | null |
True | monothorpe | null | Or perhaps move it to the bottom with the other editing commands, if you ever make a version 2. | null | 0 | 1315551341 | False | 0 | c2ikdjf | t3_k9akm | null | t1_c2ikdjf | t1_c2ikby4 | null | 1427577413 | 1 | t5_2fwo | null | null | null |
True | rs98101 | null | Or, you could usher in the 90's, be a real professional, and use an actual IDE. | null | 0 | 1315551410 | False | 0 | c2ikdpn | t3_k9akm | null | t1_c2ikdpn | t3_k9akm | null | 1427577415 | 6 | t5_2fwo | null | null | null |
True | Vaste | null | Maybe a more intuitive vocabulary would be useful?
git reset --hard
git reset --soft
is only slightly better than
git reset --badass
git reset --cute
| null | 0 | 1315551574 | False | 0 | c2ike43 | t3_k8vpn | null | t1_c2ike43 | t3_k8vpn | null | 1427577420 | 8 | t5_2fwo | null | null | null |
True | killerstorm | null | NDA? | null | 0 | 1315551695 | False | 0 | c2ikeeu | t3_k8leq | null | t1_c2ikeeu | t1_c2ickpg | null | 1427577424 | 2 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1315551804 | False | 0 | c2ikeoi | t3_k9rqy | null | t1_c2ikeoi | t1_c2ikdi9 | null | 1427577428 | -7 | t5_2fwo | null | null | null |
True | tomcsi | null | Ctrl-O says "prev mark", but then Ctrl-I should be "next mark". See
:help ctrl-i | null | 0 | 1315552005 | False | 0 | c2ikf6r | t3_k9akm | null | t1_c2ikf6r | t3_k9akm | null | 1427577435 | 1 | t5_2fwo | null | null | null |
True | Gotebe | null | Some people have a lot of time on their hands!
Otherwise, LISP really is ()-language, whareas C and it's ilk *aren't* {}-languages? Well, what do you know! | null | 0 | 1315552196 | False | 0 | c2ikfn4 | t3_k8w37 | null | t1_c2ikfn4 | t3_k8w37 | null | 1427577440 | 1 | t5_2fwo | null | null | null |
True | Gotebe | null | It's probably just the\_naming\_convention\_they\_use. | null | 0 | 1315552264 | False | 0 | c2ikfta | t3_k8w37 | null | t1_c2ikfta | t1_c2ihjdb | null | 1427577443 | 1 | t5_2fwo | null | null | null |
True | Gotebe | null | A lot of arrows in C++ code is usually a sign of a poor design. ;-) | null | 0 | 1315552330 | False | 0 | c2ikfza | t3_k8w37 | null | t1_c2ikfza | t1_c2ij1dl | null | 1427577445 | 1 | t5_2fwo | null | null | null |
True | a_machine_elf | null | braces do seem under-represented in many cases where I would expect to find them frequently used - perl seems to be an exception. | null | 0 | 1315552356 | False | 0 | c2ikg1f | t3_k8w37 | null | t1_c2ikg1f | t1_c2ifkcr | null | 1427577446 | 1 | t5_2fwo | null | null | null |
True | tibbe | null | Precisely. Since thunks can be updated (once) you still need to deal with mutation in the GC. | null | 0 | 1315552639 | False | 0 | c2ikgp7 | t3_k85xr | null | t1_c2ikgp7 | t1_c2ifcf3 | null | 1427577454 | 3 | t5_2fwo | null | null | null |
True | tibbe | null | Aside: Haskell also has value semantics so many things are never allocated on the heap. For example given this function
sumPair :: (Int, Int) -> Int
sumPair (x,y) = x+y
and this call site
doIt = sumPair (1,2)
No heap object will be allocated for the pair and the two integers will be passed in registe... | null | 0 | 1315552814 | False | 0 | c2ikh48 | t3_k85xr | null | t1_c2ikh48 | t1_c2ieaue | null | 1427577460 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1315552858 | False | 0 | c2ikh85 | t3_k85xr | null | t1_c2ikh85 | t1_c2ikh48 | null | 1427577461 | 1 | t5_2fwo | null | null | null |
True | ccampo | null | It's even got *code and shit*. | null | 0 | 1315552921 | False | 0 | c2ikhe0 | t3_k9rqy | null | t1_c2ikhe0 | t1_c2ik8d6 | null | 1427577463 | 12 | t5_2fwo | null | null | null |
True | EughEugh | null | So you think it would have been smarter to invent your own, different syntax just because you think it should be different? | null | 0 | 1315552935 | False | 0 | c2ikhfe | t3_k9h3s | null | t1_c2ikhfe | t1_c2ikblk | null | 1427577464 | 6 | t5_2fwo | null | null | null |
True | EughEugh | null | That thin arrows are "easier to look at" is your personal opinion. | null | 0 | 1315552975 | False | 0 | c2ikhi9 | t3_k9h3s | null | t1_c2ikhi9 | t1_c2ij12f | null | 1428194909 | 14 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1315553001 | False | 0 | c2ikhkg | t3_k85xr | null | t1_c2ikhkg | t1_c2ieaue | null | 1428194910 | 1 | t5_2fwo | null | null | null |
True | tibbe | null | How is the problem different from scaling `malloc`? I'm genuinely curious.
Edit: It seems that tcmalloc (the `malloc` implementation we use at Google) does scale perfectly either: http://goog-perftools.sourceforge.net/doc/tcmalloc.html | null | 0 | 1315553148 | True | 0 | c2ikhxr | t3_k85xr | null | t1_c2ikhxr | t1_c2iglmi | null | 1427577473 | 3 | t5_2fwo | null | null | null |
True | bobowzki | null | Who other than programmers use vim? | null | 0 | 1315553206 | False | 0 | c2iki2t | t3_k9akm | null | t1_c2iki2t | t3_k9akm | null | 1427577476 | 3 | t5_2fwo | null | null | null |
True | Brian | null | >ls .* to show config files, ls to show non-config files.
Actually, those do very different things. `ls .*` will show you the **contents** of every hidden directory as well (including . and .. !), you need `ls -d .*` to get the same effect (even then it's not quite the same because it still includes . and .., a ve... | null | 0 | 1315553516 | False | 0 | c2ikir7 | t3_k7qe8 | null | t1_c2ikir7 | t1_c2ij5fr | null | 1427577483 | 1 | t5_2fwo | null | null | null |
True | Gotebe | null | >It doesn't manage anything but memory.
And even that management... Erm... Leaks.
No environment can prevent... an ingenious programmer from eating it's memory. | null | 0 | 1315553553 | False | 0 | c2ikiu8 | t3_k8gr4 | null | t1_c2ikiu8 | t1_c2ifjy4 | null | 1427577486 | 1 | t5_2fwo | null | null | null |
True | Gotebe | null | >You don't like IDisposable
Erm... There's nothing to like, really. IDisposable, or try/finally, are a massive gaping hole in garbage collection idea.
I love GC, but the thing is, just like all abstractions, it leaks (pun intended). | null | 0 | 1315553586 | False | 0 | c2ikix0 | t3_k8gr4 | null | t1_c2ikix0 | t1_c2id2so | null | 1427577489 | 3 | t5_2fwo | null | null | null |
True | Yuushi | null | No, I was simply making a point about the fact that calling -> syntax "alien", even if it was something of a joke, is a really a bit silly. | null | 0 | 1315553626 | False | 0 | c2ikj0e | t3_k9h3s | null | t1_c2ikj0e | t1_c2ijp7l | null | 1427577498 | 6 | t5_2fwo | null | null | null |
True | Gotebe | null | You presume that your C++ code runs in a thing called "process", running in a thing called "operating system" having process memory isolation/management. That ain't necessarily the case.
The kids these days... | null | 0 | 1315553812 | False | 0 | c2ikjfe | t3_k8gr4 | null | t1_c2ikjfe | t1_c2ifd98 | null | 1427577497 | 3 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1315554095 | False | 0 | c2ikk14 | t3_k9rqy | null | t1_c2ikk14 | t3_k9rqy | null | 1427577502 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1315554150 | False | 0 | c2ikk5j | t3_k9h3s | null | t1_c2ikk5j | t1_c2ik5co | null | 1427577503 | 1 | t5_2fwo | null | null | null |
True | BeatLeJuce | null | What I intended to say was *It's not suited because a language doesn't have an intrinsic speed*. However, while I wrote down an answer to your post, I had the following thought:
A language doesn't have an intrinsic speed. However it has a certain potential for speed in that it is easier/harder to optimize than other l... | null | 0 | 1315554170 | True | 0 | c2ikk78 | t3_k58pi | null | t1_c2ikk78 | t1_c2ih8wp | null | 1427577507 | 1 | t5_2fwo | null | null | null |
True | simonask | null | A generic implementation of `malloc`/`free` will have scaling issues as well. A lock is needed, to ensure the consistency of `malloc`'s internal data structures, because there is no guarantee that memory allocated in one thread won't be freed in another.
A big part of this can be alleviated with simple tricks (and I'm... | null | 0 | 1315554316 | False | 0 | c2ikkk2 | t3_k85xr | null | t1_c2ikkk2 | t1_c2ikhxr | null | 1427577507 | 0 | t5_2fwo | null | null | null |
True | trezor2 | null | I could check this out so that the next time I accidentally ruin a shell-session by starting vi or any of its evil brethren I know *how to exit a fucking editor*.
Or I could just close the window and start up a new shell session and start a modern editor, not an archaic one made after the principal that a "line-editor... | null | 0 | 1315554408 | False | 0 | c2ikkrp | t3_k9akm | null | t1_c2ikkrp | t3_k9akm | null | 1427577509 | 2 | t5_2fwo | null | null | null |
True | Kalium | null | I'm having difficulty understanding why being a smug asshole is a good thing. | null | 0 | 1315554455 | False | 0 | c2ikkvm | t3_k9rqy | null | t1_c2ikkvm | t3_k9rqy | null | 1427577508 | 27 | t5_2fwo | null | null | null |
True | poop_toucher | null | What? Python 3 is a language, whereas PyPy is an implementation of a language. | null | 0 | 1315554701 | False | 0 | c2ikleu | t3_k9rqy | null | t1_c2ikleu | t1_c2ikk14 | null | 1427577523 | 2 | t5_2fwo | null | null | null |
True | msx | null | upvoted sir | null | 0 | 1315554718 | False | 0 | c2iklg9 | t3_k9h3s | null | t1_c2iklg9 | t1_c2ii9kj | null | 1427577517 | -5 | t5_2fwo | null | null | null |
True | thantik | null | I'm kind of sad Python 3 is on there, but not PyPy. | null | 0 | 1315554790 | False | 0 | c2ikllc | t3_k9rqy | null | t1_c2ikllc | t1_c2ikc67 | null | 1427577518 | 1 | t5_2fwo | null | null | null |
True | thantik | null | Whoops, meant to reply to stesch... | null | 0 | 1315554811 | False | 0 | c2iklmy | t3_k9rqy | null | t1_c2iklmy | t1_c2ikleu | null | 1427577518 | 1 | t5_2fwo | null | null | null |
True | elperroborrachotoo | null | > Perhaps I've taken too much of what you've said as implied defense of things you're not explicitly defending. If that's the case, my bad.
No worry, happens to me often :)
> "dynamic typing is better suited for small, simple projects."
But that would be to much of a conclusion.
I guess there's just to much... | null | 0 | 1315554869 | False | 0 | c2iklre | t3_k7o9e | null | t1_c2iklre | t1_c2iezef | null | 1427577523 | 2 | t5_2fwo | null | null | null |
True | babazka | null | Absolute winner in my *Microsoft SDKs\Windows\v6.0A\Include* folder:
unsigned long CreateFontPackage(
__in const unsigned char *puchSrcBuffer,
__in const unsigned long ulSrcBufferSize,
__out unsigned char **puchFontPackageBuffer,
__out const unsigned long *pulFontPackageBufferSize,
... | null | 0 | 1315555099 | False | 0 | c2ikm96 | t3_k7pwu | null | t1_c2ikm96 | t1_c2ij7e4 | null | 1427577527 | 1 | t5_2fwo | null | null | null |
True | ba-cawk | null | it accepts http as well. | null | 0 | 1315555132 | False | 0 | c2ikmbv | t3_k8jnv | null | t1_c2ikmbv | t1_c2ih9wv | null | 1427577528 | 1 | t5_2fwo | null | null | null |
True | eddyvd | null | The next question to answer: what scoping will Java's lambdas have? | null | 0 | 1315555203 | False | 0 | c2ikmhp | t3_k9h3s | null | t1_c2ikmhp | t3_k9h3s | null | 1427577530 | 3 | t5_2fwo | null | null | null |
True | GaryNiger | null | > Show me one line of "stolen" code on http://github.com/marak and I'll give you $1000 in cash.
JimBastard, aka Marak Squires, has a long history of self-promoting projects that he's either stolen outright from other programmers, or simply wrapped and called his own. You'll often find him promoting his "work", so w... | null | 0 | 1315555290 | True | 0 | c2ikmo9 | t3_k9rqy | null | t1_c2ikmo9 | t1_c2ikeoi | null | 1427577533 | 66 | t5_2fwo | null | null | null |
True | JanHappen | null | that's my favourite too | null | 0 | 1315555370 | False | 0 | c2ikmu0 | t3_k9akm | null | t1_c2ikmu0 | t1_c2iiptr | null | 1428194907 | 2 | t5_2fwo | null | null | null |
True | mikepixie | null | Oh I thought he says he uses Jquery and Canvas in the title. My bad. | null | 0 | 1315555523 | False | 0 | c2ikn4m | t3_k7ewc | null | t1_c2ikn4m | t1_c2ik7cl | null | 1427577538 | 2 | t5_2fwo | null | null | null |
True | youcouldgoogleit666 | null | You opinion is duly noted, and ignored. I don't care what you think or
what is "fine by you". This is a thread to determine if there are
enough people who are interested in attending a separate node meetup
where we could dive into materials that we will never have the time to
discuss at NYC.js. There's no question that... | null | 0 | 1315555553 | False | 0 | c2ikn6r | t3_k9rqy | null | t1_c2ikn6r | t1_c2ikmo9 | null | 1427577539 | -9 | t5_2fwo | null | null | null |
True | aceslick911 | null | Where the hell were you 6 months ago during my sys prog class :( | null | 0 | 1315555558 | False | 0 | c2ikn71 | t3_k9akm | null | t1_c2ikn71 | t3_k9akm | null | 1427577539 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1315555678 | False | 0 | c2ikney | t3_k9akm | null | t1_c2ikney | t1_c2ihl6w | null | 1427577542 | 3 | t5_2fwo | null | null | null |
True | GaryNiger | null | lol, he replaced my showing of many lines of stolen code with https://github.com/Marak/node_mailer/issues/47 | null | 0 | 1315555807 | False | 0 | c2iknnq | t3_k9rqy | null | t1_c2iknnq | t1_c2ikeoi | null | 1427577545 | 8 | t5_2fwo | null | null | null |
True | antrn11 | null | I spend more time on thinking than I spend on typing.
And I would have to move my hands from the home-row all the time anyway (pressing ESC, function buttons, or character needing alt-gr).
Sometimes I even use mouse. | null | 0 | 1315555935 | False | 0 | c2iknwr | t3_k9akm | null | t1_c2iknwr | t1_c2ik48c | null | 1428194905 | 3 | t5_2fwo | null | null | null |
True | sevenalive | null | I noticed that most of the people who prefer to use vim are old, like 40+ old. For example the OP was programming when NeXT came out. They also stick with 80cpl.
It's cool. I'm not going to try to convert them to use an IDE, but I'm seeing more and more Vim users trying to convert others. They say it's faster, but loo... | null | 0 | 1315556016 | False | 0 | c2iko25 | t3_k9akm | null | t1_c2iko25 | t1_c2ikdpn | null | 1427577556 | 4 | t5_2fwo | null | null | null |
True | BeatLeJuce | null | I really can't tell if the guy is trolling or not from the "Cataclysm" phase onwards o_0 | null | 0 | 1315556080 | False | 0 | c2iko6r | t3_k9u45 | null | t1_c2iko6r | t3_k9u45 | null | 1427577566 | 1 | t5_2fwo | null | null | null |
True | mac | null | The video is now private. | null | 0 | 1315556199 | False | 0 | c2ikoej | t3_k9rqy | null | t1_c2ikoej | t1_c2ikmo9 | null | 1427577560 | 13 | t5_2fwo | null | null | null |
True | GaryNiger | null | Typical. | null | 0 | 1315556212 | False | 0 | c2ikof6 | t3_k9rqy | null | t1_c2ikof6 | t1_c2ikoej | null | 1427577560 | 13 | t5_2fwo | null | null | null |
True | [deleted] | null | It would be smarter to invent a syntax that fits hand in glove with the Java way... are you saying that Java and c# syntax is so close that they are effectively one language? If you can take big sections of a language and simply bolt it onto another language without change then that's what it sounds like to me. | null | 0 | 1315556239 | False | 0 | c2ikohc | t3_k9h3s | null | t1_c2ikohc | t1_c2ikhfe | null | 1427577562 | -3 | t5_2fwo | null | null | null |
True | wilsonp | null | The hash/pound syntax looks like it should be a template expression, rather than a lambda. | null | 0 | 1315556264 | False | 0 | c2ikoiv | t3_k9h3s | null | t1_c2ikoiv | t1_c2ik7q2 | null | 1427577562 | 2 | t5_2fwo | null | null | null |
True | baileylo | null | That's scoped for the php 5.4 release. I believe it's already in, but I'm not sure. | null | 0 | 1315556394 | False | 0 | c2ikos5 | t3_k87wr | null | t1_c2ikos5 | t1_c2iafrk | null | 1427577567 | 1 | t5_2fwo | null | null | null |
True | kamatsu | null | I should fork the fork and rewrite it in Haskell. | null | 0 | 1315556405 | False | 0 | c2ikoso | t3_k9rqy | null | t1_c2ikoso | t3_k9rqy | null | 1427577567 | 15 | t5_2fwo | null | null | null |
True | [deleted] | null | A compiler will catch errors which would otherwise requires unit tests in a dynamic language. So dynamically typed languages need a lot more testing to reach the same level of quality. You even need to cover all the error paths to prevent spelling errors. I think the need for additional testing negates any benefits in ... | null | 0 | 1315556462 | False | 0 | c2ikovn | t3_k7o9e | null | t1_c2ikovn | t1_c2iiall | null | 1427577569 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | Sigh. In-factual, misleading, and a copy-pasta from the original "trolling Marak thread".
Since the attention span of most people reading this has already expired, I'll just post a researched analysis of these incorrect claims, you can read it here: https://gist.github.com/716164 , from the original thread.
Now I'll ... | null | 0 | 1315556487 | False | 0 | c2ikox3 | t3_k9rqy | null | t1_c2ikox3 | t1_c2ikmo9 | null | 1427577569 | -5 | t5_2fwo | null | null | null |
Subsets and Splits
Filtered Reddit Uplifting News
The query retrieves specific news articles by their link IDs, providing a basic overview of those particular entries without deeper analysis or insights.
Recent Programming Comments
Returns a limited set of programming records from 2020 to 2023, providing basic filtering with minimal analytical value.