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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
False | combinatorylogic | t2_iab4d | > Unit testing makes it hard to make breaking changes to units
Which is exactly what makes them rigid.
You don't normally want such a low scale granularity.
In most of the cases, unit testing is just a poor men's substitute for a decent type system, asserts and contracts. | null | 0 | 1544546305 | False | 0 | ebkkeul | t3_a56m8z | null | null | t1_ebki69o | /r/programming/comments/a56m8z/unit_testing_antipatterns_full_list/ebkkeul/ | 1547476475 | 5 | t5_2fwo | r/programming | public | null |
False | pkulak | t2_1xjoq | Why does this stuff keep showing up and staying for days? | null | 0 | 1545800652 | False | 0 | eckhmgx | t3_a9bqbi | null | null | t1_ecifpl4 | /r/programming/comments/a9bqbi/how_to_reset_root_password_in_mysql_8/eckhmgx/ | 1548081631 | 1 | t5_2fwo | r/programming | public | null |
False | Darkshadows9776 | t2_9txdm | A vulnerability is a vulnerability regardless of exposure, it would have just taken a lot longer. It’s why security through obfuscation is tenuous.
Plus, social engineering and theft is hacking. | null | 0 | 1544546357 | False | 0 | ebkkh7d | t3_a55xbm | null | null | t1_ebkinmx | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebkkh7d/ | 1547476504 | 29 | t5_2fwo | r/programming | public | null |
False | Missing_Minus | t2_m9m6q | VLC media player's icon during christmas season has a red santa cap on it. I believe the downvotes might be due to it obviously being just a reference to the current time of year unlike the others. | null | 0 | 1545800918 | False | 0 | eckhur2 | t3_a9hs3u | null | null | t1_eckg5a5 | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/eckhur2/ | 1548081733 | 50 | t5_2fwo | r/programming | public | null |
False | rat9988 | t2_ix73w | They are the same crap that pay for the content actually. | null | 0 | 1544546358 | False | 0 | ebkkh97 | t3_a55xbm | null | null | t1_ebkhyey | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebkkh97/ | 1547476504 | 31 | t5_2fwo | r/programming | public | null |
False | [deleted] | None | [deleted] | null | 1 | 1545801148 | 1547144027 | 0 | ecki1n2 | t3_a9hs3u | null | null | t1_eckg5a5 | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/ecki1n2/ | 1548081818 | 3 | t5_2fwo | r/programming | public | null |
False | phillipcarter2 | t2_gxfjqq4 | Unless you're getting into low-level work, the fact that C maps _okay-ish_ to how things actually work isn't particularly useful. Even if performance matters for your work, it's often in the context of an abstraction you sit on, such as making sure the GC underneath you doesn't go bonkers. Even routine development in C-style languages like Java or C# is not normally concerned with how things map to hardware. | null | 0 | 1544546369 | False | 0 | ebkkhr9 | t3_a54748 | null | null | t1_ebjz4zw | /r/programming/comments/a54748/top_5_reasons_to_learn_python_as_your_first/ebkkhr9/ | 1547476511 | 3 | t5_2fwo | r/programming | public | null |
False | sweetmartabak | t2_xqzdb | Not a complete rewrite, but replacing every input field and button and card throughout the site would involve touching every page/component and updating all the tests that go with them. Pardon the hyperbole, but it's still a lot of work for me take on, on top of my daily tasks.
The maintainers proved themselves to be dishonest and lack the maturity to maintain an "enterprise-class" open source framework. The fact that they supposedly have a code review process in place and everyone who reviewed still thought it was a good idea is telling. | null | 0 | 1545801168 | False | 0 | ecki285 | t3_a9hs3u | null | null | t1_eckesnb | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/ecki285/ | 1548081825 | 21 | t5_2fwo | r/programming | public | null |
False | pjmlp | t2_755w5 | What wasn't a good plan was screwing Sun and helping to its downfall, creating a J++ scenario for Java library writers.
Still Dart without Flutter was zero market value. | null | 0 | 1544546454 | False | 0 | ebkklpl | t3_a55qhp | null | null | t1_ebkj9ks | /r/programming/comments/a55qhp/the_dart_language_considers_adding_sound/ebkklpl/ | 1547476559 | 5 | t5_2fwo | r/programming | public | null |
False | edwbuck | t2_hwo13 | A really big lookup table!
But not really. Prolog works well because it finds a solution by eliminating large portions of the would-be lookup table. For example, the same way that one can write a class that always generates "the next incrementing integer", without holding the realm of real numbers in RAM, is the same way that Prolog searches for solutions. It only needs the first one, and halts if it satisfies the problem. If you need an alternative solution, you prompt it to continue to the next one.
A really nice side-effect of the way Prolog evaluates the solutions is avoiding the building of much larger (than the program) lookup tables, and having the "solutions search approach" (effectively the Prolog call stack) explain why the solution is true. That explanation is sometimes more important than the finding of the solution alone.
Consider Prolog a depth first search of the problem space, looking for a solution, and you're pretty close to understanding it well. Depending on the problem, such a search can be tiny compared to a fully populated lookup table. | null | 0 | 1545801233 | False | 0 | ecki450 | t3_a8fs67 | null | null | t1_echt65q | /r/programming/comments/a8fs67/solving_murder_with_prolog/ecki450/ | 1548081849 | 2 | t5_2fwo | r/programming | public | null |
False | poloppoyop | t2_9a5a3 | > user-defined queries
Not CRUD anymore.
> keeping history
So like Creating and Reading versions of something? That's pure CRUD. Just instead of considering simple entities you consider their versions as your entry points. | null | 0 | 1544546480 | False | 0 | ebkkmv5 | t3_a4n8jv | null | null | t1_ebk73cc | /r/programming/comments/a4n8jv/why_software_developers_are_paid_5x_more_in_the/ebkkmv5/ | 1547476573 | 1 | t5_2fwo | r/programming | public | null |
False | insolent_imp | t2_5erwc | People writing software can have all their humour and fun without interfering with the software they create. They dont have to force their humour on the user. | null | 0 | 1545801405 | False | 0 | ecki98l | t3_a9hs3u | null | null | t1_eckcpro | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/ecki98l/ | 1548081912 | 73 | t5_2fwo | r/programming | public | null |
False | Shadowvines | t2_fw1r9 | We think there would be some sovereignty issues at play that may prevent that. If the Country that the Australian citizen resides in wanted to leverage this law for an investigation though I am pretty confident they could do this. They could proceed with extradition if you didn't comply or told anyone. | null | 0 | 1544546487 | False | 0 | ebkkn8c | t3_a57th7 | null | null | t1_ebkk5s3 | /r/programming/comments/a57th7/australias_new_encryption_laws_ensure_companies/ebkkn8c/ | 1547476578 | 31 | t5_2fwo | r/programming | public | null |
False | edwbuck | t2_hwo13 | I'm not sure how pasting in the abstract from 2006 answers the statement about oorza wanting to see the experiments run with modern garbage collectors.
Back in 2006, the state of automatic garbage collection wasn't nearly as good as it is now.
Research papers are not like the Bible, they are only good until someone comes up with a better hypothesis, or the data changes. In this case, the data changed. We have garbage collectors in production that were never part of this paper's investigation set.
To illustrate my point, [here's a research paper from 2017](https://people.cs.umass.edu/~emery/pubs/04-17.pdf). Unless I'm reading it wrong, automatic garbage collection is well under 10% additional time for explicit memory management, and has an acceptable RAM overhead. | null | 0 | 1545801713 | 1545802740 | 0 | eckii2e | t3_a9j2qk | null | null | t1_ecjqxvw | /r/programming/comments/a9j2qk/all_of_the_garbage_collectors_we_examine_here/eckii2e/ | 1548082021 | 5 | t5_2fwo | r/programming | public | null |
False | Deaod | t2_6gxru | Oh, cool. Lets see how much it complains about ...
~3500 complaints. Well then. | null | 0 | 1544546530 | False | 0 | ebkkp7b | t3_a56v5u | null | null | t3_a56v5u | /r/programming/comments/a56v5u/pvsstudio_support_of_misra_c_and_misra_c_coding/ebkkp7b/ | 1547476602 | 12 | t5_2fwo | r/programming | public | null |
False | rredline | t2_jkc41 | I am the one person on my development team that rants about JS. It is the shittiest, most problem-prone language I have ever worked with.
Edit: LOL at all the down votes. Mistyped a variable name? No problem! We’ll just treat it as a new global for you. Let’s trade in those helpful runtime errors for shitty logical errors that take longer to discover and to debug.
Edit: Apparently lots of people like fragile code. | null | 0 | 1545801785 | 1546130224 | 0 | eckik5q | t3_a9hs3u | null | null | t1_eckgcug | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/eckik5q/ | 1548082046 | -10 | t5_2fwo | r/programming | public | null |
False | raz_c | t2_290t4gr6 | Thank you for your answer!
As in the square and rectangle example, the same holds for the Bike, ClassicBike, MountainBike examples. If you have a hierarchy of objects and your subclasses don't add any new functionality there is not much use of extending a class now is there (except if the base class is an abstract class, but I prefer to use interfaces in that situation)? The examples provided are presented as wrong examples (a way of breaking LSP). The "fix" part was meant to say that you can have a different Bike definition that doesn't supply handbrake methods, just steer() and pedal(). In this situation both MountainBike and ClassicBike can be treated like a Bike with no special treatment.
I presented a possible solution in the Interface Segregation part but I use interfaces instead of inheritance.
There is also the classic "if it looks like a duck, quacks like a duck but needs batteries - you probably have the wrong abstraction" which proves the point that you're trying to make with the Square example but also the Bike examples. Again, the example is meant to show a way of breaking LSP, but it seems that the "fix" part wasn't properly explained and can be easily misunderstood. | null | 0 | 1544546533 | False | 0 | ebkkpbs | t3_a56am1 | null | null | t1_ebkj58g | /r/programming/comments/a56am1/whats_the_deal_with_the_solid_principles_part_2/ebkkpbs/ | 1547476604 | 6 | t5_2fwo | r/programming | public | null |
False | MrTastix | t2_9ysnz | The thing about the Facebook example is that it's not about deliberate malice, it's about deliberate negligence.
Trying to pass responsibility off because they're not being deliberately evil doesn't matter when they're still guilty of gross negligence, caused directly by wanting profits.
The information breaches didn't happen because they just forgot something, they happened because they store all that information for the implicit purpose of selling it off and didn't do their job at properly securing it, and ignorance is really no better than malice when the result for the average person is the same. | null | 0 | 1545801802 | False | 0 | eckikn2 | t3_a719k6 | null | null | t3_a719k6 | /r/programming/comments/a719k6/the_consequences_of_your_code_tom_scott/eckikn2/ | 1548082052 | 1 | t5_2fwo | r/programming | public | null |
False | pjmlp | t2_755w5 | I have had Flutter like experiences in Common Lisp, Eiffel, Smalltalk, Oberon, Delphi.
| null | 0 | 1544546536 | False | 0 | ebkkpgs | t3_a55qhp | null | null | t1_ebkipdu | /r/programming/comments/a55qhp/the_dart_language_considers_adding_sound/ebkkpgs/ | 1547476606 | 1 | t5_2fwo | r/programming | public | null |
False | diggr-roguelike2 | t2_13327ggz | > which data are to be shared beforehand, which tasks can be executed serially in the same thread, etc....
This stuff should be an intimate part of your code, not something you outsource to a third-party library and hope the library gets it right.
The third-party library approach might work for some extremely niche code (numerical methods and stuff like that), but for 90% of normal business logic code it will never work right.
| null | 0 | 1545801810 | False | 0 | eckikvp | t3_a961pk | null | null | t1_ecig8l1 | /r/programming/comments/a961pk/another_first_for_my_c_games_multithreading/eckikvp/ | 1548082055 | 1 | t5_2fwo | r/programming | public | null |
False | purtip31 | t2_37l94 | I think we’re disconnected on definitions. When I said web server above, I’m not talking about a reverse proxy or something, but the application that gets http requests and produces responses. That distinction only makes sense in some contexts.
If you’re specifically talking about something only responsible for sending and receiving data, I agree, that’s never been a bottleneck for me. | null | 0 | 1544546595 | False | 0 | ebkks9d | t3_a4cebi | null | null | t1_ebkhku0 | /r/programming/comments/a4cebi/rocket_v04_typed_uris_database_support_revamped/ebkks9d/ | 1547476640 | 1 | t5_2fwo | r/programming | public | null |
False | [deleted] | None | [deleted] | null | 0 | 1545801904 | 1547144027 | 0 | eckinhr | t3_a9hs3u | null | null | t1_ecjwt6f | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/eckinhr/ | 1548082087 | 25 | t5_2fwo | r/programming | public | null |
False | coolcosmos | t2_4l9r7 | It's crazy that in 2018 static pages are considered something to marvel at. It's what we started with. | null | 0 | 1544546609 | False | 0 | ebkksxq | t3_a55xbm | null | null | t1_ebk6z0y | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebkksxq/ | 1547476649 | 144 | t5_2fwo | r/programming | public | null |
False | MrTastix | t2_9ysnz | How long is the long-term to you? Because there's dozens of people who have lost their jobs already for daring to speak up, and they don't give a shit about the long-term impact that might have when they're already out of a job.
These "punishments" that the big corporations will "eventually" feel aren't coming, and if they do they get superseded by other companies who will eventually become exactly the same. | null | 0 | 1545801979 | False | 0 | eckipom | t3_a719k6 | null | null | t1_ec2opb8 | /r/programming/comments/a719k6/the_consequences_of_your_code_tom_scott/eckipom/ | 1548082114 | 2 | t5_2fwo | r/programming | public | null |
False | Wyglif | t2_4zlby | Or get a cheap non-chromebook and put Linux on it to reduce cloud costs | null | 0 | 1544546643 | False | 0 | ebkkui4 | t3_a4m3gk | null | null | t3_a4m3gk | /r/programming/comments/a4m3gk/guide_to_remote_development_on_a_chromebook/ebkkui4/ | 1547476668 | 1 | t5_2fwo | r/programming | public | null |
False | eyal0 | t2_32z87 | I never thought I was infected, but I'm Jewish and I didn't care for the graphic. I'll keep my religion out of my code and everyone else do the same, thanks. | null | 1 | 1545801988 | False | 0 | eckipy6 | t3_a9hs3u | null | null | t1_eck55f0 | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/eckipy6/ | 1548082118 | -9 | t5_2fwo | r/programming | public | null |
False | Atulin | t2_jfbtb | Important: Atlassian is based in Australia. Data you keep on Jira and other Atlassian platforms is **not secure** anymore. | null | 0 | 1544546670 | False | 0 | ebkkvsc | t3_a57th7 | null | null | t3_a57th7 | /r/programming/comments/a57th7/australias_new_encryption_laws_ensure_companies/ebkkvsc/ | 1547476684 | 242 | t5_2fwo | r/programming | public | null |
False | far_pointer_x | t2_1r49p4jk | Most of the up and coming hackers are vim users and quickly force themselves to learn it because its "coolness factor". So there are many. | null | 0 | 1545802039 | False | 0 | eckircl | t3_a9fg8h | null | null | t1_ecjll52 | /r/programming/comments/a9fg8h/spacevim_release_v100/eckircl/ | 1548082135 | 0 | t5_2fwo | r/programming | public | null |
False | xbt_ | t2_dsigc | You sure? People would install mod chips back in the day to play cdr copies and imports (if disk swapping didn’t work or didn’t want to deal with that hassle.). There was definitely DRM on the original PlayStation. https://youtu.be/XUwSOfQ1D3c | null | 0 | 1544546721 | False | 0 | ebkky79 | t3_a55xbm | null | null | t1_ebkjf94 | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebkky79/ | 1547476713 | 16 | t5_2fwo | r/programming | public | null |
False | jesuscrysis | t2_254ib0qk | Beats me. I just stated a fact.
I’ve been using VLC since forever now. This feature was introduced a few releases in. I’m thinking 2003-ish, maybe.
I remember busting open a resource editor immediately to inspect the contents of the executable to verify that the icon was legit. | null | 0 | 1545802048 | False | 0 | eckirn4 | t3_a9hs3u | null | null | t1_eckg5a5 | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/eckirn4/ | 1548082139 | 12 | t5_2fwo | r/programming | public | null |
False | benryves | t2_cpcn8 | I've not encountered a revision 2 console in the wild myself either but from what I understand the affected machines won't boot audio/data format discs (an audio session followed by a data session) but will boot discs in the data/data format. | null | 0 | 1544546767 | False | 0 | ebkl0bp | t3_a55xbm | null | null | t1_ebk86au | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebkl0bp/ | 1547476739 | 7 | t5_2fwo | r/programming | public | null |
False | jesuscrysis | t2_254ib0qk | It’s quite easy to explain it away these days because everyone is familiar with it. But when it started for the first time, Internet worms and fly-by attacks were ridiculously common.
Also occasion related infections such as the Chernobyl anniversary virus were very popular. Expecting a Christmas worm wasn’t complete out of line. | null | 0 | 1545802256 | False | 0 | eckixkx | t3_a9hs3u | null | null | t1_eckhur2 | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/eckixkx/ | 1548082242 | 21 | t5_2fwo | r/programming | public | null |
False | bartturner | t2_dyc5p | The value comes from things in flutter you do not necessarily get elsewhere. Like BLoC.
https://www.didierboelens.com/2018/08/reactive-programming---streams---bloc/
There are a number of patterns that are relatively unique.
https://medium.com/flutterpub/architecting-your-flutter-project-bd04e144a8f1
Architect your Flutter project using BLOC pattern – FlutterPub ...
Plus there is getting a gig. Companies tend to want you to have done it. | null | 0 | 1544546984 | False | 0 | ebklamy | t3_a55qhp | null | null | t1_ebkkpgs | /r/programming/comments/a55qhp/the_dart_language_considers_adding_sound/ebklamy/ | 1547476896 | 2 | t5_2fwo | r/programming | public | null |
False | gnus-migrate | t2_nvuy8 | If you've been writing web apps for years and have experience in different on different projects, you should be able to give a ballpark estimate for building a web app.
It's not a commitment, you shouldn't be held to it but you should be able to give it within 20-30% of the actual completion time. | null | 0 | 1545802326 | False | 0 | eckizk9 | t3_a94nbm | null | null | t1_ecgfq71 | /r/programming/comments/a94nbm/how_to_estimate_time_for_a_projecttask_accurately/eckizk9/ | 1548082266 | 2 | t5_2fwo | r/programming | public | null |
False | ZeldaFanBoi1988 | t2_nna51 | do i need to hack it? /s | null | 0 | 1544547058 | False | 0 | ebkle4q | t3_a55xbm | null | null | t1_ebk7a2q | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebkle4q/ | 1547476939 | 2 | t5_2fwo | r/programming | public | null |
False | ObscureCulturalMeme | t2_gs28j | That delicious classic was linked to from the article though. Although it's reddit, so probably 90% didn't read the article...
THE PONY HE COMES | null | 0 | 1545802543 | False | 0 | eckj5jo | t3_a9d94p | null | null | t1_ecjfzj9 | /r/programming/comments/a9d94p/i_hate_the_pumping_lemma/eckj5jo/ | 1548082340 | 3 | t5_2fwo | r/programming | public | null |
False | Darkglow666 | t2_aaxo5 | I agree with that in principle, but sadly, hyperbole is just about the only way to get any attention at all these days.
Also, the article is *not* by one of Flutter's devs. It's by a dev who uses Flutter. | null | 0 | 1544547081 | False | 0 | ebklf7x | t3_a4vfjo | null | null | t1_ebkk0mc | /r/programming/comments/a4vfjo/flutter_will_change_everything_and_apple_wont_do/ebklf7x/ | 1547476953 | 2 | t5_2fwo | r/programming | public | null |
False | SarahC | t2_396xl | Oh! Ok, thanks. | null | 0 | 1545802658 | False | 0 | eckj8om | t3_a55xbm | null | null | t1_ecdlus0 | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/eckj8om/ | 1548082379 | 1 | t5_2fwo | r/programming | public | null |
False | MakinThingsDoStuff | t2_ndocb | What if the developer just keeps saying they don't know how? | null | 0 | 1544547108 | False | 0 | ebklghs | t3_a57th7 | null | null | t1_ebkiu64 | /r/programming/comments/a57th7/australias_new_encryption_laws_ensure_companies/ebklghs/ | 1547476969 | 33 | t5_2fwo | r/programming | public | null |
False | wnoise | t2_1ybpu | The fact that it's nearly impossible means there is something hugely wrong with the way we develop software today.
Version pinning and only updating dependencies when you need a new version does help, but not enough. | null | 1 | 1545802821 | False | 0 | eckjd4i | t3_a9hs3u | null | null | t1_ecjhb53 | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/eckjd4i/ | 1548082433 | 0 | t5_2fwo | r/programming | public | null |
False | desertfish_ | t2_523hh | Word word. | null | 0 | 1544547117 | False | 0 | ebklgwy | t3_a55xbm | null | null | t1_ebkjs67 | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebklgwy/ | 1547476973 | 12 | t5_2fwo | r/programming | public | null |
False | ezhikov | t2_zefmb | > replacing every input field and button and card throughout the site would involve touching every page/component
Use js-codeshift | null | 0 | 1545802978 | False | 0 | eckji3f | t3_a9hs3u | null | null | t1_ecki285 | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/eckji3f/ | 1548082495 | -1 | t5_2fwo | r/programming | public | null |
False | _AACO | t2_j2hfv | > It's what we started with.
and imo it's something we shoudln't have moved away from for most stuff | null | 0 | 1544547168 | False | 0 | ebkljck | t3_a55xbm | null | null | t1_ebkksxq | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebkljck/ | 1547477004 | 106 | t5_2fwo | r/programming | public | null |
False | wnoise | t2_1ybpu | This, but unironically. | null | 0 | 1545802995 | False | 0 | eckjilq | t3_a9hs3u | null | null | t1_ecjp42g | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/eckjilq/ | 1548082501 | -2 | t5_2fwo | r/programming | public | null |
False | crusoe | t2_3wvh | Really cargo for rust is amazing. It's spoiled me. It's set the bar incredibly high.
So high it's shocking how bad go's system is. | null | 0 | 1544547178 | False | 0 | ebkljt8 | t3_a541an | null | null | t1_ebjww8w | /r/programming/comments/a541an/just_tell_me_how_to_use_go_modules/ebkljt8/ | 1547477010 | 1 | t5_2fwo | r/programming | public | null |
False | geoelectric | t2_4maio | The QuickStart guide reads like spacevim may be a customized binary as well as configuration. I know spacemacs is exactly what you say, but there’s no mention in the install of using with an existing vim. | null | 0 | 1545803067 | False | 0 | eckjkra | t3_a9fg8h | null | null | t1_ecjmw24 | /r/programming/comments/a9fg8h/spacevim_release_v100/eckjkra/ | 1548082528 | 1 | t5_2fwo | r/programming | public | null |
False | booch | t2_1yprw | If you have a function that implements a merge sort, you can unit test that function to make sure it sorts correctly. Doing that doesn't make the system more rigid; if you decide you want to use a different sort method, you'd write a different sort function and unit test that one. | null | 0 | 1544547231 | False | 0 | ebklmb1 | t3_a56m8z | null | null | t1_ebkkbzo | /r/programming/comments/a56m8z/unit_testing_antipatterns_full_list/ebklmb1/ | 1547477040 | 8 | t5_2fwo | r/programming | public | null |
False | pelrun | t2_4rooo | I guess I just have a low opinion of web technologies in general, I don't consider "enterprise class" to mean anything particularly strong. Probably why I do embedded development instead, where I don't sit at the top of a fragile stack of ever-changing frameworks.
It's true that this was a bad idea, but I can also see why the developers thought it was a bit of fun that was "low impact" - it's hard to see outside your own cultural and business bubble.
It's a bit much to take advantage of a free and open project and expect that the developers automatically share all of your values. If you need to guarantee those things, you really have to employ developers yourself and impose those requirements explicitly. Similarly, any "code review process" is necessarily only going to ensure that *their* requirements are met, not yours. | null | 0 | 1545803380 | False | 0 | eckjuda | t3_a9hs3u | null | null | t1_ecki285 | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/eckjuda/ | 1548082647 | 9 | t5_2fwo | r/programming | public | null |
False | coolcosmos | t2_4l9r7 | If your websites primarily displays data/text, sure. For most other cases it's not always the best choice. But to display information, there is no reason to have server side rendering or front-end js. | null | 0 | 1544547266 | False | 0 | ebklnzc | t3_a55xbm | null | null | t1_ebkljck | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebklnzc/ | 1547477061 | 48 | t5_2fwo | r/programming | public | null |
False | JanneJM | t2_lp2zn | A small microcontroller only needs a simple oscillator accurate to within a few percent. Many of them have it built in. An actual RTC needs external components and a back-up battery to keep the time when the device is turned off. For simple applications like this, that can easily increase the total hardware cost by tens of percents due to the extra components, larger circuit board and assembly costs.
When you make embedded hardware every cent matters, so if you can solve it in software that's a major win. | null | 0 | 1545803403 | False | 0 | eckjv28 | t3_a9ezut | null | null | t1_eck4zow | /r/programming/comments/a9ezut/the_internet_of_unprofitable_things/eckjv28/ | 1548082655 | 13 | t5_2fwo | r/programming | public | null |
False | Shadowvines | t2_fw1r9 | may work. Actually, it would be great if someone more knowledgeable than me would pipe in on a script for what to do if you are approached. | null | 0 | 1544547287 | False | 0 | ebkloyr | t3_a57th7 | null | null | t1_ebklghs | /r/programming/comments/a57th7/australias_new_encryption_laws_ensure_companies/ebkloyr/ | 1547477073 | 46 | t5_2fwo | r/programming | public | null |
False | neuk_mijn_oogkas | t2_2032avqr | Well that's just English; the use of the word "man" there is clear from context; you'd only gender it if you try to.
There's always some kind of identity person going to come along when you use the word "actor" or "waiter" to claim that it exclusively refers to male persons despite the word not being used like that because they just want it to and create symmetry. That's just not the meaning of the English word "men" and never was; the gendered meaning is the recent development, not the other way around. | null | 0 | 1545803681 | False | 0 | eckk30p | t3_a97kyr | null | null | t1_ecjrw2o | /r/programming/comments/a97kyr/women_in_tech_less_than_2_of_leadership_roles_in/eckk30p/ | 1548082754 | 2 | t5_2fwo | r/programming | public | null |
False | swordglowsblue | t2_2nrkh5d0 | The people who make the Dart programming language are thinking about making it so that only variables specifically marked to be able to hold `null` can actually hold `null`. This is extremely useful, since if it's implemented well it can very nearly do away with `NullPointerException`s altogether - if there's a potential for `null` to show up, it's reflected in the type signature of the variable/function/etc.
The problem is, Dart doesn't already support this, and it's a fairly well-established language, so they need to be careful of backwards compatibility. Hence the solution of allowing people to upgrade in small pieces ("incrementally") so that older code doesn't instantly break. | null | 0 | 1544547326 | False | 0 | ebklqs4 | t3_a55qhp | null | null | t1_ebkfhrc | /r/programming/comments/a55qhp/the_dart_language_considers_adding_sound/ebklqs4/ | 1547477095 | 21 | t5_2fwo | r/programming | public | null |
False | JanneJM | t2_lp2zn | Mathematical notation is used to communicate with people. Just like other natural languages it prioritizes expressiveness over consistency, and just like other natural languages you can't capture it with a formal grammar. | null | 0 | 1545803693 | False | 0 | eckk3d9 | t3_a9d94p | null | null | t1_eck4tqg | /r/programming/comments/a9d94p/i_hate_the_pumping_lemma/eckk3d9/ | 1548082759 | 2 | t5_2fwo | r/programming | public | null |
False | kevinlamonte | t2_wdiz1 | How well does the Windows console survive vttest these days?
| null | 0 | 1544547333 | False | 0 | ebklr4f | t3_a57gmy | null | null | t3_a57gmy | /r/programming/comments/a57gmy/new_experimental_windows_console_features/ebklr4f/ | 1547477100 | 15 | t5_2fwo | r/programming | public | null |
False | kylechu | t2_5gj5j | The only way I've found to finish a side project is if it's a side-side project that you can work on to put off working on the side project you actually care about. | null | 0 | 1545803922 | False | 0 | eckk9tk | t3_a9iso8 | null | null | t3_a9iso8 | /r/programming/comments/a9iso8/5_proven_ways_to_finish_your_side_project/eckk9tk/ | 1548082866 | 15 | t5_2fwo | r/programming | public | null |
False | k-selectride | t2_415od | Erlang is a pretty amazing piece of software. The runtime comes with an in-memory data store that can also write to disk, called ETS and DETS respectively, and a hybrid relational/nosql distributed database built called Mnesia that can store things in memory or on disc, built on top of (D)ETS. And of course Erlang lets you do clustering out of the box with very little effort.
But with that said, after using Elixir and Erlang for 2ish years it just doesn't seem to be suitable for a lot of typical 'modern' use cases. It's great if you have a handful of bare metal servers, preferably running as blades in closet in a datacenter clustered together and you're mostly using it to route data around. Anything else and you start seeing performance drops. You can tune BEAM to a certain extent like `min_heap_size` if the workload has few processes with big heaps. Another one is turning off tracing support, but then you lose the ability to connect to a running BEAM instance and introspect in a safe way in production.
I wonder if WhatsApp would use Erlang if they had to re-write it today. My hunch would be no. I hope that the various teams working on BEAM can do something about it, but the smart thing for them to do would be to focus on Erlang's use to their telecom business. | null | 0 | 1544547386 | False | 0 | ebkltpb | t3_a57f0y | null | null | t3_a57f0y | /r/programming/comments/a57f0y/twenty_years_of_open_source_erlang_a/ebkltpb/ | 1547477131 | 3 | t5_2fwo | r/programming | public | null |
False | neuk_mijn_oogkas | t2_2032avqr | > You can't fork a corporation and people who contribute to an open source project are rarely paid for their efforts so their loyalties aren't influenced by monetary need.
You know that like 80% of all Linux development is done by professional full time developers right who are paid by companies who make up the Linux Foundation and who won't just pay them to work on a fork instead?
And I didn't "compare" I came with the _facts_.
People say that Linux leadership is meritocratic; I'm saying that that is obviously _bullshit_ because it would be a supreme coincidence that the ones that started it and/or joined early just happened to be the people who are the best to lead it. What a coincidence that after 25 years the best person to lead it is still the student that started a filesystem task scheduler in its room that led to an OS kernel right? Of course that's not the case; the man that leads is not the best man for the job at all—just the one that started the project and retained control. | null | 0 | 1545803952 | False | 0 | eckkanw | t3_a97kyr | null | null | t1_ecjmhi6 | /r/programming/comments/a97kyr/women_in_tech_less_than_2_of_leadership_roles_in/eckkanw/ | 1548082877 | 1 | t5_2fwo | r/programming | public | null |
False | combinatorylogic | t2_iab4d | Sure, unit test such functions (though why would you do it when you can prove it instead?), but you rarely have (and rarely need) such small and isolated modules.
| null | 1 | 1544547425 | False | 0 | ebklvl6 | t3_a56m8z | null | null | t1_ebklmb1 | /r/programming/comments/a56m8z/unit_testing_antipatterns_full_list/ebklvl6/ | 1547477155 | 1 | t5_2fwo | r/programming | public | null |
False | grauenwolf | t2_570j | That has its own problems too. I've got a project stuck on an old version of Node. On boarding new developers is a right pain in the ass because they have to build special environments just for this one project.
And we're just using it for a build tool. Imagine if we had it on a public website where security vulnerabilities need to be patched.
I have to stay on that update train or I'll be held responsible. And that means trusting others whom I really have no reason to trust. | null | 0 | 1545804075 | False | 0 | eckke0k | t3_a9hs3u | null | null | t1_eckjd4i | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/eckke0k/ | 1548082919 | 5 | t5_2fwo | r/programming | public | null |
False | favorited | t2_kdg2k | Right? Good marketing for Microsoft, getting their logo on the front of the console... | null | 0 | 1544547435 | False | 0 | ebklw26 | t3_a55xbm | null | null | t1_ebk74pv | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebklw26/ | 1547477161 | 25 | t5_2fwo | r/programming | public | null |
False | meneldal2 | t2_l7gg5 | If they communicate with a central server, you can have that server give them the time. Relying on stuff you don't own is asking for trouble.
But good point that more accurate timekeeping costs money. | null | 0 | 1545804230 | False | 0 | eckki55 | t3_a9ezut | null | null | t1_eckjv28 | /r/programming/comments/a9ezut/the_internet_of_unprofitable_things/eckki55/ | 1548082969 | 4 | t5_2fwo | r/programming | public | null |
False | brownhead | t2_6h6wr | I made my blog similarily: [blog.johncs.com](https://blog.johncs.com). No external resources except images, and based on my editor config. | null | 0 | 1544547485 | False | 0 | ebklyho | t3_a55xbm | null | null | t1_ebk5rtt | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebklyho/ | 1547477190 | 6 | t5_2fwo | r/programming | public | null |
False | zucker42 | t2_15f4m5 | Are you serious? | null | 0 | 1545804240 | False | 0 | eckkife | t3_a9j2qk | null | null | t1_eck3bdi | /r/programming/comments/a9j2qk/all_of_the_garbage_collectors_we_examine_here/eckkife/ | 1548082973 | 5 | t5_2fwo | r/programming | public | null |
False | kankyo | t2_77w4q | > Computing infinitely does not mean running forever, it just means “for as long as one wishes, without bound.”
Can someone explain the difference to me? It seems like "without bound" is at least the lowest type of infinity. I mean, obviously not practically because of the sun exploding or something but... | null | 0 | 1544547628 | False | 0 | ebkm59b | t3_a4z1pl | null | null | t3_a4z1pl | /r/programming/comments/a4z1pl/old_neglected_theorems_are_still_theorems/ebkm59b/ | 1547477274 | 2 | t5_2fwo | r/programming | public | null |
False | JanneJM | t2_lp2zn | Yes, the obvious correct way to do it would be to serve the time from their own servers of course. | null | 0 | 1545804467 | False | 0 | eckkoi6 | t3_a9ezut | null | null | t1_eckki55 | /r/programming/comments/a9ezut/the_internet_of_unprofitable_things/eckkoi6/ | 1548083048 | 4 | t5_2fwo | r/programming | public | null |
False | duzzar | t2_eydzy | I simply can't read it with that font and font settings | null | 0 | 1544547636 | False | 0 | ebkm5oc | t3_a55xbm | null | null | t1_ebk5rtt | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebkm5oc/ | 1547477278 | 1 | t5_2fwo | r/programming | public | null |
False | neuk_mijn_oogkas | t2_2032avqr | > Women are discriminated even when they found their own company? That is remarkable
You make the assumption that females cannot discriminate against each other, a very common and very wrong assumption that is often made by people.
One of the funny things about the "interruption gap" for instance where females are statistically more likely to be interrupted than males is that females themselves are more guilty of it than males; whislt males are more likely to interrupted females than males that difference is _a lot_ smaller than it is with females who are even more likely to interrupt another female than a male.
But hey those are exactly the things the identity politics pieces neglect to mention because they need to paint a victim and a villain in identity terms.
Apart from that a simple form is just that the bank and venture investors might be less likely to provide funding to a female with the same capable business plan as a male. | null | 0 | 1545804769 | False | 0 | eckkwbz | t3_a97kyr | null | null | t1_ecipk1g | /r/programming/comments/a97kyr/women_in_tech_less_than_2_of_leadership_roles_in/eckkwbz/ | 1548083144 | 1 | t5_2fwo | r/programming | public | null |
False | weberc2 | t2_gleot | Ah, yes. I'm distinguishing between the thing that does the routing, parsing, and formation of HTTP requests (i.e., "the http layer") and the application itself. Having a really fast web server (Rocket, in this case), is not particularly advantageous because 99% of the time, the bottleneck is in the application.
Glad we were able to clarify! | null | 0 | 1544547707 | False | 0 | ebkm92p | t3_a4cebi | null | null | t1_ebkks9d | /r/programming/comments/a4cebi/rocket_v04_typed_uris_database_support_revamped/ebkm92p/ | 1547477321 | 1 | t5_2fwo | r/programming | public | null |
False | cheekysauce | t2_17jtdl | time.google.com - problem solved? | null | 0 | 1545804969 | False | 0 | eckl1hi | t3_a9ezut | null | null | t3_a9ezut | /r/programming/comments/a9ezut/the_internet_of_unprofitable_things/eckl1hi/ | 1548083208 | 3 | t5_2fwo | r/programming | public | null |
False | DoktuhParadox | t2_7bky4 | you dead ass have 85k karma. shut up with the
>redditors
bull shit | null | 0 | 1544547764 | False | 0 | ebkmbsb | t3_a55xbm | null | null | t1_ebk7o64 | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebkmbsb/ | 1547477354 | -1 | t5_2fwo | r/programming | public | null |
False | Steaktartaar | t2_64dim | Predictability. In a production environment you want software to do what it needs to do. The last thing you want is part of your code inexplicably behaving differently on seemingly random days. | null | 0 | 1545804998 | False | 0 | eckl26p | t3_a9hs3u | null | null | t1_eckcpro | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/eckl26p/ | 1548083217 | 60 | t5_2fwo | r/programming | public | null |
False | OneNeptune | t2_13gojy | That’s a fair assessment. For the record I’d like to go down saying I like JavaScript. Have used es5 and es6 extensively as well as JS frameworks. It’s really not the bad developer experience people meme it out to be.
Performance leaves something to be desired but the benchmarking and debugging tools are immaculate. | null | 0 | 1544547804 | False | 0 | ebkmdpq | t3_a55qhp | null | null | t1_ebkhwp0 | /r/programming/comments/a55qhp/the_dart_language_considers_adding_sound/ebkmdpq/ | 1547477407 | 5 | t5_2fwo | r/programming | public | null |
False | jephthai | t2_591d | I find it keeps me motivated and tends to draw questions that can't be answered without adding some stuff. It seems to work ok for me. | null | 0 | 1545805008 | False | 0 | eckl2eq | t3_a9iso8 | null | null | t1_ecjrdzn | /r/programming/comments/a9iso8/5_proven_ways_to_finish_your_side_project/eckl2eq/ | 1548083219 | 5 | t5_2fwo | r/programming | public | null |
False | TeamFluff | t2_5uwuz | I'm not sure I see the point. If the cost of a line of code is the amount of time spent working on it, then for what reason would you reject Daniel's WhizzBang widget? The time has already been spent working on it. Further, the 2000-200-20 "budget" is nothing of the sort. It doesn't account for the actual cost: the time spent working on the code. | null | 0 | 1544547851 | False | 0 | ebkmfxr | t3_a56udk | null | null | t3_a56udk | /r/programming/comments/a56udk/200020020_code_economics/ebkmfxr/ | 1547477435 | 1 | t5_2fwo | r/programming | public | null |
False | curious_s | t2_14kg9o | I'm not sure what your obsession with optimization problems is, but modern Prolog can solve ANY problem, as it is a general programming language and not domain specific.
Do you mean the TCP select? http://www.swi-prolog.org/pldoc/doc_for?object=tcp_select/3 | null | 0 | 1545805055 | False | 0 | eckl3jr | t3_a9da04 | null | null | t1_ecjkqiq | /r/programming/comments/a9da04/learn_prolog_now/eckl3jr/ | 1548083234 | 4 | t5_2fwo | r/programming | public | null |
False | rahulkadukar | t2_4mjcr | It's not like every developer has push access to Production. How will it work, how will a developer even be able to make a change without alerting someone else at the company about what they have done. | null | 0 | 1544547951 | False | 0 | ebkmkrw | t3_a57th7 | null | null | t1_ebkiu64 | /r/programming/comments/a57th7/australias_new_encryption_laws_ensure_companies/ebkmkrw/ | 1547477495 | 44 | t5_2fwo | r/programming | public | null |
False | jephthai | t2_591d | I like this one. Nothing drives feature enhancement like daily use. You get so frustrated that there's an extra step, or try to use it to do a thing... and unlike someone else's code, you know it well enough to add that one thing really quick. | null | 0 | 1545805143 | False | 0 | eckl5s5 | t3_a9iso8 | null | null | t1_ecjwdan | /r/programming/comments/a9iso8/5_proven_ways_to_finish_your_side_project/eckl5s5/ | 1548083262 | 11 | t5_2fwo | r/programming | public | null |
False | fabiensanglard | t2_5waty | Thanks, I have been working on my typesetting for a few years now. | null | 0 | 1544548018 | False | 0 | ebkmo08 | t3_a55xbm | null | null | t1_ebk5rtt | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebkmo08/ | 1547477535 | 5 | t5_2fwo | r/programming | public | null |
False | DonnyTheWalrus | t2_hbe1n | Well this was obviously written decades ago so I'm not sure the author cares to respond to your request for a diagram. | null | 0 | 1545805257 | False | 0 | eckl8j8 | t3_a9e0a5 | null | null | t1_ecj53xj | /r/programming/comments/a9e0a5/programming_a_problemorientedlanguage/eckl8j8/ | 1548083296 | 3 | t5_2fwo | r/programming | public | null |
False | postreplypreview | t2_2cmh4ary | It didn't die because of piracy. It died because it fucking sucked.
All the Dreamcast had were shallow arcade ports. It really had no substantial games.
Even stuff like Shenmue is overrated crap. There's a reason that people playing the re-release are pointing out how tedious it is to wait around for shit.
In fact, the irony is that the only reason people look back at the DC with rose colored glasses is BECAUSE of how trivial it was to pirate games for. | null | 0 | 1544548148 | False | 0 | ebkmu7w | t3_a55xbm | null | null | t1_ebk9m7w | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebkmu7w/ | 1547477611 | -14 | t5_2fwo | r/programming | public | null |
False | HellfireOwner | t2_2juz5fhu | The point is the author's statements are useless and not well thought out. He would have been better off presenting a single diagram of someone else's work, proper work, rather than wasting his and our time with what he wrote. | null | 0 | 1545805323 | False | 0 | eckla76 | t3_a9e0a5 | null | null | t1_eckl8j8 | /r/programming/comments/a9e0a5/programming_a_problemorientedlanguage/eckla76/ | 1548083317 | -6 | t5_2fwo | r/programming | public | null |
False | johanbcn | t2_4dlnf | If I recall correctly, there was also this bug on Phantasy Star Online which allowed to exploit the ethernet interface to run remote code (homebrew) from a computer. Even more, it allowed to dump the contents of any gd-rom.
Amusingly, the bug wasn't fixed on the GameCube port of the game, which brought the same consequences for the Nintendo system. | null | 0 | 1544548264 | False | 0 | ebkmzqw | t3_a55xbm | null | null | t3_a55xbm | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebkmzqw/ | 1547477680 | 11 | t5_2fwo | r/programming | public | null |
False | DonnyTheWalrus | t2_hbe1n | Same, I've had a casual interest in prolog and would love a link. | null | 0 | 1545805350 | False | 0 | ecklavv | t3_a9da04 | null | null | t1_eciibai | /r/programming/comments/a9da04/learn_prolog_now/ecklavv/ | 1548083326 | 1 | t5_2fwo | r/programming | public | null |
False | matthieum | t2_5ij2c | I am not sure about most; I can certainly attest that when doing high-performance network-related programming the ability to play loose with types is so good that `-fno-strict-aliasing` is a must. | null | 0 | 1544548303 | False | 0 | ebkn1k5 | t3_a4ufwz | null | null | t1_ebj0fcr | /r/programming/comments/a4ufwz/typebased_alias_analysis/ebkn1k5/ | 1547477703 | 1 | t5_2fwo | r/programming | public | null |
False | HeinousTugboat | t2_3gt1r | That doesn't actually answer his question though.. | null | 1 | 1545805413 | False | 0 | ecklcdr | t3_a9hs3u | null | null | t1_ecki98l | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/ecklcdr/ | 1548083344 | 2 | t5_2fwo | r/programming | public | null |
False | fabiensanglard | t2_5waty | Always looking to make it better and lighter. Which inline do you suggest to move (i assume in the style in the header).
Also: You are correct, it did take a lot of work to make it look like it did not. | null | 0 | 1544548305 | False | 0 | ebkn1oh | t3_a55xbm | null | null | t1_ebkh6pr | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebkn1oh/ | 1547477704 | 34 | t5_2fwo | r/programming | public | null |
False | Koutou | t2_e0x3z | The US, russia, china and Europe are all beaming atomic clock signal from space available all over the earth. Just plug a GNSS receiver on a computer and use it as a timing signal. | null | 0 | 1545805484 | False | 0 | eckle2v | t3_a9ezut | null | null | t1_ecjt7t4 | /r/programming/comments/a9ezut/the_internet_of_unprofitable_things/eckle2v/ | 1548083364 | 4 | t5_2fwo | r/programming | public | null |
False | justavault | t2_11i0hu | Do you even realize that you just prove the point? | null | 1 | 1544548318 | False | 0 | ebkn2ai | t3_a55xbm | null | null | t1_ebkmbsb | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebkn2ai/ | 1547477712 | 1 | t5_2fwo | r/programming | public | null |
False | GaianNeuron | t2_8njru | Things that might interfere with you demoing a feature to someone important should be opt-in — whether on Apr 1st, Dec 25th, or any other day. | null | 0 | 1545805535 | False | 0 | ecklfbq | t3_a9hs3u | null | null | t1_eckcpro | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/ecklfbq/ | 1548083410 | 7 | t5_2fwo | r/programming | public | null |
False | fabiensanglard | t2_5waty | The goal is less than 200ms. Speed is a feature! | null | 0 | 1544548328 | False | 0 | ebkn2qv | t3_a55xbm | null | null | t1_ebk6z0y | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebkn2qv/ | 1547477717 | 25 | t5_2fwo | r/programming | public | null |
False | brrretz | t2_207l6ozp | Excellent learning material, but tough. It would benefit from progressing at a slower pace.
​
Thanks | null | 0 | 1545805886 | False | 0 | ecklnp8 | t3_a2gb0v | null | null | t3_a2gb0v | /r/programming/comments/a2gb0v/programming_language_foundations_in_agda/ecklnp8/ | 1548083512 | 2 | t5_2fwo | r/programming | public | null |
False | fabiensanglard | t2_5waty | I assumed this is in the console firmware but I could be wrong. | null | 0 | 1544548409 | False | 0 | ebkn6jw | t3_a55xbm | null | null | t1_ebkakbn | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebkn6jw/ | 1547477764 | 4 | t5_2fwo | r/programming | public | null |
False | DonCanas | t2_e1rlh | Sir I'm with the wallpaper police, gonna need your wallpaper for a quick background check | null | 0 | 1545806451 | False | 0 | eckm0hj | t3_a95jxj | null | null | t1_echbqvs | /r/programming/comments/a95jxj/the_420_kernel_has_been_released/eckm0hj/ | 1548083670 | 1 | t5_2fwo | r/programming | public | null |
False | tathougies | t2_cfv3e | I've never sent out more than a handful of applications. | null | 0 | 1544548527 | False | 0 | ebknc83 | t3_a4n8jv | null | null | t1_ebhmj50 | /r/programming/comments/a4n8jv/why_software_developers_are_paid_5x_more_in_the/ebknc83/ | 1547477835 | 2 | t5_2fwo | r/programming | public | null |
False | jayd16 | t2_3gbnv | In a lot of those cases you can just use a resource pool to eliminate the memory management cost entirely. This is usually far easier to implement in a GCed language than trying to mix in low level memory management. | null | 0 | 1545806678 | False | 0 | eckm5hv | t3_a9j2qk | null | null | t1_ecjy6l0 | /r/programming/comments/a9j2qk/all_of_the_garbage_collectors_we_examine_here/eckm5hv/ | 1548083732 | 2 | t5_2fwo | r/programming | public | null |
False | s73v3r | t2_3c7qc | Yet you're trying to say your experience is objective basis, whereas anyone who disagrees is "fearing for their jobs". | null | 0 | 1544548558 | False | 0 | ebkndrc | t3_a45jvw | null | null | t1_ebjd0lj | /r/programming/comments/a45jvw/electron_and_the_decline_of_native_apps/ebkndrc/ | 1547477853 | 0 | t5_2fwo | r/programming | public | null |
False | insolent_imp | t2_5erwc | Meh, it isnt a good question to be honest. Nobody says professionally run companies should never have a sense of humor and be boring and drab. Just dont expect others to share the same sense of humour as you, especially when they could be in the midst of getting important stuff done in their lives. | null | 0 | 1545806717 | False | 0 | eckm6do | t3_a9hs3u | null | null | t1_ecklcdr | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/eckm6do/ | 1548083742 | 34 | t5_2fwo | r/programming | public | null |
False | fcesarini | t2_mch7 | There are a lot of fine tuning options available. If performance drops, it is often due to a bottleneck which manifests itself under heavy load. It is not just a problem with Erlang, but with any technology. Only issue with Erlang and the Beam is that it is easier to reach higher levels of scale, making the bottlenecks more evident. | null | 0 | 1544548577 | False | 0 | ebknepm | t3_a57f0y | null | null | t1_ebkltpb | /r/programming/comments/a57f0y/twenty_years_of_open_source_erlang_a/ebknepm/ | 1547477865 | 2 | t5_2fwo | r/programming | public | null |
False | DirdCS | t2_xpx5z | You've probably never been to China in your life and spew some age old American propaganda. Christmas trees and decorations can be found in many shopping malls around Christmas time | null | 0 | 1545806843 | False | 0 | eckm9eu | t3_a9hs3u | null | null | t1_eckh607 | /r/programming/comments/a9hs3u/the_ant_design_christmas_egg_that_went_wrong/eckm9eu/ | 1548083780 | -13 | t5_2fwo | r/programming | public | 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.