Comment on
mac or linux
Just enjoy the MacBook. It’s a fine product. You’ll feel right at home in the Unix terminal.
Comment on
mac or linux
Just enjoy the MacBook. It’s a fine product. You’ll feel right at home in the Unix terminal.
Comment on
Where to get tips and advice for someone new to linux
Reply in thread
The downvote ratio here is comical. This is a solid answer, if not the answer, in 2026.
Comment on
The back-to-office backfire: Companies ending WFH perks lose out on top talent, who view flexible work as equivalent to an 8% raise
Holy smokes, working from home is not a “raise.” You should be compensated for the value you bring, not where you’re sitting when you bring value.
Comment on
Golang be like
If this language feature is annoying to you, you are the problem. You 👏are 👏 the 👏 reason 👏 it 👏 exists.
I worked in places where the developers loaded their code full of unused variables and dead code. It costs a lot of time reasoning about it during pull request and it costs a lot of time arguing with coworkers who swear that they’re going to need that code in there next week (they never need that code).
This is a very attractive feature for a programming language in my opinion.
PS: I’m still denying your pull request if you try to comment the code instead.
❗️EDIT: A lot of y’all have never been to programming hell and it shows. 🪖 I’m telling you, I’ve fixed bayonets in the trenches of dynamically typed Python, I’ve braved the rice paddies of CICD YAML mines, I’ve queried alongside SQL Team Six; I’ve seen things in production, things you’ll probably never see… things you should never see. It’s easy to be against an opinionated compiler having such a feature, but when you watch a prod deployment blow up on a Friday afternoon without an easy option to rollback AND hours later you find the bug after you were stalled by dead code, it changes you. Then… then you start to appreciate opinionated features like this one. 🫡
Comment on
Who is this "Jenkins" and what now has broken him?
Real talk- I agree with this meme as truth.
The more and more I use CICD tools, the more I see value in scripting out my deployment with shell scripts and Dockerfiles that can be run anywhere, to include within a CICD tool.
This way, the CICD tool is merely a launch point for the aforementioned deployment scripts, and its only other responsibility is injecting deployment tokens and credentials into the scripts as necessary.
Anyone else in the same boat as me?
I’d be curious to hear about projects where my approach would not work, if anyone is willing to share!
Edit: In no way does my approach to deployment reduce my appreciation for the efforts required to make a CICD pipeline happen. I’m just saying that in my experience, I don’t find most CICD platforms’ features to be necessary.
Comment on
Implementing RFC 3339 shouldn't really be that hard...
Mandating UTC everywhere and eliminating the concept of time zones altogether is all a political candidate needs to do in order to earn my vote in 2024.
Seriously, what is the point of time zones? The only explanation I’ve ever heard is “well if we didn’t have time zones, half the world would be expected to be awake when it’s dark out!” No. We could all just literally adjust the times of our business operations based around when daylight is usual for the different geographic regions as they have the sun shine on them. The physical “zones” of time zones could remain the same, and in those zones “noon” would just mean something other than “12:00.” “Noon” for one region could be 2300 while what is considered “noon” for another region could be 1800.
(And for my next rant: why the 24 hour clock is superior to the 12 hour clock… reason number 1? There’s 24 hours in a day…)
Comment on
Quantum Lock suspends sales due to developers losing access to source code
So, basically, “we started learning Git and accidentally blew away the only copy of the code base we had!” 😂
I’ve watched new developers delete 2 weeks worth of development by misunderstanding Git🤦♂️
Comment on
Lemmy is slowly getting better
As of this last month, Lemmy is my new “go to” for scrolling social media. My Reddit usage is probably 20% or less of what it used to be.
A part of this was Voyager’s Progressive Web App (https://vger.app), it made me feel right at home after Apollo shut down.
Comment on
What's a recent game you've tried playing that isn't worth the hype?
Deep Rock Galactic. I was really excited to play it and I tried to like it. The colors and graphics were 10/10 awesome, I just found it to be extremely boring and repetitive.
Comment on
Training Payoff
Reply in thread
I have never once understood these sock references and jokes. Never seen a programmer wearing thigh high socks. Never associated socks with specific programming languages.
What’s the punch that I’m missing here?
Comment on
What is Docker?
Docker enables you to create instances of an operating system running within a “container” which doesn’t access the host computer unless it is explicitly requested. This is done using a Dockerfile, which is a file that describes in detail all of the settings and parameters for said instance of the operating system. This might be packages to install ahead of time, or commands to create users, compile code, execute code, and more.
This instance of an operating system, usually a “server,” is great because you can throw the server away at any time and rebuild it with practically zero effort. It will be just like new. There are many reasons to want to do that; who doesn’t love a fresh install with the bare necessities?
On the surface (and the rabbit hole is deep!), Docker enables you to create an easily repeated formula for building a server so that you don’t get emotionally attached to a server.
Comment on
What are some common misconceptions about programming that you'd like to debunk?
The misconception that we’re the person to go to to fix your printer…
..I mean we probably can fix it, but it’s a waste of our time…
Comment on
Ditching Docker for Local Development
You can have my Docker development environment when you pry it from my cold dead hands!
Comment on
Anybody remember the brief era when kids would steal school computer mouse balls?
Crazy to see this in my feed, I was just thinking about this the other day. I didn’t steal the balls, but I remember figuring out that I could remove them and clean the crud off of the rolling components inside to smooth my cursor movement. (This would have been 3rd or 4th grade.)
Comment on
muskrat's data eng expert's hard drive overheats while processing 60k rows
Is this a real post? I can’t seemed to find it on that website “X, formerly known as Twitter.”
Comment on
Why USA pays so well to developers (or rarher Europe pays so bad)
many american companies being able to pay 200-400k usd a year while its hard to get past 100k usd in the richer countries of Europe
The way you word this makes it sound like it would be the opposite of “hard” to achieve 200k-400k in the United States.
What has convinced you that 200k-400k is some sort of average developer pay in the United States?
Comment on
Why do they keep making new languages
Think about this: Why are there so many automobiles? And why are so many new models still being made? I would think you would try to perfect what you have instead of making new ones all the time. I understand you need new automobiles sometimes, like construction equipment trucks or some treaded military tanks. But for average daily driver you would think there would be some kind of universal automobile. I drive a Corolla btw. I like automobiles. But was just wondering.
I’m not here to mock you, just providing an analogy. You can deliver just about anything in one language that you can with another. However, like the car, you might need a different type if you want more performance. Maybe you want a fast car. High performance cars often need a lot of attention, they need that premium gas, the mechanics demand higher pay! What if you only care about getting from point A to point B, and you’re more concerned with driving a car that’s cheaper to maintain, maybe there are just more car mechanics for that type of car, and the cost to pay them is cheaper.
A C application that is very well tuned to manage memory and threads in the name of perfect performance will require more time and computer science knowledge to create when compared to a Python script that does the same thing, but in the most basic possible way running on a single CPU, running hundreds of time slower.
Sometimes you need the performance, and often you don’t. Sometimes you need a treaded tank, sometimes you need a NASCAR, and most days the Corolla does just fine, it’ll even let you miss a few oil changes before things get bad.
As to why we don’t perfect what we have now instead of creating more: technology changes, easier to work with abstractions come about, some people enjoy the hobby of creating a language, or maybe a niche language comes about with very specific trade offs for a very specific purpose, no one wants to break backwards compatibility by adding new features and syntax to their language - I’m sure there’s tons more reasons to list.
Comment on
We Can’t Hire You. Developers’ Challenge
Reply in thread
I feel your pain. I once worked at a place that hired an “expert” as a senior dev who asked me on the first day, “what is this import on the first line of this code??? I’ve never seen this before. 🤔” They were unfamiliar with the concept of packages and importing them… Senior dev, hired specifically because they were an expert in a specific language…
They’d call me upwards of 12 times a day for help with the most basic of tasks with anything technical, to include how to install the basic runtime to be able to run code in that language.
(I’m speaking quasi cryptically on purpose.)
Comment on
Chinese distro (OpenKylin) made to provide independence from western technologies releses its first stable version
Reply in thread
Is Europe no longer considered western?
Comment on
Should I stop using Telegram?
Here’s another comment endorsing Signal.