Earlier quoted context omitted.
> They use linux or OSX. But they don't know awk/sed/bash Am I in the minority of developers then? I don't know awk and sed and I'm honestly not very interested in learning them. But bash I definitely agree with. I still use a cheatsheet to get the syntax right because it's weird as hell imo.
awk and sed are fantastic for command line processing of text. You really should take a look at them. All that said, if you don't find yourself trying to do something in bash and thinking "there must be an easier way" then you're problem sets may just not need them.
What programming languages are used most on weekends?
211–220 of 299 posts
Re: What programming languages are used most on weekends?
#212The funnel shape of the scatter plot immediately reminded me of an article on the insensitivity to sample size pitfall [0], which points out that you'll expect entities with smaller sample sizes to show up more often in the extremes because of the higher variance. Looks like the tags with the biggest differences exemplify this pretty well. [0]- http://dataremixed.com/2015/01/avoiding-data-pitfalls-part-2...
Can you normalise data like that based on a confidence interval? Just rescaling the graph to unify them seems wrong, (it would answer something like "what do we think the distribution would look like if we distrusted the low end?") but maybe there's a better way?
Instead you'd want to use a CDF that bins that values.
Re: What programming languages are used most on weekends?
#213Microsoft should really take note of that. That's a huge tick on their woefully uncool meter. Developers, developers, developers, developers don't want to use Microsoft gear unless they're being paid, it would seem.
Also, amount of questions is not necessarily a good way of measuring a languages popularity. If a language is easy to use, it could have a large following, but not many questions. Hard to draw meaningful conclusions from the data posted imo.
If you are talking about Sharepoint specifically, then you should mention that in your post. Microsoft has a lot of products, just because one is losing popularity doesn't mean they have lost their focus.
Re: What programming languages are used most on weekends?
#214Re: What programming languages are used most on weekends?
#215Earlier quoted context omitted.
Then again, sed works differently on different platforms, and awk is not the same as gawk or nawk, both of which have many more features than standard awk. If you're used to the GNU implementation, you might be surprised to find your script doesn't work on a system without the gawk implementation. On Linux, I can use this sed command: sed -i ‘s/^”//’ example.txt That deletes any quotation marks that are at the beginn…
This is why I have gripes about the OS X command line. I can't confidently use the scripts I do on Ubuntu/Mint/Debian. Like, get with the program, Apple. It infuriates me and I'm moving entirely off their platform as soon as my Mac kicks the bucket.
Re: What programming languages are used most on weekends?
#216You don't use recursion or pointers professionally? On what world are you considered a real world programmer?
Re: What programming languages are used most on weekends?
#217Re: What programming languages are used most on weekends?
#218You don't use recursion or pointers professionally? On what world are you considered a real world programmer?
Also, I think the idea is that those concepts are common enough that you'd either be searching for some specific nuance of implementation, or not searching at all.
I mean, I don't search for "for loop in Javascript" but I like to think I program in the real world. I might search for "Angular foreach options" or something like that, though.
Re: What programming languages are used most on weekends?
#219You don't use recursion or pointers professionally? On what world are you considered a real world programmer?
Probably in a world, where people can read ...
Re: What programming languages are used most on weekends?
#220One would think the "ideal" programming language would be so intuitive that it would have a much lower questions asked to usage ratio.
The two might not be that strongly correlated.