According to https://www.oracle.com/java/technologies/java-se-support-roadmap.html, Java 8 Extended Support will end in December 2030
LaggyKar
- 0 Posts
- 205 Comments
LaggyKar@programming.devto
Programmer Humor@programming.dev•Have you been exposed to an IPv6 address at work?
31·8 months agoIt is a single address with an associated subnet mask, indicating what subnet the address is in.
The subnet would be 3fff:a1:1ab:bc67::/64, for the top one.
but it is a task of a programmer to review it before publishing it.
By contrast however, the programmer does not generally need to review the machine code produced by their compiler when coding in C.
It’s not though. Programming languages, like assembly before them, are deterministic. If you run the same C code again the same environment, it will do the same thing, and altering the code will alter the behaviour correspondingly. It’s possible to reason about it. The same does not apply to LLMs. You can’t reason about their behavior, when means you can’t build anything non-trivial with them. All that is mentioned in the article.
LaggyKar@programming.devto
Technology@beehaw.org•Automated Sextortion Spyware Takes Webcam Pics of Victims Watching Porn
9·8 months agoThe same thing spam e-mails have claimed to have done for ages
OK, bad examples. On the other hand e.g. X, GitHub, Pornhub, PSN, Steam or Discord do not support IPv6.
I know this is humor, but for the record this wouldn’t work. Each simultaneous TCP connection needs a unique four-tuple (source address, source port, destination address, destination port). If a lot the people behind the NAT try to connect to the same place (destination address and port) at the same time (something popular like Google, YouTube or Netflix), and their source address is the same, the source port needs to be different for each connection. So after at most 65535 connections within a short time the NAT would run out of ports and no one behind the same NAT would be able to open new connections to the same place until the NAT mapping expiries.
So you could have at most tens of thousands of people behind the same NAT, maybe even fewer to make it reliable.
Lossless WebP is still gets way better compression than PNG though, this doesn’t change that. Although they mention they’re looking to improve it in the next version, so we’ll see then.
LaggyKar@programming.devto
Linux@programming.dev•Linus Torvalds Expresses His Hatred For Case-Insensitive File-Systems
41·1 year agoIf you’re running Wine on a case-sensitive file system, and you it tries to open a file, it would first try to open a file whose case matches exactly. But if it doesn’t find one, it would then need to list all the files in the directory, normalize their case, and go through them all to see if there is a file with the given name but in a different case. That can take some time if there is a lot of files in the directory.
But if you’re on a case-insensitive filesystem, the FS can keep case-normalized names of all files on disk, so you can do a case-insensitive open just as fast as you can do a case-sensitive open.
BTW, another application that can benefit from this is Samba, since SMB is case-insensitive.
LaggyKar@programming.devto
Linux@programming.dev•Linus Torvalds Expresses His Hatred For Case-Insensitive File-Systems
21·1 year agoIt does, but having case insensitivity in the file system can get you better performance.
LaggyKar@programming.devto
Linux@programming.dev•Linus Torvalds Expresses His Hatred For Case-Insensitive File-Systems
12·1 year agoIt isn’t normally, but it, like e.g. Ext4, allows case insensitivity mostly for the sake of Wine.
LaggyKar@programming.devto
Linux@programming.dev•Calibre 8.2 Brings New Kobo and Kindle Features
8·1 year agoKobo store, Google Play Books, and various other places (here in Sweden for example we have Bokus and Adlibris) have Epub downloads. Usually with Adobe Digital Editions DRM (which you can get rid of pretty easily with DeDRM, or alternatively Kobo tablets support Digital Editions), but some books are sold DRM free, or with LCP DRM which I don’t have experience with. Something I’ve noticed at least on Bokus is that many books in Swedish are sold as DRM free Epubs with watermarks, even if they’re translated from an English version which is sold with DRM on the same store, though that’s probably not relevant for people in other regions.
LaggyKar@programming.devto
Linux@programming.dev•ParticleOS: Systemd's Very Own Linux Distro in Making
81·1 year agoIt’s not a daemon
This is something that Rust is specifically designed to prevent.
LaggyKar@programming.devto
Programming@programming.dev•Falsehoods programmers believe about languages
7·1 year agoIt’s not even that, there are multiple languages spoken in the same region. Webpages should just use the language the browser tells it to use.
LaggyKar@programming.devto
Linux@programming.dev•Firefox 137 To Support HEVC/H.265 Video Playback On Linux With VA-API
62·1 year agoYes, it says so in the first paragraph
LaggyKar@programming.devto
Android@lemmy.world•10 Features You No Longer Need to Root Your Android Phone ForEnglish
18·1 year agoOne thing that you do still need root for however is proper backups. The built-in backup system is tied to Google, and it’s very limited in what it will back up, nowhere near what you can do with root backup software like Titanium Backup.
LaggyKar@programming.devto
Linux@programming.dev•Debcow Optimizing Debian Packages For Copy-On-Write File-Systems
2·2 years agoA normal copy consists of a program reading from one file and writing to another. There is no way for the filesystem to do a reflink in that case, it just sees that the program is reading and writing stuff. In order to do a reflink, the program must tell the filesystem what data should be “copied” to where using FICLONE or FICLONERANGE. Though some programs will do that by default if possible nowadays when copying files or when moving files between different subvolumes on the same partition, including the Coreutils cp, mv and install commands and some GUI file managers.
LaggyKar@programming.devto
Android@lemdro.id•Bye USB, File Explorer gets Android storage integration on Windows 11, Windows 10English
15·2 years agoYes, using KDE Connect, which has had this functionality for ages. Though you’re best off using the F-Droid version since Google has severely limited the Play Store version using SAF. Seems like they’ve they’ve given Microsoft a pass here even though they’ve blocked KDE Connect from doing the exact same thing for years.
6 inches is not small. Small would be like 4 inches or less.