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
grauenwolf
t2_570j
And I believe those people are wrong because they are prioritizing dogma over effectiveness. That's not to say you can be sloppy with them. They need to be segregated away from the repeatable tests since they can't be run as part of the pass/fail criteria in a CI/CD pipeline. *** Also note that xUnit is run by people who are obsessed with micro tests, which is to say tests that make even normal unit tests look too large. Consider this warning: "It is hard to tell which of several assertions within the same test method caused a test failure. " That's true because they removed the `message` parameter from many assertions. They are actively and intentionally making it hard to have more than one assertion per test. Instead they want you do duplicate your tests over and over again, greatly increasing the amount of time it takes to run them as each does exactly the same work, but with a different assertion being checked.
null
0
1544640933
False
0
ebnbisj
t3_a5iior
null
null
t1_ebnaxsh
/r/programming/comments/a5iior/tests_wont_make_your_software_correct/ebnbisj/
1547522881
7
t5_2fwo
r/programming
public
null
False
BarneyStinson
t2_3eyn0
The visible thing does not depend on the hidden thing. The "visible thing" should be an interface, this is what you depend on. The implementation of the interface (the "hidden thing") also depends on the interface, not the other way round. It's called dependency inversion.
null
0
1545934318
False
0
eco8b7l
t3_a9q0uh
null
null
t1_ecmvmbk
/r/programming/comments/a9q0uh/write_code_that_is_easy_to_delete_not_easy_to/eco8b7l/
1548144604
2
t5_2fwo
r/programming
public
null
False
chucker23n
t2_39t9i
This article must be a satirical Statistics 101 piece. >VS Code is now the editor chosen by the majority of engineers during programming interviews Pretty sure the editor chosen by the majority of engineers during programming interviews is a fucking flipchart. > It gives us insight into which tools different cohorts of engineers prefer, and how these preferences change over time. No, it gives you insight into which tools an engineer used in a temporary, artificial setting. Sure, if you don't impose an editor on them, they'll probably pick the one they're the most familiar with. Or the one they think they should be using. Or… some other one. Why does this matter? The article goes on to point out increasingly absurd correlations, like "the relationship between location and language used: [..] I like this chart for what it says about Bay Area geography. On the peninsula, where larger companies tend to be located, you see a lot of Java developers. In San Francisco, where startups dominate, you see more JavaScript." (this is somehow apparently not supposed to be a joke?) and "78% of blue-eyed women from Chicago preferred PowerShell, but only if they used Xcode as their editor" (this one is, but could you really tell?). It also states "Engineers who use Go are also especially strong. If you know why, please let me know.", which is apparently supposed to express the author's surprise that a lot of Go engineers regularly go to the gym. > Take all of this with a grain of salt. Yup, will do. But first, a quick tip: maybe those JavaScript engineers you hired from San Francisco should have been given useful tasks instead of breaking my scroll bar. I don't know _why_ you thought it useful to keep scrolling the page back to the top when I'm trying to reach the bottom, but I doubt I'm the only user who finds it fucking annoying. Turns out a simple HTML webpage can do wonders in usability and accessibility sometimes.
null
0
1544640987
False
0
ebnblkq
t3_a5i57x
null
null
t3_a5i57x
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebnblkq/
1547522915
44
t5_2fwo
r/programming
public
null
False
falconfetus8
t2_5lnfr
That sounds scary, copy/paste tracking. Sounds like a good way to accidentally change something everywhere when you only wanted to change it here.
null
0
1545934329
False
0
eco8bnw
t3_a9q0uh
null
null
t1_eclk9p3
/r/programming/comments/a9q0uh/write_code_that_is_easy_to_delete_not_easy_to/eco8bnw/
1548144610
1
t5_2fwo
r/programming
public
null
False
shevegen
t2_atqp
I can not answer most of your questions but what I speculate, aside from the "statistics" employed there - several ruby hackers went straight into Go. I found that weird, but hey. Now, they were already very experienced in ruby, so picking up a new language was not that difficult. I can not say whether this is applicable here, but if so then we need to filter out whether someone had prior knowledge or not, before we can answer your question.
null
0
1544641004
False
0
ebnbme0
t3_a5i57x
null
null
t1_ebmvs73
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebnbme0/
1547522925
1
t5_2fwo
r/programming
public
null
False
falconfetus8
t2_5lnfr
Except portability. The JVM can run in more places than .net can(if I'm up to date)
null
0
1545934447
False
0
eco8h0a
t3_a9q0uh
null
null
t1_ecnympw
/r/programming/comments/a9q0uh/write_code_that_is_easy_to_delete_not_easy_to/eco8h0a/
1548144675
3
t5_2fwo
r/programming
public
null
False
anothga
t2_btabh
Technically, it applies to Games for Windows Live too. If a game used GFW, you had to log into your GFW account to be able to play it. You would launch the game and then it would ask you to either log in into GFW or exit.
null
0
1544641026
1544686305
0
ebnbnji
t3_a5hkyo
null
null
t1_ebn6cph
/r/programming/comments/a5hkyo/investigating_an_early2010s_gaming_drm_system_or/ebnbnji/
1547522939
8
t5_2fwo
r/programming
public
null
False
matthieum
t2_5ij2c
I think it's important to realize that there are two kinds of complexity: - intrinsic: part of the problem itself. - extrinsic/accidental: overhead added by the particular solution considered. Rust aims at solving a hard problem: (mostly) compile-time memory safety in multi-threaded applications with no run-time. This will, inherently, require surfacing some complexity in the language. It's unfortunate, and we all hope that one day a better idea will emerge. In the mean-time, Rust's idea of ownership + borrowing seems to have struck a pretty sweet spot. Until the revolution (a better solution) emerges, we're left with damage control, and trying to make Rust as simple as possible given the constraints. It's hard to recognize the constraints well, it's very easy to add accidental complexity in the excitement, and I'm pretty sure some such accidental complexity already snuck in while nobody looked. Language design is hard, but that's no reason to abandon all hope :)
null
0
1545934449
False
0
eco8h2w
t3_a9swiz
null
null
t1_ecnab32
/r/programming/comments/a9swiz/rust_2019_and_beyond_limits_to_some_growth/eco8h2w/
1548144676
16
t5_2fwo
r/programming
public
null
False
shevegen
t2_atqp
Not all of them, just many. Most programming languages are pretty bad. We just don't see this right now because they are still used. But look back in history and you will see so many dead languages nobody really uses anymore. And they would be HORRIBLE by today's standard.
null
1
1544641045
False
0
ebnbohk
t3_a5i57x
null
null
t1_ebn0k4i
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebnbohk/
1547522952
-2
t5_2fwo
r/programming
public
null
False
encyclopedist
t2_ok8do
Currently, I use the following alias: all = "!f(){ find -type d -name .git -prune | xargs -t -I{} git -C {}/../ $@; }; f" which allows to do things like: git all status git all pull I might switch to this tool in future.
null
0
1545934465
False
0
eco8ht8
t3_a9yxp6
null
null
t3_a9yxp6
/r/programming/comments/a9yxp6/gitbatch_manage_all_of_your_git_repositories_in/eco8ht8/
1548144685
56
t5_2fwo
r/programming
public
null
False
snowe2010
t2_53c7i
While true for most situations, you don't always get to view code with the tools you choose. You might be viewing on GitHub which doesn't always format correctly, or maybe you're ssh'ed into a server and just have vi.
null
0
1544641046
False
0
ebnbojq
t3_a5969k
null
null
t1_ebmqi0o
/r/programming/comments/a5969k/java_12_likely_will_not_have_raw_string_literals/ebnbojq/
1547522952
2
t5_2fwo
r/programming
public
null
False
caevv
t2_igxtu
Yeah I was wondering how can someone not stumble upon JIRA when working in IT. I mean almost every company uses it. I don’t really like it but it’s basically addressing all the issues you mentioned.
null
0
1545934470
False
0
eco8i1q
t3_a9zeej
null
null
t3_a9zeej
/r/programming/comments/a9zeej/things_id_like_in_my_code_management_tool/eco8i1q/
1548144688
2
t5_2fwo
r/programming
public
null
False
shevegen
t2_atqp
You mean "the right tool for the job"? Obviously that would require a "right" language. I myself never understood that statement...
null
1
1544641064
False
0
ebnbpfo
t3_a5i57x
null
null
t1_ebn8edj
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebnbpfo/
1547522963
2
t5_2fwo
r/programming
public
null
False
P4Cu
t2_hfgg644
Images yes, files as links (I dont recall embedding a file)
null
0
1545934504
False
0
eco8jig
t3_a9tm4z
null
null
t1_eco5l82
/r/programming/comments/a9tm4z/notable_the_markdownbased_notetaking_app_that/eco8jig/
1548144706
1
t5_2fwo
r/programming
public
null
False
Paradox
t2_1t9b
Steam isn't a social tool?
null
0
1544641081
False
0
ebnbq7g
t3_a5hkyo
null
null
t1_ebmqp1m
/r/programming/comments/a5hkyo/investigating_an_early2010s_gaming_drm_system_or/ebnbq7g/
1547523002
0
t5_2fwo
r/programming
public
null
False
MMPride
t2_2r7kfn4u
Nice. I'd rank IntelliJ > NetBeans > Eclipse (it used to be the opposite order for me) but it's nice to see NetBeans is still getting good updates. Hopefully it's still backwards compatible with themes and plugins.
null
0
1545934511
1545936172
0
eco8jv2
t3_aa05by
null
null
t3_aa05by
/r/programming/comments/aa05by/netbeans_100_released/eco8jv2/
1548144710
58
t5_2fwo
r/programming
public
null
False
shevegen
t2_atqp
Which is why these interviews are so broken and a waste of time. I guess the only "use case" they have is to weed out some people, just to lower the number of people to screen for.
null
0
1544641125
False
0
ebnbsg3
t3_a5i57x
null
null
t1_ebnb4hf
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebnbsg3/
1547523030
8
t5_2fwo
r/programming
public
null
False
tr3v1n
t2_bm8w0
Do your own homework.
null
0
1545934605
False
0
eco8nz7
t3_aa1hmz
null
null
t3_aa1hmz
/r/programming/comments/aa1hmz/need_help_how_to_make_this_calculator/eco8nz7/
1548144761
8
t5_2fwo
r/programming
public
null
False
mcnamaragio
t2_6hymk
That's nice to hear. Any suggestions about the library?
null
0
1544641131
False
0
ebnbssy
t3_a5hxji
null
null
t1_ebn76sd
/r/programming/comments/a5hxji/new_library_entityframeworkexceptions_handle/ebnbssy/
1547523035
2
t5_2fwo
r/programming
public
null
False
Basmannen
t2_9w4kr
I mean I'd assume no since it's based on electrical impulses, which can't propagate infinitely. Upscaling the architecture feels like it should be possible though, if we remove that obstacle. Wonder if anyone has done the science.
null
0
1545934651
False
0
eco8q1s
t3_a9qz9q
null
null
t1_ecns4bd
/r/programming/comments/a9qz9q/amoeba_finds_approximate_solutions_to_nphard/eco8q1s/
1548144787
3
t5_2fwo
r/programming
public
null
False
dpash
t2_5bdkm
Oh, you literally mean `Number`. Don't use `Number`. Don't mix integer/longs with floats/doubles. This isn't a generics issue. This is a decision to not make integer types and float types mixable that dates from the beginning of the language. If you really want to do your example, you need to explicitly convert: static <N extends Number> N add(N n1, N n2) { return n1.doubleValue()+n2.doubleValue(); } or static <N extends Number> N add(N n1, N n2) { return n1.longValue()+n2.longValue(); }
null
0
1544641151
1544641432
0
ebnbtst
t3_a5969k
null
null
t1_ebn9ra8
/r/programming/comments/a5969k/java_12_likely_will_not_have_raw_string_literals/ebnbtst/
1547523046
1
t5_2fwo
r/programming
public
null
False
matthieum
t2_5ij2c
> If there is a decision between higher quality and more features, more features will always win. That's just the way things are. It's always hard to say "No". Which is why I really like Graydon's idea of "negative RFCs". Say "No" once and for all, document the reason, then refer any further discussion to the accepted RFC and inquire about what significant change brings about the idea that it should be rescinded.
null
0
1545934660
False
0
eco8qfa
t3_a9swiz
null
null
t1_ecnnxk3
/r/programming/comments/a9swiz/rust_2019_and_beyond_limits_to_some_growth/eco8qfa/
1548144791
6
t5_2fwo
r/programming
public
null
False
shevegen
t2_atqp
You poor man! Having to write Java for a living ... There are too many grunt jobs in this world. :(
null
0
1544641156
False
0
ebnbu3u
t3_a5i57x
null
null
t1_ebn8u0b
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebnbu3u/
1547523050
-9
t5_2fwo
r/programming
public
null
False
P4Cu
t2_hfgg644
As of shortcuts - yes unless you use spacemacs as I do or type it in other editors like code studio. I've never had to write lisp for org mode, theres enough plugin code out there.
null
0
1545934711
False
0
eco8sni
t3_a9tm4z
null
null
t1_ecnzji3
/r/programming/comments/a9tm4z/notable_the_markdownbased_notetaking_app_that/eco8sni/
1548144819
1
t5_2fwo
r/programming
public
null
False
shevegen
t2_atqp
Yup, it is an ad. Dude never PUBLISHED the data he drew fancy graphs for ...
null
0
1544641178
False
0
ebnbv9c
t3_a5i57x
null
null
t1_ebn4mt8
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebnbv9c/
1547523064
10
t5_2fwo
r/programming
public
null
False
david370
t2_487dx
Typescript has better type system than dart
null
0
1545934726
False
0
eco8tay
t3_aa13tt
null
null
t3_aa13tt
/r/programming/comments/aa13tt/dart_vs_swift_a_comparison/eco8tay/
1548144827
8
t5_2fwo
r/programming
public
null
False
Tynach
t2_9rbwn
X isn't going away anytime soon. KDE isn't quite stable on Wayland yet, and pretty much the only desktop environment I know of that seems to be pushing Wayland as a current solution is Gnome - which still works on X right now anyway.
null
0
1544641179
False
0
ebnbvav
t3_a5hkyo
null
null
t1_ebn3kjg
/r/programming/comments/a5hkyo/investigating_an_early2010s_gaming_drm_system_or/ebnbvav/
1547523065
11
t5_2fwo
r/programming
public
null
False
VirtualRay
t2_xcjij
Yeah, because when you're manic you'll just cook up a bunch of half-baked bullshit, probably mostly on Reddit and Facebook, and when you're depressive you'll curl into a ball and feel like dying, and meanwhile the relatively dumb but even-tempered people like me will keep slowly ambling along accomplishing more
null
0
1545934788
False
0
eco8w11
t3_a9qz9q
null
null
t1_ecnyg9n
/r/programming/comments/a9qz9q/amoeba_finds_approximate_solutions_to_nphard/eco8w11/
1548144861
1
t5_2fwo
r/programming
public
null
False
snowe2010
t2_53c7i
I guess that's reasonable, but still seems unnecessary. Why can't you just duplicate your source files? Why do you need to view the markdown at all? If it's GitHub pages you already have the source one URL away.
null
0
1544641206
False
0
ebnbwog
t3_a5cm5c
null
null
t1_ebmzsh4
/r/programming/comments/a5cm5c/people_who_disagree_with_you_arent_trying_to_make/ebnbwog/
1547523082
2
t5_2fwo
r/programming
public
null
False
[deleted]
None
[deleted]
null
0
1545934790
False
0
eco8w3n
t3_a9tm4z
null
null
t3_a9tm4z
/r/programming/comments/a9tm4z/notable_the_markdownbased_notetaking_app_that/eco8w3n/
1548144861
1
t5_2fwo
r/programming
public
null
False
shevegen
t2_atqp
> Edit: I just noticed that the 2nd and 3rd best pass > rates were for Ruby and Python which both also > emphasize simplicity and readability. I know some ruby hackers who went into Go. Nobody went into Dart. :) You need to remember that people who have been using a language for many years, will find Go fairly easy to pick up. They can benefit from having worked on other code bases prior to that, which also skews the whole data since it makes a huge difference if you have been programming for like 30 years, as opposed to 3 days ...
null
0
1544641259
False
0
ebnbze0
t3_a5i57x
null
null
t1_ebn585z
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebnbze0/
1547523116
0
t5_2fwo
r/programming
public
null
False
chucker23n
t2_39t9i
I'm getting conflicted info on whether you can do granular permissions within a git monorepo (you _can_ in Subversion)*, so that would be one _major_ reason management would say no. Depending on your company size and industry, giving all employees across departments access to all code sounds like a recipe for disaster. I can easily see management raising an eyebrow over that. You don't share all contracts or e-mails among each other either. *) * [Looks like GitHub has no notion of this at all](https://stackoverflow.com/questions/48559479/how-to-do-group-permissions-in-a-monorepo-on-github) * [Same for Azure DevOps (née TFS / VSTS), apparently](https://docs.microsoft.com/en-us/azure/devops/organizations/security/permissions?view=vsts). The docs show branch-level permissions, and it _looks_ like I can assign permissions to _tags_, too, but apparently not to subdirectories. * [but this comment seems to suggest it's possible](https://news.ycombinator.com/item?id=14662746)
null
0
1545934896
1545935278
0
eco90sy
t3_a9yxp6
null
null
t1_eco0n44
/r/programming/comments/a9yxp6/gitbatch_manage_all_of_your_git_repositories_in/eco90sy/
1548144919
18
t5_2fwo
r/programming
public
null
False
shevegen
t2_atqp
Makes you wonder when Google will abandon Go because it does not fit into the rest of it. I don' trust Google after they sneakily abandoned Google+, which they tried to promote so much years ago ... ;)
null
0
1544641312
False
0
ebnc20m
t3_a5i57x
null
null
t1_ebn3nkv
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebnc20m/
1547523149
-4
t5_2fwo
r/programming
public
null
False
mikethecoder
t2_4m80j
Started looking at this as a potential alternative to Boostnote which isn't perfect so I'm open to alternatives. Definitely a good start with Notable and hovering between decisions since this tool feels very close to feature complete by comparison. ​ A few remarks: 1 - Nested tags like/this are awesome and a huge improvement over Boostnote, but not being able to expand/collapse the tags in the left panel tree makes them painful to navigate/browse. 2 - Would prefer the tags/attachments for a note being always shown at the top without having to click a button to get a dropdown panel to view/edit. Also, if you leave one of those dropdown panels open and click on a different note, it stays open when it feels like the state should be reset (but at least it shows the correct data). 3 - Support for copy/paste attaching of screenshots into notes like others mentioned would be great. 4 - Start-up time to open application is slow but I know there's a limitation to what can be improved there. Boostnote is also a bit slow, but they seemed to have optimized to a point where it doesn't bother me at all; it's several times faster than Notable at the moment on open. 5 - Would be nice to be able to drag a note into an existing notebook to tag it as such without explicitly tagging as notebook/\*. Any drag/drop support to organize notes would be very useful for tagging and whatnot. 6 - Would like to be able to search by tags like #this, including multiple tags and possibly special support for nested/tags so you don't need the whole path. 7 - Hitting enter while cursor focus is in the search bar crashes the app without fail. But obviously I didn't need to do that so no big deal at moment. 8 - When special linking to another note, it'd be nice if there was a way to auto-fix dead links in the event that the destination note's filename is changed. So if I change a note filename from "Test" to "Test2" then any shortcuts linking to "Test" would also update the note files to change to "Test2". Honestly I'm not crazy about the file organization as I'd rather have a GUID or something to auto-name them more statically so filenames aren't constantly changing which would make it easier to avoid this issue. 9 - Would be nice to show any metadata about the note (icon button above note content that could use a dropdown panel to show info), even if it's just simple file created/lastmodified info.
null
0
1545934951
1545935612
0
eco9389
t3_a9tm4z
null
null
t3_a9tm4z
/r/programming/comments/a9tm4z/notable_the_markdownbased_notetaking_app_that/eco9389/
1548144950
1
t5_2fwo
r/programming
public
null
False
shevegen
t2_atqp
For?
null
0
1544641324
False
0
ebnc2lg
t3_a5i57x
null
null
t1_ebn5mzy
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebnc2lg/
1547523159
4
t5_2fwo
r/programming
public
null
False
evaryont
t2_462d1
Hey! Vibrato looks really awesome. I have one feature request but that might be too radical of a depature: I'd love for the two sidebars to be collapsed into 1 - the notes shown beneath each notebook, inline in the hierarchical tree. Or would that be too far a different direction? For the mobile app, you might get away in the short term by just recommending people use Markor.
null
0
1545934964
False
0
eco93sa
t3_a9tm4z
null
null
t1_ecmndey
/r/programming/comments/a9tm4z/notable_the_markdownbased_notetaking_app_that/eco93sa/
1548144957
1
t5_2fwo
r/programming
public
null
False
shevegen
t2_atqp
The article has, oddly enough, quite some upvotes. I have no idea why but that's the current status.
null
0
1544641364
False
0
ebnc4ls
t3_a5i57x
null
null
t1_ebmw5mx
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebnc4ls/
1547523184
-3
t5_2fwo
r/programming
public
null
False
find_--delete
t2_rwrxp
> The way you achieve a non-flat structure in Notable is via tags, which are indefinitely nestable, that gives you better organization that simply organizing the directory tree If you can teach every other program to understand these tags: Great! Realistically, I'm going to end up dealing with the files at some point-- that's part of the appeal of it being Markdown. Having sort of structure that everything else can work with is useful. Some examples? `grep|rg`, Git repositories, different sync programs (also noted with different data directories). I definitely appreciate the infinite nestability-- but its not worth additional complexity in trying to cooperate with other tools. > You mean multiple data directory open at the same time? You can already change data directory whenever you want, this should be made easier though. Change, but not use multiple at the same time. I can hack it together manually, but it'd be nice to not have to have seperate instances open just because notes are in different directories. Some applications show each in their own window, some have a default and maintain a list of 'notebooks'. All this being said, maybe Notable isn't for me.
null
0
1545935021
False
0
eco96co
t3_a9tm4z
null
null
t1_eco2kor
/r/programming/comments/a9tm4z/notable_the_markdownbased_notetaking_app_that/eco96co/
1548144988
7
t5_2fwo
r/programming
public
null
False
shevegen
t2_atqp
Damn it! Heaven is not "in the clouds". It wouldn't work ... have you ever heard of an Azure Heaven? I have not. There would be bluescreens all over the place.
null
0
1544641398
False
0
ebnc683
t3_a5i57x
null
null
t1_ebn1cwa
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebnc683/
1547523205
-1
t5_2fwo
r/programming
public
null
False
shevegen
t2_atqp
An epic battle of sadness. I do have to say that I think the biggest difference between these two, aside from syntax differences, is mostly that they focus on different areas. Dart is evidently Google's attempt to get rid of javascript and have a UI-centric language; with swift that focus is not quite the same. Swift primarily focuses on eradicating Objective C and in this regard is simpler than Objective C. Google is not going for a full-on head chop strike at JavaScript but has Dart be an autogenerator for JavaScript (and a scary control over the www which I think is the biggest threat altogether, much more so than whatever Apple, Facebook, Microsoft is doing - information and access to information is one cornerstone of mankind as of today).
null
0
1545935073
False
0
eco98kr
t3_aa13tt
null
null
t3_aa13tt
/r/programming/comments/aa13tt/dart_vs_swift_a_comparison/eco98kr/
1548145016
-3
t5_2fwo
r/programming
public
null
False
[deleted]
None
[deleted]
null
0
1544641436
False
0
ebnc81l
t3_a5hkyo
null
null
t1_ebn4zyz
/r/programming/comments/a5hkyo/investigating_an_early2010s_gaming_drm_system_or/ebnc81l/
1547523226
-45
t5_2fwo
r/programming
public
null
False
bigxow
t2_f7qry
Keep up the good work!
null
0
1545935279
False
0
eco9hkx
t3_a9tm4z
null
null
t1_eco4ze1
/r/programming/comments/a9tm4z/notable_the_markdownbased_notetaking_app_that/eco9hkx/
1548145127
1
t5_2fwo
r/programming
public
null
False
twigboy
t2_4caar
Bingo, react it is
null
0
1544641448
False
0
ebnc8mi
t3_a5bwkl
null
null
t1_ebmihfp
/r/programming/comments/a5bwkl/firefox_developer_edition/ebnc8mi/
1547523234
1
t5_2fwo
r/programming
public
null
False
HellfireOwner
t2_2juz5fhu
I have tamed the beast. None of my hypotheses nor theories are 'half-baked' as is evident by their respective testbenches. What I posted here is surely prophetic, but it is the logical conclusion of where things are heading. As far as what I actually spend my time doing...nowadays, I am an entrepreneur with multiple long-term product contracts. I am doing fine, trust me.
null
0
1545935287
False
0
eco9hws
t3_a9qz9q
null
null
t1_eco8w11
/r/programming/comments/a9qz9q/amoeba_finds_approximate_solutions_to_nphard/eco9hws/
1548145131
1
t5_2fwo
r/programming
public
null
False
m0dev
t2_sxtkd
I feel you :) At work I once closed a PR after creating 5 comments about really bad formatting/unused import usage without merging with a comment (not word by word mind you) "Please come back when you have your code properly format see: <some link> and <some other link how to use sonarplugin> how to do that". It was not received that well. In retrospective I would contact that guy again and talk to him about how I see issues with his contribution regarding the formatting and see if I can help him setting it up. At work we sadly missed the opportunity to introduce an automated formatter via CI/CD from the start. So you are not even able to commit such malformatted code. And good idea to have the review together, once the people see how hard you are struggling to see the intent they often change their behaviour by themselves. Also glad you liked the article, thanks :)
null
0
1544641480
False
0
ebnca6t
t3_a4z6ia
null
null
t1_ebmjc2g
/r/programming/comments/a4z6ia/code_review_best_practices/ebnca6t/
1547523253
1
t5_2fwo
r/programming
public
null
False
boltzBrain
t2_nkqnx
Curious, what in your mind are the pros/cons of this vs Boostnote?
null
0
1545935303
False
0
eco9io1
t3_a9tm4z
null
null
t1_ecmikzf
/r/programming/comments/a9tm4z/notable_the_markdownbased_notetaking_app_that/eco9io1/
1548145140
1
t5_2fwo
r/programming
public
null
False
Hamiro89
t2_ykleq
Yeah working now 🤦🏻‍♂️
null
0
1544641729
False
0
ebncm9n
t3_a5hkyo
null
null
t3_a5hkyo
/r/programming/comments/a5hkyo/investigating_an_early2010s_gaming_drm_system_or/ebncm9n/
1547523402
1
t5_2fwo
r/programming
public
null
False
nilamo
t2_8l947
> Do you have a question? Check out /r/learnprogramming, /r/cscareerquestions, or Stack Overflow.
null
0
1545935331
False
0
eco9ju4
t3_aa1hmz
null
null
t3_aa1hmz
/r/programming/comments/aa1hmz/need_help_how_to_make_this_calculator/eco9ju4/
1548145155
4
t5_2fwo
r/programming
public
null
False
balefrost
t2_6lw8n
The idea is that you do branch-based coverage. If you can enumerate all the possible flows through a function, you can test all meaningfully distinct cases. If my function behaves differently when the input is less-than 0 or when it is not-less-than 0, any value that is less-than 0 will suffice to test one branch, and any value that is not-less-than 0 will suffice to test the other branch. The challenge is in enumerating all the flows through a function and in determining what other "edge cases" are implied but not explicit in the function's definition (e.g. numeric overflow).
null
0
1544641763
False
0
ebncnxr
t3_a5iior
null
null
t1_ebn8vlz
/r/programming/comments/a5iior/tests_wont_make_your_software_correct/ebncnxr/
1547523422
12
t5_2fwo
r/programming
public
null
False
[deleted]
None
[deleted]
null
0
1545935373
False
0
eco9llq
t3_a9swiz
null
null
t1_ecnhqk7
/r/programming/comments/a9swiz/rust_2019_and_beyond_limits_to_some_growth/eco9llq/
1548145206
1
t5_2fwo
r/programming
public
null
False
peeeq
t2_653ba
Parts of it are cross platform, but you have different tools and libraries for Windows and Linux. Java is still miles ahead in that regard and even C is easier to develop on multiple platforms in my experience.
null
0
1544641976
False
0
ebncyee
t3_a5i57x
null
null
t1_ebn3eik
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebncyee/
1547523551
13
t5_2fwo
r/programming
public
null
False
thekidxp
t2_9x47x
Ah I understand what you mean now. I was just trying to summarize your argument. I can see what you mean about how those responses could come in. I'd argue that it's true of many things though. I was gonna say programming in particular due to the nature of the task and the people that excel at it but really discussions on the internet often go that way. I forget where it's from but the idea that the fastest way to get an answer on the internet is to state a falsehood and let people correct you. Like u/matthieum said hopefully no one is doing that and it's likely unintentional and because of eagerness not malice but I can totally understand the possible argument or at least the draining nature of something like that. I do think that kind of opinion is valuable to people that want to promote the language but it's certainly not your place to provide the discussion if you think it's not going to be productive for you either.
null
0
1545935547
False
0
eco9t4s
t3_a9swiz
null
null
t1_eco5fg4
/r/programming/comments/a9swiz/rust_2019_and_beyond_limits_to_some_growth/eco9t4s/
1548145299
2
t5_2fwo
r/programming
public
null
False
ivquatch
t2_3a6gu
They ultimately want a repeatable process for hiring quality talent. The outcomes, as we know, are usually mixed. "Screening" is probably the most reliable part of the process (and that's being generous). Once you've got that candidate in the door, however, there's no proven guideline for assessing the potential he/shee has for on-the-job success. The issue with hiring is that you never really know what it's like to work with someone until you actually work with them. That's true on both the employee and the employer's side. I dunno what more you can do than give someone who's passed screening a probationary employment status. It's not really fair to the employee to do this, though. Companies should commit to the people they choose to hire as a show of good faith.
null
0
1544642128
False
0
ebnd5z3
t3_a5i57x
null
null
t1_ebnbsg3
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebnd5z3/
1547523669
10
t5_2fwo
r/programming
public
null
False
ander_bsd
t2_mrrn82w
I woudn't be surprised if anyone wrote a GB emulator in Elisp in a near future.
null
0
1545935593
False
0
eco9v36
t3_a9mdxs
null
null
t1_eckvp6t
/r/programming/comments/a9mdxs/a_cozy_fireplace_for_emacs/eco9v36/
1548145323
2
t5_2fwo
r/programming
public
null
False
mtmmtm99
t2_w6i3k
Do you really think that PHP is a good language/environment. It is SUPER-slow + full of exploits as it is coded in C. PHP is a really crappy thing. The language also is awful compared to almost anything. You cannot run 400 million users without very many servers. If you do it in PHP you will need lots of more hardware compared to any decent solution.
null
0
1544642163
False
0
ebnd7n9
t3_a57f0y
null
null
t1_ebmwjua
/r/programming/comments/a57f0y/twenty_years_of_open_source_erlang_a/ebnd7n9/
1547523690
1
t5_2fwo
r/programming
public
null
False
floatingpoint0
t2_ptobh
They have an API for longer audio files as well: https://cloud.google.com/speech-to-text/docs/async-recognize
null
0
1545935673
False
0
eco9ylo
t3_a9z26i
null
null
t1_ecnxhw0
/r/programming/comments/a9z26i/comparison_of_the_top_speech_processing_apis/eco9ylo/
1548145366
19
t5_2fwo
r/programming
public
null
False
kukiric
t2_8y4hu
Not to mention GOG has to crack the DRM for most old games themselves, since a lot of companies either lost the source code, can't be arsed to find it, or don't want to share it. The difference is that they do it legally, and they don't release the cracks publicly.
null
0
1544642297
1544642488
0
ebndefp
t3_a5hkyo
null
null
t1_ebn016q
/r/programming/comments/a5hkyo/investigating_an_early2010s_gaming_drm_system_or/ebndefp/
1547523775
43
t5_2fwo
r/programming
public
null
False
mikethecoder
t2_4m80j
LMGTFY RTFM
null
0
1545935680
False
0
eco9yxo
t3_a9tm4z
null
null
t1_ecnt8un
/r/programming/comments/a9tm4z/notable_the_markdownbased_notetaking_app_that/eco9yxo/
1548145371
1
t5_2fwo
r/programming
public
null
False
jephthai
t2_591d
The last time I had to write code for an interview, I chose `awk`. The interviewer was speechless for a moment (a very uncomfortable pause), and then said, "I've... never seen someone solve this with such a short program. Can you do it in another language too?"
null
0
1544642372
False
0
ebndi0r
t3_a5i57x
null
null
t1_ebmvs73
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebndi0r/
1547523819
13
t5_2fwo
r/programming
public
null
False
mikethecoder
t2_4m80j
Not every electron app is automatically shitty
null
0
1545935737
False
0
ecoa1fs
t3_a9tm4z
null
null
t1_eco89ch
/r/programming/comments/a9tm4z/notable_the_markdownbased_notetaking_app_that/ecoa1fs/
1548145401
1
t5_2fwo
r/programming
public
null
False
samnardoni
t2_4i86t
Fair enough. There’s a saying that’s something like “when a metric becomes a target, it’s no longer a good metric.” That’s my general feeling about test coverage (unless we’re talking about formal verification).
null
0
1544642419
False
0
ebndkc0
t3_a5iior
null
null
t3_a5iior
/r/programming/comments/a5iior/tests_wont_make_your_software_correct/ebndkc0/
1547523847
19
t5_2fwo
r/programming
public
null
False
mttd
t2_6gkbb
> **The Research Challenge.** The long-term challenge is whether we can easily or even automatically find the optimal storage design for a given problem. This has been recognized as an open problem since the early days of computer science. In his seminal 1978 paper, Robert Tarjan includes this problem in his list of the five major challenges for the future (which also included P Vs NP) [85]: “Is there a calculus of data structures by which one can choose the appropriate data representation and techniques for a given problem?”. We propose that a significant step toward a solution includes dealing with the following two challenges: > 1) Can we know all possible data structure designs? > 2) Can we compute the performance of any design?
null
0
1545935807
False
0
ecoa4iv
t3_aa1sq7
null
null
t3_aa1sq7
/r/programming/comments/aa1sq7/design_continuums_and_the_path_toward/ecoa4iv/
1548145439
2
t5_2fwo
r/programming
public
null
False
seesawupandown
t2_1oweyf
Naive maybe, but totally possible. Would you ever have guessed, an OS developed by a hackers in their free time would become one of the most widely adopted system in the world e.g in the IOT space and also force one of the software giants at the time to embrace open source 25 years later? I feel IPFS can fit in this space, though at the moment it's still in alpha stage. There's opportunity for hardware vendors to make an off the shelf phone that people can install an OS of their choice (maybe something like LineageOS) and viola! A P2P mobile communication device that is outside the control of governments AND Tech giants.
null
0
1544642455
False
0
ebndm5k
t3_a57th7
null
null
t1_ebl98cq
/r/programming/comments/a57th7/australias_new_encryption_laws_ensure_companies/ebndm5k/
1547523870
1
t5_2fwo
r/programming
public
null
False
phrasal_grenade
t2_i4dru
> We are looking for a contributor who likes to implement a simple poof-of-concept using go-face. You can even earn $36 as this issue is funded by IssueHunt. Think of open-source development as free training with a visible outcome. Of course we are there to help, if needed. Looks like "Build us a valuable product for cheap" or "Do my ambitious machine-learning school assignment" lol
null
0
1545935828
1545936102
0
ecoa5f1
t3_a9ztxf
null
null
t3_a9ztxf
/r/programming/comments/a9ztxf/personal_photo_management_using_tensorflow/ecoa5f1/
1548145450
2
t5_2fwo
r/programming
public
null
False
devraj7
t2_yhtpo
> My hope is that in 2019 I see fewer comments like yours (which I don't disagree with) and more comments where people are excited by the language. Don't you feel that anyone who might possibly be excited by what Dart is headed toward (stronger static type system and nullability) is already using Kotlin today, or will be using Kotlin soon? I really can't think of any way Dart could climb that hill back.
null
0
1544642522
False
0
ebndphx
t3_a55qhp
null
null
t1_ebltwsr
/r/programming/comments/a55qhp/the_dart_language_considers_adding_sound/ebndphx/
1547523911
3
t5_2fwo
r/programming
public
null
False
VRisNOTdead
t2_2tgmjgdq
netbeans beats the shit out of Eclipse.
null
0
1545935833
False
0
ecoa5n5
t3_aa05by
null
null
t3_aa05by
/r/programming/comments/aa05by/netbeans_100_released/ecoa5n5/
1548145453
37
t5_2fwo
r/programming
public
null
False
Sebazzz91
t2_a2yne
Why would I use BSD?
null
0
1544642526
False
0
ebndpnt
t3_a5gxm6
null
null
t1_ebmgxt6
/r/programming/comments/a5gxm6/freebsd_12_released/ebndpnt/
1547523913
6
t5_2fwo
r/programming
public
null
False
Sonic_Pavilion
t2_14v2dq0j
Wow, you guys are rude as fuck
null
0
1545935954
False
0
ecoaavn
t3_a9tm4z
null
null
t1_eco9yxo
/r/programming/comments/a9tm4z/notable_the_markdownbased_notetaking_app_that/ecoaavn/
1548145518
1
t5_2fwo
r/programming
public
null
False
sanity
t2_75zx
> You can’t count on that network latency. That’s the problem with thin client architectures. This is not new, and it never works out. I'm familiar with past attempts like Vaadin and their shortcomings, I believe Kweb has good answers to those problems (or I wouldn't have built it). > And you completely contradicted yourself. Events need a server round trip by default, you need to opt out with onImmediate. Where is the contradiction? > Again, this is not new and this is not a good idea. It’s amazing how many people don’t know history and think this is something new and might save the world. Even as programmers we just sit and make the same mistakes over and over again. I'm fairly familiar with history, I've been building websites since 1996 using a wide variety of tools and frameworks. Happy to discuss your concerns in more detail.
null
0
1544642550
1544642799
0
ebndquy
t3_a4dtp2
null
null
t1_ebk1mjr
/r/programming/comments/a4dtp2/kweb_a_new_approach_to_building_rich_webapps_in/ebndquy/
1547523928
4
t5_2fwo
r/programming
public
null
False
Darkglow666
t2_aaxo5
TypeScript has union types, which is, in my opinion, a nice but unessential feature. Other than that, I can't think of anything TS does better than Dart.
null
1
1545936015
False
0
ecoadk1
t3_aa13tt
null
null
t1_eco8tay
/r/programming/comments/aa13tt/dart_vs_swift_a_comparison/ecoadk1/
1548145550
1
t5_2fwo
r/programming
public
null
False
anengineerandacat
t2_hq59g
Pretty much; came out of College with a large swath of knowledge around VC++ and C# .NET 3.5 / 4.0 and very very little Java. ​ Life sucked, Java was horrible and Eclipse was horrible; many language features from .NET 4 didn't exist in Java 6 / 7 and still don't to this day. Thankfully IDEA was around and IntelliJ cleaned up that development space quite abit and Java had fairly decent build tooling around Maven. ​ C# is still imho the best language (ignoring anything about the runtime) and gives you a great amount of language features to get the job done. However Java jobs pay $$$'s and C# ones are 20-30% less on average; Javascript on the otherhand is booming and being comparable to Java in my area which is ironic considering JS is easier to write around than both of the other languages.
null
0
1544642648
False
0
ebndvoz
t3_a5i57x
null
null
t1_ebn2vq6
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebndvoz/
1547523988
6
t5_2fwo
r/programming
public
null
False
ghedipunk
t2_1f4ajob4
You're probably wondering why the downvotes and why you're being ignored. This is a terrible question, and the wrong place to ask it. I won't help you with this question. It's a junk question. Nobody is going to spend their time answering it. Rather, I'm going to do the nicest thing I possibly can: Ask that you spend a few hours reading [http://www.catb.org/esr/faqs/smart-questions.html](http://www.catb.org/esr/faqs/smart-questions.html) . (Oh, and do read it thoroughly, including their disclaimer. Just as it isn't our job to answer bad questions, it's not their job to do so, either.)
null
0
1545936215
False
0
ecoam96
t3_aa1hmz
null
null
t3_aa1hmz
/r/programming/comments/aa1hmz/need_help_how_to_make_this_calculator/ecoam96/
1548145659
4
t5_2fwo
r/programming
public
null
False
O4180170069
t2_kucrq
Clipboard listener that modifies the clipboard content based on commands copied into the clipboard. Supports persistent variables. Commercial Software.
null
0
1544642729
False
0
ebndzqi
t3_a5izk6
null
null
t3_a5izk6
/r/programming/comments/a5izk6/a_crosseditor_plugin_to_improve_any_text_editor/ebndzqi/
1547524038
21
t5_2fwo
r/programming
public
null
False
greenthumble
t2_8ebq0
Classic narcissistic self-aggrandized bullshit. Don't care though. Have a nice life I guess, perhaps after you figure out how fucked up you are.
null
0
1545936312
False
0
ecoaql2
t3_a9qz9q
null
null
t1_eco45un
/r/programming/comments/a9qz9q/amoeba_finds_approximate_solutions_to_nphard/ecoaql2/
1548145712
1
t5_2fwo
r/programming
public
null
False
grasspopper
t2_4c5eg
Username checks out
null
0
1544642858
False
0
ebne63o
t3_a57th7
null
null
t1_ebmetup
/r/programming/comments/a57th7/australias_new_encryption_laws_ensure_companies/ebne63o/
1547524116
0
t5_2fwo
r/programming
public
null
False
lanzaio
t2_zlgp0
> I hate that on fresh startup these apps use 200MB+ of memory. This is a huge problem for those of us still stuck in 2001 on Hewlett Packard Pentium 4s. Please fix OP.
null
0
1545936428
False
0
ecoavmm
t3_a9tm4z
null
null
t1_ecmoubo
/r/programming/comments/a9tm4z/notable_the_markdownbased_notetaking_app_that/ecoavmm/
1548145804
2
t5_2fwo
r/programming
public
null
False
Final_death
t2_rvenq
That's some nice detective work! (or nice Googling) Given what the coding is like I'm not at all surprised, heh.
null
0
1544642910
False
0
ebne8ml
t3_a5hkyo
null
null
t1_ebmsbpd
/r/programming/comments/a5hkyo/investigating_an_early2010s_gaming_drm_system_or/ebne8ml/
1547524148
5
t5_2fwo
r/programming
public
null
False
HellfireOwner
t2_2juz5fhu
Actually, you are the narcissist. You are being told the truth and you are disregarding it because you simply cannot believe that you have been wrong...about everything.
null
0
1545936449
False
0
ecoawhu
t3_a9qz9q
null
null
t1_ecoaql2
/r/programming/comments/a9qz9q/amoeba_finds_approximate_solutions_to_nphard/ecoawhu/
1548145815
0
t5_2fwo
r/programming
public
null
False
DoodleFungus
t2_x7og2
Some might refer to Steam as a social tool (or whatever other game launcher with a friends feature)
null
0
1544642951
False
0
ebneao0
t3_a5hkyo
null
null
t1_ebmqp1m
/r/programming/comments/a5hkyo/investigating_an_early2010s_gaming_drm_system_or/ebneao0/
1547524172
1
t5_2fwo
r/programming
public
null
False
barsoap
t2_3aiwe
> Vim will not only force you to task switch everywhere you can't force the world to speak vim with plugins That's a valid point, but in the end irrelevant. Also, I use emacs as the OS to run vi in so everything actually speaks vi. > but it forces you to task switch even if you only use vim, due to its modal nature. Utter gobshite. Have you ever even made an honest attempt at learning vi.
null
0
1545936458
False
0
ecoawwj
t3_a9njuu
null
null
t1_ecn3mcq
/r/programming/comments/a9njuu/micro_intuitive_terminalbased_text_editor/ecoawwj/
1548145819
1
t5_2fwo
r/programming
public
null
False
webauteur
t2_11nmd
The cloud is heaven. That is why the transhumanists want to upload themselves into the cloud, because that would mean they've gone to heaven.
null
0
1544642969
False
0
ebnebla
t3_a5i57x
null
null
t1_ebnc683
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebnebla/
1547524212
1
t5_2fwo
r/programming
public
null
False
Muffinabus
t2_6596v
This article is garbage. It's better suited for /r/technology or some other shit sub. Why is this here?
null
0
1545936465
False
0
ecoax6y
t3_a9z26i
null
null
t3_a9z26i
/r/programming/comments/a9z26i/comparison_of_the_top_speech_processing_apis/ecoax6y/
1548145823
19
t5_2fwo
r/programming
public
null
False
[deleted]
None
[deleted]
null
1
1544642981
False
0
ebnec8u
t3_a5iior
null
null
t1_ebmxx5s
/r/programming/comments/a5iior/tests_wont_make_your_software_correct/ebnec8u/
1547524221
2
t5_2fwo
r/programming
public
null
False
takinashi
t2_ah3sr
it has several features over myrepos. - first, it is faster if you run with -q flag and does the job same as myrepos(git repositories only though) - allows you to see all your repos in one place - allows you to do some quick micro-management such as stashing, add to index or commit changes - allows you to see fetched/not-merged commits or not-pushed commits myrepos on the other hand supports all mainstream version control systems. But it is hard to configure and you can't run it from anywhere without some tweaks. gitbatch is easy to setup and use.
null
0
1545936663
1545936902
0
ecob5tv
t3_a9yxp6
null
null
t1_eco88ml
/r/programming/comments/a9yxp6/gitbatch_manage_all_of_your_git_repositories_in/ecob5tv/
1548145930
5
t5_2fwo
r/programming
public
null
False
peterwilli
t2_dwi1a
Chromium at the moment. I still have FF on my PC just in case I need to test anything
null
0
1544643035
False
0
ebneeyl
t3_a5bwkl
null
null
t1_ebmj4f2
/r/programming/comments/a5bwkl/firefox_developer_edition/ebneeyl/
1547524254
1
t5_2fwo
r/programming
public
null
False
couscous_
t2_2orqfro0
Yes I was corrected on it. I re-ran with Java11 and G1GC, and it got down to about 390ms. I didn't get a chance to test out ZGC, which might be better. There are also commercial GCs available such as Azul which are used in low latency applications. I know that G1GC allows you to tune it in such a way as to specify the maximum pause time you want.
null
0
1545936675
False
0
ecob6df
t3_a9gej5
null
null
t1_ecmh271
/r/programming/comments/a9gej5/avoiding_high_gc_overhead_with_large_heaps/ecob6df/
1548145936
1
t5_2fwo
r/programming
public
null
False
seesawupandown
t2_1oweyf
Dear internet, I don't care about your reddit down vote, you can say stop looking at my data all you want but unless you make it technically impossible for me to do that, I will do whatever I can to take a peek. After all you were happy to surrender it to these tech giants. Yours sincerely, The Australian government.
null
0
1544643054
False
0
ebnefwd
t3_a57th7
null
null
t1_ebl6eus
/r/programming/comments/a57th7/australias_new_encryption_laws_ensure_companies/ebnefwd/
1547524265
0
t5_2fwo
r/programming
public
null
False
greenthumble
t2_8ebq0
https://i.kym-cdn.com/photos/images/newsfeed/001/191/035/135.png Lol wrong about everything? I'm a moderately successful computer programmer living in a home with my wife. I care not about power or money just want to do some interesting things while I'm here. So hey, go fuck yourself! You're a douchenozzle kid with a superiority complex. Fucking idiot.
null
0
1545936676
False
0
ecob6ea
t3_a9qz9q
null
null
t1_ecoawhu
/r/programming/comments/a9qz9q/amoeba_finds_approximate_solutions_to_nphard/ecob6ea/
1548145936
1
t5_2fwo
r/programming
public
null
False
Nesuniken
t2_qhuqy
I'm not trying to mix type, it'd just for the sake of code reuse. Isn't additional type safety what distinguishes Java generics from other polymorphism? Otherwise, there'd be no difference between static <N extends Number> N add(N n1, N n2); and static Number add(Number n1, Number n2); EDIT: Both of your examples have build errors unless you change the method signature being generic to polymorphic. Demonstrates my point from what I can tell.
null
0
1544643090
1544644710
0
ebnehql
t3_a5969k
null
null
t1_ebnbtst
/r/programming/comments/a5969k/java_12_likely_will_not_have_raw_string_literals/ebnehql/
1547524288
1
t5_2fwo
r/programming
public
null
False
Sonic_Pavilion
t2_14v2dq0j
Thanks. And thank you for your software.
null
0
1545936694
False
0
ecob78f
t3_a9tm4z
null
null
t1_eco5p64
/r/programming/comments/a9tm4z/notable_the_markdownbased_notetaking_app_that/ecob78f/
1548145947
1
t5_2fwo
r/programming
public
null
False
JoelFolksy
t2_14dn5y
It's the Canadian Aboriginal *Syllabics* Block. No job for you!
null
0
1544643105
False
0
ebneif9
t3_a5i57x
null
null
t1_ebn3jmg
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebneif9/
1547524297
6
t5_2fwo
r/programming
public
null
False
noobsoep
t2_brm60
I just looove a bloated atom based UI that obfuscates basic git commands in a shell (but the esthetics!) But for those who don't want to spend hundreds of megs of ram for what essentially is a cli wrapper, gitg has such a graph too, but at a fraction of the performance hit
null
1
1545936728
False
0
ecob8oe
t3_a9yxp6
null
null
t1_eco6y4u
/r/programming/comments/a9yxp6/gitbatch_manage_all_of_your_git_repositories_in/ecob8oe/
1548145965
0
t5_2fwo
r/programming
public
null
False
HalibetLector
t2_17d4bn
Find out which ones your interviewer likes. Cyberstalk them!
null
0
1544643223
False
0
ebneodt
t3_a5i57x
null
null
t1_ebn0k4i
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebneodt/
1547524370
8
t5_2fwo
r/programming
public
null
False
[deleted]
None
[deleted]
null
0
1545936793
False
0
ecobbjh
t3_a9yxp6
null
null
t1_eco8ht8
/r/programming/comments/a9yxp6/gitbatch_manage_all_of_your_git_repositories_in/ecobbjh/
1548146000
-18
t5_2fwo
r/programming
public
null
False
JoelFolksy
t2_14dn5y
How about C) random noise?
null
0
1544643268
False
0
ebneqnq
t3_a5i57x
null
null
t1_ebmvs73
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebneqnq/
1547524399
1
t5_2fwo
r/programming
public
null
False
HellfireOwner
t2_2juz5fhu
Yea, wrong about everything. You don't know what is going on nor where it is heading. You missed the point of my posts and are every bit of arrogant that you claim that I am. Also, love how you dish it out but can't take it. Kind of pathetic, don't you think?
null
0
1545936849
False
0
ecobe3m
t3_a9qz9q
null
null
t1_ecob6ea
/r/programming/comments/a9qz9q/amoeba_finds_approximate_solutions_to_nphard/ecobe3m/
1548146032
0
t5_2fwo
r/programming
public
null
False
HalibetLector
t2_17d4bn
> There is quite a large anti-Microsoft bias in the industry. Which industry? There isn't one singular tech industry. It's far more fractal than that. The only part of the industry I know of that has a strong anti-microsoft bias are silicon valley startups.
null
0
1544643327
False
0
ebnetgs
t3_a5i57x
null
null
t1_ebn2vq6
/r/programming/comments/a5i57x/the_rise_of_microsoft_visual_studio_code/ebnetgs/
1547524433
9
t5_2fwo
r/programming
public
null
False
ELaskanator
t2_d9jic
Laziness is the de facto behavior of developers in the industry as far as I can tell (UX and edge cases are the very last things to be addressed), because it pays so well that it attracts people who just want money, and it shits on loyalty because experience time is valued over true mastery when making strategic career moves, so unfortunately most places will be full of lazy developers who don't bother trying to improve themselves and just work for the sake of a paycheck, guaranteed by some shoddy performance metric that biases quantity over quality. ^([/runOnSentence])
null
0
1545936866
False
0
ecobev7
t3_a7xwy3
null
null
t1_ec8k6mf
/r/programming/comments/a7xwy3/theres_already_a_blueprint_for_a_more_accessible/ecobev7/
1548146041
2
t5_2fwo
r/programming
public
null
False
idobai
t2_fu8kq
> Compiled binaries are relatively small, and container with them is order of magnitudes smaller than anything else. I hate it, but it still my preferred language for this use case. That's a pretty lame reason. There are a bunch of other languages with compilers which can produce small binaries.
null
0
1544643368
False
0
ebnevhj
t3_a541an
null
null
t1_ebm9js2
/r/programming/comments/a541an/just_tell_me_how_to_use_go_modules/ebnevhj/
1547524458
1
t5_2fwo
r/programming
public
null
False
matthieum
t2_5ij2c
I should also probably have mentioned that sometimes eagerness can lead to a feeling of "violence". When a dozen helpful people compose a careful reply explaining why you are wrong within an hour of you posting something, no matter how well they word it, it still feels like a slap in the face to have such a chorus.
null
0
1545936963
False
0
ecobj6i
t3_a9swiz
null
null
t1_eco9t4s
/r/programming/comments/a9swiz/rust_2019_and_beyond_limits_to_some_growth/ecobj6i/
1548146094
3
t5_2fwo
r/programming
public
null