Alas Poor Erinaceus

(Not as scary as I look, I promise)

. . . but sometimes I just trail off . . .

[er-uh-ney-shuhs]

  • 177 Posts
  • 275 Comments
Joined 2 years ago
cake
Cake day: December 18th, 2024

help-circle











  • As far as InDesign—I don’t think it will probably ever have 1:1 feature parity, but LibreOffice Writer has recently gotten some new features that allow for more fine-tuned word and letter spacing as well as glyph scaling. A paragraph composer is on the horizon as well. There’s also Inkscape and Krita, but I’m guessing you probably already know about those…

    EDIT: Also agitating for optical margin alignment on Writer; will see how that goes…









  • Text, as far as I know (?) doesn’t take up that much space memory-wise, but on the other hand can you imagine the amount of server space that gets taken up by redundant text from people’s emails (just for starters)?

    Some of my approaches to the apparently much-hated “Inbox Zero” are to be diligent about emptying the trash, not keeping copies of emails in my sent folder, and most importantly, to download messages, personal or professional ones (mostly the former) that I find personally valuable, and then delete the original email so it isn’t floating around forever in cyberspace. This leaves me with lots of txt files, which, as I said above, I then merge all together into one file and then edit. You’d think that there’d be a tool that cleans up the contents of email messages; there do appear to be some online ones, but I don’t trust them. While researching this problem, I found out about “(g)awk” and am now fiddling around with it to see if I can successfully clean up my files without completely messing them up, as in

    awk '!seen[$0]++' input.txt > output.txt

    making sure that I experiment on a duplicated file and not on the original. I barely know what I’m doing here, but I’ll see what I can come up with . . .