Earlier quoted context omitted.
This is an undue attack. We buy our computers and screens and keyboards, most of us are on commercial OS, we pay for SaaS at a non trivial price, and most of us also use additional personal apps that aren't free (including password managers, mail clients etc.). Those are actual tools for the trade. Arguing we should also buy every Jetbrains product is like arguing carpenters should buy line drawing AR goggles. Perhap…
“I’ll pay $1000’s to get all setup and running with everything I need, including a bunch of stuff I don’t need, but not the last $90 for some productive software to make more money” Yeah ok.
Why I Don't Like Golang (2016)
151–160 of 237 posts
Re: Why I Don't Like Golang (2016)
#152Earlier quoted context omitted.
“I’ll pay $1000’s to get all setup and running with everything I need, including a bunch of stuff I don’t need, but not the last $90 for some productive software to make more money” Yeah ok.
Some people really like these tools, and that is OK. But not everyone has the same workflow. I personally get a JetBrains license from the project I work on - but I refuse to use it, as I find their tools pedantic, slow, and eating my computer's resources. Ymmv.
Whatever makes them happy and productive, that's great. I've seen people use Vim and its crazy how productive some people are with it.
My point is complaining about the price of some software like it's blocking them from doing anything. They spend all this money on all this hardware and software, but when it comes to development, oh it costs too much I don't want to pay $90 for something to earn money...
Re: Why I Don't Like Golang (2016)
#153Re: Why I Don't Like Golang (2016)
#154Earlier quoted context omitted.
This is an undue attack. We buy our computers and screens and keyboards, most of us are on commercial OS, we pay for SaaS at a non trivial price, and most of us also use additional personal apps that aren't free (including password managers, mail clients etc.). Those are actual tools for the trade. Arguing we should also buy every Jetbrains product is like arguing carpenters should buy line drawing AR goggles. Perhap…
“I’ll pay $1000’s to get all setup and running with everything I need, including a bunch of stuff I don’t need, but not the last $90 for some productive software to make more money” Yeah ok.
This feels pretty weird to be faulted for using other companies' products. And no, switching to Jetbrains' doesn't make me more money. Could be the reverse from my past trials.
Re: Why I Don't Like Golang (2016)
#155Earlier quoted context omitted.
For comparison, in Go it would be: foo := func() string { if bar { return "this" } return "that" }()
Bit of an odd use of an anonymous function IMO. Normally I'd write that as: foo := "that" if bar { foo = "that" } Unless the assignment of "foo" is expensive, then you'd assign it in an else. If you really want to, you can do it in a single line too: foo := map[bool]string{true: "this", false: "that"}[bar]
Re: Why I Don't Like Golang (2016)
#156Earlier quoted context omitted.
I wonder how Turbo Pascal IDE managed to fit into 640 KB....
Because it wasn't based on bloatware liks Electron. And I guess the developers actually cared about performance because at that time they couldn't just assume that everyone has a powerful machine.
Re: Why I Don't Like Golang (2016)
#157Re: Why I Don't Like Golang (2016)
#158Why isn't Go good for large projects? Kubernetes is an example of a huge project built in Go
This is stock example. Anything else?
Re: Why I Don't Like Golang (2016)
#159Earlier quoted context omitted.
Some people really like these tools, and that is OK. But not everyone has the same workflow. I personally get a JetBrains license from the project I work on - but I refuse to use it, as I find their tools pedantic, slow, and eating my computer's resources. Ymmv.
Oh absolutely, if someone perfers emacs or vim, VS, VSCode, some JetBrains IDE. Punch cards. Whatever makes them happy and productive, that's great. I've seen people use Vim and its crazy how productive some people are with it. My point is complaining about the price of some software like it's blocking them from doing anything. They spend all this money on all this hardware and software, but when it comes to developm…
Re: Why I Don't Like Golang (2016)
#160Earlier quoted context omitted.
Sure, some people enjoy being stuck with workflows born out of phosphor terminals.
Do you have any other workflow that allows so much programmability and composability while being lightweight and cross-platform?