Weirdly Placed Emacs Org Branches Are Only Cosmetic

Every evening, after my shutdown ritual, I move my current day’s branch to the bottom of my Org Mode file, so I begin the next day at the same fixed place, at line 36.1 The day is done; moving it to the bottom of the pile Every time I move though, it goes there and sits, right next to the last branch, instead of under it. So I would grumble a bit, and then go hit the return key as required, to get it all right and proper....

November 27, 2023 · Mario Jason Braganza

Getting Emacs Windows to Not Be Shy

Figuring out my webapps problem yesterday made me ask myself if I could somehow repurpose that little xdotool script to solve another niche itch that I had. Spoiler alert: It did. I run Emacs as a daemon, and use EmacsClient to connect to the Emacs process. Makes it really ease to launch, work on, sling around and close lots of Emacs windows.1 Which brings me to the hiccough. I launch EmacsClient and a window (frame) does indeed launch, but it just … stays there in the background....

November 18, 2023 · Mario Jason Braganza

On How Emacs Adapts

I love it whenever the Roger Ebert of the Emacs world aka Jon Snader aka irreal, gets his hands on one of my posts and uses it for his insightful annotations. His conclusion is something I totally relate to, because that is exactly what has kept me using Emacs ever since I began using it. It bends to my will. Or as Jon puts it … It’s yet another way that Emacs adapts itself to its users rather than insisting those users adapt themselves to Emacs....

November 18, 2023 · Mario Jason Braganza

Getting Around Linux Mint Web App Manager Window Errors

One of best parts of using Linux Mint is its Web Apps Manager. I can use most of my websites as dedicated applications now. Case in point, I use a dedicated web app to run Elk, the web client for Mastodon. Social stuff like this, or banking stuff or my webmail for that matter, stays away from the rest of my browsing and lets me keep these activities cognitively separate....

November 17, 2023 · Mario Jason Braganza

Having My Emacs Tasks and Notes Ready

Updated: 2023-11-17. Read more below Nearly everything I write is in Emacs.1 It’s been slightly more than two years, since I made the move to using it as my everyday text editor. I have a spartan Emacs config, with only a few customisations, that I found by watching David Wilson aka System Crafters’ Emacs From Scratch #1 video and the rest by searching on the web and asking around on the fediverse....

November 16, 2023 · Mario Jason Braganza

My Custom CSS for Miniflux

Various bits and bobs, I gradually accumulated over the past couple of years, to make my self hosted Miniflux look just the way I want it. Width and Size Changed the width to 850 pixels wide, because even on my vertical monitor, there was quite a bit of wasted horizontal space. Changed the body to use a slightly smaller size. body { max-width: 850px; !important; font-size: 90%; } Italic Blockquotes Changed blockquotes to be italic, so that they’re better set off against normal body text....

November 15, 2023 · Mario Jason Braganza

Reworking Blog/Newsletter Subscription Options

I’ve had a rash of folk1, unsubscribing from the newsletter after last few I’ve sent. I guess a few of you signed on, for techy posts and because of life, most of my recent newsletters have mostly been photography, or writing or other stuff.2 So, I went ahead, reworked the subscribe page on the blog and segmented the rest of you folk. Hopefully, you see only the emails you are interested in....

September 21, 2023 · Mario Jason Braganza

derb; Script to Create podcast RSS feeds

I wrote a tiny script that creates an RSS feed for all the audio files it finds in a folder. I call it derb. My mother gets devotional songs and sermons on cds, which I rip to MP3 files and then dump on her phone for her.1 She listens to them all the time, and now three of her friends want to do the same too. I thought of just sticking them in my self hosted Jellyfin instance,2 but then I realised, all of them have erratic, slow internet....

September 14, 2023 · Mario Jason Braganza

A New Hole Hawg, the Kobo Elipsa 2e

A couple of years ago, around this time, I upgraded to the best reading experience I could afford at the time. I got me a Kindle Oasis. I called it my Hole Hawg. And boy, has it served me like one. And while it has done, everything it promised it would do, I found myself outgrowing it and needing something more powerful. What I need A device that could handle nearly every format that I could throw at it....

July 10, 2023 · Mario Jason Braganza

htpasswd Notes to Self

To create the htpasswd file along with its first user, I just: htpasswd -c /path/to/htpasswdfile/htpasswd some-user It’ll ask you for the password for that user, encrypt it and store it in that location. Add these lines to get Nginx to use the file for basic auth: auth_basic "Login to Proceed: "; #(or whatever message you want) auth_basic_user_file /path/to/htpasswdfile/htpasswd; To append another user to the htpasswd file do: htpasswd /path/to/htpasswd/htpasswd second-user...

June 24, 2023 · Mario Jason Braganza