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 | johnwaterwood | null | Every language that you don't know (well) is hard to read. Japanese has a lot more 'symbols' than English, but trust me Japanese is pretty readable for native speakers. | null | 0 | 1315657809 | False | 0 | c2iu7vf | t3_k6jko | null | t1_c2iu7vf | t1_c2il5xq | null | 1427582188 | 1 | t5_2fwo | null | null | null |
True | angusmcflurry | null | The story I read before was that netscape had the language and was going to call it livescript and they decided to change it to javascript to piggyback off the java hype at the time. | null | 0 | 1315658129 | False | 0 | c2iu8g6 | t3_kajta | null | t1_c2iu8g6 | t3_kajta | null | 1427582197 | 2 | t5_2fwo | null | null | null |
True | CallMemaJiC | null | This article got me back on a JS kick! | null | 0 | 1315658608 | False | 0 | c2iu9c2 | t3_kajta | null | t1_c2iu9c2 | t3_kajta | null | 1427582208 | 2 | t5_2fwo | null | null | null |
True | grable | null | Thanks, /r/programming has too much web shit and other crap these days. | null | 0 | 1315658718 | False | 0 | c2iu9im | t3_kaytk | null | t1_c2iu9im | t3_kaytk | null | 1428194709 | 12 | t5_2fwo | null | null | null |
True | necroforest | null | >What if you don't have an interface for the lambda you want to create? Say a function that takes a Collection, a double, and a String? You either have to create a do-it-all interface that takes a vararg of Objects or write a unique interface for every combination.
ugh, I had to do something like that once. I ende... | null | 0 | 1315658969 | False | 0 | c2iu9z2 | t3_ka4h8 | null | t1_c2iu9z2 | t1_c2ipsuq | null | 1427582217 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | You could have done this without karma whoring. | null | 0 | 1315659041 | False | 0 | c2iua4f | t3_kaytk | null | t1_c2iua4f | t3_kaytk | null | 1428194707 | -18 | t5_2fwo | null | null | null |
True | day_cq | null | This might be clearer for you
data LuaValue a = ErrorVal | Value a deriving (Eq, Show)
data Error = Error deriving (Eq, Show)
f :: LuaValue a -> Either Error a
f ErrorVal = Left Error
f (Value a) = Right a
f' :: Either Error a -> LuaValue a
f' (Left Error) = ErrorVal
f' (Right a... | null | 0 | 1315659276 | False | 0 | c2iuaks | t3_k9ud6 | null | t1_c2iuaks | t1_c2iu17w | null | 1428194707 | -1 | t5_2fwo | null | null | null |
True | slash112 | null | 1) Ads in-game or in pause menu, or around the game.
2) Allow players to buy stuff for their character, etc.
3) Use your imagination... | null | 0 | 1315659415 | False | 0 | c2iuatt | t3_ka0qg | null | t1_c2iuatt | t1_c2itsdm | null | 1427582228 | 0 | t5_2fwo | null | null | null |
True | [deleted] | null | Can't write (his books often appear to be entirely written by "collaborators"), can't edit (take a look at More C++ Gems) and (from my occasional encounters with him on-line) has the technical knowledge of an earwig.
| null | 0 | 1315659772 | False | 0 | c2iubir | t3_k9z9s | null | t1_c2iubir | t1_c2iodyw | null | 1427582237 | 2 | t5_2fwo | null | null | null |
True | pivo | null | Yes, you can't have lambdas without closures. You may need to declare closed over variables final though. | null | 0 | 1315660321 | False | 0 | c2iucn5 | t3_k9h3s | null | t1_c2iucn5 | t1_c2img73 | null | 1427582250 | 1 | t5_2fwo | null | null | null |
True | michaelochurch | null | I'm surprised Scala is only #50.
| null | 0 | 1315660617 | False | 0 | c2iud6l | t3_kaxjq | null | t1_c2iud6l | t3_kaxjq | null | 1427582265 | 6 | t5_2fwo | null | null | null |
True | NCRider | null | I used to LOVE developer.netscape.com.
That was an exciting time to be a programmer.
| null | 0 | 1315660734 | False | 0 | c2iudg4 | t3_kajta | null | t1_c2iudg4 | t3_kajta | null | 1427582270 | 2 | t5_2fwo | null | null | null |
True | gkaukola | null | I suppose you could fuck it up so bad so as to make debugging impossible. | null | 0 | 1315660794 | False | 0 | c2iudl5 | t3_kajta | null | t1_c2iudl5 | t1_c2iscjs | null | 1427582263 | 1 | t5_2fwo | null | null | null |
True | shadow2531 | null | I recently chose D over C++ for a small win32 command-line app.
Here are the reasons:
* I wanted to get the command-line arguments as utf-8. For D, this is the default and just works. For C++, I have to use something like:
#include <iostream>
#include <string>
#include <vector... | null | 0 | 1315660909 | True | 0 | c2iudu2 | t3_kaxjq | null | t1_c2iudu2 | t1_c2itwzg | null | 1427582267 | 22 | t5_2fwo | null | null | null |
True | johnwaterwood | null | Good writeup! Why on earth is this being voted down?
FindBugs is a really great tool and its usage should be mandatory. | null | 0 | 1315660919 | False | 0 | c2iudv3 | t3_kb1gc | null | t1_c2iudv3 | t3_kb1gc | null | 1427582267 | 4 | t5_2fwo | null | null | null |
True | dyydvujbxs | null | JS does not have local variables. JS has function-scope variables. This atrocity is why jslint has the "onevar" rule. JS will let you accidentally write code that lies about scope (vars are in acope at the start of the function they are declared in, BEFORE they are declared), and onevar keeps you honest. | null | 0 | 1315661019 | False | 0 | c2iue2v | t3_kajta | null | t1_c2iue2v | t1_c2isab7 | null | 1427582270 | 1 | t5_2fwo | null | null | null |
True | dr3d | null | was a peculiar-looking spike recently in the graph | null | 0 | 1315661042 | False | 0 | c2iue4n | t3_kaxjq | null | t1_c2iue4n | t1_c2itj0r | null | 1427582270 | 0 | t5_2fwo | null | null | null |
True | airbornelemming | null | Well then he would have written 0b10. | null | 0 | 1315661148 | False | 0 | c2iueds | t3_kadw2 | null | t1_c2iueds | t1_c2is9r4 | null | 1427582274 | 0 | t5_2fwo | null | null | null |
True | ehird | null | >All you're seeing is my exchange with one person, who is wrong.
Suddenly I am so reassured. | null | 0 | 1315661389 | False | 0 | c2iuewr | t3_k9rqy | null | t1_c2iuewr | t1_c2ime3i | null | 1427582281 | 2 | t5_2fwo | null | null | null |
True | Vigil123 | null | Ive played around with jqm and recently discovered sencha. It looks smoother but I have yet to test its simplicity. Which one do you find easier to use? | null | 0 | 1315661457 | False | 0 | c2iuf21 | t3_k9ira | null | t1_c2iuf21 | t1_c2ilicz | null | 1427582290 | 2 | t5_2fwo | null | null | null |
True | abolishcopyright | null | fair enough; srry didn't mean to sound like a jerk. | null | 0 | 1315661822 | False | 0 | c2iufvi | t3_k9akm | null | t1_c2iufvi | t1_c2iscjl | null | 1427582296 | 2 | t5_2fwo | null | null | null |
True | rdicker | null | This is wrong in certain ways. Originally the language was called "Mocha" internally - it is like Java because it runs anywhere, but sweeter. Get it? Even during this time the plan was to ship Java with Navigator 2.0
Anyway, when it first launched it was called LiveScript. Netscape was trying to brand everything as "L... | null | 0 | 1315661939 | False | 0 | c2iug53 | t3_kajta | null | t1_c2iug53 | t3_kajta | null | 1427582298 | 3 | t5_2fwo | null | null | null |
True | TheSmoke | null | because it's Java without the headache and Python compiling. | null | 0 | 1315661943 | False | 0 | c2iug5d | t3_kaxjq | null | t1_c2iug5d | t1_c2itwzg | null | 1427582298 | 1 | t5_2fwo | null | null | null |
True | kikaerter | null | Look at me! I'm a snobby Brit! My dialect is better than yours! | null | 0 | 1315662455 | False | 0 | c2iuhcq | t3_k9h3s | null | t1_c2iuhcq | t1_c2ilfqe | null | 1427582315 | 1 | t5_2fwo | null | null | null |
True | 7oby | null | I have a Mootools shirt and still don't know what it's about. Feel free to be jealous. | null | 0 | 1315662825 | False | 0 | c2iuia1 | t3_kajta | null | t1_c2iuia1 | t1_c2isjb9 | null | 1428194704 | 1 | t5_2fwo | null | null | null |
True | TheSisko972 | null | How? | null | 0 | 1315662918 | False | 0 | c2iuiig | t3_kaytk | null | t1_c2iuiig | t1_c2iua4f | null | 1427582329 | -1 | t5_2fwo | null | null | null |
True | SonOfTheLorax | null | Not the same thing at all.
Google is just fucking lazy when it comes to naming or they're co-opting other project's names intentionally.
Personally, I blame lazy. | null | 0 | 1315662963 | False | 0 | c2iuim6 | t3_kawp5 | null | t1_c2iuim6 | t1_c2itrea | null | 1427582331 | 13 | t5_2fwo | null | null | null |
True | Poltras | null | jQuery? Yes. JavaScript? Not so much. | null | 0 | 1315663186 | False | 0 | c2iuj60 | t3_kajta | null | t1_c2iuj60 | t1_c2it255 | null | 1427582338 | 2 | t5_2fwo | null | null | null |
True | bluefinity | null | I'm pretty sure it would, as there is no copy syscall.
Unless they were copying to the same partition, and that partition was using a copy-on-write filesystem like ZFS. | null | 0 | 1315663220 | False | 0 | c2iuj97 | t3_k8leq | null | t1_c2iuj97 | t1_c2iil27 | null | 1427582339 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | D frontend is under GPL v1 and Artistic License v1 making it incompatible with most open source code out there. | null | 0 | 1315663343 | False | 0 | c2iujk0 | t3_kaxjq | null | t1_c2iujk0 | t1_c2itjjk | null | 1427582343 | 8 | t5_2fwo | null | null | null |
True | [deleted] | null | A self post with links. | null | 0 | 1315663353 | False | 0 | c2iujl0 | t3_kaytk | null | t1_c2iujl0 | t1_c2iuiig | null | 1427582343 | -11 | t5_2fwo | null | null | null |
True | pipocaQuemada | null | 1) What exactly do you mean by "per point of usage support"?
2) point taken, although some static languages have a type that represents all types, so that isn't something restricted to dynamic languages.
With your example of A, B and C, it's definitely possible to do that in a statically typed language that has param... | null | 0 | 1315663408 | False | 0 | c2iujrf | t3_k7o9e | null | t1_c2iujrf | t1_c2im6k3 | null | 1427582344 | 1 | t5_2fwo | null | null | null |
True | lewiji | null | Gotcha. Well, I'm still enjoying the book and to be honest, I didn't even look at the author as I knew it was largely written by collaborators. I'll probably skip any others of his though. | null | 0 | 1315663817 | False | 0 | c2iukuf | t3_k9z9s | null | t1_c2iukuf | t1_c2iubir | null | 1427582358 | 1 | t5_2fwo | null | null | null |
True | geodebug | null | It's the de-facto language of browsers. If you want to consider yourself a well-rounded developer you need to know it. For better or worse. | null | 0 | 1315663885 | False | 0 | c2iul10 | t3_kajta | null | t1_c2iul10 | t1_c2itix2 | null | 1427582361 | 6 | t5_2fwo | null | null | null |
True | geodebug | null | This. The language is average at best, but it is easy to learn and is now the universal web language. Don't be surprised as it gets adopted for back end technologies simply because of the number of programmers who understand it. | null | 0 | 1315664153 | False | 0 | c2iulrv | t3_kajta | null | t1_c2iulrv | t1_c2itohv | null | 1427582371 | 4 | t5_2fwo | null | null | null |
True | Corafus | null | Is this payback for an earlier--oh... I see what you did there. | null | 0 | 1315664190 | False | 0 | c2iulva | t3_kajta | null | t1_c2iulva | t1_c2iu0k3 | null | 1427582372 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | ahahahahahhahaha | null | 0 | 1315664239 | False | 0 | c2iulzu | t3_kajta | null | t1_c2iulzu | t1_c2iul10 | null | 1427582378 | -4 | t5_2fwo | null | null | null |
True | mononcqc | null | Hey rapsey, out of curiosity, your module sounds like mochiweb's reloader. Is it the same or something different? Also, how do you handle the need for some updates to be synchronous or have changing states? It's kind of easy to roll your own with sys:suspend and sys:resume, but it makes me wonder what you use. | null | 0 | 1315664483 | False | 0 | c2iumib | t3_ka3lx | null | t1_c2iumib | t1_c2isrhl | null | 1428194702 | 3 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1315664498 | False | 0 | c2iumkw | t3_kaytk | null | t1_c2iumkw | t1_c2iua4f | null | 1427582381 | 17 | t5_2fwo | null | null | null |
True | dassouki | null | So i'm a member in all/most of these subreddits and I'm not even a programmer | null | 0 | 1315665068 | False | 0 | c2iuo17 | t3_kaytk | null | t1_c2iuo17 | t3_kaytk | null | 1427582402 | -5 | t5_2fwo | null | null | null |
True | esx | null | Or use [Mascara](http://mascaraengine.com) which is backwards compatible with JavaScript, but which adds verification, classes, namespaces and so on. | null | 0 | 1315665070 | False | 0 | c2iuo1d | t3_kajta | null | t1_c2iuo1d | t1_c2it315 | null | 1427582402 | 2 | t5_2fwo | null | null | null |
True | [deleted] | null | What's your relation to the site in question? :P | null | 0 | 1315665406 | False | 0 | c2iuoyl | t3_kaytk | null | t1_c2iuoyl | t1_c2iumkw | null | 1427582422 | -7 | t5_2fwo | null | null | null |
True | felipec | null | Huh? It's #28.
Are we talking about August 2011?
I told those guys they should make it easy to build in Linux several years ago, they didn't listen. I think that's the main reason very few people actually try it. | null | 0 | 1315665487 | False | 0 | c2iup67 | t3_kaxjq | null | t1_c2iup67 | t3_kaxjq | null | 1427582415 | 6 | t5_2fwo | null | null | null |
True | rapsey | null | Yeah it's similar. Does reloader do compiling as well?
I have a bit of code in every gen_server for updates. My reloader module always checks if the module has a reload/0 function. If it does it calls it for the module to update itself, if not it manually does purge+load_file.
reload() ->
gen_server:ca... | null | 0 | 1315665523 | False | 0 | c2iup9x | t3_ka3lx | null | t1_c2iup9x | t1_c2iumib | null | 1427582416 | 5 | t5_2fwo | null | null | null |
True | jpfed | null | Mefite here. It's great, although don't expect it to sit in exactly the same online niche as reddit. I go to reddit for the links; the comments are occasionally interesting, but mostly reddit points me at interesting other stuff on the web. I go to Metafilter for the comments, which thanks to the $5 entry fee are pr... | null | 0 | 1315665626 | False | 0 | c2iupkp | t3_kajta | null | t1_c2iupkp | t1_c2itkb3 | null | 1427582430 | 4 | t5_2fwo | null | null | null |
True | jpfed | null | I think it's certainly better for some purposes. Saying that one community is better in absolute terms than the other leads to mutual defensiveness, which is dumb when people could be enjoying both communities for what they are. | null | 0 | 1315665829 | False | 0 | c2iuq7e | t3_kajta | null | t1_c2iuq7e | t1_c2itbju | null | 1427582429 | 5 | t5_2fwo | null | null | null |
True | [deleted] | null | So it says that it Lars Bak building dash and now also Dart. Or is Dart really Dash?
They seem to be build for the same purpose by the same team. | null | 0 | 1315665876 | False | 0 | c2iuqc6 | t3_kawp5 | null | t1_c2iuqc6 | t1_c2it6lj | null | 1427582431 | 3 | t5_2fwo | null | null | null |
True | mononcqc | null | Yeah, that does sound like a rather simple and elegant way to do things. Nice. | null | 0 | 1315665897 | False | 0 | c2iuqer | t3_ka3lx | null | t1_c2iuqer | t1_c2iup9x | null | 1427582431 | 3 | t5_2fwo | null | null | null |
True | RemyJe | null | Did you also notice who wrote it? | null | 0 | 1315665921 | False | 0 | c2iuqhe | t3_kajta | null | t1_c2iuqhe | t1_c2irmjl | null | 1427582432 | 3 | t5_2fwo | null | null | null |
True | jrcapa | null | Just compile to Javascript? | null | 0 | 1315665941 | False | 0 | c2iuqjh | t3_kawp5 | null | t1_c2iuqjh | t3_kawp5 | null | 1427582432 | 3 | t5_2fwo | null | null | null |
True | imphasing | null | You seem to have a problem with the concept of closures.. I hope you're not talking about closures in general, but C++11 closures or something, because classes are essentially a poor man's closure ;P | null | 0 | 1315665975 | False | 0 | c2iuqn1 | t3_ka4h8 | null | t1_c2iuqn1 | t1_c2ipomp | null | 1427582435 | 1 | t5_2fwo | null | null | null |
True | LegacyAngel | null | Funny thing is that alot of these things are pretty common. Especially the thing about ad hoc polymorphism and its mix with generic programming. Would have loved if OP included that this is for beginners. | null | 0 | 1315666214 | False | 0 | c2iurcn | t3_kadw2 | null | t1_c2iurcn | t3_kadw2 | null | 1427582443 | 1 | t5_2fwo | null | null | null |
True | zwangaman | null | This totally deserves 3 exclamation marks after the title. It really doesn't make the OP sound ridiculous at all. | null | 0 | 1315666250 | False | 0 | c2iurhc | t3_kb59w | null | t1_c2iurhc | t3_kb59w | null | 1427582444 | 3 | t5_2fwo | null | null | null |
True | ethraax | null | You completely missed the point - there's no such thing as a "PC keyboard" (assuming you mean "Windows" by "PC"). There are just keyboards. I guess there are "Apple Keyboards" and "Non-Apple Keyboards", but that's it.
There are "Non-Apple Keyboards" without scroll locks, if you really care that much. Most people wh... | null | 0 | 1315666266 | False | 0 | c2iurjk | t3_k8w37 | null | t1_c2iurjk | t1_c2its7t | null | 1427582446 | 1 | t5_2fwo | null | null | null |
True | gsnedders | null | JS VMs have never been a plugin like Java was. All browsers apart from IE always had their JS VM as a fundamental part of the browser (IE9 moves to this model), while IE≤8 it just called another system library.
Futhark (and possibly Linear A/B, I forget) in Opera supported serving bytecode directly, though the format ... | null | 0 | 1315666276 | False | 0 | c2iurkn | t3_kawp5 | null | t1_c2iurkn | t1_c2itm5b | null | 1427582446 | 8 | t5_2fwo | null | null | null |
True | Corafus | null | I did. I figured that was a different Jeb though, you know, as opposed to Minecraft Jeb.. Is that even what you're pointing out? I'm kind of slow. | null | 0 | 1315666451 | False | 0 | c2ius4k | t3_kajta | null | t1_c2ius4k | t1_c2iuqhe | null | 1427582456 | 2 | t5_2fwo | null | null | null |
True | QuestionMarker | null | Not all VMs are bytecode VMs. An AST-walker is a VM of a sort. | null | 0 | 1315666610 | False | 0 | c2iusnf | t3_kawp5 | null | t1_c2iusnf | t1_c2itm5b | null | 1427582462 | 4 | t5_2fwo | null | null | null |
True | [deleted] | null | node.js! The article was likely written in the future. | null | 0 | 1315666624 | False | 0 | c2iusp2 | t3_kajta | null | t1_c2iusp2 | t1_c2itc6x | null | 1427582462 | 13 | t5_2fwo | null | null | null |
True | FooBarWidget | null | Sencha is only smoother on the desktop. On an actual iPad 1 Sencha is significantly sluggisher (than a native UI at least). | null | 0 | 1315666763 | False | 0 | c2iut5j | t3_k9ira | null | t1_c2iut5j | t1_c2iuf21 | null | 1427582474 | 2 | t5_2fwo | null | null | null |
True | TheGeneral | null | So tell me about this new language. What is the concept?
That's just it, there is no concept. The concept of the language is about nothing.
The concept is nothing?
Exactly -- it's just workarounds!
| null | 0 | 1315666906 | False | 0 | c2iutnz | t3_kajta | null | t1_c2iutnz | t1_c2isdd8 | null | 1427582481 | 9 | t5_2fwo | null | null | null |
True | erez27 | null | The original version of javascript was very limited and buggy, and it was based on an existing interpreter project. He basically just had to adjust the parser, and create an api for the dom.
10 days is still impressive, but not incredible. | null | 0 | 1315667107 | False | 0 | c2iuuac | t3_kajta | null | t1_c2iuuac | t1_c2isveh | null | 1427582490 | 4 | t5_2fwo | null | null | null |
True | Smallpaul | null | It has worked really fucking well for Flash. | null | 0 | 1315667137 | False | 0 | c2iuudu | t3_kawp5 | null | t1_c2iuudu | t1_c2iteoc | null | 1427582490 | 14 | t5_2fwo | null | null | null |
True | cr3ative | null | Ya I wan to localize my app. | null | 0 | 1315667154 | False | 0 | c2iuufu | t3_kb5hm | null | t1_c2iuufu | t3_kb5hm | null | 1427582490 | 6 | t5_2fwo | null | null | null |
True | 7oby | null | He's probably talking Lua, but wasn't there some plan to make it so you could run C++ or some shit on the page? | null | 0 | 1315667452 | False | 0 | c2iuvfe | t3_kawp5 | null | t1_c2iuvfe | t1_c2itzv5 | null | 1428194693 | 8 | t5_2fwo | null | null | null |
True | 7oby | null | They saw Steve Jobs claim iPhone after Cisco had done so, and it worked. So they're just taking other names. Looking forward to Google's new OS, Ubuntu. | null | 0 | 1315667502 | False | 0 | c2iuvl4 | t3_kawp5 | null | t1_c2iuvl4 | t1_c2iuim6 | null | 1427582501 | 3 | t5_2fwo | null | null | null |
True | kamatsu | null | > I still believe in app engine
That's odd, seeing as to me it seems like Google are desperately trying to monetize an unprofitable product. | null | 0 | 1315667645 | False | 0 | c2iuw24 | t3_kb0z2 | null | t1_c2iuw24 | t3_kb0z2 | null | 1427582510 | 1 | t5_2fwo | null | null | null |
True | __s | null | Then the JIT has to figure out any invariants all over again, plus guards. Unless you add annotations | null | 0 | 1315667714 | False | 0 | c2iuwb9 | t3_kawp5 | null | t1_c2iuwb9 | t1_c2iuqjh | null | 1427582513 | 4 | t5_2fwo | null | null | null |
True | joeshlub | null | Yeah I was on board until those two remarks. Especially Servers are written in JavaScript. I can see how some people might not be aware of just how much Java is deployed, but I can't think of a single server written in JavaScript. The concept doesn't even make sense. | null | 0 | 1315667796 | False | 0 | c2iuwlk | t3_kajta | null | t1_c2iuwlk | t1_c2itc6x | null | 1427582518 | 1 | t5_2fwo | null | null | null |
True | thephotoman | null | That would be one good example. | null | 0 | 1315668115 | False | 0 | c2iuxpt | t3_ka4h8 | null | t1_c2iuxpt | t1_c2itv0n | null | 1427582600 | 1 | t5_2fwo | null | null | null |
True | Vigil123 | null | Sencha was much smoother on all my browsers on Android :s Almost native-ui smooth compared to jquery mobile which tends to stutter/flicker/redraw at the end of animations. | null | 0 | 1315668120 | False | 0 | c2iuxqe | t3_k9ira | null | t1_c2iuxqe | t1_c2iut5j | null | 1427582602 | 2 | t5_2fwo | null | null | null |
True | llub3r | null | That's funny, I used to go to digg for the links. Now I go to reddit for the links and comments.
Maybe I should check out metafilter... | null | 0 | 1315668149 | False | 0 | c2iuxty | t3_kajta | null | t1_c2iuxty | t1_c2iupkp | null | 1427582603 | 1 | t5_2fwo | null | null | null |
True | QuestionMarker | null | Assuming I've parsed your intent correctly, I don't want to be doing this:
Collection coll = thing.findWebsiteOverviewModels(1, now, then);
I want to do this:
Website website = thing.getWebsite(1);
Models thingMods = website.getModels();
...
Overview modsOverview = thingMods.getOverview();
..... | null | 0 | 1315668492 | False | 0 | c2iuz0t | t3_k7pwu | null | t1_c2iuz0t | t1_c2i9nfl | null | 1427582621 | 1 | t5_2fwo | null | null | null |
True | geodebug | null | Talk to a child, get a childish response. | null | 0 | 1315668774 | True | 0 | c2iv00r | t3_kajta | null | t1_c2iv00r | t1_c2iulzu | null | 1427582636 | 0 | t5_2fwo | null | null | null |
True | kokey | null | perhaps a paywall for youtube comments would either make a ton of money for google, or improve the comment quality. neither is a bad thing. | null | 0 | 1315668788 | False | 0 | c2iv02g | t3_kajta | null | t1_c2iv02g | t1_c2itbju | null | 1427582638 | 1 | t5_2fwo | null | null | null |
True | m0llusk | null | "lingua franca" means "Frankish Language" | null | 0 | 1315668791 | False | 0 | c2iv02l | t3_kawp5 | null | t1_c2iv02l | t3_kawp5 | null | 1427582638 | -8 | t5_2fwo | null | null | null |
True | geodebug | null | I like this and will steal it | null | 0 | 1315668820 | False | 0 | c2iv06i | t3_kajta | null | t1_c2iv06i | t1_c2its97 | null | 1427582639 | 3 | t5_2fwo | null | null | null |
True | gospelwut | null | Would you say it's on a granular scale or a jump table? | null | 0 | 1315668879 | False | 0 | c2iv0e3 | t3_ka4h8 | null | t1_c2iv0e3 | t1_c2it6mb | null | 1427582641 | 0 | t5_2fwo | null | null | null |
True | skoh | null | Also you can just sort of highlight it and notice that <ol> tags get treated differently when being highlighted. | null | 0 | 1315669190 | False | 0 | c2iv1i0 | t3_kajta | null | t1_c2iv1i0 | t1_c2iszs3 | null | 1427582667 | 2 | t5_2fwo | null | null | null |
True | SuperGrade | null | "a type that represents all types" <-- yes, if you mean C#'s "dynamic", no if you mean "System.Object" or "Object"
I have a simple example that cannot be done in mainstream static languages:
Dynamic function: getListAdjusterRuntime
Returns a function that takes a list and returns a list. At runtime, it
chooses ... | null | 0 | 1315669393 | False | 0 | c2iv28y | t3_k7o9e | null | t1_c2iv28y | t1_c2iujrf | null | 1427582669 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1315669409 | False | 0 | c2iv2bc | t3_kajta | null | t1_c2iv2bc | t1_c2ita1x | null | 1427582670 | 1 | t5_2fwo | null | null | null |
True | andralex | null | The link briefly pointed to August instead of September for some reason; please reload.
We heeded your advice - things are easy to build on Linux, but the most impact was made by migrating to github. The surge of participation since then has been explosive. | null | 0 | 1315669420 | False | 0 | c2iv2ct | t3_kaxjq | null | t1_c2iv2ct | t1_c2iup67 | null | 1427582670 | 9 | t5_2fwo | null | null | null |
True | [deleted] | null | are you an appengine developer? do you have any details or facts you'd like to present that back up your claim? | null | 0 | 1315669506 | False | 0 | c2iv2p5 | t3_kb0z2 | null | t1_c2iv2p5 | t1_c2iuw24 | null | 1427582672 | 0 | t5_2fwo | null | null | null |
True | sreguera | null | Yes, mostly in the military, aerospace and train sectors. | null | 0 | 1315669509 | False | 0 | c2iv2pq | t3_kaxjq | null | t1_c2iv2pq | t1_c2iu0i3 | null | 1427582672 | 10 | t5_2fwo | null | null | null |
True | fjord_piner | null | It is now at 0.6%, which is a... er... 0.20% increase.
Golf clap.
| null | 0 | 1315669676 | False | 0 | c2iv3ci | t3_kaxjq | null | t1_c2iv3ci | t3_kaxjq | null | 1427582679 | 5 | t5_2fwo | null | null | null |
True | varikin | null | Python compiling? WTH are you talking about? | null | 0 | 1315669769 | False | 0 | c2iv3q8 | t3_kaxjq | null | t1_c2iv3q8 | t1_c2iug5d | null | 1427582686 | 9 | t5_2fwo | null | null | null |
True | thechao | null | For those that don't know, [Alexia Massalin](http://en.wikipedia.org/wiki/Alexia_Massalin) also invented peephole superoptimization, in addition to a bunch of other cool stuff. | null | 0 | 1315669918 | False | 0 | c2iv4b5 | t3_kadw2 | null | t1_c2iv4b5 | t1_c2iqxsk | null | 1427582690 | 1 | t5_2fwo | null | null | null |
True | felipec | null | I guessed that, so I googled for tiobe myself and reloaded multiple times, but now it's updated.
Interesting. I'll give another it another chance then :) I love the idea, and also it's great that you have it hosted in github :) | null | 0 | 1315669948 | False | 0 | c2iv4f2 | t3_kaxjq | null | t1_c2iv4f2 | t1_c2iv2ct | null | 1427582693 | 3 | t5_2fwo | null | null | null |
True | testuserpleaseignore | null | You don't get the after image (is that a word? after image?) issue I mentioned? Perhaps there's something off with me peepers... | null | 0 | 1315669997 | False | 0 | c2iv4lx | t3_kajta | null | t1_c2iv4lx | t1_c2itcf8 | null | 1427582698 | 1 | t5_2fwo | null | null | null |
True | OMouse | null | They should use GNU Guile as the basis and then you can have whatever retarded syntax you want on top of it (like JavaScript or Lua or whatever). | null | 0 | 1315670270 | False | 0 | c2iv5lx | t3_kawp5 | null | t1_c2iv5lx | t3_kawp5 | null | 1427582709 | 8 | t5_2fwo | null | null | null |
True | yngwin | null | No, I get that much more with white backgrounds. | null | 0 | 1315670285 | False | 0 | c2iv5nx | t3_kajta | null | t1_c2iv5nx | t1_c2iv4lx | null | 1427582709 | 1 | t5_2fwo | null | null | null |
True | TheSmoke | null | i meant D feels like you develop a Python app but also compiling it. | null | 0 | 1315670385 | False | 0 | c2iv619 | t3_kaxjq | null | t1_c2iv619 | t1_c2iv3q8 | null | 1427582713 | 15 | t5_2fwo | null | null | null |
True | crusoe | null | No its not cool, it sucks, the development environment sucks, and anyone trying to develop server software in JS (such as node.js) should be sterilized and commited for life. Their genes should not be allowed to spread!
JS sucks, JSON sucks, the whole stack is a pile of suck. They could have put a smalltalk in the bro... | null | 0 | 1315670468 | False | 0 | c2iv6cn | t3_kajta | null | t1_c2iv6cn | t3_kajta | null | 1427582715 | 3 | t5_2fwo | null | null | null |
True | hylje | null | Jquery is *a* standard library. Not *the*. | null | 0 | 1315670499 | False | 0 | c2iv6gx | t3_kajta | null | t1_c2iv6gx | t1_c2isjb9 | null | 1427582718 | 1 | t5_2fwo | null | null | null |
True | hylje | null | >it's just workarounds!
*ALL THE WAY DOWN*!! | null | 0 | 1315670563 | False | 0 | c2iv6qa | t3_kajta | null | t1_c2iv6qa | t1_c2iutnz | null | 1427582720 | 3 | t5_2fwo | null | null | null |
True | igouy | null | The question was rhetorical - a reason why JRuby is there. | null | 0 | 1315670612 | False | 0 | c2iv6xv | t3_k9rqy | null | t1_c2iv6xv | t1_c2irgv6 | null | 1427582725 | 1 | t5_2fwo | null | null | null |
True | hiffy | null | Uh, Gates dropped out after a year of undergrad and Torvalds finished a master's.
I'm sure Torvalds has read few papers; Hoare and McCarthy are pretty classic papers. | null | 0 | 1315671023 | False | 0 | c2iv8l1 | t3_kadw2 | null | t1_c2iv8l1 | t1_c2iri1r | null | 1427582742 | 12 | t5_2fwo | null | null | null |
True | dmwit | null | 4\. How do I shot web?
4\. How do I shot web? | null | 0 | 1315671172 | False | 0 | c2iv96x | t3_kajta | null | t1_c2iv96x | t1_c2isz5i | null | 1427582751 | 4 | t5_2fwo | null | null | null |
True | apexdodge | null | the learn python subreddit you have posted is a dead subreddit. r/learnpython is active instead. | null | 0 | 1315671197 | False | 0 | c2iv9at | t3_kaytk | null | t1_c2iv9at | t1_c2itzmp | null | 1427582751 | 2 | t5_2fwo | null | null | null |
True | Leonnears | null | Wonderful info. Thanks for that. I will certainly read them all. | null | 0 | 1315671210 | False | 0 | c2iv9cn | t3_kadw2 | null | t1_c2iv9cn | t3_kadw2 | null | 1427582753 | 0 | t5_2fwo | null | null | null |
True | igouy | null | > Running a JVM from a cold start is pretty pointless ... once the JVM warms up, it leaves Ruby in the dust
The measurements you link to *are* ["Running a JVM from a cold start"](http://shootout.alioth.debian.org/help.php#time) :-)
For tiny tiny programs bytecode loading and dynamic optimization [don't seem to mak... | null | 0 | 1315671299 | False | 0 | c2iv9p6 | t3_ka4h8 | null | t1_c2iv9p6 | t1_c2ipozl | null | 1427582758 | 1 | 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.