• An idea for that micro-bulk-image tool: instead of prioritising uploads, maybe prioritise processing of already uploaded images. Things like cropping, optimising, etc. after the upload, and then re-uploading it.

  • New AWS Tools Commands

    For a while now, I’ve been wanting some tools which would help manage AWS resources that would also run in the terminal. I know in most circumstances the AWS console would work, but I know for myself, there’s a lot of benefit from doing this sort of administration from the command line. I use the terminal a lot when I’m developing or investigating something. Much of the time while I’m in the weeds I’ve got a bunch of tabs with tools running and producing output, and I’m switching between them as I try to get something working across a bunch of systems. Continue reading →

  • Woke up expecting today to be long and annoying, but it turned out not to be as annoying as I anticipated (or as long). I guess the lesson here is not to presume how good or bad a day will be until you’ve lived through it first.

  • Got my copy of Bloch’s Effective Java out today for the first time in years, in order to prepare for an interview. As far as books about programming languages go, this is probably my favourite. Very informative and easy to read.

  • No day trip to Warburton this year: too much to do at work unfortunately. I’ve got a day in leau owed to me so we’ll see if I could make it in April.

  • Wondering if there’s a way where I could quit my job and spend my waking hours building text-based UI applications. Not sure there’s a lot of money in such things unfortunately.

  • Doing some tool smithing at work to make my current task a little easier. Using Bubble Tea to build a TUI-based SQS message browser. Early days so far but already showing promise. Anything which will save me clicks around the AWS console is always a plus.

  • Even more work on Feed Journaler. Still trying to tune the title removal logic. Will probably require a lot of testing.

  • The “Explore Repositories” sidebar on GitHub’s home page (if you’re logged in) is a bit strange. Why am I getting recommendations for projects that I either don’t need, or haven’t sought out? Am I expected to just pull in any bit of code people are publishing? Really weird.

  • Hmm, I’m wondering if Broadtail needs a mode for downloading the audio of a video only, and uploading it to a podcasting service like Pocketcasts. I did this twice before, and now wish I can do it again. Third time is when a pattern is emerging.

    Also, a bit of a deviation to finish the current work outstanding for Feed Journaler. Much of it is trying to get the Markdown translator working with Write.as post, mainly to deal with posts without titles, and to strip any hashtags that appear in the first and last paragraph. The code is a real mess. I should probably spend some time cleaning it all up.

  • Showing Only Changed Files in Git Log

    This technique shows only the changed files in a git log call without having to show the entire patch: git log --name-only ... Continue reading →

  • If there’s anyone else out there using Buffalo to build web-apps, I just discovered that it doesn’t clean up old versions of bundled JavaScript files. This means that the public/asset directory can grow to gigabytes in size, eventually reaching the point where Go will simply refuse to embed that much data.

    The tell-tail sign is this error message when you try to run the application:

    too much data in section SDWARFSECT (over 2e+09 bytes)
    

    If you see that, deleting public/assets should solve your problem.

  • Showing A File At a Specific Git Revision

    To display the contents of a file at a given revision in Git, run the following command: $ git show <revision>:<filename> For example, to view the version of “README.md” on the dev branch: $ git show dev:README.md There is an alternative form of this command that will show the changes applied to that file as part of the commit: $ git show <revision> -- <filename> This can be used alongside the log command to work out what happened to a file that was deleted. Continue reading →

  • 🔗 A big bet to kill the password for good

    Lot of talk about getting the user experience/OS compatability right, which is good. But I see no real indication on how they’re going to get the millions of app/website developers to switch to this. Hope they’ve considered that.

  • I may need to shake up my podcast listening habits a little.

    I subscribe to several tech-based podcasts which I regularly listen to. But because I am a creature of habit, I only listen to each one during certain times of the week. Plus I’m finding that I can only take so much tech talk these days, and I need some other topic to listen to.

    I also subscribe to some long form, analysis based podcasts which cover a broad range of subjects, but they don’t come out on a regular schedule. So in order to “fill in the gaps”, I usually turn to some specific news based podcasts. They do come out regularly, but the news of late has been a bit anxiety inducing, and I may need take a little break from them.

    So I think my regular podcast listening rotation needs something new. Might be time to start throwing in some microcasts from fellow Micro-blogers into the mix.

  • A snapshot of the indie-web style project mentioned yesterday:

    This is just static HTML and JavaScript at the moment. The idea is that each of these “cards” can be rearranged by direct manipulation. So I spent most of this morning trying to get drag and drop working in JavaScript.

    After hooking up dragenter and dragleave event listeners to the Stimulus controllers bound to each of the cards, I found that the controllers were getting enter and leave events continuously as the dragged element was moved over them. These enter and leave events occurred almost immediately, making it difficult to indicate a drop-zone just by reacting to the events themselves. Setting a class on enter and then removing that class immediately on leave meant that the class was never shown.

    Turns out this is because the events were being sent for all the subelements of the card. Moving the dragged element from the card padding to the text field resulted in an enter event for text field, followed immediately by a leave event on the card element.

    This means that in order to do any form of indication, some element tracking is required. I’m currently using a counter to do that, which will increment by one when a dragenter event is received and decrement by 1 on dragleave. It sort of works — I’ve got to fix it when the drop event occurs — but I get super concerned about the counter getting out of sync and the indicator being stuck “on” when the dragged element is completely outside it.

    One other thing I could try is having some form of set tracking each of the entered and exited elements and using the set length to determine whether to show the indicator. I trust that the browser will guarantee that a dragleave will always follow a dragenter event sent to the element. 🤔

  • We were hoping for a game of bocce in Argyle Square, which has a bocce pitch. But alas!

    Beaten there by some Grand Prix event. 🙁

  • Code Review Software Sucks. Here's How I Would Improve It

    This post is about code reviews, and the software that facilitates them. I’ll be honest: I’m not a huge fan of code reviews, so a lot of what I speak of below can probably be dismissed as that from someone who blames their tools. Be that as it may, I do think there is room for improvements in the tooling used to review code, and this post touches on a few additional features which would help. Continue reading →

  • Revising the micro-bulk-uploader project. I’ve been reading a lot about IndieAuth and Micropub formats and I got really excited about it. I figured this would be a good project to try them.

    In short, this is a bulk image uploader. It’s primarily tailored for Micro.blog, but since these formats are standards in a way, there’s no real reason why it couldn’t work for other services.

    Basically, the idea is this:

    • User authenticates with their website.
    • They are presented with a set of file uploads, which they can used to prep their images. They can reorder their images (ideally using drag-and-drop) and write some alt text.
    • Once they’re happy with the images, they click “Upload”.
    • The server will upload the images and then generate the HTML to produce a gallery (or just a list of images if they so prefer).

    I have a few goals for this project:

    1. To ship a hosted service for others to use. The goal is to get into the practice of shipping software for other people. This is the principal goal: it must be usable by others. Otherwise, there’s no point doing this.
    2. To get a working version out the door in two weeks for others to start trying. Two weeks is April 1st, which should be achievable.
    3. To learn about the Indypub formats, specifically IndieAuth and Micropub.
  • I forgot that yesterday was St. Patricks Day. But I did wear a green polo, listened to some Celtic inspired music, and watched a few episodes of Derry Girls last night. Does that mean I accidentally celebrated St. Patricks Day? ☘️

  • Sometimes I wish I had the patients (and the hardware) to play some of the video games indies have been releasing. After reading about them, or watching a speed-run, I see that there some that are actually quite incredible. There are some really talented game designers out there.

  • Reading the chapter on Microformats in Indie Microblogging brought me back to uni where we were taught about the Semantic Web. I tell you, I feel exhausted just thinking about it now.

    All these standards: RDF, OWLS, tautologies, and like seven other acronyms I’ve sinced forgotten. Each one building on top of the other like a gigantic wedding cake. And oh yeah, all of them using XML1 and requiring seven different namespaces and five different forms of URI’s to express even the most basic relationship.

    It was the only part of the subject that didn’t seem fun. HTML? CSS? Great, sign me up! Keeping seven different XML files up to date when a relationship changes? No, thank you.

    If there was ever an instance of technologists overengineering a solution without considering how it would be used to solve the problem, the Semantic Web is a great example.


    1. RDF did have a non-XML representation but I do remember being told that using it was discourage in favour of the XML standard. ↩︎

  • An important tenet of software development that I don’t think is appreciated that much: make your software easy to test. This includes building tests, test setup, running tests, configuration for testing, etc. If you don’t do this, your software will not be tested.

  • 🔗 Go 1.18 Release Notes

    Happy “generics finally in Go” day.

    (I wouldn’t call myself someone who was itching for the Go devs to add generics; but now that they are in the language, I’ll probably use them).

  • Broadtail 0.0.7

    Released Broadtail 0.0.7 about a week ago. This included some restyling of the job list on the home page, which now includes a progress bar updated using web-sockets (no need for page refreshes anymore). For the frontend, the Websocket APIs that come from the browser are used. There’s not much to it — it’s managed by a Stimulus controller which sets up the websocket and listen for updates. The updates are then pushed as custom events to the main window, which the Stimulus controllers used to update the progress bar are listening out for. Continue reading →