This great article Backing up data like the adult I supposedly am popped up on Lobste.rs today. I think I’m gonna get myself an rsync.net account.
// 2022-09-18 jj5 – UPDATE: I have had an rsync.net account for some time now, works great. <3
This great article Backing up data like the adult I supposedly am popped up on Lobste.rs today. I think I’m gonna get myself an rsync.net account.
// 2022-09-18 jj5 – UPDATE: I have had an rsync.net account for some time now, works great. <3
So this happened. I’m still in the process of getting my Pioneer FreedomBox to actually run but I expect I will get there in the end.
So there’s a thread over at ProgClub about me and my new Pi. I definitely gotta get me some more of these!
Today I discovered Triggering a PHP script when your Postfix server receives a mail. Looks interesting. Gonna have a read. It references this Postfix Architecture Overview document that is even more interesting, and which I will read first!
I came across these Programming Quotes over on cat-v.org today. Their Bumper-Sticker Computer Science is also good.
My favourite was “You can’t trust code that you did not totally create yourself.” — Ken Thompson
I enjoyed reviewing 10 Popular PHP frameworks in 2020.
Found a cool series of articles: How to Build HTML Forms Right. Only the first two of five articles have been published so far, but I’m looking forward to the next three. The articles are about how to do forms right in HTML 5.
The articles are rich with links, click through for heaps of info. Some things that I found:
Here at ProgClub, as moderator for our mailing lists, I get a bunch of spam that I have to get rid of every day, to keep our lists sparkling and spam-free. I regularly get spam from senders from ofenews.co.uk, and I wanted to add their entire domain to a blacklist on our mail server… I hadn’t configured a Postfix blacklist before, so I did a little research and came up with this:
I created a file /etc/postfix/sender_access like this:
ofenews.co.uk REJECT
Then I created the access database:
# postmap /etc/postfix/sender_access
Then I added the sender restrictions into /etc/postfix/main.cf:
smtpd_sender_restrictions = check_sender_access hash:/etc/postfix/sender_access
Then I restarted postfix and was done! Everything is easy when you know how.
For reference, here is the doco which I read to help me:
If your table isn’t automatically adjusting to the width specified by your CSS, make sure you haven’t set display: inline-block; on the <table> element.
See Migrating from Firebug and Firefox Developer Tools to get started. Also of interest was Web Console Helpers.