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 | [deleted] | null | [deleted] | null | 0 | 1318879744 | False | 0 | c2s8eig | t3_lf038 | null | t1_c2s8eig | t1_c2s7b2c | null | 1427744608 | 1 | t5_2fwo | null | null | null |
True | grauenwolf | null | You can separate your views into separate assemblies and the use prism to load them at run time.
And don't forget, dependency injection can be used at every level. YOu can use DI where ever you would otherwise use the "new" keyword. | null | 0 | 1318879766 | False | 0 | c2s8emk | t3_lf1px | null | t1_c2s8emk | t1_c2s83i4 | null | 1427744610 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | A lot of companies think you'll want to get home to your family and won't work for peanuts. That's all the age discrimination is about. | null | 0 | 1318879818 | False | 0 | c2s8exz | t3_lf038 | null | t1_c2s8exz | t1_c2s6hqp | null | 1427744615 | 27 | t5_2fwo | null | null | null |
True | jimbolla | null | Fair point. I've created apps in the past that have used the [Service Locator](http://martinfowler.com/articles/injection.html#UsingAServiceLocator) pattern similar to how you have described, and I do consider it a valid pattern.
I just prefer dependency injection. Dogmatically, I feel DI is more friendly for projects... | null | 0 | 1318879858 | False | 0 | c2s8f69 | t3_lf1px | null | t1_c2s8f69 | t1_c2s85ao | null | 1427744617 | 4 | t5_2fwo | null | null | null |
True | [deleted] | null | It also doesn't mean he's any worse. I've seen people with some pretty piss poor skills get a in in less interviews. | null | 0 | 1318879892 | False | 0 | c2s8fe1 | t3_lf038 | null | t1_c2s8fe1 | t1_c2s8d3t | null | 1427744621 | 18 | t5_2fwo | null | null | null |
True | grauenwolf | null | If you have "500 other dependencies" you've got some serious architectural problems. Sure the DI container can mask it, perhaps forever, but I would rather look into why there is such a tangled mess in the first place. | null | 0 | 1318879928 | False | 0 | c2s8fmv | t3_lf1px | null | t1_c2s8fmv | t1_c2s89o7 | null | 1427744625 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1318879979 | False | 0 | c2s8fyb | t3_lcoln | null | t1_c2s8fyb | t1_c2rp5s1 | null | 1427744629 | 1 | t5_2fwo | null | null | null |
True | waitwhatthefudge | null | I really want to learn objective c so I can program for iphone or maybe any mobile platform - idk. I have some java experience from taking a class in school so I know the basics like classes, arrays etc. | null | 0 | 1318879981 | False | 0 | c2s8fys | t3_lf038 | null | t1_c2s8fys | t1_c2s8ebe | null | 1427744629 | 1 | t5_2fwo | null | null | null |
True | lukeatron | null | I like to pace around my whiteboard and mumble to myself while jotting down fragments of ideas. If I'm alone I'll have full on conversations with myself. I also personify whatever the problem is so I can insult it and gloat over how I've defeated it. | null | 0 | 1318880041 | False | 0 | c2s8gch | t3_lf038 | null | t1_c2s8gch | t1_c2s7cec | null | 1427744633 | 5 | t5_2fwo | null | null | null |
True | tagattack | null | I think DI, as in the loose coupling of dependencies in code by objects and their types and interfaces (whether or not they have an independent interface contract, they *often* don't need it and when they don't need it shouldn't have it! Yeah you heard me!) and nothing else, is very elegant and one of the more importa... | null | 0 | 1318880128 | False | 0 | c2s8guz | t3_lf1px | null | t1_c2s8guz | t3_lf1px | null | 1427744640 | 8 | t5_2fwo | null | null | null |
True | [deleted] | null | So it doesn't mean he's better nor does it mean he's worse. How do you get "age discrimination"? He could very well suck, you don't know either way - which is what I'm trying to point out, dumbass. | null | 0 | 1318880154 | False | 0 | c2s8h07 | t3_lf038 | null | t1_c2s8h07 | t1_c2s8fe1 | null | 1427744642 | -20 | t5_2fwo | null | null | null |
True | __j_random_hacker | null | I still don't understand your objection I'm afraid. You *could* access the members of `FILE` if you wanted to, do you agree? Theoretically, doing so might allow you to do certain things slightly faster (e.g. by manipulating buffers directly). There is just a widely-held convention that you should not. The conventio... | null | 0 | 1318880267 | False | 0 | c2s8hoo | t3_ld12r | null | t1_c2s8hoo | t1_c2ryq1e | null | 1427744650 | 1 | t5_2fwo | null | null | null |
True | jimbolla | null | Autofac has a lamba registration syntax that is comple-time verifiable. Something like:
builder.Register(c => new MyService(
c.Resolve<IDbConnection>(),
c.Resolve<ISmtpClient>()))
.As<IMyService>());
as a rough example.
| null | 0 | 1318880267 | True | 0 | c2s8hoz | t3_lf1px | null | t1_c2s8hoz | t1_c2s80b4 | null | 1427744650 | 2 | t5_2fwo | null | null | null |
True | grauenwolf | null | I can accept dependency injection as an option for this problem, it is the insistance that it is the *only* option that bothers me. | null | 0 | 1318880315 | False | 0 | c2s8hyx | t3_lf1px | null | t1_c2s8hyx | t1_c2s8f69 | null | 1427744654 | 5 | t5_2fwo | null | null | null |
True | XPreNN | null | Of the 35 people who work there, I'm the only programmer. Most others work in media and education. Appreciate your concern though. | null | 0 | 1318880325 | False | 0 | c2s8i14 | t3_ld22x | null | t1_c2s8i14 | t1_c2s7v3q | null | 1427744655 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1318880343 | False | 0 | c2s8i7f | t3_ld12r | null | t1_c2s8i7f | t1_c2ryq1e | null | 1427744657 | 1 | t5_2fwo | null | null | null |
True | sssssmokey | null | We just need one more text editor...TextMate 2 public alpha before Xmas!
Is it weird that I'm way more excited by TextMate 2 finally being released than anything else happening this year, including christmas and new years with my family? | null | 0 | 1318880358 | False | 0 | c2s8iac | t3_ldgye | null | t1_c2s8iac | t1_c2rxhmk | null | 1427744657 | 1 | t5_2fwo | null | null | null |
True | bloodredsun | null | I always regarded having an interface for a single internal class as an anti-pattern. Thank god for Mockito! | null | 0 | 1318880430 | False | 0 | c2s8in5 | t3_lf1px | null | t1_c2s8in5 | t1_c2s6mrs | null | 1427744663 | 3 | t5_2fwo | null | null | null |
True | encepence | null | This one is great ...
> All you need is a oneliner, it takes less than a minute.
>
> $ sudo sh -c "curl -L cpanmin.us | perl - Mojolicious"
Yeah, go run unknown source perl as root :).
Especially, that name reads somehow mali....mojo...licious ;)
Otherwise, very cool framework. | null | 0 | 1318880441 | False | 0 | c2s8iph | t3_lfcd0 | null | t1_c2s8iph | t3_lfcd0 | null | 1427744664 | 0 | t5_2fwo | null | null | null |
True | charlestheoaf | null | I'm 25 and learning too. I'm starting off learning [Processing](http://processing.org/). It's Java-based and really simple to learn – you can jump right into programming logic, rather than spending a lot of time with technical details like getting graphics to draw to the screen or properly interpreting user input – "it... | null | 0 | 1318880477 | False | 0 | c2s8ixh | t3_lf038 | null | t1_c2s8ixh | t1_c2s8a5p | null | 1427744666 | 6 | t5_2fwo | null | null | null |
True | bloodredsun | null | How does DI prohibit modular design? Nothing is stopping you from separating the parts of your application that you don't want to intermingle. | null | 0 | 1318880549 | False | 0 | c2s8jc0 | t3_lf1px | null | t1_c2s8jc0 | t1_c2s7937 | null | 1427744672 | 5 | t5_2fwo | null | null | null |
True | luisrd | null | Thank you. | null | 0 | 1318880610 | False | 0 | c2s8jow | t3_lfblq | null | t1_c2s8jow | t3_lfblq | null | 1427744676 | 8 | t5_2fwo | null | null | null |
True | grauenwolf | null | What I'm proposing isn't exactly the same as Fowler's Service Locator pattern. You still have to pass around the context object, lest you run into the problems he outlines in the essay you refered to. | null | 0 | 1318880636 | False | 0 | c2s8jvs | t3_lf1px | null | t1_c2s8jvs | t1_c2s8f69 | null | 1427744679 | 3 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1318880656 | False | 0 | c2s8jzk | t3_lf1px | null | t1_c2s8jzk | t1_c2s8f69 | null | 1427744680 | 1 | t5_2fwo | null | null | null |
True | grauenwolf | null | Aside from being unable to see how the specific instance of IDbConnection is selected, how does this differ from a factory method? | null | 0 | 1318880748 | False | 0 | c2s8kkj | t3_lf1px | null | t1_c2s8kkj | t1_c2s8hoz | null | 1427744688 | 1 | t5_2fwo | null | null | null |
True | loganekz | null | There is a reason why "best practices" is quotes, and tried to clarify what I meant but it's either over your head or you disagree.
FWIW, I'd rather have a poorly done modular application than a poorly done monolithic application any day of the week, no matter what the problem was. Maybe you have not worked in a lar... | null | 0 | 1318880780 | False | 0 | c2s8krd | t3_lf1px | null | t1_c2s8krd | t1_c2s8df6 | null | 1427744690 | 2 | t5_2fwo | null | null | null |
True | ensignsteve | null | Hilarious. I never even touched a computer until I was in college. They existed before then, of course, but most people didn't own one yet. | null | 0 | 1318880822 | False | 0 | c2s8l0h | t3_lf038 | null | t1_c2s8l0h | t3_lf038 | null | 1427744694 | 2 | t5_2fwo | null | null | null |
True | meteorMatador | null | It's true that linked lists are hugely important in Haskell-land, but they're supposed to replace loops (according to the "code is data, data is code" principle). Hence, whereas loops are the bread and butter of the C family, lists are the bread and butter of Haskell.
Linked lists are *not* an all-purpose data structu... | null | 0 | 1318880837 | False | 0 | c2s8l38 | t3_lew0f | null | t1_c2s8l38 | t1_c2s82j5 | null | 1427744695 | 12 | t5_2fwo | null | null | null |
True | jimbolla | null | I wasn't implying that DI is the only option. There's never only one option to any programming task. :D | null | 0 | 1318880858 | False | 0 | c2s8l8d | t3_lf1px | null | t1_c2s8l8d | t1_c2s8hyx | null | 1427744697 | 3 | t5_2fwo | null | null | null |
True | waitwhatthefudge | null | I really want to learn objective c so I can program for iphone or maybe any mobile platform - idk. I have some java experience from taking a class in school so I know the basics like classes, arrays etc. | null | 0 | 1318880882 | False | 0 | c2s8ld9 | t3_lf038 | null | t1_c2s8ld9 | t1_c2s8ebe | null | 1427744699 | 2 | t5_2fwo | null | null | null |
True | nascent | null | > and you're a skip and a jump away from C++
And maybe a couple bus and train rides. Plane might be faster. | null | 0 | 1318880882 | False | 0 | c2s8ldc | t3_lf038 | null | t1_c2s8ldc | t1_c2s7r3h | null | 1427744699 | 3 | t5_2fwo | null | null | null |
True | runvnc | null | lol.. that's normal.. anyway I dont know if textmate was rewritten or what.. but at least they kept the same name right.. | null | 0 | 1318880895 | False | 0 | c2s8lev | t3_ldgye | null | t1_c2s8lev | t1_c2s8iac | null | 1427744699 | 1 | t5_2fwo | null | null | null |
True | 00kyle00 | null | Not surprising. Reasoning about performance being hard is pointed out by pretty much every Haskell tutorial i saw. This is just easier in imperative languages because less things need to happen under the hood. | null | 0 | 1318881070 | False | 0 | c2s8mhj | t3_lew0f | null | t1_c2s8mhj | t3_lew0f | null | 1427744712 | 2 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1318881128 | False | 0 | c2s8mu6 | t3_lehrj | null | t1_c2s8mu6 | t1_c2s6bce | null | 1427744717 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | Bad code can be ugly. Good code can be ugly too. Ugliness doesn't tell you which.
An example of ugly code that worked: [Joel on Software, Netscape rewrite](http://www.joelonsoftware.com/articles/fog0000000069.html)
Also, what was an initially beautiful, simple and elegant idea - like regular expressions for search - ... | null | 0 | 1318881140 | False | 0 | c2s8mxd | t3_lehrj | null | t1_c2s8mxd | t1_c2s6bce | null | 1427744718 | 2 | t5_2fwo | null | null | null |
True | grauenwolf | null | Most of my career has been as a maintenance programmer cleaning up other people's messes.
Over the last decade and a half I have found that the single most important thing is the ability to statically determine what the dependency chains are.
| null | 0 | 1318881168 | False | 0 | c2s8n3t | t3_lf1px | null | t1_c2s8n3t | t1_c2s8krd | null | 1427744722 | 1 | t5_2fwo | null | null | null |
True | Smallpaul | null | What's your evidence that "no one noticed"?
| null | 0 | 1318881246 | False | 0 | c2s8nk5 | t3_lfc2u | null | t1_c2s8nk5 | t3_lfc2u | null | 1427744726 | 1 | t5_2fwo | null | null | null |
True | burntsushi | null | > I have some ideas, but I'm too new at programming to implement them.
I don't know what your ideas are, but you may get to the point of being able to implement them (if only to prototype it) more quickly with a higher level programming language. (i.e., Python, Ruby, PHP, Lua, etc...)
I certainly don't discourage ... | null | 0 | 1318881415 | False | 0 | c2s8ol5 | t3_lf038 | null | t1_c2s8ol5 | t1_c2s5io1 | null | 1427744740 | 2 | t5_2fwo | null | null | null |
True | jimbolla | null | I was only showing the lambda syntax of a registration to demo its completimeyness. IDbConnection would probably look something like
builder.Register(c => new SqlConnection(ConfigurationManager.ConnectionStrings["Reddit"]))
.AsImplementedInterfaces();
It's important to observe that the lambda is ev... | null | 0 | 1318881441 | False | 0 | c2s8op6 | t3_lf1px | null | t1_c2s8op6 | t1_c2s8kkj | null | 1427744742 | 1 | t5_2fwo | null | null | null |
True | ErstwhileRockstar | null | "don't want to intermingle" means don't want to inject. | null | 0 | 1318881555 | False | 0 | c2s8pcm | t3_lf1px | null | t1_c2s8pcm | t1_c2s8jc0 | null | 1427744750 | -3 | t5_2fwo | null | null | null |
True | hobbified | null | I'd like that if you don't mind. I maintain a project that builds outside the IDE, and I'm always looking for ways to improve on the build system. | null | 0 | 1318881587 | False | 0 | c2s8pj4 | t3_lf57z | null | t1_c2s8pj4 | t1_c2s5yj7 | null | 1427744753 | 1 | t5_2fwo | null | null | null |
True | grauenwolf | null | Still sounds like a factory method to me. Except with a real factory method you can hit "Go to definition" and see what connection string was being used. | null | 0 | 1318881638 | False | 0 | c2s8psj | t3_lf1px | null | t1_c2s8psj | t1_c2s8op6 | null | 1427744756 | 3 | t5_2fwo | null | null | null |
True | alofons | null | What about the GNU scientific library (GSL)? The changelog has no references to "string"/"strcpy"/"strcat", and all uses of them in the code seem to be correct. Of course I can't check everything though.
Also, those allegedly unsafe functions are still used a lot in C projects, like the Linux kernel. | null | 0 | 1318881681 | False | 0 | c2s8q2n | t3_lchhd | null | t1_c2s8q2n | t1_c2rxlra | null | 1427744760 | 2 | t5_2fwo | null | null | null |
True | alofons | null | If they are, there's a bug in your code, and it's not caused by strcpy/strcat. | null | 0 | 1318881708 | False | 0 | c2s8q87 | t3_lchhd | null | t1_c2s8q87 | t1_c2rz1fh | null | 1427744762 | 0 | t5_2fwo | null | null | null |
True | antonivs | null | Summarizing, when tail calls leak space unnecessarily, that's improper (aka buggy.) So e.g. if the following code runs forever, it's a good sign:
function foo() { return foo(); }
If it crashes with a stack overflow, it means your language implementation is unnecessarily retaining stack frames that aren't needed,... | null | 0 | 1318882030 | False | 0 | c2s8s2d | t3_ld22x | null | t1_c2s8s2d | t1_c2s64i3 | null | 1427744786 | 2 | t5_2fwo | null | null | null |
True | bloodredsun | null | So what do you mean? Can you give me an example? I use DI all the time and regard it as a sensible way of instantiating objects. I'm not a fan of static Factories since I think they break object orientation and prefer Builders but DI seems a reasonable compromise between the freedom to instantiate objects while keeping... | null | 0 | 1318882177 | False | 0 | c2s8sxc | t3_lf1px | null | t1_c2s8sxc | t1_c2s8pcm | null | 1427744797 | 0 | t5_2fwo | null | null | null |
True | syntax | null | > I know the basics like classes
That's going to hold you back in objective C. It does have classes, but objective C is a lot more like Smalltalk, rather than Java.
You will probably get more advantage by looking for the _differences_ between Java and Objective C, rather than the similarities (at least when it co... | null | 0 | 1318882180 | False | 0 | c2s8sxo | t3_lf038 | null | t1_c2s8sxo | t1_c2s8ld9 | null | 1427744797 | 3 | t5_2fwo | null | null | null |
True | jets-fool | null | tl;dr a list of messages containing a bunch of cursing, often in caps, with no actual information regarding the commit. | null | 0 | 1318882337 | False | 0 | c2s8twk | t3_lf898 | null | t1_c2s8twk | t3_lf898 | null | 1427744811 | 7 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1318882375 | False | 0 | c2s8u49 | t3_lf898 | null | t1_c2s8u49 | t3_lf898 | null | 1427744812 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | Well, _that_ kind of ugly is not supposed to be "incredibly hard to reason about", there's just a lot of code.
For example, I'm accustomed to seeing functions 2KLOC+ long, with hundreds upon hundreds of lines converting various message fields according to decades of accumulated business logic rules.
It's ugly, as in,... | null | 0 | 1318882410 | False | 0 | c2s8ubm | t3_lehrj | null | t1_c2s8ubm | t1_c2s753y | null | 1427744816 | 2 | t5_2fwo | null | null | null |
True | unpopular_opinion | null | It depends on how you look at the world. If you are a theoretical computer scientist, there is no need to invent an algorithm with a better O() complexity anymore.
Also, I would say that only a handful of people on the planet are working on AI in any meaningful way.
In data mining there are mostly software advancem... | null | 0 | 1318882717 | False | 0 | c2s8w6c | t3_lf038 | null | t1_c2s8w6c | t1_c2s6jaq | null | 1427744841 | 2 | t5_2fwo | null | null | null |
True | moulin1 | null | I don't remember my first program in standard C. I do remember my last. As usual it gave me a headache. But when you need the speed there is no substitute.
I also learned C from K&R. For anyone who wants to learn C I have one word of advice. Do not use K&R! C is not "easy to learn" and K&R is not "so clear... | null | 0 | 1318882796 | False | 0 | c2s8wn2 | t3_lf7o7 | null | t1_c2s8wn2 | t3_lf7o7 | null | 1427744847 | -2 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1318882814 | False | 0 | c2s8wr8 | t3_lf7o7 | null | t1_c2s8wr8 | t3_lf7o7 | null | 1427744848 | -1 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1318882902 | False | 0 | c2s8xa8 | t3_lf7o7 | null | t1_c2s8xa8 | t3_lf7o7 | null | 1427744854 | -1 | t5_2fwo | null | null | null |
True | elder_george | null | It seems you're looking for /r/gamedev.
This kind of questions is asked often there. You can look at the history. | null | 0 | 1318882925 | False | 0 | c2s8xg2 | t3_lf038 | null | t1_c2s8xg2 | t1_c2s7wq4 | null | 1427744857 | 3 | t5_2fwo | null | null | null |
True | Gudahtt | null | Passion and ambition aren't mutually exclusive. If he's going to devote a lot of his time to this, it has to make sense career-wise as well as be something he enjoys doing | null | 0 | 1318882928 | False | 0 | c2s8xh2 | t3_lf038 | null | t1_c2s8xh2 | t1_c2s8ed4 | null | 1427744857 | 3 | t5_2fwo | null | null | null |
True | PreservedKillick | null | This same sentiment is true for existing programmers, which is how I initially read the title. It's never too late to learn how to code *correctly*. I try to revisit the basics on a very regular basis. You missed some stuff on the first 3-12 passes too. Honest.
We all know programming is learning and problem so... | null | 0 | 1318883005 | False | 0 | c2s8xtl | t3_lf038 | null | t1_c2s8xtl | t3_lf038 | null | 1427744861 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | *Come, my friends, it is not too late to seek a newer world.* | null | 0 | 1318883029 | False | 0 | c2s8xy5 | t3_lf038 | null | t1_c2s8xy5 | t3_lf038 | null | 1427744864 | 1 | t5_2fwo | null | null | null |
True | acecool | null | >I didn't start learning how to code until I was about 25
25 is not old, I started at 36, I didnt realize then it was a mistake to teach myself programming at that age (as opposed to taking classes) as learning programming on your own requires a lot of mental energy to experiment with all the possibilities. When yo... | null | 0 | 1318883073 | True | 0 | c2s8y6t | t3_lf038 | null | t1_c2s8y6t | t3_lf038 | null | 1427744866 | 5 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1318883222 | False | 0 | c2s8z16 | t3_lf1px | null | t1_c2s8z16 | t1_c2s661q | null | 1427744879 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | Could you elaborate on when you use DI. I've used a couple frameworks on a few projects and have found it to be more cumbersome than the alternative construction, etc. code patterns. In other words, I still haven't found a great use for DI and would like to hear a personalized explanation of its benefits. If you please... | null | 0 | 1318883239 | False | 0 | c2s8z4j | t3_lf1px | null | t1_c2s8z4j | t1_c2s661q | null | 1427744878 | 2 | t5_2fwo | null | null | null |
True | unpopular_opinion | null | Can I subscribe to your newsletter?
More seriously, I think CS education is much more accessible than EE is, but perhaps I am biased.
What sort of stops me from doing anything with EE is that you have to wait a few days every single time you decide you need a part.
On a computer, if you need a library, you have it... | null | 0 | 1318883326 | False | 0 | c2s8zo0 | t3_lf038 | null | t1_c2s8zo0 | t1_c2s6oka | null | 1427744886 | 1 | t5_2fwo | null | null | null |
True | kikaerter | null | Well, Scala's is also Turing-complete, though in practice you only run into it if you try _really_ hard. | null | 0 | 1318883344 | False | 0 | c2s8zro | t3_le3tg | null | t1_c2s8zro | t1_c2s0ccu | null | 1427744888 | 2 | t5_2fwo | null | null | null |
True | kikaerter | null | In fact, Agda's type system is not Turing-complete. This would break it as a logic. Powerful isn't _always_ better! | null | 0 | 1318883413 | False | 0 | c2s905m | t3_le3tg | null | t1_c2s905m | t1_c2s5827 | null | 1427744895 | 1 | t5_2fwo | null | null | null |
True | kikaerter | null | In fact, Agda's type system is not Turing-complete. This would break it as a logic. Powerful isn't _always_ better! | null | 0 | 1318883422 | False | 0 | c2s9083 | t3_le3tg | null | t1_c2s9083 | t1_c2s5827 | null | 1427744894 | 0 | t5_2fwo | null | null | null |
True | trtry | null | I am learning HTML, it's very difficult, but I will succeed. | null | 0 | 1318883485 | False | 0 | c2s90n9 | t3_lf038 | null | t1_c2s90n9 | t3_lf038 | null | 1427744898 | 1 | t5_2fwo | null | null | null |
True | Zenith77 | null | The size and importance of your API determines how and how often you get to version your API. | null | 0 | 1318883489 | False | 0 | c2s90oa | t3_ld22x | null | t1_c2s90oa | t1_c2s60yl | null | 1427744898 | 1 | t5_2fwo | null | null | null |
True | lostraven | null | Ah, thanks for pointing out that subreddit. I'm on it! | null | 0 | 1318883549 | False | 0 | c2s910x | t3_lf038 | null | t1_c2s910x | t1_c2s8xg2 | null | 1427744903 | 2 | t5_2fwo | null | null | null |
True | WalterGR | null | When did the rules in the sidebar change? Was there a discussion about it? | null | 0 | 1318883784 | False | 0 | c2s92dw | t3_lf898 | null | t1_c2s92dw | t3_lf898 | null | 1427744921 | -1 | t5_2fwo | null | null | null |
True | flyingfox | null | [Crobots](http://en.wikipedia.org/wiki/Crobots). A BBS in my home town was holding a competition and I decided to give it a shot. I'd programmed in BASIC, Pascal and (several flavors of) assembly but never C. I downloaded a whole pile of example code and took a stab.
Sadly, my randomly-running-and-sniping robot wip... | null | 0 | 1318883821 | False | 0 | c2s92ls | t3_lf7o7 | null | t1_c2s92ls | t3_lf7o7 | null | 1427744924 | 3 | t5_2fwo | null | null | null |
True | hasavagina | null | I am 27 and just subscribed to /r/programming and /r/learnprogramming. I've only taken one real CS course, focusing on HTML/CSS and other than that, I have nothing. I really hope this stands true and it's not too late for me. | null | 0 | 1318883922 | False | 0 | c2s936g | t3_lf038 | null | t1_c2s936g | t3_lf038 | null | 1427744932 | 2 | t5_2fwo | null | null | null |
True | stevia | null | This is not [real-time](http://en.wikipedia.org/wiki/Real-time_computing). | null | 0 | 1318883961 | False | 0 | c2s93ew | t3_lfcd0 | null | t1_c2s93ew | t3_lfcd0 | null | 1427744936 | 4 | t5_2fwo | null | null | null |
True | 74hc08 | null | It looks really nice. Unfortunately, it doesn't seem to be available to the public :( | null | 0 | 1318883968 | False | 0 | c2s93gj | t3_l57iw | null | t1_c2s93gj | t1_c2q0pyv | null | 1427744936 | 1 | t5_2fwo | null | null | null |
True | zby | null | One additional benefit - Concentration and Flow
Imagine that you need to do some small home improvement or maintenance work and you have all the needed tools, in good quality, clean and well maintained with all cutting blades sharpened and no missing screwdriver heads. A nice feeling - isn't it? When you start work li... | null | 0 | 1318883985 | True | 0 | c2s93mo | t3_lf1px | null | t1_c2s93mo | t3_lf1px | null | 1427744938 | 0 | t5_2fwo | null | null | null |
True | setuid_w00t | null | After reading the devs post, it sounds like he was assigned *only* maintenance work. If there's work that nobody wants to do, then it should be shared equally and not dumped on one person.
At the very least, this guy needs to notify his manager that he doesn't like what he has been assigned so that the manager at lea... | null | 0 | 1318884037 | False | 0 | c2s93um | t3_lc36g | null | t1_c2s93um | t1_c2rpatw | null | 1427744941 | 1 | t5_2fwo | null | null | null |
True | oppan | null | Age discrimination is so universal it can be safely assumed that it was at least a factor. | null | 0 | 1318884110 | False | 0 | c2s9478 | t3_lf038 | null | t1_c2s9478 | t1_c2s8h07 | null | 1427744945 | 13 | t5_2fwo | null | null | null |
True | LudoA | null | Anyone know more details on the "new features" they mention? | null | 0 | 1318884186 | False | 0 | c2s94mm | t3_lff0t | null | t1_c2s94mm | t3_lff0t | null | 1427744952 | 1 | t5_2fwo | null | null | null |
True | s73v3r | null | >The essence of modular design is that you separate dependencies, not to 'inject' them.
And yet, that dependency still has to make it's way over to where you need it somehow. | null | 0 | 1318884226 | False | 0 | c2s94tg | t3_lf1px | null | t1_c2s94tg | t1_c2s7937 | null | 1427744953 | 2 | t5_2fwo | null | null | null |
True | [deleted] | null | [deleted] | null | 0 | 1318884251 | False | 0 | c2s94x2 | t3_lf57z | null | t1_c2s94x2 | t1_c2s7ql7 | null | 1427744954 | 3 | t5_2fwo | null | null | null |
True | Samus_ | null | well, it's not *necessary* to have js for logins, people use it because it's 2.0 but nothing else. in fact, if you go to https://ssl.reddit.com/login you can access even without js (logout first).
about the second point, yes it could happen anywhere so yes, it's a bit of snakeoil but some protection is always better t... | null | 0 | 1318884334 | False | 0 | c2s95dd | t3_ldz7c | null | t1_c2s95dd | t1_c2s7nzr | null | 1427744960 | 2 | t5_2fwo | null | null | null |
True | bratty_fly | null | The web site is not responding | null | 0 | 1318884376 | False | 0 | c2s95n4 | t3_lfcpb | null | t1_c2s95n4 | t3_lfcpb | null | 1427744964 | 1 | t5_2fwo | null | null | null |
True | tibbe | null | This is not the case in this example though; using a linked list of linked lists of pointers to `Bool` is a terribly inefficient way to represent an image in any language. | null | 0 | 1318884438 | True | 0 | c2s95zj | t3_lew0f | null | t1_c2s95zj | t1_c2s8mhj | null | 1427744968 | 4 | t5_2fwo | null | null | null |
True | [deleted] | null | > An example of ugly code that worked: Joel on Software, Netscape rewrite
I agree with Joel fervently, religiously almost, but his point is a tad different: he says that rewriting code from scratch is almost always a very bad idea, because at least some part of the _perceived_ ugliness (he calls it "hairyness") cor... | null | 0 | 1318884515 | False | 0 | c2s96ip | t3_lehrj | null | t1_c2s96ip | t1_c2s8mxd | null | 1427744975 | 2 | t5_2fwo | null | null | null |
True | sssssmokey | null | I'm pretty sure it's mostly that Windows is a PITA. | null | 0 | 1318884647 | False | 0 | c2s978u | t3_ldgye | null | t1_c2s978u | t3_ldgye | null | 1427744986 | 1 | t5_2fwo | null | null | null |
True | loganekz | null | Why can't you determine what the dependency chain is?
Is there that "auto magic" type configuration, if so I think I can see more where you coming from. In any case depending on the specific framework you are talking about, there might be tooling available (command line tool/IDE support) to help you determine the ... | null | 0 | 1318884992 | False | 0 | c2s995n | t3_lf1px | null | t1_c2s995n | t1_c2s8n3t | null | 1427745010 | 2 | t5_2fwo | null | null | null |
True | Benutzername | null | > You could access the members of FILE if you wanted to, do you agree?
Not portably. The FILE pointer is opaque, the standard doesn't say how exactly the FILE struct should be defined.
From the standard:
> The types declared are [...]
> FILE
>which is an object type capable of recording all the informa... | null | 0 | 1318885009 | False | 0 | c2s9990 | t3_ld12r | null | t1_c2s9990 | t1_c2s8hoo | null | 1427745011 | 1 | t5_2fwo | null | null | null |
True | jsedlacek | null | http://visualvm.java.net/relnotes.html | null | 0 | 1318885226 | False | 0 | c2s9age | t3_lff0t | null | t1_c2s9age | t1_c2s94mm | null | 1427745027 | 2 | t5_2fwo | null | null | null |
True | hobbified | null | Of course it is. But there are fudge-factors in there (or "tuneable parameters" if you prefer), and the ideal values of the fudge-factors depend on the ratio between bandwidth and latency. The ratio between bandwidth and latency has changed an awful lot over the years. The fudge-factors, not so much. | null | 0 | 1318885330 | False | 0 | c2s9b1m | t3_ldjwf | null | t1_c2s9b1m | t1_c2rvylv | null | 1427745035 | 2 | t5_2fwo | null | null | null |
True | kamatsu | null | Represent the image as a linked list of linked lists in D and you'll see a similar performance drop. | null | 0 | 1318885378 | False | 0 | c2s9bap | t3_lew0f | null | t1_c2s9bap | t3_lew0f | null | 1427745038 | 7 | t5_2fwo | null | null | null |
True | MissingSix | null | I've been using it for a bit over a month now and am really enjoying it. mostly doing C++/PHP/HTML work, and some Java as well. I'm still using IDE's to manage my projects and all that jazz though, one step at a time. | null | 0 | 1318885480 | False | 0 | c2s9bud | t3_lfblq | null | t1_c2s9bud | t1_c2s7g0h | null | 1427745046 | 3 | t5_2fwo | null | null | null |
True | sw17ch | null | I chose Rake primarily because Make has not aged well.
Beyond this, I find Ruby to be a very pleasant and user friendly language.
While in this specific case I haven't done anything (that I know of) that Make can't handle, in other projects I've valued the full expressiveness of Ruby in my build script. It's conveni... | null | 0 | 1318885745 | False | 0 | c2s9ddy | t3_lf57z | null | t1_c2s9ddy | t1_c2s80po | null | 1427745066 | 0 | t5_2fwo | null | null | null |
True | sw17ch | null | No. I haven't attempted to link .pde files. Right now, the scaffold assumes pure C. Modifications to support C++ wouldn't be hard. | null | 0 | 1318885831 | False | 0 | c2s9dtd | t3_lf57z | null | t1_c2s9dtd | t1_c2s7odl | null | 1427745072 | 2 | t5_2fwo | null | null | null |
True | poo_22 | null | I've read some tutorials and most just brush over this kind of stuff. In practice its crucial though and because i didn't know this i kept going back to things like gedit. Now if someone can help me solve a common problem i face - in my normal workflow i do the following a lot: scroll up to some function, highlight a v... | null | 0 | 1318885951 | False | 0 | c2s9egu | t3_lfblq | null | t1_c2s9egu | t3_lfblq | null | 1427745080 | 2 | t5_2fwo | null | null | null |
True | awj | null | Wow, people are still using OAuth? I remember it having quite a bit of buzz, then Twitter forced app developers to use it right before they released their own client that *didn't* have that hideous "bounce out to a website for authentication" behavior. That seemed to be about the end of anyone seriously being intereste... | null | 0 | 1318886030 | False | 0 | c2s9ewf | t3_lfhyw | null | t1_c2s9ewf | t3_lfhyw | null | 1427745086 | 2 | t5_2fwo | null | null | null |
True | Autoplectic | null | not all code is for analysis. my research concerns properties of minimal automata, so the code is the experiment. | null | 0 | 1318886113 | False | 0 | c2s9fau | t3_lcjsa | null | t1_c2s9fau | t1_c2rutwo | null | 1427745090 | 1 | t5_2fwo | null | null | null |
True | wickedang3l | null | The problem now is the opposite.. there is so much out there that its hard to know where to start. There are so many resources, languages, and common practices that it becomes overwhelming to start. | null | 0 | 1318886128 | False | 0 | c2s9fe9 | t3_lf038 | null | t1_c2s9fe9 | t1_c2s5buk | null | 1427745092 | 2 | t5_2fwo | null | null | null |
True | Autoplectic | null | not all code is for analysis. my research concerns properties of minimal automata, so the code is the experiment. | null | 0 | 1318886129 | False | 0 | c2s9fek | t3_lcjsa | null | t1_c2s9fek | t1_c2rutwo | null | 1427745092 | 1 | t5_2fwo | null | null | null |
True | [deleted] | null | Go check out the Flowplayer code sometime... | null | 0 | 1318886361 | False | 0 | c2s9gng | t3_lf1px | null | t1_c2s9gng | t1_c2s7qpu | null | 1427745108 | 1 | t5_2fwo | null | null | null |
True | Deinumite | null | > dumbass
Ah the use of expletives, 99% of the time warrants a down vote. Maybe I'm just getting old. | null | 0 | 1318886406 | False | 0 | c2s9gwz | t3_lf038 | null | t1_c2s9gwz | t1_c2s8h07 | null | 1427745112 | 3 | t5_2fwo | null | null | null |
True | jared84lsu | null | That sounds suspiciously like, "it's not my job to learn the rules of the business, I'll just write this business rules engine that can handle anything."
Those people then wonder why technically crappy code that actually solves the problem is used over their theoretically correct but over-architect-ed solution that do... | null | 0 | 1318886412 | False | 0 | c2s9gy2 | t3_lf1px | null | t1_c2s9gy2 | t1_c2s7mjc | null | 1427745112 | 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.