is certainly Uiua, File Read as String
- 1 Post
- 113 Comments
(Kotlin does support that, with the same
fun do_thing(arg: Int = 2)syntax.)
PoolloverNathan@programming.devto
Linux@programming.dev•Fix your Windows PC by Installing Linux Mint
3·4 months agoInteresting — how easy are they to install compared to Mint, and would there be a way for Mint friends (I have a NixOS config for my fleet, and run our shared services) to easily migrate?
PoolloverNathan@programming.devto
Linux@programming.dev•Fix your Windows PC by Installing Linux Mint
173·4 months agoPerhaps it would be useful to list some alternatives?
{ "ok": "false" }
PoolloverNathan@programming.devto
Linux@programming.dev•Hacked PC - random sounds playing
2·6 months agoSending a dump of entire system memory seems incredibly unsafe, to say the least.
PoolloverNathan@programming.devto
Linux@programming.dev•Hacked PC - random sounds playing
3·6 months agoDon’t run
sha256sum -con your suspect file — it expects to be passed a file containing hashes and other filenames. sha256sum the iso itself instead and check by eye, or make such a hash file.
PoolloverNathan@programming.devto
Programmer Humor@programming.dev•ultimate storage hack
10·10 months agohttps://beepbox.co/ for example
PoolloverNathan@programming.devto
Programmer Humor@programming.dev•Like programming in bashEnglish
12·1 year ago(?=)for positive lookahead and(?!)for negative lookahead. Stick a<in the middle for lookbehind.
It’s equivalent to
cp -r, but:- the copy is read-only
- reuses unchanged files
- easier to share (
btrfs sub send)
btrfs sub snap -r
PoolloverNathan@programming.devto
Programmer Humor@lemmy.ml•You can lead a P to M but you can’t make ’em F’ing R
1·1 year agoExample code >= Documentation
Yes, with
--privileged. It’s totally safe. Trust me.
symlinks (or whatever windows calls them)
Windows actually has two types of symlinks:
- Shortcuts: stored as regular files on disk; only function as a symlink from Explorer.
- Actual symlinks: stored as actual symlinks (or NTFS reparse points). Transparent for all apps, but can only be created using
mklink. - There’s also junction links apparently, but afaik they’re just bindmounts.
moving a symlink can sometimes move all the data too.
Probably, someone managed to create a real symlink in their OneDrive folder, and since OneDrive probably doesn’t check for symlinks it blindly copied all the files to the cloud.
Take all this with a grain of salt — I’m not a Microsoft developer, and it’s been a while since I last used Windows.
PoolloverNathan@programming.devto
Programmer Humor@lemmy.ml•It's a Unix system! Elon knows this!
181·1 year agoNot if you’re a Bash programmer ·υ·
PoolloverNathan@programming.devto
Programmer Humor@programming.dev•Really seems like they're missing one...
14·1 year agoIt probably opened it in
${VISUAL:-${EDITOR:-vim}}; usually setting one of those variables in e.g. bashrc will avoid future vim.
PoolloverNathan@programming.devto
Programmer Humor@programming.dev•Gotta use those quantum numbers for peak 🤌 random randomnessEnglish
25·1 year agoI’m worried about relying on remote servers for random numbers, especially for cryptographic purposes. There’s no way to verify that you aren’t the only person with access to those numbers, and it’s fairly difficult even as the sysadmin to ensure that they’re logged nowhere.


The
"+/"*buffers, I assume.