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 | TrepidEd0601 | t2_3crcb9s | Thanks! :) I'm looking forward to meeting(?) you!! | null | 0 | 1544712505 | False | 0 | ebp77j5 | t3_a5s9a7 | null | null | t1_ebovdtw | /r/programming/comments/a5s9a7/planning_to_start_a_stream_for_people_who_want_to/ebp77j5/ | 1547554518 | 1 | t5_2fwo | r/programming | public | null |
False | flyingjam | t2_8n6t9 | You could, that's basically the 2nd example in the article. But it was more an exercise in lazy evaluation. | null | 0 | 1546025333 | False | 0 | ecr0gc7 | t3_aac4hg | null | null | t1_ecqzdk3 | /r/programming/comments/aac4hg/modern_c_lamentations/ecr0gc7/ | 1548191431 | 10 | t5_2fwo | r/programming | public | null |
False | pure_x01 | t2_3h5id | Thanks :-) | null | 0 | 1544712523 | False | 0 | ebp78ek | t3_a5suza | null | null | t1_ebp73q3 | /r/programming/comments/a5suza/lxd_38_has_been_released/ebp78ek/ | 1547554529 | 1 | t5_2fwo | r/programming | public | null |
False | vulcang96 | t2_wdcn16h | Something is fishy about this release. | null | 1 | 1546025347 | False | 0 | ecr0h7k | t3_aabai1 | null | null | t3_aabai1 | /r/programming/comments/aabai1/fish_shell_30/ecr0h7k/ | 1548191441 | -6 | t5_2fwo | r/programming | public | null |
False | eras | t2_28h5b | There should be optimizing shells! | null | 0 | 1544712538 | False | 0 | ebp792v | t3_a5sg9k | null | null | t1_ebp4vk0 | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp792v/ | 1547554537 | 5 | t5_2fwo | r/programming | public | null |
False | michaelbironneau | t2_odozc | If you want to step up, step up. There aren't "ten areas" to focus on. There is no such thing as a perfect manager or perfect leader. You don't need prior experience, you don't need to start small, and you don't need to take personal blame for everything that goes wrong. Take it from someone who got thrown into the role of CTO with zero management experience and who still has a lot to learn.
Here are my three guidelines to being a technical leader - there will be times when you want/need to ignore them, but they're pretty solid most of the time.
1. Don't be a dick
2. Accept that there will be ups and downs and you will need to work hard to get through the downs. It's a long journey, especially if this is your first gig. If you don't work on improving your technical ability, management style, commercial acumen, networking, and anything else that holds you back, you'll find the downs get more frequent and the ups get farther apart. That's a hint to work harder.
3. Know your own limits and don't try to pretend you're the superstar you're not (see rule 1). That doesn't mean you shouldn't try to improve yourself; just be honest with yourself about your value at the present time. | null | 0 | 1546025484 | False | 0 | ecr0pjf | t3_aabmhg | null | null | t3_aabmhg | /r/programming/comments/aabmhg/the_path_to_technical_leadership_how_to_go_from/ecr0pjf/ | 1548191545 | 9 | t5_2fwo | r/programming | public | null |
False | Ars-Nocendi | t2_92jju | Check out "Disrupted" by Dan Lyons.
The article is more or less in the same vein as that book. | null | 0 | 1544712550 | False | 0 | ebp79lb | t3_a5i8w0 | null | null | t3_a5i8w0 | /r/programming/comments/a5i8w0/the_truth_about_tech_from_an_insider_who_got_out/ebp79lb/ | 1547554543 | 1 | t5_2fwo | r/programming | public | null |
False | Drisku11 | t2_bg6v5 | I don't see how writing `if condition return true else return false` instead of `return condition` reduces assumptions. If anything, seeing that pattern will always make me *assume* the author is not a very good programmer, and *assume* that their code will be buggy.
That said, it goes without saying that changing the semantics of a piece of code (e.g. fixing an assumed bug) should first involve verifying those assumptions and understanding what effects the change will have. And if it turns out it wasn't a bug, there are much better ways to express that intent such as
bool assignmentSucceeded = creature.Name = "BlueSmurf";
return assignmentSucceeded;
than listing out redundant branches (though again, there are more serious issues with the design if what appears to be a simple predicate is actually mutating its inputs).
And if the = represents comparison, then there's no issue eliminating the redundant cases, so I don't see your point. | null | 0 | 1546025578 | 1546025894 | 0 | ecr0uz2 | t3_aa3qdm | null | null | t1_ecqoplv | /r/programming/comments/aa3qdm/please_do_not_attempt_to_simplify_this_code_keep/ecr0uz2/ | 1548191611 | 5 | t5_2fwo | r/programming | public | null |
False | dungone | t2_8uzx2 | The thing is, I'm using k8s just like everyone else. I appreciate your point of view because I recognize the issues you're talking about. I just see it as a little bit insane, and my most frequent real-world experience with developers using k8s is they are using it because of features that they don't really understand to begin with. They only ever had a trivial use-case, but now they are out there doing space walks in their Kubernetes space suits because they've introduced so much extra work to fit their problem around a very complicated solution, and every single day they're trying to convince me that it's because they have a very complicated problem. | null | 0 | 1544712590 | 1544712946 | 0 | ebp7bak | t3_a3tk0q | null | null | t1_ebp5y9o | /r/programming/comments/a3tk0q/is_k8s_too_complicated/ebp7bak/ | 1547554564 | 1 | t5_2fwo | r/programming | public | null |
False | renatolcarvalho | t2_13bjc4 | Nice Tips!
Do u know the difference between EF.Functions.Like and string.Contains when u just need to use a common like "%@parameter%" ?
Performance or Result. | null | 0 | 1546025761 | False | 0 | ecr15uk | t3_aa93do | null | null | t3_aa93do | /r/programming/comments/aa93do/entity_framework_core_string_filter_tips/ecr15uk/ | 1548191746 | 1 | t5_2fwo | r/programming | public | null |
False | rossisdead | t2_4a5cq | Does this enable the same annoying caret animation that the later versions of Office have? Drove me nuts. | null | 0 | 1544712649 | False | 0 | ebp7dsq | t3_a5mk9z | null | null | t1_ebnr0og | /r/programming/comments/a5mk9z/visual_studio_code_version_130_released/ebp7dsq/ | 1547554595 | 4 | t5_2fwo | r/programming | public | null |
False | spacejack2114 | t2_fp92m | Never used a decent type system and never missed it. | null | 0 | 1546025763 | False | 0 | ecr15y8 | t3_aa13tt | null | null | t1_ecqz0nv | /r/programming/comments/aa13tt/dart_vs_swift_a_comparison/ecr15y8/ | 1548191747 | 1 | t5_2fwo | r/programming | public | null |
False | ruinercollector | t2_4bzgg | Very cool, but very slow. | null | 0 | 1544712806 | False | 0 | ebp7kxq | t3_a5kug2 | null | null | t3_a5kug2 | /r/programming/comments/a5kug2/blazorfiddle_blazor_net_developer_playground_code/ebp7kxq/ | 1547554684 | 1 | t5_2fwo | r/programming | public | null |
False | WonderfulNinja | t2_yeloc5f | Because in that way they can't use their brand new toys they got in Xmas. | null | 0 | 1546025792 | False | 0 | ecr17pc | t3_aac4hg | null | null | t1_ecqzdk3 | /r/programming/comments/aac4hg/modern_c_lamentations/ecr17pc/ | 1548191769 | 102 | t5_2fwo | r/programming | public | null |
False | pernox | t2_4bpvj | Once upon a time ago there used to be 'system programmers' of the same ilk as 'mainframe programmers' or so my graybeard mentors used to tell me. Back when they had to program their device drivers, uphill, in the basement. 25 years later and as my beard starts to gray I only now start to understand. | null | 0 | 1544712846 | False | 0 | ebp7n9e | t3_a5sg9k | null | null | t1_ebp3vc5 | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp7n9e/ | 1547554712 | 16 | t5_2fwo | r/programming | public | null |
False | o132 | t2_155mdyzk | English readme for sure, then I would add an option for slowing down the drawing.
I looked at the original project instead of yours because of non-english readme and slowing down the drawing is what I would like to see | null | 0 | 1546026042 | False | 0 | ecr1m4y | t3_aa90v7 | null | null | t3_aa90v7 | /r/programming/comments/aa90v7/the_hobbit_art_any_suggetion_in_order_to_improve/ecr1m4y/ | 1548191947 | 3 | t5_2fwo | r/programming | public | null |
False | crozone | t2_7fz7k | Also, I love using cat uselessly - the "useless use of cat" crowd can suck it. If anything it's *more* unix to standardise the way fds from disk are piped into other processes, rather than relying on the tool to do it itself.
| null | 0 | 1544713050 | False | 0 | ebp7wao | t3_a5sg9k | null | null | t1_ebp4jea | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp7wao/ | 1547554852 | 116 | t5_2fwo | r/programming | public | null |
False | Dnars | t2_exjhl | Added to my wish list | null | 0 | 1546026062 | False | 0 | ecr1n9d | t3_aac063 | null | null | t3_aac063 | /r/programming/comments/aac063/when_good_engineers_write_bad_software/ecr1n9d/ | 1548191962 | 1 | t5_2fwo | r/programming | public | null |
False | deadcow5 | t2_96bew | “But, but... you’re wasting a *whole process*!”
Said people in 1995, before multiple CPU cores *on your friggin phone* were a thing. | null | 0 | 1544713076 | False | 0 | ebp7xep | t3_a5sg9k | null | null | t1_ebp5b0e | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp7xep/ | 1547554866 | 20 | t5_2fwo | r/programming | public | null |
False | MrGurns | t2_88i8b | Was this comment written by AI? | null | 0 | 1546026068 | False | 0 | ecr1nld | t3_aa91bp | null | null | t1_ecqz984 | /r/programming/comments/aa91bp/computer_vision_ai_object_detection_and/ecr1nld/ | 1548191965 | 2 | t5_2fwo | r/programming | public | null |
False | mojomonkeyfish | t2_71i1r | Absolutely. As there should be. Python is not the One True Language! All those who do not code the One True Language are not true programmers. They are blasphemers.
But, for real, I've developed primarily in five different languages, and each of them has gotten me dirty looks in interviews. When I was a Jr. (and I lived in the Midwest, where jobs weren't everywhere), this caused a lot of anxiety. Now, I consider those derisive looks and comments to be a strike against the interviewers, and are the reason I've turned down jobs.
I was told that my "excessive" C# experience was the reason a Node shop didn't want to hire me. This was when Node was only a year or so old, and in terms of production use - barely an infant. I had tried to relate positive similarities in modern C# code style and design patterns to Javascript, to pad out my necessarily non-existent commercial experience with Node. According to the recruiter, they felt that I was trying to evangelize them to C#, and didn't want to risk hiring me. I was interested in the job specifically because I'd get to work with Node.
A few years later, and with a few years of Node experience, I applied to a C# shop that wanted to add a Sr. Node developer. They wanted me to complete a code challenge for them: take a few hours and solve a puzzle. Because the position was meant to bring in Node experience, I chose to implement the challenge in Node. Knowing they might not know what to do with the submitted code, I made sure to comment it well and included instructions for running it. According to the recruiter, the sample was "technically correct, but they didn't like the choice of language" (I got the feeling they didn't even look). I mean, I was thankful that they'd shot me down like that, up front, but I wish they'd let me know before I wasted several hours on the task.
It's not languages that are responsible. It's developers. We tend to be insecure and egocentric. A Jr. dev, given the task of interviewing somebody with decades of experience, will try extra hard to find any chink in the armor to bring a candidate down. They don't want somebody smarter than them. They get sadistic pleasure from using stupid trick puzzles to quiz those that are "inferior" (and if you solve them, you obviously cheated). Make people write code on a whiteboard, and read their handwriting like tea leaves.
Not all places are like that, and some have really good management and hiring, but tribalism is just the nature of the personality type. "Bro-grammers" are not a new phenomenon: software development has always been a nerd fraternity. | null | 0 | 1544713101 | 1544714752 | 0 | ebp7yha | t3_a5i57x | null | null | t1_ebouu5l | /r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebp7yha/ | 1547554880 | 1 | t5_2fwo | r/programming | public | null |
False | fistsmalloy | t2_h0bgn | Build it in to a daily schedule like you would the gym. I don’t sleep much so I start every night when the family go to bed at 10pm. I work 9am to 6pm and protect family time between 6pm and 10pm an then work on personal stuff for as long as I am awake but a minimum of an hour a night. If I’m tired, I just read a book, if I’m more adventurous I work on a pet project or just try and build a little thing in a new technology. I find that learning something new for fun, that has some utility at work helps keep the motivation up. | null | 0 | 1546026216 | False | 0 | ecr1w4n | t3_aab645 | null | null | t1_ecqse6z | /r/programming/comments/aab645/learning_to_learn_develop_skills_to_master/ecr1w4n/ | 1548192100 | 8 | t5_2fwo | r/programming | public | null |
False | HowIsntBabbyFormed | t2_e9toh | Not only that, but you can do the comparison to 10 in `awk` too:
awk -F '$' '$1 ~ /shrimp/ && $2 < 10 {found=1; exit} END { if (found) print "Available"; else print ":("}' menu.txt | null | 0 | 1544713172 | False | 0 | ebp81j8 | t3_a5sg9k | null | null | t1_eboxlib | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp81j8/ | 1547554917 | 22 | t5_2fwo | r/programming | public | null |
False | hoosierEE | t2_g6ibf | Reminds me of something I saw in a tweet once:
> 3 line function -> 40 comments in GitHub issue
> 1000 line function -> "LGTM" | null | 0 | 1546026252 | False | 0 | ecr1y81 | t3_aa3qdm | null | null | t1_ecpj533 | /r/programming/comments/aa3qdm/please_do_not_attempt_to_simplify_this_code_keep/ecr1y81/ | 1548192125 | 18 | t5_2fwo | r/programming | public | null |
False | MikeFightsBears | t2_4hf3a | You realize that you're the organism spreading disease, right? | null | 0 | 1544713209 | 1544716399 | 0 | ebp835r | t3_a5qm02 | null | null | t1_ebp5nmm | /r/programming/comments/a5qm02/a_tale_of_132_es/ebp835r/ | 1547554937 | 18 | t5_2fwo | r/programming | public | null |
False | Hobo-and-the-hound | t2_ndhxhno | I’m a real boy! | null | 0 | 1546026270 | False | 0 | ecr1z8o | t3_aa91bp | null | null | t1_ecr1nld | /r/programming/comments/aa91bp/computer_vision_ai_object_detection_and/ecr1z8o/ | 1548192139 | 5 | t5_2fwo | r/programming | public | null |
False | deadcow5 | t2_96bew | Asking the real questions. | null | 0 | 1544713210 | False | 0 | ebp836o | t3_a5sg9k | null | null | t1_ebp1n6v | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp836o/ | 1547554938 | 3 | t5_2fwo | r/programming | public | null |
False | shenglong | t2_2nn6w | > I don't see how writing if condition return true else return false instead of return condition
Because it's not about "return condition"; it's about whether or not "return condition" is a valid replacement *for the existing code* (<- this is an important piece here).
Maybe I'm not being clear enough. The problem is, here what evidence is there that the developer did not accidentally leave out the alternate branch?
If he *did* accidentally leave out the alternate branch, then obviously all your refactored code did was to rewrite the bug in a different way. You're highlighting an issue brought about by implicit coding. I'm trying to explain that this is what explicit coding tries to avoid. If the original code handled the conditions explicitly, then you can be much more confident that your rewrite does *what was originally intended*. | null | 0 | 1546026320 | 1546026760 | 0 | ecr226m | t3_aa3qdm | null | null | t1_ecr0uz2 | /r/programming/comments/aa3qdm/please_do_not_attempt_to_simplify_this_code_keep/ecr226m/ | 1548192176 | 1 | t5_2fwo | r/programming | public | null |
False | crozone | t2_7fz7k | `cat` is almost never useless. Not only is it almost always equivalent in performance, using pipes is easier to modify and chain with other commands later on.
Pointing out useless use of `cat` is a stupid fad that needs to die. | null | 0 | 1544713257 | False | 0 | ebp8555 | t3_a5sg9k | null | null | t1_ebox6vg | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp8555/ | 1547554962 | 11 | t5_2fwo | r/programming | public | null |
False | Brillegeit | t2_5q0j1 | Which one of them? RIP Longhorn. | null | 0 | 1546026348 | False | 0 | ecr23yb | t3_a89y3r | null | null | t1_ec95r2n | /r/programming/comments/a89y3r/the_node_modules_problem/ecr23yb/ | 1548192197 | 1 | t5_2fwo | r/programming | public | null |
False | HowIsntBabbyFormed | t2_e9toh | [This is a better version of all in awk](https://www.reddit.com/r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp81j8/)
Just split on the `$` to begin with, exit immediately if a match is found, and only print `Available` or `:(` once. | null | 0 | 1544713281 | False | 0 | ebp865n | t3_a5sg9k | null | null | t1_eboxzup | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp865n/ | 1547554974 | 9 | t5_2fwo | r/programming | public | null |
False | _DuranDuran_ | t2_psftn | And (IMHO) IntelliJ beats beats the shit out of both. | null | 0 | 1546026380 | False | 0 | ecr25u4 | t3_aa05by | null | null | t1_ecoa5n5 | /r/programming/comments/aa05by/netbeans_100_released/ecr25u4/ | 1548192220 | 4 | t5_2fwo | r/programming | public | null |
False | deadcow5 | t2_96bew | Found the QA engineer. | null | 0 | 1544713432 | False | 0 | ebp8ciw | t3_a5sg9k | null | null | t1_ebp70qo | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp8ciw/ | 1547555054 | 372 | t5_2fwo | r/programming | public | null |
False | smashedshanky | t2_hh9bm | How did you get into doing what you do? Like the process, do you have a PhD? Is this your first job? I want to get into this industry as well. | null | 0 | 1546026536 | False | 0 | ecr2esi | t3_aa91bp | null | null | t1_ecqdg1t | /r/programming/comments/aa91bp/computer_vision_ai_object_detection_and/ecr2esi/ | 1548192331 | 2 | t5_2fwo | r/programming | public | null |
False | hoosierEE | t2_g6ibf | > scrapes the menu into a text file
Bull. No restaurant has their menu in a format amenable to command-line processing. They're always done with flash players, 19MB javascript frameworks, or a PDF if you're really lucky. | null | 0 | 1544713513 | False | 0 | ebp8fzl | t3_a5sg9k | null | null | t3_a5sg9k | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp8fzl/ | 1547555096 | 214 | t5_2fwo | r/programming | public | null |
False | AdjustedMold97 | t2_kwtr4 | The search includes both the Manhattan distance (distance from given node to end node) and walking distance (total distance traversed from start to given node) | null | 0 | 1546026643 | False | 0 | ecr2l0c | t3_aabfr9 | null | null | t1_ecqo2om | /r/programming/comments/aabfr9/hey_guys_i_coded_a_program_that_solves_mazes/ecr2l0c/ | 1548192408 | 1 | t5_2fwo | r/programming | public | null |
False | tzjmetron | t2_13hwdxno | Seconded. | null | 0 | 1544713549 | False | 0 | ebp8hmj | t3_a5sg9k | null | null | t1_eboymco | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp8hmj/ | 1547555116 | -1 | t5_2fwo | r/programming | public | null |
False | HellfireOwner | t2_2juz5fhu | Oh, I get it...I see what you are up to...
You are failing miserably, but I see what you are up to...
&#x200B;
You know, when you boil crabs, you can leave the pot uncovered...any time a crab tries to escape, the other crabs will pull it back in...
You are a pot crab. You know who else was a pot crab? Our chimp cousins. It won't be long now...your species will split from ours and we will rid ourselves of the genetic garbage I call pot crabs. | null | 0 | 1546026671 | False | 0 | ecr2ml6 | t3_aa75kj | null | null | t1_ecps6gs | /r/programming/comments/aa75kj/proposal_rpn_as_super_macro_for_cc_code/ecr2ml6/ | 1548192428 | -2 | t5_2fwo | r/programming | public | null |
False | chugga_fan | t2_raasi | Github's product actually is enterprise hosting of git repositories, not the public repositories, the public repositories are just advertising. | null | 0 | 1544713618 | False | 0 | ebp8kmg | t3_a5qm02 | null | null | t1_eboqps1 | /r/programming/comments/a5qm02/a_tale_of_132_es/ebp8kmg/ | 1547555154 | 9 | t5_2fwo | r/programming | public | null |
False | senatorr64 | t2_18ac0zea | I’d love a classifier which could identify bad video editing tbh. | null | 0 | 1546027074 | False | 0 | ecr3a5v | t3_aa91bp | null | null | t1_ecr1nld | /r/programming/comments/aa91bp/computer_vision_ai_object_detection_and/ecr3a5v/ | 1548192749 | 1 | t5_2fwo | r/programming | public | null |
False | deadcow5 | t2_96bew | Oh yeah! Good ol’ `C-x M-c M-butterfly`. | null | 0 | 1544713714 | False | 0 | ebp8oui | t3_a5sg9k | null | null | t1_ebp7n9e | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp8oui/ | 1547555205 | 11 | t5_2fwo | r/programming | public | null |
False | sobels | t2_bdhcu | If we're talking about software developed for the Shuttle, why on Earth would we talk about the JPL C coding standard? | null | 0 | 1546027248 | False | 0 | ecr3kq2 | t3_aa3qdm | null | null | t1_ecqqlq2 | /r/programming/comments/aa3qdm/please_do_not_attempt_to_simplify_this_code_keep/ecr3kq2/ | 1548192880 | 19 | t5_2fwo | r/programming | public | null |
False | hoosierEE | t2_g6ibf | If you do end up scraping the menu, please let the scientific community know. Pretty sure it's NP-complete. Source: https://theoatmeal.com/static/restaurant_website.html | null | 0 | 1544713841 | False | 0 | ebp8ubo | t3_a5sg9k | null | null | t1_ebp35nq | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp8ubo/ | 1547555273 | 123 | t5_2fwo | r/programming | public | null |
False | aldanor | t2_ex1ee | Funny as I’ve switched from fish to zsh early this year; bash compatibility alone is worth it for me, and with oh-my-zsh and prezto zsh is quite fish-like on its own, all the nice stuff like colours and fuzzy searching. Still using fish at work though and don’t mind it either. | null | 0 | 1546027321 | False | 0 | ecr3p5f | t3_aabai1 | null | null | t1_ecqqqyo | /r/programming/comments/aabai1/fish_shell_30/ecr3p5f/ | 1548192935 | 12 | t5_2fwo | r/programming | public | null |
False | HowIsntBabbyFormed | t2_e9toh | > Meanwhile, the Windows programmer can eschew a lot of the stringly-ness here by operating on objects:
... proceeds to write code that does string splitting and string array access 🤔...
You've basically rewritten what [awk can do in one line](https://www.reddit.com/r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp81j8/). Same for the `$` delimiter cheat. | null | 0 | 1544713873 | False | 0 | ebp8vrm | t3_a5sg9k | null | null | t1_ebp3da1 | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp8vrm/ | 1547555291 | 23 | t5_2fwo | r/programming | public | null |
False | Baknik | t2_6cg1l | Love this. It's ridiculous to expect any one person to know everything, or to even be aware of everything. | null | 0 | 1546027327 | False | 0 | ecr3phs | t3_aaco1d | null | null | t3_aaco1d | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecr3phs/ | 1548192938 | 159 | t5_2fwo | r/programming | public | null |
False | TheGift_RGB | t2_sgjy1 | No, I'm the white blood cell working to protect this subreddit from medium.com and other similar diseases. | null | 0 | 1544713920 | False | 0 | ebp8xuw | t3_a5qm02 | null | null | t1_ebp835r | /r/programming/comments/a5qm02/a_tale_of_132_es/ebp8xuw/ | 1547555317 | -29 | t5_2fwo | r/programming | public | null |
False | NoInterest4 | t2_9al6h2j | While the arguments are mostly invalid (he insists on using coroutines while it’s clear that the current state of the language is not capable of handling them natively), most of his points are valid. C++ features are sometimes overused, producing unreadable code, many times by junior developers who want to experiment their limits. Also compilation times are big issue, but big projects tend to throw enough hardware in their building farms that are capable of reducing the impact of this. | null | 1 | 1546027386 | False | 0 | ecr3syp | t3_aac4hg | null | null | t3_aac4hg | /r/programming/comments/aac4hg/modern_c_lamentations/ecr3syp/ | 1548192983 | -5 | t5_2fwo | r/programming | public | null |
False | Rhylyk | t2_ivlih | The shell doesn't have the same language support as the editor though. It's just a dumb terminal. | null | 0 | 1544713948 | False | 0 | ebp8z1k | t3_a5mk9z | null | null | t1_eboryax | /r/programming/comments/a5mk9z/visual_studio_code_version_130_released/ebp8z1k/ | 1547555332 | 3 | t5_2fwo | r/programming | public | null |
False | shenglong | t2_2nn6w | Have you even bothered to read the submission?
> We call this style 'space shuttle style'. Space shuttle style is meant to ensure that every branch and condition is considered and accounted for - the same way code is written at NASA for applications like the space shuttle.
If you want to be pedantic about this:
- there is not just one "shuttle"
- there is not just one system that supports their technologies
- these systems are not all written in the same languages.
Various systems will have varying degrees of safety requirements - some mandated by federal law, others self-imposed. In the linked usage, "shuttle" style can be replaced with "mission-critical". In other words, there are loads more companies beside NASA who uses these standards.
In embedded systems that don't have the luxury of having compilers that enforce exhaustive conditional checks, you use known standards with supported tooling. e.g. MISRA-C.
If you're asking why the K8's team decided to follow this pattern for this particular file, read their comments.
If you're saying that you don't agree with their choices then that's a completely different story.
If you simply think that calling it "shuttle-style" is bad form, well I don't really know how much more pedantic you can get...
// Intentionally blank | null | 0 | 1546027460 | 1546027950 | 0 | ecr3xbw | t3_aa3qdm | null | null | t1_ecr3kq2 | /r/programming/comments/aa3qdm/please_do_not_attempt_to_simplify_this_code_keep/ecr3xbw/ | 1548193036 | -1 | t5_2fwo | r/programming | public | null |
False | [deleted] | None | [deleted] | null | 0 | 1544714079 | False | 0 | ebp94w5 | t3_a5sg9k | null | null | t1_ebp3bgx | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp94w5/ | 1547555434 | 1 | t5_2fwo | r/programming | public | null |
False | crash41301 | t2_j56hi | Only in poorly run teams... ours have always been based on the whole cycle | null | 0 | 1546027641 | False | 0 | ecr489n | t3_aaagix | null | null | t1_ecqxqtv | /r/programming/comments/aaagix/why_review_code/ecr489n/ | 1548193171 | 8 | t5_2fwo | r/programming | public | null |
False | GYN-k4H-Q3z-75B | t2_lbonz | PowerShell is amazing. It's what happens when a language is intentionally designed to be ugly and cryptic for IT people but capable of everything that Windows and .NET do. | null | 0 | 1544714169 | False | 0 | ebp98wx | t3_a5sg9k | null | null | t1_ebp3da1 | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp98wx/ | 1547555483 | 33 | t5_2fwo | r/programming | public | null |
False | sobels | t2_bdhcu | Of course I read it. But I read *everything*, including the context for that comment:
> This controller is intentionally written in a very verbose style. You will
> notice:
> 1. Every 'if' statement has a matching 'else' (exception: simple error
> checks for a client API call)
> 2. Things that may seem obvious are commented explicitly
> We call this style 'space shuttle style'. Space shuttle style is meant to
> ensure that every branch and condition is considered and accounted for -
> the same way code is written at NASA for applications like the space
> shuttle.
Assuming they're referring to the JPL coding standard from this snippet is... charitable.
EDIT - and since I'm rebutting a mutable comment, let me add -
> In embedded systems that don't have the luxury of having compilers that enforce exhaustive conditional checks, you use known standards with supported tooling. e.g. MISRA-C.
I think these are great tools. k8s is definitely not using those in this file.
> If you're asking why the K8's decided to follow this pattern for this particular file, read their comments.
They're only following a skin-deep replica of any of NASA/JPL's coding standards, which is my whole point. I know why they're doing it, but it's not going to work for them. | null | 0 | 1546027668 | 1546028027 | 0 | ecr49yj | t3_aa3qdm | null | null | t1_ecr3xbw | /r/programming/comments/aa3qdm/please_do_not_attempt_to_simplify_this_code_keep/ecr49yj/ | 1548193221 | 14 | t5_2fwo | r/programming | public | null |
False | PantstheCat | t2_mn7db | Person who doesn't understand javascript here: it seems like this is intended to be run by your browser. How would you go about doing that? | null | 0 | 1544714253 | False | 0 | ebp9cnq | t3_a5q9y8 | null | null | t3_a5q9y8 | /r/programming/comments/a5q9y8/blockevil_a_userscript_that_denies_callback/ebp9cnq/ | 1547555529 | 1 | t5_2fwo | r/programming | public | null |
False | matthieum | t2_5ij2c | You may be interested in knowing that the Rust community has been looking pretty intently in Datalog; especially for their compiler implementation.
The [datafrog](https://crates.io/crates/datafrog) library is a lightweight Datalog engine used inside the [polonius-engine](https://crates.io/crates/polonius-engine) library which implements the borrow-checker algorithm; the lynch-pin of Rust's memory safety.
Relatedly, the [chalk-engine](https://crates.io/crates/chalk-engine) library is a Prolog-ish interpreter planned to be integrated in the compiler to solve traits-related (typeclass-related, for the Haskell crowd) questions of the type: knowing `T` implements the trait `Foo`, does `X<T>` implements the trait `Bar`?
In both cases, the impetus has been the ability of specifying the rules in more formal languages, so that the rules could be checked independently of their implementation, and then having a straightforward conversion to avoid mangling the rules during translation. | null | 0 | 1546027681 | False | 0 | ecr4api | t3_aa7aea | null | null | t3_aa7aea | /r/programming/comments/aa7aea/the_essence_of_datalog/ecr4api/ | 1548193230 | 8 | t5_2fwo | r/programming | public | null |
False | humanmanguy | t2_4o1fd | That’s all fine and dandy until Windows forcefully installs an update while you’re trying to order. | null | 0 | 1544714272 | False | 0 | ebp9dhj | t3_a5sg9k | null | null | t1_ebp3da1 | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp9dhj/ | 1547555539 | 10 | t5_2fwo | r/programming | public | null |
False | [deleted] | None | [deleted] | null | 0 | 1546027711 | False | 0 | ecr4cjo | t3_aac4hg | null | null | t1_ecr0f3z | /r/programming/comments/aac4hg/modern_c_lamentations/ecr4cjo/ | 1548193253 | 1 | t5_2fwo | r/programming | public | null |
False | shepherdjerred | t2_95udcat | Only if you don't know how to use it properly | null | 1 | 1544714402 | False | 0 | ebp9jd2 | t3_a5q9y8 | null | null | t1_ebopwsw | /r/programming/comments/a5q9y8/blockevil_a_userscript_that_denies_callback/ebp9jd2/ | 1547555612 | 2 | t5_2fwo | r/programming | public | null |
False | Matthew94 | t2_6jzsd | > make the algorithm reuseable by giving the function a function pointer
Why use function pointers when you can use function objects? | null | 0 | 1546027752 | False | 0 | ecr4f04 | t3_aac4hg | null | null | t1_ecqzdk3 | /r/programming/comments/aac4hg/modern_c_lamentations/ecr4f04/ | 1548193283 | 43 | t5_2fwo | r/programming | public | null |
False | Condex | t2_o7nuj | >Code qualities such as complexity, maintainability, readability etc are to a large extent social, contextual, subjective and relative.
Some things are going to be subjective. But some things are definitely always harder to comprehend regardless of your background. For example, if all symbol names were a series of underscores. This is always going to be harder to understand than well named symbols (let's put the definition for what's well named off for now).
&#x200B;
If we can show that one thing is objectively less complex for people than some other thing, then I'm wondering if that's true for other aspects of code (and I think the answer is yes). I'm more than happy to test any ideas that get raised in the search for objective complexity with studies, but I don't think we should just give up because it doesn't seem like something that can be done at first glance.
&#x200B; | null | 0 | 1544714517 | False | 0 | ebp9oie | t3_a5cm5c | null | null | t1_eborz2x | /r/programming/comments/a5cm5c/people_who_disagree_with_you_arent_trying_to_make/ebp9oie/ | 1547555675 | 1 | t5_2fwo | r/programming | public | null |
False | matthieum | t2_5ij2c | What are the odds that the one example they'd pick would be pointing fingers at my former company :( ? | null | 0 | 1546027824 | False | 0 | ecr4j9m | t3_aac063 | null | null | t3_aac063 | /r/programming/comments/aac063/when_good_engineers_write_bad_software/ecr4j9m/ | 1548193336 | 5 | t5_2fwo | r/programming | public | null |
False | shepherdjerred | t2_95udcat | Install the tampermonkey extension for your browser, and then create a new script with this as the code | null | 0 | 1544714551 | False | 0 | ebp9q49 | t3_a5q9y8 | null | null | t1_ebp9cnq | /r/programming/comments/a5q9y8/blockevil_a_userscript_that_denies_callback/ebp9q49/ | 1547555695 | 1 | t5_2fwo | r/programming | public | null |
False | Cloaked9000 | t2_bq2i5 | Fè̖̠͎e̲̦̤̣̫ͅd̘̗͈̳̣̕ ̵͖̦m̯͍̙̞ͅe͕̠͇̟͕̯ ̵͉̫̰̺̻̘̫R̵͉̝̼̠̜̭͔A̺M̡ | null | 0 | 1546027855 | False | 0 | ecr4l9m | t3_aac4hg | null | null | t1_ecqxcbd | /r/programming/comments/aac4hg/modern_c_lamentations/ecr4l9m/ | 1548193361 | 154 | t5_2fwo | r/programming | public | null |
False | Fordiman | t2_3ttlh | There's a chrome extension called Tampermonkey, and a Firefox extension called Greasemonkey. They have basically the same API.
Install the relevant extension, then install the userscript. | null | 0 | 1544714576 | False | 0 | ebp9r9e | t3_a5q9y8 | null | null | t1_ebp9cnq | /r/programming/comments/a5q9y8/blockevil_a_userscript_that_denies_callback/ebp9r9e/ | 1547555710 | 1 | t5_2fwo | r/programming | public | null |
False | Gimpansor | t2_dwxtj | Compile Times and Debug Runtime Performance are also the two biggest gripes I have with C++. And I am not seeing too much movement to improve it. Maybe C++ modules will help? Who knows! | null | 0 | 1546027888 | False | 0 | ecr4naa | t3_aac4hg | null | null | t3_aac4hg | /r/programming/comments/aac4hg/modern_c_lamentations/ecr4naa/ | 1548193386 | 17 | t5_2fwo | r/programming | public | null |
False | shanahanjrs | t2_ziz37 | > TDD
Lost me there | null | 0 | 1544714591 | False | 0 | ebp9rxa | t3_a5r84b | null | null | t1_ebopbbx | /r/programming/comments/a5r84b/you_dont_know_tdd/ebp9rxa/ | 1547555717 | 5 | t5_2fwo | r/programming | public | null |
False | gavin7 | t2_86no3 | I've been using [gr](https://github.com/mixu/gr) to basically do what your alias does. It's been super handy with all my repos which I can tag however I want. Going to try out gitbatch as well. | null | 0 | 1546028074 | False | 0 | ecr4yep | t3_a9yxp6 | null | null | t1_eco8ht8 | /r/programming/comments/a9yxp6/gitbatch_manage_all_of_your_git_repositories_in/ecr4yep/ | 1548193523 | 3 | t5_2fwo | r/programming | public | null |
False | LetterBoxSnatch | t2_x3363 | |
[This is not a pipe.](https://en.wikipedia.org/wiki/The_Treachery_of_Images) | null | 0 | 1544714633 | False | 0 | ebp9twn | t3_a5sg9k | null | null | t1_ebp4jea | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp9twn/ | 1547555742 | 86 | t5_2fwo | r/programming | public | null |
False | verylittlefinger | t2_ta9ws | ***I*** pay my developers to design, implement, test, deploy and support code running in production, and also review specs and code by other developers. During the review time these activities - both personal contributions as well as helping other people - are weighted based on impact. If you helped spec and code reviewed every line of another person’s system, you get the credit. Depending on the amount of the help, you may get more credit than the person who implemented it.
I am a dev manager at Microsoft. | null | 0 | 1546028085 | False | 0 | ecr4z3a | t3_aaagix | null | null | t1_ecqxqtv | /r/programming/comments/aaagix/why_review_code/ecr4z3a/ | 1548193532 | 23 | t5_2fwo | r/programming | public | null |
False | vetinari | t2_826z | Just write your snippets in the editor in ipython mode and then run the cells. | null | 0 | 1544714635 | False | 0 | ebp9tyv | t3_a5mk9z | null | null | t1_ebp8z1k | /r/programming/comments/a5mk9z/visual_studio_code_version_130_released/ebp9tyv/ | 1547555743 | -1 | t5_2fwo | r/programming | public | null |
False | agumonkey | t2_62nu4 | that is a pretty funky amazing news, I had no idea :) I wanted to learn prolog based compilers and rust .. so you get it. | null | 0 | 1546028117 | False | 0 | ecr512q | t3_aa7aea | null | null | t1_ecr4api | /r/programming/comments/aa7aea/the_essence_of_datalog/ecr512q/ | 1548193557 | 1 | t5_2fwo | r/programming | public | null |
False | talsit | t2_32578 | Try a different country... | null | 0 | 1544714649 | False | 0 | ebp9umm | t3_a5sg9k | null | null | t1_ebp5469 | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp9umm/ | 1547555750 | 14 | t5_2fwo | r/programming | public | null |
False | daxbert | t2_4ml3a | Maybe a dumb observation, but "vastly" more complex... how? Is it actual complexity or scale?
\~10\^15 synapses in a brain, no more than 100 neurotransmitters. So 10\^17 "edges" to model.
I get that these numbers are massive and are a scale problem, but where's the complexity? | null | 0 | 1546028130 | False | 0 | ecr51w8 | t3_aa91bp | null | null | t1_ecqkcwy | /r/programming/comments/aa91bp/computer_vision_ai_object_detection_and/ecr51w8/ | 1548193566 | 1 | t5_2fwo | r/programming | public | null |
False | shenlong54 | t2_boei7vx | Love me some xkcd reference | null | 0 | 1544714703 | False | 0 | ebp9x3b | t3_a5sg9k | null | null | t1_ebp8oui | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp9x3b/ | 1547555781 | 1 | t5_2fwo | r/programming | public | null |
False | jcelerier | t2_nju89 | because the point of C++ is doing stuff at compile time, not at runtime | null | 0 | 1546028349 | False | 0 | ecr5fk0 | t3_aac4hg | null | null | t1_ecqzdk3 | /r/programming/comments/aac4hg/modern_c_lamentations/ecr5fk0/ | 1548193735 | 23 | t5_2fwo | r/programming | public | null |
False | de_argh | t2_xxcyd | This was clearly written by my PFY | null | 0 | 1544714724 | False | 0 | ebp9y03 | t3_a5sg9k | null | null | t3_a5sg9k | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebp9y03/ | 1547555792 | 2 | t5_2fwo | r/programming | public | null |
False | shenglong | t2_2nn6w | > JPL coding standard
You're being pedantic. The bottom-line is that they wrote they wrote the code to explicitly account for alternate conditions. It's not unreasonable - even though not necessary - to state that NASA/JPL also use these guidelines (even though I'm not even sure they follow 14.10 - it's also completely irrelevant).
Again, if your main problem is that they called it "shuttle-style", then just replace it with "mission-critical" or whatever style. | null | 0 | 1546028413 | False | 0 | ecr5jjg | t3_aa3qdm | null | null | t1_ecr49yj | /r/programming/comments/aa3qdm/please_do_not_attempt_to_simplify_this_code_keep/ecr5jjg/ | 1548193814 | -9 | t5_2fwo | r/programming | public | null |
False | zergling_Lester | t2_ilqes03 | Behold a literal autoimmune disorder in human form. | null | 0 | 1544714726 | False | 0 | ebp9y4d | t3_a5qm02 | null | null | t1_ebp8xuw | /r/programming/comments/a5qm02/a_tale_of_132_es/ebp9y4d/ | 1547555795 | 24 | t5_2fwo | r/programming | public | null |
False | jcelerier | t2_nju89 | according to jetbrains, it has already overtaken it. I am personnally lucky in having only worked in C++>=11 projects since 2013.
See https://blog.jetbrains.com/clion/2018/06/the-developer-ecosystem-in-2018-key-trends-for-c-and-cpp/ | null | 0 | 1546028423 | False | 0 | ecr5k4s | t3_aac4hg | null | null | t1_ecqu6o3 | /r/programming/comments/aac4hg/modern_c_lamentations/ecr5k4s/ | 1548193821 | 34 | t5_2fwo | r/programming | public | null |
False | Kyrolike | t2_6hhhh | Looking forward as well. Btw as someone who is really interested in Japan myself, were you born there or did you move there for work/other reasons? | null | 0 | 1544714795 | False | 0 | ebpa1af | t3_a5s9a7 | null | null | t1_ebp77j5 | /r/programming/comments/a5s9a7/planning_to_start_a_stream_for_people_who_want_to/ebpa1af/ | 1547555834 | 1 | t5_2fwo | r/programming | public | null |
False | [deleted] | None | [deleted] | null | 0 | 1546028436 | 1548085704 | 0 | ecr5kxh | t3_aa3qdm | null | null | t1_ecqm9ej | /r/programming/comments/aa3qdm/please_do_not_attempt_to_simplify_this_code_keep/ecr5kxh/ | 1548193831 | 2 | t5_2fwo | r/programming | public | null |
False | Mukhasim | t2_oocp1 | I got rejected by a non-developer interviewer because it was a Java position and I'd had Java jobs before but I'd been working in C# for a few years and hadn't used Java 8 yet. | null | 0 | 1544714808 | False | 0 | ebpa1wy | t3_a5i57x | null | null | t1_ebn8u0b | /r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebpa1wy/ | 1547555842 | 5 | t5_2fwo | r/programming | public | null |
False | daxbert | t2_4ml3a | Or, just use two cameras, and leverage the mask offsets, kinda like our eyes.
&#x200B; | null | 0 | 1546028449 | False | 0 | ecr5lp5 | t3_aa91bp | null | null | t1_ecqmh84 | /r/programming/comments/aa91bp/computer_vision_ai_object_detection_and/ecr5lp5/ | 1548193841 | 8 | t5_2fwo | r/programming | public | null |
False | Fordiman | t2_3ttlh | Tampermonkey scripts run after the document has become interactive. So by the time you get around to disabling eval, that ship very well may have sailed.
That said, if there were a way to disable:
* eval
* new Function
* Data URLs
* Programmatically added inline scripts
* scripts with data: or blob: URLs
I'd be down for that.
For now, I'll be satisfied with neutering code originating from those vectors.
| null | 0 | 1544714818 | False | 0 | ebpa2e4 | t3_a5q9y8 | null | null | t1_ebov8ib | /r/programming/comments/a5q9y8/blockevil_a_userscript_that_denies_callback/ebpa2e4/ | 1547555847 | 6 | t5_2fwo | r/programming | public | null |
False | Heroics_Failed | t2_69ix2 | This is great! I think the is why imposter syndrome is so big in programming. It is all lumped under one skill. Oh you are a developer? You don’t know about x? Well no...there 1000s of different skills. A welder doesn’t make a great plumber even though he is working with pipes. A surgeon doesn’t know much about family medicine. It’s okay not to know something. It’s impossible to know it all. | null | 0 | 1546028540 | False | 0 | ecr5rfc | t3_aaco1d | null | null | t3_aaco1d | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecr5rfc/ | 1548193912 | 215 | t5_2fwo | r/programming | public | null |
False | ry0wn | t2_6vlr7 | > $9.75
> less than 10
I hope that's because Bob is cheap and not because he lacks money, or he'll have a bad time when sales tax and the waiter's tip are applied. | null | 1 | 1544714848 | False | 0 | ebpa3t0 | t3_a5sg9k | null | null | t3_a5sg9k | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebpa3t0/ | 1547555864 | 3 | t5_2fwo | r/programming | public | null |
False | teknorath | t2_4q353 | woah woah careful with that, /u/combinatorylogic might have a panic attack | null | 0 | 1546028548 | False | 0 | ecr5rwx | t3_aaco1d | null | null | t1_ecr3phs | /r/programming/comments/aaco1d/things_i_dont_know_as_of_2018/ecr5rwx/ | 1548193918 | 57 | t5_2fwo | r/programming | public | null |
False | wredue | t2_1rbubxg4 | You’re pretty much the personification of everything wrong with software today. The superior software is problematic to you because of visuals. Which is batshit cause VSCode isn’t ugly or busy in the slightest. | null | 0 | 1544714886 | False | 0 | ebpa5ix | t3_a5mk9z | null | null | t1_eboukjo | /r/programming/comments/a5mk9z/visual_studio_code_version_130_released/ebpa5ix/ | 1547555886 | -5 | t5_2fwo | r/programming | public | null |
False | lurebat | t2_6pltw | Fish is so good compared to anything else.
It’s really painful for me to see other people use shells at work because everything is soooo slow.
Even the small features like auto correcting capitals on tab and directory navigation using alt+arrows really add up to give an unbelieveable amount of productivity. | null | 0 | 1546028609 | False | 0 | ecr5vpx | t3_aabai1 | null | null | t3_aabai1 | /r/programming/comments/aabai1/fish_shell_30/ecr5vpx/ | 1548193965 | 44 | t5_2fwo | r/programming | public | null |
False | Fordiman | t2_3ttlh | I keep running across edge cases and false positives, and fixing them as I go. If you notice a page isn't working, and see the "I control my browser..." error in your console, please report it as an issue. | null | 0 | 1544714953 | False | 0 | ebpa8mn | t3_a5q9y8 | null | null | t1_ebowc9m | /r/programming/comments/a5q9y8/blockevil_a_userscript_that_denies_callback/ebpa8mn/ | 1547555924 | 3 | t5_2fwo | r/programming | public | null |
False | imforit | t2_bu77j | Longhorn shipped. It was Vista (so yeah, RIP indeed). WinFS, which was part of the Longhorn hype and, to me, much less exciting, was totally scrapped.
The whole idea of WinFS was to make storage on disk be a giant database instead of bits in individual files, creating a universal place and format of data across apps. Neat idea, but I'm not sure if it would have made our issue here of Node.js better or worse. If it were the ONLY filesystem available for apps in windows, then it would be completely incompatible with other platforms, likely to the detriment of things like node.js getting ported in the first place. If it weren't then it wouldn't make a difference.
The windows 10 filesystem that was delayed, in contrast, was a new (for microsoft) take on a general, traditional filesystem, bringing in much stronger architecture concepts from other computing worlds. Similar in motive to Apple's AFS- the recognition that their existing fs was old and busted in some ways, and made a whole new one with all the modern fs research behind it (which is usually code for "borrowed from ZFS") | null | 0 | 1546028614 | False | 0 | ecr5w2i | t3_a89y3r | null | null | t1_ecr23yb | /r/programming/comments/a89y3r/the_node_modules_problem/ecr5w2i/ | 1548193969 | 1 | t5_2fwo | r/programming | public | null |
False | OneWingedShark | t2_bx7wh | Nothing wrong with Top-Down Development.
Test-Driven Development, OTOH, ***can*** be ok... though for far less a range than the hype indicates: particularly for the implementation of specifications where you translate the requirements into tests, but w/o solid and stable requirements TDD just isn't all it's cracked up to be. | null | 0 | 1544715088 | False | 0 | ebpaeuc | t3_a5r84b | null | null | t3_a5r84b | /r/programming/comments/a5r84b/you_dont_know_tdd/ebpaeuc/ | 1547556029 | 2 | t5_2fwo | r/programming | public | null |
False | lyml | t2_6981o | Ah I see.
Good job with the visualizations but I hate to tell you that you have not really implemented a* on the far right.
What have implementee on the far right looks like a greedy search over you heuristic function. It works well for your purposes (quickly finding a path through a grid based maze) but is not guaranteed to find optimal solutions (which you can see in the 100x100 braid maze).
What you are calling a\*+dijkstra is actually the a\* algorithm. | null | 0 | 1546028689 | False | 0 | ecr60ih | t3_aabfr9 | null | null | t1_ecr2l0c | /r/programming/comments/aabfr9/hey_guys_i_coded_a_program_that_solves_mazes/ecr60ih/ | 1548194024 | 2 | t5_2fwo | r/programming | public | null |
False | hagamablabla | t2_f120i | I haven't felt this combination of anger and fear in months! | null | 0 | 1544715147 | False | 0 | ebpahhr | t3_a5sg9k | null | null | t1_ebp35nq | /r/programming/comments/a5sg9k/how_unix_programmers_at_restaurants_search_menus/ebpahhr/ | 1547556062 | 24 | t5_2fwo | r/programming | public | null |
False | HellfireOwner | t2_2juz5fhu | When is the last time you touched a GPU and repurposed it? | null | 0 | 1546028743 | False | 0 | ecr63q4 | t3_a7cdjo | null | null | t1_ec2ovr9 | /r/programming/comments/a7cdjo/16x_aa_font_rendering_using_coverage_masks_part/ecr63q4/ | 1548194065 | 0 | t5_2fwo | r/programming | public | null |
False | [deleted] | None | [deleted] | null | 0 | 1544715210 | False | 0 | ebpakcl | t3_a5ikq1 | null | null | t1_ebniulo | /r/programming/comments/a5ikq1/fuchsia_sdk_is_now_included_into_android_open/ebpakcl/ | 1547556098 | 0 | t5_2fwo | r/programming | public | null |
False | MLaidman | t2_6amiq | I think it's "**F**riendly **I**nteractive **Sh**ell" | null | 0 | 1546029011 | False | 0 | ecr6jrp | t3_aabai1 | null | null | t1_ecqnno1 | /r/programming/comments/aabai1/fish_shell_30/ecr6jrp/ | 1548194263 | 25 | t5_2fwo | r/programming | public | null |
False | RemindMeBot | t2_gbm4p | I will be messaging you on [**2021-12-13 15:33:46 UTC**](http://www.wolframalpha.com/input/?i=2021-12-13 15:33:46 UTC To Local Time) to remind you of [**this link.**](https://www.reddit.com/r/programming/comments/a5ikq1/fuchsia_sdk_is_now_included_into_android_open/)
[**CLICK THIS LINK**](http://np.reddit.com/message/compose/?to=RemindMeBot&subject=Reminder&message=[https://www.reddit.com/r/programming/comments/a5ikq1/fuchsia_sdk_is_now_included_into_android_open/]%0A%0ARemindMe! 3 years ) to send a PM to also be reminded and to reduce spam.
^(Parent commenter can ) [^(delete this message to hide from others.)](http://np.reddit.com/message/compose/?to=RemindMeBot&subject=Delete Comment&message=Delete! ebpal63)
_____
|[^(FAQs)](http://np.reddit.com/r/RemindMeBot/comments/24duzp/remindmebot_info/)|[^(Custom)](http://np.reddit.com/message/compose/?to=RemindMeBot&subject=Reminder&message=[LINK INSIDE SQUARE BRACKETS else default to FAQs]%0A%0ANOTE: Don't forget to add the time options after the command.%0A%0ARemindMe!)|[^(Your Reminders)](http://np.reddit.com/message/compose/?to=RemindMeBot&subject=List Of Reminders&message=MyReminders!)|[^(Feedback)](http://np.reddit.com/message/compose/?to=RemindMeBotWrangler&subject=Feedback)|[^(Code)](https://github.com/SIlver--/remindmebot-reddit)|[^(Browser Extensions)](https://np.reddit.com/r/RemindMeBot/comments/4kldad/remindmebot_extensions/)
|-|-|-|-|-|-| | null | 0 | 1544715228 | False | 0 | ebpal63 | t3_a5ikq1 | null | null | t1_ebpakcl | /r/programming/comments/a5ikq1/fuchsia_sdk_is_now_included_into_android_open/ebpal63/ | 1547556107 | 1 | t5_2fwo | r/programming | public | null |
False | krista_ | t2_ev3bu | new c++ abhors a void *
and pointers in general, although wrapped and qualified pointers are sorta ok, though they're not really our kind of people. see, they can't evaluate at compile time, and *everything* should *always* evaluate at compile time, this way you get the output before you execute the program! | null | 0 | 1546029208 | False | 0 | ecr6vxo | t3_aac4hg | null | null | t1_ecqzdk3 | /r/programming/comments/aac4hg/modern_c_lamentations/ecr6vxo/ | 1548194442 | -5 | 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.