- 0 Posts
- 73 Comments
themoonisacheese@sh.itjust.worksto
Programmer Humor@programming.dev•This will be *really* funny, until you remember 99% of current super hyped AI stuff is running on Python
7·11 months agoIt’s certainly not very fast
The nightmare in question is windows. My point was that since their client isn’t distributed by a mechanism with automatic updates, they could at least have made it work, but no.
I have checked on every new update because their fuckass client apparently can’t update itself in big 2025 and instead just opens your browser to the download url because that’ll convince people that Linux is great.
Discord is distributed as a .Deb if you don’t use flatpak because they can’t be bothered to set up a repo.
The very useful thing about local file install is that unlike dpkg, apt will install dependencies automatically
themoonisacheese@sh.itjust.worksto
Linux@lemmy.ml•Please support this! As graphic designers we should be able to use a open source OS.
261·1 year agoI mean, signing a change.org petition has resulted in absolutely nothing, ever, so it’s not like your vote is exactly vital here
Who fucking cares what the reddit mod of /r/macos thinks man…
My latest project runs on a VM I use vscode’s ssh editing feature on. I edit the only copy of the file in existence (I have made no backup and there is no version control) and then I restart the systems service.
So what if I mess it up? Big deal. The discord bot goes down for a few minutes and I fix it.
Same goes for the machine configs. Ideally the machines are stable, the critical ones get backups, and if they aren’t stable then I suppose the best way to fix it would be in prod ( my VMs run debian, they’re stable).
I feel i’m kinda vaccinated against the junior feeling because week 2 of my first job out of college, I crashed both sides of a cluster, leaving the client’s factory responsible for half of their European production dead for 3 days.
I panicked for a few days then they asked me to do an incident report and I thought I was cooked and then literally nothing happened to me. Nowadays if shit hits the fan at 16h59 then I’m gone at 17h00 anyway and so should everybody that’s bothered by the smell.
Si tu veux te barrer, dm ton CV. Je te présenterais bien l’entreprise mais au point où t’en es je sais que tu t’en fous donc c’est toi qui voit
Submarines also famously don’t have windows
Doesn’t this mean that the system is never up to date? If so, please don’t.
themoonisacheese@sh.itjust.worksto
linuxmemes@lemmy.world•This time it's really going to happen, I just know it!
1·1 year agoSorry, only spyware laden with ads is available currently at that price.
themoonisacheese@sh.itjust.worksto
linuxmemes@lemmy.world•This time it's really going to happen, I just know it!
1·1 year agoI mean, not necessarily your fault but at least you know someone could care to fix it, and you didn’t spend $100 for the privilege.
themoonisacheese@sh.itjust.worksto
Programmer Humor@programming.dev•The government doesn't use SQL
4·1 year agohttps://youtu.be/Erp8IAUouus explains it pretty well
themoonisacheese@sh.itjust.worksto
Selfhosted@lemmy.world•PSA: LetsEncrypt ending expiration notification emailsEnglish
291·1 year agoPretty much all monitoring solutions on the market track cert expiration nowadays. I get an alert when any of my certs have <5 days left
Me too. My final reason to not go back to windows was that I realized I didn’t actually really care for the games I played with restrictive anti cheat and was only playing them because they were popular.
Now I just play games that I consciously acknowledge I’m enjoying playing, and that has been great for mental health as well.
themoonisacheese@sh.itjust.worksto
Linux@lemmy.ml•[UPDATED, probably solved) Need some help. System locked up, had to force power off, now gaming performance is bad.
5·1 year agoI don’t think this is your specific issue but I’m sharing just in case.
Once I had a similar problem and the root cause was basically that in the course of unplugging all USB shit just in case, I replugged my VR headset in a different port. That caused the entire system to become very unresponsive and the logs we’re not helping at all. Maybe you left a bad USB plugged in from something? Probably not but it’s free to check.
You should look in dmesg, it’s always a mess but maybe your issue appears there.
Where’s you’re going you don’t need luck, just a solid enough internet access point to search for solutions!

Okay so basically this is saving bytes on a technicality but also good programming language design (for this specific purpose).
The first aspect is that since you’re scored on bytes, it’s not really to your advantage to use a language that uses ascii (or utf-8) for it’s tokens, because a large part of it is unprintables like DEL or BELL. So people have designed specially crafted golfing programming languages that use a full 256 possible characters in order to pack as many features as possible in as few bytes as possible.
The good design part of it is that if you really think about it hard, there’s really not that many things you expect a programming language to do. It turns out that 256 total different operands is about in the sweet spot, so each character that’s available in the 1-byte code page is mapped to one command, and the languages are also designed to make as many things as possible implicit, both at the cost of readability. Remember, all that matters here is getting the lowest score, not code maintainability or anything else.
This leads to languages like japt (which is a terse form of JavaScript, I’m pretty sure) or pyth (same for python) or Vyxal (my personal favorite, used to be python based but is now bespoke) that look like this but absolutely own at getting a task out in as few bytes as possible.