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 | oorza | t2_3g5rj | I wouldn't have believed it, but Kotlin support is everything Java is and more. Mostly it's that there seems to be more intentions, and more powerful ones too, like rewriting entire blocks of code to use Kotlin operators, or the ability to paste Java code and have it automatically be translated to idiomatic Kotlin... | null | 0 | 1544738707 | False | 0 | ebq6o23 | t3_a5mk9z | null | null | t1_ebpccqh | /r/programming/comments/a5mk9z/visual_studio_code_version_130_released/ebq6o23/ | 1547571098 | 0 | t5_2fwo | r/programming | public | null |
False | GHansard | t2_328pa | This was originally created by [Ridiculous Fish](https://ridiculousfish.com). He’s done a lot of other great open source work like HexFiend for Mac. I have no idea the current relation between creator and project (and this is a slapdash comment and I don’t have the time ATM to check), but I think the shell name is a joke about other *sh names and how it’s “fish” when out together with the... fishy... acronym. So “friendly interactive shell” may be a bit of a tongue-in-cheek backronym. | null | 0 | 1546044593 | False | 0 | ecrrasn | t3_aabai1 | null | null | t1_ecqnno1 | /r/programming/comments/aabai1/fish_shell_30/ecrrasn/ | 1548204183 | 3 | t5_2fwo | r/programming | public | null |
False | optomas | t2_36ebd | Mixed results here, too.
Seems like it's getting better. Faster than general image recognition, at least. | null | 0 | 1544738864 | False | 0 | ebq6v5w | t3_a5sg9k | null | null | t1_ebpy8p5 | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebq6v5w/ | 1547571186 | 1 | t5_2fwo | r/programming | public | null |
False | kevingranade | t2_je91k | Readability doesn't trump everything else, but it should be the default.
Much like premature optimization is a sin, so is premature modularity and premature extensibility.
You should make your code as complicated as it needs to be to achieve your performance, extensibility, modularity etc goals, but those goals should be intentional and explicit. | null | 0 | 1546044668 | False | 0 | ecrrdzt | t3_aac4hg | null | null | t1_ecrfd78 | /r/programming/comments/aac4hg/modern_c_lamentations/ecrrdzt/ | 1548204222 | 13 | t5_2fwo | r/programming | public | null |
False | Crandom | t2_4mzys | Still IDEA :) | null | 0 | 1544738872 | False | 0 | ebq6vhw | t3_a5mk9z | null | null | t1_ebq6o23 | /r/programming/comments/a5mk9z/visual_studio_code_version_130_released/ebq6vhw/ | 1547571190 | 2 | t5_2fwo | r/programming | public | null |
False | wsppan | t2_321ka | Ahhh, the kitchen sink approach to web development. Where assembly rules I guess? | null | 0 | 1546044717 | False | 0 | ecrrg4v | t3_aaco1d | null | null | t1_ecrm9c4 | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrrg4v/ | 1548204249 | 5 | t5_2fwo | r/programming | public | null |
False | irrelevantPseudonym | t2_53f31 | I am a huge fan of ripgrep and use it all the time but oddly I still can't break the habit of using grep when filtering output of other stuff.
rg foo
but
do_stuff ./to_file | grep foo | null | 0 | 1544739085 | False | 0 | ebq7557 | t3_a5sg9k | null | null | t1_ebptthy | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebq7557/ | 1547571308 | 6 | t5_2fwo | r/programming | public | null |
False | serrrenitynow | t2_2bm3v7o3 | I think in a lot of cases, it's more important to know things are possible than to know how to do them. I tend to be optimistic and assume most things I want to do are possible, which leads me to searching for answers that others I work with might not even bother. I keep focused mostly on the main technologies I work with but then also read broadly, so when I encounter something more obscure, a light might go off.
At my new job I've automated some things that weren't previously automated, and I had no idea how to do it before, but just knew that it must be possible, so I just figured it out. Knowing, or even just believing, something is possible is a huge boost to actually getting it done. | null | 0 | 1546044734 | False | 0 | ecrrgvf | t3_aaco1d | null | null | t3_aaco1d | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrrgvf/ | 1548204258 | 10 | t5_2fwo | r/programming | public | null |
False | masklinn | t2_d5sb | > I understand that there is a backward compatibility in Java, but... come on, two methods that do almost the same? And trim isn't even marked as deprecated.
TIL trim is actually seriously and unredeemably fucked up:
> String::trim uses the definition of space as any codepoint that is less than or equal to the space character codepoint (\u0020.) Newer trimming methods will use the definition of (white) space as any codepoint that returns true when passed to the Character::isWhitespace predicate.
*Only 6 of the 33 codepoints considered whitespace by trim are actually classified as whitespace*, so I understand why they didn't fix trim, it would be completely incompatible, it's not just a matter of "trim doesn't remove enough stuff".
And it's not like "proper" unicode handling was even required, all 25 codepoints classified as whitespace are in the BMP.
| null | 0 | 1544739159 | 1544739374 | 0 | ebq78g1 | t3_a5umpk | null | null | t1_ebq39n1 | /r/programming/comments/a5umpk/10_new_features_in_java_11/ebq78g1/ | 1547571349 | 12 | t5_2fwo | r/programming | public | null |
False | astrellon3 | t2_9jaxi | Right sure, a review itself is hard to measure. All good :) | null | 0 | 1546044761 | False | 0 | ecrrhyw | t3_aaagix | null | null | t1_ecrof2c | /r/programming/comments/aaagix/why_review_code/ecrrhyw/ | 1548204271 | 3 | t5_2fwo | r/programming | public | null |
False | abia-bydg | t2_2s2qhh7l | The implementation that goes along with this paper is [here](https://github.com/flippingbits/cssl/blob/master/skiplist.c). My question is, how the heck to they do they update the "fast lanes" after inserts and deletes? I can't understand what's going on in the linked code, perhaps someone could help me by summarizing the algorithm? It seems like they're delaying the update of the fast lanes for some time and then rebuilding them in bulk, similar to how resizing a hash map works.. but I'm not entirely sure. | null | 0 | 1544739259 | False | 0 | ebq7cuj | t3_a5yaam | null | null | t3_a5yaam | /r/programming/comments/a5yaam/cachesensitive_skip_list/ebq7cuj/ | 1547571403 | 1 | t5_2fwo | r/programming | public | null |
False | [deleted] | None | [deleted] | null | 0 | 1546045100 | False | 0 | ecrrw68 | t3_aabai1 | null | null | t1_ecrrasn | /r/programming/comments/aabai1/fish_shell_30/ecrrw68/ | 1548204448 | 3 | t5_2fwo | r/programming | public | null |
False | pork_spare_ribs | t2_5lal8 | Hypothesis: every sentence is better if you end it with ", in Tokyo". | null | 0 | 1544739283 | False | 0 | ebq7dw6 | t3_a5srkh | null | null | t3_a5srkh | /r/programming/comments/a5srkh/writing_code_to_make_music_in_tokyo/ebq7dw6/ | 1547571417 | 6 | t5_2fwo | r/programming | public | null |
False | [deleted] | None | [deleted] | null | 0 | 1546045130 | False | 0 | ecrrxf0 | t3_aabai1 | null | null | t1_ecrgdzy | /r/programming/comments/aabai1/fish_shell_30/ecrrxf0/ | 1548204463 | 1 | t5_2fwo | r/programming | public | null |
False | xevz | t2_38an0 | It is indeed just a bit of code golfing for this particular use case. :) | null | 0 | 1544739387 | False | 0 | ebq7iht | t3_a5sg9k | null | null | t1_ebpo8pj | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebq7iht/ | 1547571473 | 4 | t5_2fwo | r/programming | public | null |
False | CAPSLOCK_USERNAME | t2_8u9ky | The world isn't black and white, and things aren't purely good or bad.
It's okay to criticize something while still using it, not because it's the worst thing ever but because you see room for improvement and want to make it better. | null | 0 | 1546045133 | False | 0 | ecrrxj9 | t3_aac4hg | null | null | t1_ecr83ib | /r/programming/comments/aac4hg/modern_c_lamentations/ecrrxj9/ | 1548204465 | 19 | t5_2fwo | r/programming | public | null |
False | cowardlydragon | t2_d0po | You must not collect requirements.
​ | null | 0 | 1544739440 | False | 0 | ebq7kxp | t3_a4n8jv | null | null | t1_ebge05i | /r/programming/comments/a4n8jv/why_software_developers_are_paid_5x_more_in_the/ebq7kxp/ | 1547571503 | 1 | t5_2fwo | r/programming | public | null |
False | gaearon | t2_7enqh | It was indeed very soon after that but I went through the regular front-end process. | null | 0 | 1546045167 | False | 0 | ecrryxi | t3_aaco1d | null | null | t1_ecrqfdv | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrryxi/ | 1548204482 | 20 | t5_2fwo | r/programming | public | null |
False | someguywithanaccount | t2_60jds | Yeah, but what if the menu is written in hex? ^/s | null | 0 | 1544739529 | False | 0 | ebq7oxf | t3_a5sg9k | null | null | t1_ebpcq6f | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebq7oxf/ | 1547571554 | 1 | t5_2fwo | r/programming | public | null |
False | ny83427 | t2_2lvinf9w | Hey dude, for me it's fairly not. It sounds like a village soccer club, right? I just love that kind of good old days style. | null | 0 | 1546045222 | False | 0 | ecrs18h | t3_a9geat | null | null | t1_eckh0q1 | /r/programming/comments/a9geat/percolation_predestination_and_freewill_old_young/ecrs18h/ | 1548204509 | 1 | t5_2fwo | r/programming | public | null |
False | duhace | t2_dhfv4 | > It seems to me that this is not the case. The idea with low pause collectors is to sacrifice a bit of throughput to make sure pause times are small and predictable.
Yes, this is the sacrifice made on paper. It appears that in their benchmarks, this sacrifice is not an issue, and like you said, they are tied on max jops while zgc is the clear winner whenever latency is a consideration | null | 0 | 1544739856 | False | 0 | ebq83kw | t3_a5umpk | null | null | t1_ebq51ft | /r/programming/comments/a5umpk/10_new_features_in_java_11/ebq83kw/ | 1547571763 | 1 | t5_2fwo | r/programming | public | null |
False | wsppan | t2_321ka | In the JS community he is. And should be. But that's just a small part of web development and much smaller part of software development. Hence my comment. No disrespect was intended. | null | 1 | 1546045244 | False | 0 | ecrs26g | t3_aaco1d | null | null | t1_ecrmljb | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrs26g/ | 1548204522 | 4 | t5_2fwo | r/programming | public | null |
False | ucladurkel | t2_70cdp | First of all, I downloaded TabNine when I saw the HackerNews post about a month ago and I've been using it for my personal projects at home (I use VSCode). Unfortunately, at work I exclusively use Visual Studio, XCode, and Android Studio, none of which support TabNine. I have really enjoyed using it at home, and the other day I was thinking about maybe buying a license for $30.
I saw this post today and now see that it's $50. Maybe it's just me, but that seems too steep of a price for software that I can only use at home (which is about 10% of all of my day-to-day coding).
I don't want to come off as whiny; I genuinely love your software and I love the indefinite (albeit limited) free version. I want to support your project but I simply can't justify dropping 50 bucks on software that I use for a few hours a week.
For now I think I'll stick with the free version. But, if you add support for Visual Studio (or XCode or Android Studio), then I'll be first in line for a license! | null | 0 | 1544739882 | False | 0 | ebq84r8 | t3_a58r3e | null | null | t3_a58r3e | /r/programming/comments/a58r3e/tabnines_first_month_in_review/ebq84r8/ | 1547571778 | 1 | t5_2fwo | r/programming | public | null |
False | null-undefined | t2_rxq1jdj | I can’t wait for the day man makes a computer powerful enough to run resharper and VS | null | 0 | 1546045280 | False | 0 | ecrs3qj | t3_aac4hg | null | null | t1_ecri2ek | /r/programming/comments/aac4hg/modern_c_lamentations/ecrs3qj/ | 1548204541 | 68 | t5_2fwo | r/programming | public | null |
False | Captain___Obvious | t2_335bp | Is there a reason why you use it through ssh? Does tramp not work for you?
| null | 0 | 1544739895 | False | 0 | ebq85b7 | t3_a5i57x | null | null | t1_ebpy8mk | /r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebq85b7/ | 1547571784 | 1 | t5_2fwo | r/programming | public | null |
False | gaearon | t2_7enqh | No, I went through the regular process.
It might not be a commonly known fact, but we have two separate hiring pipelines. One for "software engineer" position, and one for "front-end engineer". In the end once you get hired it doesn't matter, but the interview process is different.
The "front-end" interview doesn't have heavy algorithmic questions. Understanding of what makes code slow, or how to verify your code is expected, but the questions themselves are based on real problems we've encountered in UI engineering. No red-black trees etc. | null | 0 | 1546045287 | False | 0 | ecrs40r | t3_aaco1d | null | null | t1_ecrdhyq | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrs40r/ | 1548204545 | 77 | t5_2fwo | r/programming | public | null |
False | stack-compression | t2_1w1eet1b | > I also use OCaml, which is unsound for writing proofs due to the lack of a termination checker, but still has a powerful type system, and I really like it.
Oh yeah. I quite liked ocaml. Well... the language itself. The tooling can't really compare to more mainstream stuff.
The making illegal states unrepresentable is something I already do, but very informally. | null | 0 | 1544740073 | False | 0 | ebq8dcg | t3_a5iior | null | null | t1_ebnpvr6 | /r/programming/comments/a5iior/tests_wont_make_your_software_correct/ebq8dcg/ | 1547571884 | 1 | t5_2fwo | r/programming | public | null |
False | gaearon | t2_7enqh | See my reply [here](https://www.reddit.com/r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrs40r/) — the questions _were_ more involved but not in the algorithmic sense. | null | 0 | 1546045310 | False | 0 | ecrs4wu | t3_aaco1d | null | null | t1_ecrfpl1 | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrs4wu/ | 1548204555 | 13 | t5_2fwo | r/programming | public | null |
False | theferrit32 | t2_6glap | The heavily compressed JPEG image version of a text-based menu is the best format. | null | 0 | 1544740178 | False | 0 | ebq8i29 | t3_a5sg9k | null | null | t1_ebp8fzl | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebq8i29/ | 1547571942 | 58 | t5_2fwo | r/programming | public | null |
False | cleeder | t2_9ot3w | > I think you are bit stupid
> [..]
> teached | null | 1 | 1546045347 | False | 0 | ecrs6e4 | t3_aabai1 | null | null | t1_ecrd27x | /r/programming/comments/aabai1/fish_shell_30/ecrs6e4/ | 1548204602 | 1 | t5_2fwo | r/programming | public | null |
False | Thann | t2_50as1 | Ppl don't understand the difference between chromium and google-chrome I guess lol | null | 0 | 1544740323 | False | 0 | ebq8ofi | t3_a3q1vh | null | null | t1_eb9y5za | /r/programming/comments/a3q1vh/its_official_chromium_is_coming_to_microsoft_edge/ebq8ofi/ | 1547572021 | 2 | t5_2fwo | r/programming | public | null |
False | m50d | t2_6q02y | Why? Bitshifting a `u8` will give you a `u8` like any other mathematical operation, surely. | null | 0 | 1546045353 | False | 0 | ecrs6o6 | t3_a9zyp3 | null | null | t1_ecrkkii | /r/programming/comments/a9zyp3/thoughts_on_rust_in_2019/ecrs6o6/ | 1548204606 | 5 | t5_2fwo | r/programming | public | null |
False | FuckaYouWhale | t2_4tq0x | > try this Alta Vista search instead.
Looks like this website is hosted in Pawnee, IN. | null | 0 | 1544740477 | False | 0 | ebq8va7 | t3_a5sg9k | null | null | t1_ebox6vg | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebq8va7/ | 1547572106 | 2 | t5_2fwo | r/programming | public | null |
False | gaearon | t2_7enqh | JavaScript has a GC and doesn’t need memory manual management — so it’s not something I directly need for my job. I have some surface-level familiarity with how a generational GC works under the hood. | null | 0 | 1546045451 | False | 0 | ecrsalq | t3_aaco1d | null | null | t1_ecrkt36 | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrsalq/ | 1548204654 | 13 | t5_2fwo | r/programming | public | null |
False | otherwiseguy | t2_35tbw | Animals. All of you | null | 0 | 1544740633 | False | 0 | ebq923t | t3_a5sg9k | null | null | t1_ebp57bh | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebq923t/ | 1547572218 | 3 | t5_2fwo | r/programming | public | null |
False | acepukas | t2_31g8b | Hey, I've seen a few of Jamie King's vids but I hadn't watched the series from the beginning, just bits here and there. He seems to know what he's talking about so I'll check it out in full if I can (it's a big list). | null | 0 | 1546045458 | False | 0 | ecrsawj | t3_a7f2o1 | null | null | t1_ecrqkh3 | /r/programming/comments/a7f2o1/how_to_start_learning_computer_graphics/ecrsawj/ | 1548204658 | 1 | t5_2fwo | r/programming | public | null |
False | howiecha | t2_n8jvr | No. Requires human interaction. | null | 0 | 1544740692 | False | 0 | ebq94tl | t3_a5sg9k | null | null | t1_ebp5rg3 | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebq94tl/ | 1547572252 | 26 | t5_2fwo | r/programming | public | null |
False | gaearon | t2_7enqh | FWIW the community stuff is more like a hobby to me. It’s not a part of my job description and I wouldn’t do it if I didn’t want to. (I’m glad I can do it in my work time though and the company trusts me to do what I think is valuable.)
I do write code too: https://github.com/facebook/react/pulls?q=is%3Apr+author%3Agaearon+is%3Aclosed | null | 0 | 1546045543 | False | 0 | ecrsecu | t3_aaco1d | null | null | t1_ecrr5dp | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrsecu/ | 1548204701 | 32 | t5_2fwo | r/programming | public | null |
False | [deleted] | None | [deleted] | null | 0 | 1544740717 | False | 0 | ebq95wp | t3_a5y50c | null | null | t3_a5y50c | /r/programming/comments/a5y50c/why_bad_software_architecture_is_easy_to_monetize/ebq95wp/ | 1547572265 | 1 | t5_2fwo | r/programming | public | null |
False | Nimelrian | t2_64lxq | Many JS devs (at least on the Reactiflux Discord) shy away from TS because all of the sudden they get confronted with errors where previously no errors existed. Many also have the opinion that types are just a verbose way of slowing down the development process, be it by requiring more keystrokes or by figuring out why the compiler tells them "You can't do that".
Coming from a C++/Java background I had no problem picking it up and being productive with it, but many people who only know dynamic languages seem to have trouble understanding the benefits of types or grasping the concept in general. | null | 0 | 1546045602 | False | 0 | ecrsgqk | t3_aaco1d | null | null | t1_ecrmrsi | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrsgqk/ | 1548204729 | 47 | t5_2fwo | r/programming | public | null |
False | ProgramTheWorld | t2_fmd67 | https://www.npmjs.com/package/is-thirteen | null | 0 | 1544740825 | False | 0 | ebq9ao2 | t3_a5sg9k | null | null | t1_ebp4urc | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebq9ao2/ | 1547572324 | 3 | t5_2fwo | r/programming | public | null |
False | verylittlefinger | t2_ta9ws | Peer feedback. But also, I am a developer, too, I can recognize a good code review :-). | null | 0 | 1546045625 | False | 0 | ecrshpn | t3_aaagix | null | null | t1_ecr7fcf | /r/programming/comments/aaagix/why_review_code/ecrshpn/ | 1548204741 | 1 | t5_2fwo | r/programming | public | null |
False | ritonlajoie | t2_3sdq2 | Visual studio community or whatever its name is free. You just don't have the msvc compiler. But the IDE and cmake support could work out for you depending on what you are working on. | null | 0 | 1544740825 | False | 0 | ebq9aoc | t3_a5mk9z | null | null | t1_ebpexdw | /r/programming/comments/a5mk9z/visual_studio_code_version_130_released/ebq9aoc/ | 1547572324 | 1 | t5_2fwo | r/programming | public | null |
False | gaearon | t2_7enqh | My practical understanding is: it's a wrapper that lets me take a value and perform operations in a sequential manner without all the actual execution semantics leaking into my code (e.g. it being async like Future or conditional like Maybe). And some languages offer syntactic sugar to make it look completely like normal code and hide the indirection.
Does that sound right? I know there's more "strict" requirements from type point of view but I mostly mean why it's useful. | null | 0 | 1546045733 | False | 0 | ecrsm1l | t3_aaco1d | null | null | t1_ecrovu4 | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrsm1l/ | 1548204795 | 23 | t5_2fwo | r/programming | public | null |
False | howiecha | t2_n8jvr | What?! No Perl one-liner? | null | 0 | 1544740853 | 1544741077 | 0 | ebq9bx4 | t3_a5sg9k | null | null | t3_a5sg9k | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebq9bx4/ | 1547572340 | 1 | t5_2fwo | r/programming | public | null |
False | gaearon | t2_7enqh | Feel free to fix
https://github.com/gaearon/overreacted.io/blob/a61551f69e7b96672cee495856f09079b7bde09a/src/templates/blog-post.js#L20-L23 | null | 0 | 1546045881 | False | 0 | ecrss4a | t3_aaco1d | null | null | t1_ecrgfoj | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrss4a/ | 1548204870 | 3 | t5_2fwo | r/programming | public | null |
False | LetterBoxSnatch | t2_x3363 | Brilliant! | null | 0 | 1544741225 | False | 0 | ebq9s6s | t3_a5sg9k | null | null | t1_ebpz4z7 | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebq9s6s/ | 1547572540 | 1 | t5_2fwo | r/programming | public | null |
False | JanneJM | t2_lp2zn | The original article gave an excellent valid reason for caring about debug build performance. | null | 0 | 1546045922 | False | 0 | ecrstrc | t3_aac4hg | null | null | t1_ecrpa2n | /r/programming/comments/aac4hg/modern_c_lamentations/ecrstrc/ | 1548204890 | 14 | t5_2fwo | r/programming | public | null |
False | ryashpool | t2_3vt2r | Could something like that be technically against the law? | null | 0 | 1544741359 | False | 0 | ebq9y3t | t3_a5rb95 | null | null | t3_a5rb95 | /r/programming/comments/a5rb95/free_hotel_wifi_with_python_and_selenium/ebq9y3t/ | 1547572614 | 6 | t5_2fwo | r/programming | public | null |
False | gaearon | t2_7enqh | I think that speaks to its success as a language. It's remarkably clear which kept me satisfied enough to never look at the spec (and rarely read the doc). | null | 0 | 1546045938 | False | 0 | ecrsugi | t3_aaco1d | null | null | t1_ecrf8qc | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrsugi/ | 1548204898 | 7 | t5_2fwo | r/programming | public | null |
False | villanovafan | t2_15bgwh | What an absolutely garbage title you've applied to this otherwise clearly titled video. | null | 0 | 1544741394 | False | 0 | ebq9znn | t3_a5ygql | null | null | t3_a5ygql | /r/programming/comments/a5ygql/50years_stonehenge_algol68_20th_dec_1968_awk_tdd/ebq9znn/ | 1547572633 | 3 | t5_2fwo | r/programming | public | null |
False | Nimelrian | t2_64lxq | Not necessarily. I know what a functor and a monad are from a practical point of view, but I can't give you a mathematical definition. I also don't need to know it. As long as I can push my wrapped values through a transformation pipeline I'm happy.
I definitely understand where the saying "Once one understands monads mathematically, they instantly lose the ability to explain it to people without that knowledge" comes from. | null | 0 | 1546045946 | False | 0 | ecrsuso | t3_aaco1d | null | null | t1_ecrovu4 | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrsuso/ | 1548204903 | 2 | t5_2fwo | r/programming | public | null |
False | cawfee | t2_4a3hd | null | 0 | 1544741431 | False | 0 | ebqa1b6 | t3_a5sg9k | null | null | t1_ebq8i29 | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebqa1b6/ | 1547572653 | 57 | t5_2fwo | r/programming | public | null | |
False | s73v3r | t2_3c7qc | Isn't that partly because for a long time, Unity was stuck using C# 2.0? | null | 0 | 1546045977 | False | 0 | ecrsw1z | t3_aac4hg | null | null | t1_ecqxrdd | /r/programming/comments/aac4hg/modern_c_lamentations/ecrsw1z/ | 1548204918 | 3 | t5_2fwo | r/programming | public | null |
False | thirdegree | t2_63m0r | Protip for April fools: sneak a `set -e` somewhere in your coworker's bashrc | null | 0 | 1544741568 | False | 0 | ebqa7ak | t3_a5sg9k | null | null | t1_ebpn87w | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebqa7ak/ | 1547572728 | 4 | t5_2fwo | r/programming | public | null |
False | m50d | t2_6q02y | > It also works just fine in every scripting language with bitwise operators.
Most scripting languages have fewer integer types than rust, but automatically changing type is pretty rare. Haskell or OCaml shifts will truncate rather than promoting from fixed-width integers to bigger ones; so will Lua, Perl, and versions of Ruby that are old enough to have a fixnum/bignum distinction at all. Python is the odd one out there. C-family languages have a strange set of integer promotion rules where certain kinds of integers promote and others don't, but I see that as a C peculiarity rather than anything that's true in general.
> I explicitly specified u16 for the destination and the 1.29 compiler was still like, "I can't figure this out?"
> If the language won't promote types automatically (and "No Magic" is a valid tenet for a language to have), then dealing with heterogeneous numeric types should be part of the basic orientation material.
> If I wanted to convert a normalized f64 to an Option<u8> to use in some image pixels, the book sure didn't teach me how to do that.
I don't understand why this seems like a special case? Of course if you want to convert from one type to another type, you need to do a conversion; whether that's converting a string to an email address, a string to an integer, an integer to a float, an integer of particular size to an integer of different size. (If anything I'd say having a "primitive casting" keyword still makes it more of a special case than it should be; I prefer the OCaml style where the conversions are just ordinary functions). | null | 0 | 1546046004 | False | 0 | ecrsx6x | t3_a9zyp3 | null | null | t1_ecrpx79 | /r/programming/comments/a9zyp3/thoughts_on_rust_in_2019/ecrsx6x/ | 1548204932 | 3 | t5_2fwo | r/programming | public | null |
False | thirdegree | t2_63m0r | >I guess unless you are a die hard Python person.
Or not Dutch | null | 0 | 1544741669 | False | 0 | ebqabs4 | t3_a5sg9k | null | null | t1_ebp5y41 | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebqabs4/ | 1547572811 | 1 | t5_2fwo | r/programming | public | null |
False | gaearon | t2_7enqh | Would love to see your list. | null | 0 | 1546046011 | False | 0 | ecrsxgf | t3_aaco1d | null | null | t1_ecrhz60 | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrsxgf/ | 1548204935 | 21 | t5_2fwo | r/programming | public | null |
False | irish_throwaway_1 | t2_fqmvy | Telerik's main function seems to be helping bad developers keep their .NET blinders on so they can feel safe never needing to learn anything new. Microsoft doesn't even pitch this kind of "square peg, round hole" stuff anymore.
I remember having a particularly destructive developer pitch me on using Kendo UI - at least in early versions it was a shameless clone of Bootstrap and provided no more functionally. I asked why we'd pay for a product when there's a more mature and far more widely used open source one, and got this look like I was crazy. He seemed to feel that anything given away for free probably wasn't worth the price. | null | 0 | 1544741712 | False | 0 | ebqadp0 | t3_a5ssxk | null | null | t3_a5ssxk | /r/programming/comments/a5ssxk/razor_components_for_a_javascriptfree_frontend_in/ebqadp0/ | 1547572835 | 1 | t5_2fwo | r/programming | public | null |
False | gaearon | t2_7enqh | Before frontend I was developing desktop apps (.NET) and some mobile with Xamarin. Been doing front-end for the past few years though! | null | 0 | 1546046052 | False | 0 | ecrsz87 | t3_aaco1d | null | null | t1_ecrmwsc | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrsz87/ | 1548204957 | 10 | t5_2fwo | r/programming | public | null |
False | thirdegree | t2_63m0r | So, no change | null | 0 | 1544741772 | False | 0 | ebqaga1 | t3_a5sg9k | null | null | t1_ebq1ftj | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebqaga1/ | 1547572866 | 4 | t5_2fwo | r/programming | public | null |
False | dudeatwork | t2_59wms | Cool, thanks for the confirmation.
Love your work, by the way. Your egghead videos are the reason I was able to understand redux and know when it might be a good idea to include in project. | null | 0 | 1546046162 | False | 0 | ecrt3p7 | t3_aaco1d | null | null | t1_ecrryxi | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrt3p7/ | 1548205014 | 8 | t5_2fwo | r/programming | public | null |
False | InquiREEEEEEEEEEE | t2_2fm0meg7 | It is objectively a bad language tho. Yes, you could master the art of hammering nails with potatoes, but that does not change the fact that a potato is a bad tool for hitting nails. | null | 0 | 1544741778 | False | 0 | ebqagkf | t3_a5q9y8 | null | null | t1_ebp9jd2 | /r/programming/comments/a5q9y8/blockevil_a_userscript_that_denies_callback/ebqagkf/ | 1547572870 | 1 | t5_2fwo | r/programming | public | null |
False | Plazmatic | t2_6j0l8 | virtually no one used C++17 either however. | null | 0 | 1546046178 | False | 0 | ecrt4ea | t3_aac4hg | null | null | t1_ecrnfu3 | /r/programming/comments/aac4hg/modern_c_lamentations/ecrt4ea/ | 1548205023 | 7 | t5_2fwo | r/programming | public | null |
False | McNerdius | t2_5e8bl | Erm, https://github.com/aspnet/AspNetCore/tree/master/src/Components#razor-components
it's not a Telerik thing
| null | 0 | 1544742182 | 1544761589 | 0 | ebqaxyg | t3_a5ssxk | null | null | t1_ebqadp0 | /r/programming/comments/a5ssxk/razor_components_for_a_javascriptfree_frontend_in/ebqaxyg/ | 1547573087 | 1 | t5_2fwo | r/programming | public | null |
False | gaearon | t2_7enqh | You're right — I'm currently using JS and I don't have a degree. | null | 0 | 1546046209 | False | 0 | ecrt5p8 | t3_aaco1d | null | null | t1_ecrfqsw | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrt5p8/ | 1548205039 | 19 | t5_2fwo | r/programming | public | null |
False | levenfyfe | t2_g1bmc | But that's where the desserts are! | null | 0 | 1544742695 | False | 0 | ebqbjqg | t3_a5sg9k | null | null | t1_ebpkg15 | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebqbjqg/ | 1547573355 | 1 | t5_2fwo | r/programming | public | null |
False | LeCrushinator | t2_8mf5r | null | 0 | 1546046296 | False | 0 | ecrt985 | t3_aac4hg | null | null | t1_ecqxcbd | /r/programming/comments/aac4hg/modern_c_lamentations/ecrt985/ | 1548205083 | 13 | t5_2fwo | r/programming | public | null | |
False | send_codes | t2_1693ex | Imma give you the snarky answer and let you decide if you want a better question answered:
Because people like you don't get to tell people like me what we're passionate about. Thank fuck too, or we'd still be stuck making brooms. | null | 0 | 1544742743 | False | 0 | ebqblql | t3_a5u5dc | null | null | t1_ebq17ah | /r/programming/comments/a5u5dc/helping_blind_people_learn_to_code/ebqblql/ | 1547573409 | 7 | t5_2fwo | r/programming | public | null |
False | ChemicalRascal | t2_4ta76 | Well, OP, I for one think you're not far from the mark here. A lot of this might have been just considered good practice in most circles, but having the terminology to discuss specific aspects and benefits thereof. | null | 0 | 1546046377 | False | 0 | ecrtcjv | t3_a9evav | null | null | t3_a9evav | /r/programming/comments/a9evav/using_oop_principles_beyond_objects/ecrtcjv/ | 1548205124 | 2 | t5_2fwo | r/programming | public | null |
False | crozone | t2_7fz7k | Yeah, `tail` is the main gotcha for `cat`. `tail -f` also doesn't work if you pipe it in from `cat`, so giving `tail` the file directly makes sense. | null | 0 | 1544742756 | False | 0 | ebqbmas | t3_a5sg9k | null | null | t1_ebplhxh | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebqbmas/ | 1547573416 | 2 | t5_2fwo | r/programming | public | null |
False | Shulamite | t2_13jdls | But monad is somewhat a “subclass”(I know not many fp languange have class)of functor, so if you know monad, you must already know what a functor is | null | 0 | 1546046457 | False | 0 | ecrtftc | t3_aaco1d | null | null | t1_ecrsuso | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrtftc/ | 1548205164 | 1 | t5_2fwo | r/programming | public | null |
False | Eladricen | t2_7prio | I can't say that they're better, but in my devops role Google has learned enough about me to advertise two things that do appear to have interesting ways of approaching project management: [monday.com](https://monday.com) and [airtable.com](https://airtable.com)
That being said, my very brief look into either suggests to me that they're not implicitly SCRUM or Kanban or similar project management platforms, but general ones, where you could maybe make a template of some sort that mimicks those.
I honestly like Phabricator and Gitlab, mostly because I think free is better :P | null | 0 | 1544742790 | False | 0 | ebqbnu4 | t3_a57th7 | null | null | t1_eble8tl | /r/programming/comments/a57th7/australias_new_encryption_laws_ensure_companies/ebqbnu4/ | 1547573435 | 2 | t5_2fwo | r/programming | public | null |
False | [deleted] | None | [removed] | null | 0 | 1546046697 | False | 0 | ecrtpmy | t3_aabai1 | null | null | t1_ecr9t0y | /r/programming/comments/aabai1/fish_shell_30/ecrtpmy/ | 1548205315 | 1 | t5_2fwo | r/programming | public | null |
False | Sznurek066 | t2_tsud1 | Swift and Rust are closer to level language than C#.
Because of the modern syntax they look like typical high level language but they aren't. Both were created to replace C++ in future which will win I have no idea(maybe none).
This is also one of the reasons why Google is using Swift right now to make it the main Tensorflow language.(source below)
[https://github.com/tensorflow/swift/blob/master/docs/WhySwiftForTensorFlow.md](https://github.com/tensorflow/swift/blob/master/docs/WhySwiftForTensorFlow.md)
Actually I would argue C# is better if we are talking about current features(and environment) because it is an older language.
| null | 0 | 1544742804 | False | 0 | ebqboev | t3_a5i57x | null | null | t1_ebq1y58 | /r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebqboev/ | 1547573443 | 1 | t5_2fwo | r/programming | public | null |
False | Nimelrian | t2_64lxq | > I know what a functor and a monad are... | null | 0 | 1546046759 | False | 0 | ecrts1h | t3_aaco1d | null | null | t1_ecrtftc | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrts1h/ | 1548205345 | 0 | t5_2fwo | r/programming | public | null |
False | johnmudd | t2_1wgu | I'm waiting for something like this for Python. | null | 0 | 1544742825 | False | 0 | ebqbpbh | t3_a5umm4 | null | null | t3_a5umm4 | /r/programming/comments/a5umm4/phoenixliveview_interactive_realtime_apps_no_need/ebqbpbh/ | 1547573453 | 0 | t5_2fwo | r/programming | public | null |
False | hasen-judy | t2_2j2as8va | Why wipe your butt instead of washing it? Wiping just smears the (literal) shit all over the place. Wahlets/bidets have existed for decades (long before you and I were born).
| null | 0 | 1546046776 | False | 0 | ecrtspb | t3_aaagix | null | null | t1_ecqu5fe | /r/programming/comments/aaagix/why_review_code/ecrtspb/ | 1548205353 | -1 | t5_2fwo | r/programming | public | null |
False | KryptosFR | t2_15txl0 | Modern internet is low cost and accessible to almost all. For the good and the worst. | null | 0 | 1544742949 | False | 0 | ebqbulk | t3_a5qm02 | null | null | t1_ebovinu | /r/programming/comments/a5qm02/a_tale_of_132_es/ebqbulk/ | 1547573519 | 7 | t5_2fwo | r/programming | public | null |
False | Jadeyard | t2_8rt12 | It's still strong performance, realistically. Unfortunately investors might not have had realistic estimates. | null | 0 | 1546046776 | False | 0 | ecrtspg | t3_aa91bp | null | null | t1_ecqkrfe | /r/programming/comments/aa91bp/computer_vision_ai_object_detection_and/ecrtspg/ | 1548205353 | 1 | t5_2fwo | r/programming | public | null |
False | [deleted] | None | as a passion sure. that's great. but I don't think blind folks would be able to get nearly as much done just on account of how screen focused computers are. | null | 1 | 1544742950 | False | 0 | ebqbumv | t3_a5u5dc | null | null | t1_ebqblql | /r/programming/comments/a5u5dc/helping_blind_people_learn_to_code/ebqbumv/ | 1547573519 | -2 | t5_2fwo | r/programming | public | null |
False | airflow_matt | t2_meh1h | 1. Because most of the time during development you're running debug builds. If debug build is 150 times slower (like the example in article) then it becomes downright unusable. And debugging optimized code is not exactly a great experience.
2. I'm pretty sure that's [not true](https://godbolt.org/z/q-R8-s). | null | 0 | 1546046819 | 1546047219 | 0 | ecrtug9 | t3_aac4hg | null | null | t1_ecrpa2n | /r/programming/comments/aac4hg/modern_c_lamentations/ecrtug9/ | 1548205375 | 3 | t5_2fwo | r/programming | public | null |
False | fabiensanglard | t2_5waty | I guess your machine does not have Courier or Monospace. On Linux it seems Chrome select DejaVu Sans Mono. What OS/Browser are you using? | null | 0 | 1544743022 | False | 0 | ebqbxs4 | t3_a55xbm | null | null | t1_ebmbpce | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebqbxs4/ | 1547573558 | 1 | t5_2fwo | r/programming | public | null |
False | Drisku11 | t2_bg6v5 | Some people, like the guy that claimed fizzbuzz is a hazing ritual, are so profoundly incompetent that there really is no tactful way to tell them. At that point saying they're an idiot and shouldn't be a programmer is really more of a factual statement than an insult. Their own thoughts are enough of an insult on their own. | null | 0 | 1546046887 | False | 0 | ecrtx6m | t3_aaco1d | null | null | t1_ecrq09n | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrtx6m/ | 1548205408 | 10 | t5_2fwo | r/programming | public | null |
False | fabiensanglard | t2_5waty | I was looking at the timeline. I started to write these articles in 2008. Ten years ago. Time flies! | null | 0 | 1544743067 | False | 0 | ebqbzr0 | t3_a4m0rb | null | null | t1_ebmdos0 | /r/programming/comments/a4m0rb/game_engine_black_book_doom/ebqbzr0/ | 1547573583 | 1 | t5_2fwo | r/programming | public | null |
False | [deleted] | None | [removed] | null | 0 | 1546047057 | False | 0 | ecru40v | t3_aabai1 | null | null | t1_ecr7j1r | /r/programming/comments/aabai1/fish_shell_30/ecru40v/ | 1548205493 | 1 | t5_2fwo | r/programming | public | null |
False | shepherdjerred | t2_95udcat | I used to think the same thing and hate JS too, but once I learned how to use it effectively, it's now one of my favorites along with Java. | null | 0 | 1544743261 | False | 0 | ebqc837 | t3_a5q9y8 | null | null | t1_ebqagkf | /r/programming/comments/a5q9y8/blockevil_a_userscript_that_denies_callback/ebqc837/ | 1547573688 | 2 | t5_2fwo | r/programming | public | null |
False | lobster_johnson | t2_36b2i | This is neat, but these aren't generators in the Python sense.
Python generators are coroutines that are implemented as imperative procedures that potentially never return. The whole point is that they yield control to the caller without actually returning; in this library, "generators" are just closures that return one value per iteration and rely on closure scope for their statefulness.
True Python-style generators require coroutines in the language in order to invert the control flow.
This library is a lot more lightweight than the new C++ Ranges spec, to be sure, but also less formalized and less full-featured. | null | 0 | 1546047155 | False | 0 | ecru840 | t3_aach46 | null | null | t3_aach46 | /r/programming/comments/aach46/lazy_code_a_c_header_only_lib_what_if_you_could/ecru840/ | 1548205543 | 4 | t5_2fwo | r/programming | public | null |
False | PageFault | t2_40i2b | That gives no output on my machine, and you are missing the frowny face for false.
My result:
> grep -q 'shrimp.*$\d\.' menu.txt && echo "Available" || echo ":("
:(
> grep 'shrimp.*$\d\.' menu.txt
#No output
This one works for me though
> grep -qi 'shrimp.*$[0-9]\.' menu.txt && echo "Available!" || echo ":("
Available!
| null | 0 | 1544743312 | 1544744606 | 0 | ebqca8o | t3_a5sg9k | null | null | t1_ebpcq6f | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebqca8o/ | 1547573715 | 4 | t5_2fwo | r/programming | public | null |
False | a1studmuffin | t2_4238u | Yeah, this one is a tough pill for junior/mid engineers to swallow. It's only once you've been bitten by a bad architectural decision (made on the off chance of a potential future use-case) that you realise it's not worth trying to be too clever upfront about predicting the future and reducing code duplication. | null | 0 | 1546047165 | False | 0 | ecru8ig | t3_aac4hg | null | null | t1_ecr7nas | /r/programming/comments/aac4hg/modern_c_lamentations/ecru8ig/ | 1548205548 | 13 | t5_2fwo | r/programming | public | null |
False | send_codes | t2_1693ex | Front end development is one tiny overblown section of the industry. Accessibility tools have been around for literal decades.
Go watch Saqib Shaikh's demonstration of using VS2017 with a screen reader from Build 2017.
We're capable, competent, adaptive, and how dare you even begin to suggest that anyone you don't know can or can't do something based solely on your own miscomceptions and ignorance. | null | 0 | 1544743380 | False | 0 | ebqcd79 | t3_a5u5dc | null | null | t1_ebqbumv | /r/programming/comments/a5u5dc/helping_blind_people_learn_to_code/ebqcd79/ | 1547573751 | 7 | t5_2fwo | r/programming | public | null |
False | Katalash | t2_2lfp0pch | Ah I guess I’m speaking as someone who has contributed to a major browser in the past (doing some rendering optimization work) I do see immense value in understanding how the underlying implementation (I.e. the js engine and how it manages object lifecycles) works to extracting good performance.
I’m more of a low level guy who’s passionate about performance so I’m obviously biased, but I’m of the opinion that every dev no matter no matter what they work on can become better by understanding the memory hierarchy and how their underlying runtime manages it, and how caching works and how you can take advantage of it to get huge performance boosts in some cases. | null | 0 | 1546047223 | False | 0 | ecruarp | t3_aaco1d | null | null | t1_ecrsalq | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecruarp/ | 1548205575 | 8 | t5_2fwo | r/programming | public | null |
False | fabiensanglard | t2_5waty | Thanks for taking the time to write this thorough reply. I copied the document (to make sure it doesn't go away). Who should I credit? mrneo240? | null | 0 | 1544743388 | False | 0 | ebqcdkk | t3_a55xbm | null | null | t1_ebllfpc | /r/programming/comments/a55xbm/how_the_dreamcast_copy_protection_was_defeated/ebqcdkk/ | 1547573756 | 1 | t5_2fwo | r/programming | public | null |
False | hobodoompants | t2_5248h | I always wondered if you did .net since redux makes my .net programmer brain happy | null | 0 | 1546047458 | False | 0 | ecruk5b | t3_aaco1d | null | null | t1_ecrsz87 | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecruk5b/ | 1548205693 | 3 | t5_2fwo | r/programming | public | null |
False | telionn | t2_jbhcw | This makes a strong case for always using braces with conditional (if) blocks. The risks go beyond ordinary programmer error. | null | 0 | 1544743397 | False | 0 | ebqcdwq | t3_a5ylm8 | null | null | t3_a5ylm8 | /r/programming/comments/a5ylm8/should_have_used_ada_1_how_some_famous/ebqcdwq/ | 1547573759 | 64 | t5_2fwo | r/programming | public | null |
False | tehmicdrop | t2_zq6v5 | You're all doing better than I am.
When I hear the word "monad" i instinctively cross my legs, lower my center of gravity, and assume a defensive sitting position.
| null | 0 | 1546047466 | False | 0 | ecrukgk | t3_aaco1d | null | null | t1_ecrovu4 | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecrukgk/ | 1548205697 | 35 | t5_2fwo | r/programming | public | null |
False | Eirenarch | t2_46hjd | Everyone prefers the client side blazor but it doesn't work well today. We need to wait for more web assembly support in the browser. In the meantime some people expressed desire to use the server-side version in production today and because it is almost production quality they split it and are about to release it. | null | 0 | 1544743620 | False | 0 | ebqcncz | t3_a5ssxk | null | null | t1_ebpoio6 | /r/programming/comments/a5ssxk/razor_components_for_a_javascriptfree_frontend_in/ebqcncz/ | 1547573877 | 3 | t5_2fwo | r/programming | public | null |
False | SandalsMan | t2_evfnl | The fuck are you rambling on about you old boomer ass. Those are questions you can ask of any programming language ecosystem. | null | 0 | 1546047544 | False | 0 | ecrunm1 | t3_a9xyeq | null | null | t1_ecolkgm | /r/programming/comments/a9xyeq/frontend_development_is_not_a_problem_to_be_solved/ecrunm1/ | 1548205736 | 0 | t5_2fwo | r/programming | public | null |
False | [deleted] | None | it's cool that tools are improving and I'm sure that's great and all and maybe if I lost my sight I'd try them out. altho tbh I'd change jobs most likely.
and yeah I'm sure blind people are pretty capable and certainly adaptive to their circumstances
but there's no getting around the fact that unfortunately we have a limited number of senses and computers as they are right now rely heavily on vision. as you've pointed out you can try to adapt to that, but it's not even close to what the average person with all their senses can do. | null | 1 | 1544743713 | False | 0 | ebqcrci | t3_a5u5dc | null | null | t1_ebqcd79 | /r/programming/comments/a5u5dc/helping_blind_people_learn_to_code/ebqcrci/ | 1547573925 | 1 | t5_2fwo | r/programming | public | null |
False | SikhGamer | t2_5nj86 | I didn't say that. We just started the sequence with a massive margin. I was specifically answering the question, how often do people change databases. | null | 0 | 1546047747 | False | 0 | ecruvo0 | t3_a8vpy4 | null | null | t1_ecery28 | /r/programming/comments/a8vpy4/why_did_we_shift_away_from_databasegenerated_ids/ecruvo0/ | 1548205862 | 1 | 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.