Don’t listen to the haters but it would have been nice if you collapsed this because it is very long and generalized to the point that it is pretty much an eyesore. Plus most people can ask their AI of choosing semi-random topics. I don’t see what was interesting in the AI response at all. It states some blatantly obvious facts and is rather too wordy. I intentionally include into the system prompt or “personalization” about how I like things to be kept short and to not reiterate what I had posted especially if it just sounds like the “AI” is thinking out loud.
- 0 Posts
- 93 Comments
I usually ask AI to summarize it and then I get a pretty good idea of what it was meant to do. It’s just another tool to me. AI generated code sucks but it’s nice when it’s a quick summary.
I run a personal dnsmasq just for dns resolving/routing. It integrates well with Networkmanager. Easy to work with and very reliable to have the DNS resolution and routing be handled by dnsmasq. Single command to reload NetworkManager which also reloads the integrated dnsmasq. I like it and it offers a lot of control for me. I hate having to use the hosts file for when I am connecting to labs via VPN with their own network. dnsmasq is way better at handling subdomains than the hosts file and it feels way more reliable than just hoping the minimal DNS routing system works properly.
Acters@lemmy.worldto Programmer Humor@lemmy.ml•You can lead a P to M but you can’t make ’em F’ing R2·4 months agoHonestly as someone who partakes in some cyber security challenges for fun, there are plenty of weird things that programmers or doc writers never ever consider but other times the docs are so barebones that it is worthless to read. And a high word count does not always mean the doc is useful when all the text is either ai generated slop, or a lot of high level ideations that don’t get into how to work it.
Needs more higher dimensional objects
Acters@lemmy.worldto Open Source@lemmy.ml•Mindustry: an extremely high quality (and difficulty) FOSS tower defense game2·7 months agoI mean F-droid has it if you prefer that instead
Acters@lemmy.worldto Open Source@lemmy.ml•Mindustry: an extremely high quality (and difficulty) FOSS tower defense game4·7 months agoReading the room is a skill, not a burden… Keep your opinion, we also have our own. No wonder YouTube got rid of the down vote button and other social platforms don’t really have one. Both sides pretty much want to suppress each other. No matter how much I like factorio, I don’t think many people who do play it care about is looks and the people who also play mindustry also don’t care how “terrible” it looks when we consider your standards as the measurement…
You done goofed your reasoning. You rolled a nat 1 on charisma and intelligence check. Rip bozo
Acters@lemmy.worldto Open Source@lemmy.ml•Mindustry: an extremely high quality (and difficulty) FOSS tower defense game3·7 months agoUnofficially the stylus on a Samsung phone is great for this kind of game
Acters@lemmy.worldto Open Source@lemmy.ml•Mindustry: an extremely high quality (and difficulty) FOSS tower defense game1·7 months agoThere are definitely some maps on the new planet where I seemingly realized that pausing was strictly necessary as the waves start overwhelming the defenses and units to the point that I either run out of resources or they somehow sneak one drone in that wrecks havoc on the supply lines that are already packed with not enough space to add the turrets that can deal with the advanced units. Eventually, it really became a race to finish as fast as possible. Also, the staggered unlocks or limited resources on some maps were brutal.
Acters@lemmy.worldto Programming@programming.dev•Hundreds of code libraries posted to NPM try to install malware on dev machines2·7 months agoIDK about you but the company I work for can’t live without npm packages doing almost everything. For example: the is-even package.
Yeah Linux still has plenty to work on. It’s unfortunate how limited the support is. If game and app developers could target Linux, then the cost to support and maintain would be lower than they have to do with Windows. Unfortunately, market share and power of defaults work against us.
If you can, look towards getting a steam deck. At least that is a Linux thing that is pretty decent and portable.
Unfortunately, that would not match up with the other three panels. The smart engineer should be able to figure out how to satisfy the customer. It is up mostly to public interpretation, as most art is. That is how I see it but I won’t deny someone who labels themselves as an engineer could be a con artist in disguise.
One way I see this is how we interpret the glass half full or glass half empty. There are some ways to see it and modify it a little and meaning can take a different more pronounced form. So yeah both can be valid when we isolate the panel as a completely separate meaning over the other three panels. Then we are considering if the label engineer is truth or a lie.
You’re a moron to think this is about scamming someone. The smart engineer realized he can offer a louder option but didn’t want to disturb the preset settings the customer is used to. If anything, not only is the engineer smart but empathetic towards how troublesome learning a new tool is like. Let me tell you it is not a problem that the volume is not standardized. Instead, it is nice to know that the customer can choose options he is familiar with AND now has a setting to go louder. Of course the much smarter way is to make the dial more analog input than a digital input. However, the digital dial will not move as easily when bumped. Trade-offs were made. For aesthetics and function. Yes I know some music nerds who like the dial more than a touch button.
Now don’t get me started with how they can sell it however they want. If it is louder than the product it is comparing against and the buyer likes it then it is not a scam, it was a fair trade.
Yes it is possible to look at this image with different what-ifs, and from what I see, you are only looking at the what-if where the “smart engineer” is not even acting as an engineer but rather a con artist. If we were to take the meme more literally then the what-if I have explained above is more true to the intentions of the characters in it than your narrow interpretation.
/EndRant
I didn’t say there are no repercussions. I said it is a safe bet on a risk that many individuals are willing to make.
Breaking the agreement does not always mean you will get in trouble for it. This is the one rule that can be risked breaking without facing repercussions.
Acters@lemmy.worldto Programming@programming.dev•[History] An editor letter by Edsger Dijkstra, titled: "go to statements considered harmful" (march 1968).1·1 year agoI’ll be very interested to hear more, do you have a blog?
Glibc’s qsort will default to either insertion sort mergesort or heapsort. Quicksort itself is used when it cannot allocate extra memory for mergesort or heapsort. Insertion sort is still used in the quicksort code, when there is a final 4 items that need to be sorted.
Normally it is simply mergesort or heapsort. Why I know this? Because there was a recent CVE for quicksort and to reproduce the bug I had to force memory to be unable to be allocated with a max size item. It was interesting reading the source code.
That is if you are not on a recent version of qsort which simply removed quicksort altogether for the mergesort + heapsort
Older version still had quicksort and even some had insertion sort. Its interesting to look at all the different versions of qsort.