is certainly Uiua, File Read as String
- 0 posts
- 83 comments
(Kotlin does support that, with the same
fun do_thing(arg: Int = 2)syntax.)
- 8 months
Interesting — 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?
- 8 months
Perhaps it would be useful to list some alternatives?
- PoolloverNathan@programming.devto
Gaming@beehaw.org•The oldest Minecraft server, MinecraftOnline, is being shut down by Microsoft
8 monthsThis still doesn’t help if the server is on the server blocklist, which Microsoft can add your server to. Mods that disable the blocklist violate the EULA.
- PoolloverNathan@programming.devto
Gaming@beehaw.org•The oldest Minecraft server, MinecraftOnline, is being shut down by Microsoft
8 monthsYes, they can — Minecraft consults a Microsoft-managed, dynamically updatable blocklist of server IPs, regardless of who owns the server. In addition, Minecraft has functionality to ban players from authenticating to any multiplayer server.
{ "ok": "false" }
Sending a dump of entire system memory seems incredibly unsafe, to say the least.
Don’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.
- 1 year
(?=)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
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
Programming@programming.dev•Why do libraries define their own true and false?
1 yearBy the way, you can use
g~to get the effects of tildeop without needing to set it.
- PoolloverNathan@programming.devto
Programmer Humor@programming.dev•Really seems like they're missing one...
1 yearIt probably opened it in
${VISUAL:-${EDITOR:-vim}}; usually setting one of those variables in e.g. bashrc will avoid future vim.





Yes, that’s what the comment said — smaller PRs are better.