Iā€™ve started using my new(ish) test site to build my new IndieWeb WordPress theme. Itā€™s very early in the process, and Iā€™m getting the markup in place first, before I go anywhere near a stylesheet ā€“ so it all looks very 1996 right now.

The lessons learned on ā€œKā€ will be put into use with this theme, along with several ideas Iā€™ve picked up along the way. Iā€™ve already reused some of the more useful bits of K to give me a head-start, so I know that stuff like the feed and post microformats should be pretty robust (if not yet 100% complete). The main improvement I want to make over K is in flexibility  ā€“ i.e. itā€™s not just usable by me, or locks me/the user into a particular setup.

If there is anything you would like to see in an IndieWeb WordPress theme, or any other suggestions, please file an issue in the repository. I canā€™t promise Iā€™ll implement it, but at this stage, the chances are high šŸ˜‰

šŸ“– Read: Open source beyond the market (Signal v. Noise)

ā€œKeynote on the topic of open source, markets, debts, purpose, and no less than the meaning of life. Delivered at RailsConf 2019. Also available as a long read below.ā€

Signal v. Noise

When I was getting into the industry in the mid-to-late 90s, it seemed like we were witnessing the peak of an epic battle between proprietary and free software.

This war was embodied at the proprietary end of the spectrum by Bill Gates and Microsoft. The ultimate proprietary extractors, dominators, and conquerers. And at the free-software end of the spectrum, by Richard Stallman and Free Software Foundation. The ultimate software freedom fighters.

And thereā€™s no doubt that these two men were diametrically opposed on many of the key questions about how software should be made and distributed. But that stark contrast also had a tendency to overshadow the way in which they were strikingly similar.

If youā€™re a Monocle user, you might have noticed a new feature in your UI today. If you self-host, youā€™ll want to update your installation to the latest version. Two nice ā€œquality of lifeā€ features have gone live, and Iā€™m a little excited, because I helped build one of them šŸ˜

The biggest feature Iā€™ve been missing in Monocle over, say, Feedly, is a ā€œmark all readā€ button. I follow too many busy sources to be able to keep up with everything, so I frequently mark everything as read and carry on. It helps me not get overloaded.

Monocle "view menu" on desktop

Aaron had raised an issue to build the feature at some point, but I wanted it, and had a spare weekend, so figured Iā€™d make myself useful!

In all, it was surprisingly straightforward. The Microsub spec is well documented, so I knew how it needed to work. All I had to figure out was how to fit that into how Monocle already did things, and there was already a ā€œmark readā€ for single entries to work from.

The UI took the longest to build, mostly because I had to figure out the Bulma frontend framework. Rosemary had already come up with some ideas on how it should work, so the hard part had pretty much been done.

Monocle "view menu" on mobile

And with a little bit of testing, there it was ā€“ ā€œMark All Readā€ in Monocle. Iā€™ve been running it in my install for a little over a week now, and I hope youā€™ll find it as useful as I have if youā€™re a heavy Monocle user.

I canā€™t take any credit for in the slightest for the new ā€œShow Only Unread Entriesā€ feature ā€“ to my knowledge, that was all Aaron. It was a nice surprise to find once I updated my local install from the master branch!

Iā€™ve been running my own instance of Aaronā€™s excellent Monocle microsub client for a while now. I think itā€™s time I take the leap and run my own instance of Aperture microsub server as well (and its associated services), just so I donā€™t have to rely on any services hosted elsewhere.

I just need to figure out if I need to give Aperture itsā€™ own server, rather than run it alongside everything else on my existing VM.

I mentioned before the festive break that I was thinking about open-sourcing ā€œKā€, the custom theme Iā€™ve been developing for this site. Since then, Iā€™ve decided Iā€™m going to do it, but Iā€™m going to work to tidy things up beforehand. Some of this has already happened, some of it is yet to be done. For a bit of fun, Iā€™m going to [try to] blog about it whenever I make some progress ?. All-in-all, Iā€™ve identified three main themes I want to focus on before the intial public commits.

My first job is to make the theme more ā€œgeneric.ā€ As I mentioned, the theme has been very much a hacking together of what Iā€™ve needed, as Iā€™ve needed it. This means a lot of it isnā€™t as customisable as people expect a modern WordPress theme to be. For example:

  • The site logo is an embeded SVG, rather than an image that can be swapped out in the WordPress Customiser.
  • The sidebar was, until recently, entirely hardcoded HTML.

Iā€™ve made some progress here ā€“ thereā€™s now a ā€œwidget areaā€ in the sidebar ā€“ but my custom author h-card is still mostly manual (although it does use a WordPress menu for the social profile links). I think Iā€™m going to recreate this as a bundled widget. I could try using the IndieWeb h-card widget, but I liked having the flexibility of my manually crafted card, and the IndieWeb version doesnā€™t support multiple profiles at the same service.

The second main focus is going to be standards support. I want the markup to be as fully compatible with MF2 and structured data as possible. Iā€™ve spent hours debugging this so far, and I think I have it mostly sorted. IndieWebify.me picks up everything I expect it to, and every parser/validator Iā€™ve thrown at the different pages and types of content have come back correct to my eye. For some reason, IndieNews hasnā€™t liked any of my submitted posts, but thatā€™s lower priority for now. I havenā€™t done much with marking up elements like comments, but the main page/blog post/author details seem to be correct.

Finally, the third focus is on the code quality and maintenance. This loops back to the customisability/flexibility theme as well. By its cobbled-together nature, ā€œKā€ has been a bitā€¦ loose in the quality of the PHP code, and the frontend files were/are a nightmare to maintain. Up to now Iā€™ve used a hacked to pieces copy of Bootstrap with a bunch of customisations on top to provide the layout framework (literally just the rules I needed, obtained through UnCSS), and a similarly cutdown set of FontAwesome icons. Thatā€™s fine for my use case ā€“ even if it has been a faff to add to the site ā€“ but it wonā€™t work for other people.

Iā€™ve started adding a build system for these frontend files, but it does mean Iā€™m probably going to have to include the entirety of the minimised version of Bootstrap, and the full FontAwesome SVG sprites. Unless someone has a good suggestion? Unstyle has a CLI tool, but integrating that is probably a step beyind whatā€™s needed for the moment. I havenā€™t added FontAwesome to the live site yet, but this page should be using the new style.css thatā€™s been compiled from SCSS.

On the PHP side Iā€™ve started making sure it conforms to at least the WordPress Coding Standards. Thereā€™s still a few files to update, but functions.php and most of the template files are done. After that I want to make sure everything is as modular as possible. Iā€™ll need to add files to handle the various post-types, error pages, and other screens a more rounded theme would handle. Iā€™ll also be bundling a selection of Post-Kinds templates, once I figure out how I want to display them on this site.

There are other things that will need done no doubt, but these are where I want to focus my efforts for now.

Not all of them need to be fully completed before ā€œKā€ gets open-sourced, but I would feel a lot more comfortable if at least the first steps were taken along these paths. It is a little dependent on having enough free-time, but Iā€™ve set a goal of uploading to GitHub by the end of the month.

If you have any suggestions, or other feedback, please do let me know ā€” either as a comment below, or on your own site.

As Iā€™ve been experimenting more with IndieWeb ideas on this site, Iā€™ve been kicking around the idea of open sourcing the custom theme I use to power this site (currently called ā€œKā€). Part of this is from a desire to start sharing useful code again. I havenā€™t really put anything out there in years now. Once upon a time, long before the rise of Github, any code I wrote for myself would at least have ended up as a downloadable .zip file.

The other reason Iā€™ve been giving myself, is to add to the pool of MF2-compatible themes available, in an effort to give people more options for deploying Indieweb sites. Right now, the Indeweb wiki only lists a handful of themes as compatible out of the box, so the more that can be added, the better it will be for growing the community.

The thing is, the theme is very much not ready for other people to lay eyes on, in its current state:

  • I (currently) do a bunch of non-standard things under the hood.
  • Iā€™m also not doing a bunch of theme ā€œbest practicesā€. Simply because Iā€™ve not needed to.
  • Iā€™ve not really cared much about testing in browsers beyond the ones I use day to day.
  • A lot of the code has been cobbled together as and when Iā€™ve needed it, so there are loads of ā€œstandardā€ features straight-up not implemented.
  • Thereā€™s a tonne of things hard-coded specifically for me. Those would have to be stripped out or altered to be configurable. Thatā€™s more code Iā€™d have to write.
  • Iā€™ve hacked up a bunch of dependencies, in the name of optimisation for my own needs. A public release would need to include the full code of these dependencies, or itā€™ll severely restrict anyone who wants to use the theme.

All in all, thereā€™s quite a lot to do to make the theme usable by anyone who isnā€™t me. My natural instinct is to hold it back until itā€™s ā€œreadyā€ but as Iā€™ve been typing this out, Iā€™ve been wondering if I should just go ahead and put the code on Github anyway?

I received an email from a developer the other day, who had forked the repository for my ā€œIIS Express Hereā€ shell extension on GitHub [editors note ā€“ no longer available]. He had noticed there was no license information available in the project, so asked if I could either add a license, or give him written permission to adapt my code and share it to others (as is the spirit of GitHub and OSS).

To be honest, this wasnā€™t something Iā€™d thought about before, and was a bit of an oversight on my part. Iā€™d not really considered the need to add explicit licenses to my repositories. After all, the code is out there anyway ā€“ itā€™s open to use on GitHub, and Iā€™ve often shared it on this blogā€¦ if someone wanted to copy the code, they could, right?

Unfortunately, this creates a grey-area, which some are naturally uncomfortable with. Can I use this code in something else? Can I modify it at all? Do I have to pay royalties if I do?

But licensing is hard, isnā€™t it? All the different types, with different caveats, liabilities, and legal mumbo-jumboā€¦ well, yes, it can be hard. The good folks at GitHub have a solution: ChooseALicense.com is attempting to demystify open source licenses so you can pick the right one for your project. More than this, when you create a new repository on GitHub, the site will ask if you want to add a template license during the initialisation process:

repo_licenses

Coming back to the developer who emailed me ā€“ I mailed him back to let him know that IIS Express Here is now licensed under the MIT license. This fits best with how I see the code and projects I share on this blog (unless noted otherwise) ā€“ free for anyone else to use, but with no warranty, so if something goes wrong then Iā€™m not liable and itā€™s not my responsibility to fix it. I havenā€™t got around to updating all of my repos with licenses, as Iā€™m evaluating each one in turn, based on my goals and even whether the project is going to archived.

ChooseALicense.com

Today I fired up TextMate to do my first bit of serious PHP coding since my stroke. Iā€™ve been almost entirely XHTML/CSS since getting out of hospital last August, with a little light coding (ASP mostly) since then.

Probably the closest Iā€™ve got to writing any real PHP in 8 months has been learning the basics of WordPress themes from Blog Design Solutionsā€¦ To be honest, Iā€™ve not had the same drive or determination to ā€œJust Code Itā€ as I once did.

Iā€™ve been reading 37 Signalsā€™ excellent book, Getting Real today. Iā€™m about three quarters of the way through. I doubt Iā€™ve ever said this about a ā€œtechā€ book before, but itā€™s a real ā€œpage-turnerā€; Getting Real pulls you in and is real hard to put down once you get started. All the praise you may have heard about this book is justly deservedā€”itā€™s essential reading for developersā€¦ hell, it should probably be essential reading for anyone who has to work on just about any type of product or in a team.

While Iā€™ve been reading Getting Real, Iā€™ve been feeling like I want to write code again; I want to write something simple, elegant and real. I want to stop thinking about some of the ideas Iā€™ve had over the last few month ā€“ no years ā€“ and actually do something. So I set-up a development site and database for one such idea, opened TextMate and created a new project.

It hit me like a slap in the face; Iā€™ve forgotten how to do this. Itā€™s like Iā€™m back on square oneā€¦ like someone sucked most of my programming ability out of my head. I can remember lots of stuff about various PHP functions, syntax and a million myriad details, but actually doing anything with any of it is another matter. I started thinking about the initial, basic class/data structure I would need and it was like the lights were on but nobody was home.

Looking on the bright-side: if I do have to relearn myslef this stuff, it means Iā€™ll be able to do it with a clean slate and Be Real from the very outsetā€¦