Yea, do it to fill your resume with some good points but once you’re not learning anything new it’s time to leave.
Yea, do it to fill your resume with some good points but once you’re not learning anything new it’s time to leave.
Nah your boss is just getting you to work beyond what you’re paid to do.
That’s a featured snippet, so not AI at all.
Autohotkey is the most arcane fucking language I’ve used, idk why someone hasn’t rewritten it in something clearer.
Bosses will never understand this and discourage refactoring until months later nothing works and everything has to be rewritten…
Any chance you could share your docker-compose.yml for your stack?
I’ve only been programming seriously (for work) in the last two years and honestly don’t get the copy pasting memes. I get copy pasting a 1-3 line terminal snippet sometimes, but idk how people are getting away without actually writing their own code.
Did woodworking before I started software engineering, and I feel like the general attitude to craftsmanship applies well to coding.
You don’t have to wait, they’re doing it now.
I got that dawg in me
People write regex in notepad and complain it doesn’t work on the first try…
Another fucking stupid outlook thing is that you can only schedule send emails from the Web client, not the desktop app. If you try to do it on the desktop app it sits locally in your outbox and only sends if the PC holding the email is on. And if it’s off when the scheduled time passes, the email just sits in the outbox. So incredibly stupid.
There are people in my workplace (which uses Gmail) who willingly use Outlook to access it then complain about Outlook problems. Outlook is the biggest piece of trash email client software I’ve ever used.
At one place I worked at, it was OBLITERATING any mails from one particular person because of a completely unrelated filter I had. Email notifications from them would appear for a few seconds, then the email would completely disappear (not even in deleted, or in any filter folders). Everyone else cced could see the emails except me, and IT couldn’t figure it out. I had to disable ALL my filters which trashed my inbox with stupid work circulars. Fuck Outlook.
Don’t get me wrong, it’s incredible. But it’s still a variation of the Chinese room experiment, it’s not a real intelligence, but really good at pretending to be one. I might trust it more if there were variants based on strictly controlled datasets.
I write a lot of bash and I still have to check syntax every day, but the answer to that is not chatGPT but a proper linter like shell check that you can trust because it’s based on a rigid set of rules, not the black box of a LLM.
I can understand the syntax justification for obscure languages that don’t have a well written linter, but if anything that gives me less confidence about CHATGPT because it’s training material for an obscure language is likely smaller.
For the love of God, if you’re a junior programmer you’re overestimating your understanding if you keep relying on chatGPT thinking ‘of course I’ll spot the errors’. You will until you won’t and you end up dropping the company database or deleting everything in root.
All ChatGPT is doing is guessing the next word. And it’s trained on a bunch of bullshit coding blogs that litter the internet, half of which are now chatGPT written (without any validation of course).
If you can’t take 10 - 30 minutes to search for, read, and comprehend information on stack overflow or docs then programming (or problem solving) just isn’t for you. The junior end of this feel is really getting clogged with people who want to get rich quick without doing any of the legwork behind learning how to be good at this job, and ChatGPT is really exarcebating the problem.
I will never understand people in programming who do stuff in tedious/inefficient ways without stopping to consider the alternatives. 9/10 if it feels stupid, it probably is.
No simple way to join tables though, which is still pretty shocking to me.
R and tidyverse is really amazing, the syntax is so natural I rarely need to check the docs on anything to quickly do basic data transformation/plotting. Definitely more intuitive than pandas (and I learnt that first).