…in a virtual machine
- 1 Post
- 148 Comments
And even if something is not on the AUR, I could see myself writing a PKGBUILD for it, unlike most other packaging formats.
archinstall straight up could not deal with the partition setup I wanted, EOS installed without problems. Something about installing btrfs with multiple subvolumes next to Windows on the same drive.
unique_hemp@discuss.tchncs.deto
Linux@lemmy.ml•Pascal (GTX 1070) on Arch after NVIDIA 590... what’s the sane long-term path?
1·27日前Doesn’t LTS change like twice a year nowadays?
What distro? Runs just fine on Arch.
unique_hemp@discuss.tchncs.deto
Technology@beehaw.org•Why are most machine learning models (not frameworks) written in Python? Even through almost any programming language can be used for machine learning?
21·1か月前No sane person is putting plain JS on the server nowadays, it’s TS by far most of the time.
Best match
Sure thing, bud 😂
It even recognized the local app that matches, how on earth is this a better match
Are you sure that’s not a monitor setting?
unique_hemp@discuss.tchncs.deto
Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com•What are your favorite public torrent based indexers for TV and Movies using the *arr stack?English
1·2か月前Since plain http is becoming pretty uncommon nowadays, just use a non-ISP DNS server and you should be pretty safe.
unique_hemp@discuss.tchncs.deto
Programming@programming.dev•How much are SOLID principles in OOP programming (and JVM languages specifically) just a mindless following of a set of ideas that aren't always the best solution?
4·3か月前At least in C# with Moq you can only mock virtual methods of concrete classes, so using interfaces is still nicer in general.
I think a lot of Brits pronounce it that way
unique_hemp@discuss.tchncs.deto
Open Source@lemmy.ml•Top 1000 GitHub repositories, updated daily, all on one page.
2·4か月前And sometimes recommended by Microsoft support.
As far as I can see, it’s freeware, not foss
unique_hemp@discuss.tchncs.deto
Programming@programming.dev•Unix Co-Creator Brian Kernighan on Rust, Distros and NixOS
7·5か月前Off the top of my head the compiler is slow because:
- With C you can compile every file in parallel, in Rust compilation of a single crate is serial (hence splitting up large projects into many crates is important, but that makes development somewhat more difficult)
- LLVM itself is pretty slow
- Generic functions are monomorphized (there’s a unique machine code version of it for every concrete type combination they are called with) to improve runtime performance, but that gives LLVM a lot more work to do - see point 2
Does that laptop have an SSD?
This is a recent example of a problem that required manual intervention or the system would not boot after updates. This happens every now and then on arch, it’s why you should check arch news before updating.
Jokes on you, this happened to me on fedora with an nvidia gpu.
unique_hemp@discuss.tchncs.deto
Technology@beehaw.org•Germany's Ecosia proposes stewardship to run Google Chrome
1·5か月前According to this Google accounts for 90% of Chromium code contributions. If Google does not control Chrome anymore, expect them to mostly go away.



CSV >>> JSON when dealing with large tabular data:
1 can be solved with JSONL, but 2 is unavoidable.