𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍

       🅸 🅰🅼 🆃🅷🅴 🅻🅰🆆. 
 𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍 𝖋𝖊𝖆𝖙𝖍𝖊𝖗𝖘𝖙𝖔𝖓𝖊𝖍𝖆𝖚𝖌𝖍 

Ceterum Lemmi necessitates reactiones

  • 56 Posts
  • 5.06K Comments
Joined 3 years ago
cake
Cake day: August 26th, 2022

help-circle


  • That looks so fantastic! I love the zip top - so many bags have flaps, which look nice but are inconvenient. The external pocket - also common - always goes unused on my bags, and it’s just more bulk. I like this idea of a smaller pocket, juuust the right size for an e-reader.

    Did you do anything on the inside for organization? Again, all the little pen slots and pouches are usually just bulk, but then, a couple of pockets like you did on the outside to put odds and ends would be handy. I’ve never really seen the purpose of dividers.

    Anyway, I love the wabi-sabi of this! I’m a sucker for a leather messenger bag, especially one that has some form to it.




  • I recently had the same experience. Go looking for software; find an article that describes a project in detail that does exactly what you asked for; project doesn’t exist; further investigation finds no reference to the software anywhere other than that article.

    This has happened a couple of times to me; the tip-off is that there’s no link to the project in the article, although sometimes there’ll be a link to a domain owned by a squatter or something unrelated. Unless the article has a date and it’s from a decade ago, I chalk those up to AI as well. I’m certain there are thousands of abandoned projects and domains, deleted repos, and so forth, but I think increasingly the odds of AI shenanigans are pretty high in these cases.






  • Wait… vfat supports Unicode? The filesystem that craps out if the file path length is longer than a couple hundred characters; that is an extension of a filesystem that couldn’t handle file names longer than 8.3 characters; that doesn’t have any concept of file permissions, much less ACLs; the one that partitioned filenames in 13 character hunks in directories to support filenames longer than 12 characters… that isn’t case sensitive, except in all the wrong ways - this filesystem can handle Unicode?

    I greatly doubt that. FAT doesn’t even support 8-bit ASCII, does it? 7-bit only. Unless you mean FAT32, which can optionally have UTF-16 support enabled. And it’s far easier to manage case changes in UTF-16 than UTF-8, using case mapping as MS does. The API handles all of this for you; it keeps track of what the the user calls them, but uses it’s own internal name for the file. And na’er the two shall meet, lest there be trouble.

    I do think it’s sloppy and lazy; it’s very easy to avoid doing actual work thinking about the problem and to bang out some hack solution. In the end, far more work is done, but for the wrong reasons.

    I don’t know what Apple’s excuse is, except maybe DNA. Apple ][ were not only case insensitive, they didn’t even have lower case characters at all. There was only one case, and maybe those engineers brought that mind set forward with the Lisa, and then the Mac. How it got into Darwin… is Darwin really case insensitive? I’m pretty sure on the company line - at the filesystem level, it is.









  • And most people don’t complain about computers being slow anymore. And when they do, it’s usually because of memory, disc, or network speeds. It’s almost never because of CPU cycles. The people complaining about performance that’s related to cycles are usually complaining about GPU processing.

    It’s almost never a CPU power issue, anymore. Unless you’re a developer or scientist, and you’re actually trying to compute something. I have two beefy computers in my house - my desktop, for coding, and my media server, because Jellyfin insists on transcoding everything. The rest are all ARM, and mostly old ARM, and they’re all perfectly capable of doing their jobs. RISCV would be, too.


  • Honestly, this is a topic I’ve spent hours on.

    bcachefs has this mode I’m pretty excited about - when it’s to a state I fell like I can trust it enough to use it - where it has replication levels. Like, you can RAID1 an SSD and (say) an sshfs mount, and configure bcachefs to use the SSD and only opportunistically replicate to the sshfs mount. It means the sshfs is only eventually consistent, but it’s still a fantastic feature I have always wanted. Note that I don’t know that you can literally use a remote network mounted share; it might be limited to devices. The examples I’ve seen usually talk about things like mixing M.2 and hard drives, or M.2 and SCSI, or IDE and a USB drive - devices with different speeds, but all physical media. Still, I intend to stress test that aspect because it’s something I’ve wanted for years.

    I’ve tried so many… so… many network filesystems. They all suck in some way. Many, because they insist on owning the storage partition, or file, such that data isn’t accessible without spinning up the service. Most because they require a horrible amount of setup, server software, and general PITA-edness. There’s a network FS(?) called Upspin that talks about a design that sounds perfect, but actually running it is a terrible experience, and the instructions feel like it was designed to sell Google network storage services.

    I don’t know of a good solution; I’ve just had worse experiences with NFS. Even Samba/CIFS was more fault tolerant; it just lacked basic fill filesystem features, like file permissions.