@edinbruh@feddit.it
member since 1 Feb 2023 22:18
comments
- on Will it ever finish? Can I keep making a computer in Scrap Mechanic please? in c/programmer_humor@programming.dev · 11h ago
-
on Will it ever finish? Can I keep making a computer in Scrap Mechanic please? in c/programmer_humor@programming.dev · 23h ago
Well? How did it go?
-
on autism rule in c/onehundredninetysix@lemmy.blahaj.zone · 1d ago
All online tests are basically
Test: from 1 to 5, how much X do you feel?
You: 4/5
Test results: You are 75% X
You: so true
You can always tell immediately which question confirms your preconceptions, so you can never answer genuinely. It’s all confirmation bias.
This is all amplified by the fact that if you are taking the test, you already think that you are the thing in the test (in this case, autistic).
P.S. this includes mbti tests. Don’t let their sciency looks deceive you. It’s all confirmation bias, all fake.
-
on Will it ever finish? Can I keep making a computer in Scrap Mechanic please? in c/programmer_humor@programming.dev · 3d ago
I think a “constraint propagation” based solver should work well. So you can try using minizinc and play with the solvers it gives you. Using gecode and heuristics it can get very fast (try using relax_and_reconstruct, together with restart_luby and indomain_random, to obtain a simple LNS. Or you can use Google’s OR tools solver, that is based on ILP and is very fast, and can run multithreaded.
You can also go fully ILP, and model your problem in ampl, and try some free (e.g. glpk) or commercial (e.g. gurobi) ILP solver.
I doubt it helps, but there’s always SMT solvers (e.g. cvc5), which I don’t think can be faster but is surely easier to model than a pure SAT. And there’s also ASP solvers like clingo (clasp+gringo), that are purely logic based and implement common-sense-reasoning.
-
on Will it ever finish? Can I keep making a computer in Scrap Mechanic please? in c/programmer_humor@programming.dev · 4d ago
Maybe you should play with heuristics to get a good enough solution quickly. Or change solver to something more appropriate for what you are modelling
-
on Open Source Printer coming before 2027 in c/opensource@lemmy.ml · 6d ago
Now do a laser printer
-
on rule in c/onehundredninetysix@lemmy.blahaj.zone · 5 Sep 2026
I know very well this UI…
Not a girl tho…
Edit: and I even have a suspicion on which recording it is. Gonna go check the duration
Edit 2: I couldn’t find it
-
on Impersonation rule in c/onehundredninetysix@lemmy.blahaj.zone · 5 Sep 2026
windowslatest.com/…/windows-11s-faster-app-launch…
Feast your eyes
-
on Impersonation rule in c/onehundredninetysix@lemmy.blahaj.zone · 4 Sep 2026
They added a “feature” where to improve the loading time of the start menu (which is already a fucked up thing to need to say) they briefly lift power limits from the cpu when you press start
-
on The Creator of Git and Linux in c/linuxmemes@lemmy.world · 2 Sep 2026
What did he do?
-
on Truly the Dark Souls of yuri manga in c/onehundredninetysix@lemmy.blahaj.zone · 31 Aug 2026
I read it when it came out, and I liked it so much that I stopped reading Yuri afterwards… It makes sense to me
-
on neurodivergence rule in c/onehundredninetysix@lemmy.blahaj.zone · 30 Aug 2026
And why is that?
-
on I drew the twink again in c/onehundredninetysix@lemmy.blahaj.zone · 20 Aug 2026
Now draw him getting an education
-
on Why nano gets used in c/programmer_humor@programming.dev · 9 Aug 2026
And instead vscode supports SSH (without quotes), you can connect to an SSH host, and it will open files and folders on the host like it does locally. And if you open the integrated terminal it will run on the remote host. And it will forward the git login agent so you can commit or push with the credentials of your local machine. And it can forward ports from the remote.
-
on Why nano gets used in c/programmer_humor@programming.dev · 9 Aug 2026
Oh, I use the terminal a lot, it doesn’t throw me off. When I can’t have vscode (e.g. small openwrt devices) I can use vim. It’s just plain easier to use vscode for editing files when I can
-
on Why nano gets used in c/programmer_humor@programming.dev · 9 Aug 2026
It’s there and it’s easy. Most people don’t use terminal text editors unless they are SSHing in a server, and they would only do that sporadically, so it makes no sense to become proficient in a complex text editor like vim or Emacs for that little use case.
Sidenote: personally, I learned vim once, and used it extensively every day for two years. I stopped using it for one year and was back to square one. Now I use vscode for everything… Even when I’m using SSH, because vscode supports SSH
Nice