~/Documents/Tomfoolery

Screenshot of the tomfoolery folder. 47 items, 4.23GB.
Screenshot of the tomfoolery folder. 47 items, 4.23GB.

Up until last year, I was #NoCode gang for life. WebFlow, Zapier, the whole nine. I could almost stomach HTML and CSS but you could only go so far before needing to type the dreaded <script> tag. That stubbornness was also very expensive. I think I paid Squarespace $110/year for several years? Then I switched to WebFlow and paid them $192 a year. Wild. In 2021, however, I went all in with web development. And honestly? It's been great. Well, great is a bit strong. It's been extremely alright.

I chose the web because, of the two platforms I was interested in (Apple followed by the web), the web has caused me less psychological damage.

Being in the Apple bubble, the natural progression was to start developing for Apple platforms like tvOS and the others. I must've given developing for Apple and Swift a dozen separate tries before concluding that I suck at it and do not enjoy it. I feel like you're lured in with the shininess of Swift but one wrong turn and whoops now you're learning Objective C. I'm a designer by trade, the C language is absolutely terrifying. Include headers? void?! Larry, I draw rectangles for money.

I suck at web development but at least I enjoy it. You don't have to compile anything and it runs on, like, every device made in the past decade. The closest parallel to "whoops Objective C time" with webdev is finding a StackOverflow answer that looks promising and "whoops it's jQuery".

Since I started diving deeper into webdev last year, I've catalogued my various experiments and projects in a folder labeled "Tomfoolery". I don't know why, it was probably just the word stuck in my head at the time. It just as easily could've been titled "Chifforobe" or "Parabola". I've opened up those projects alongside this blog post so you can poke around how I personally learned about developing for the web.

March 12, 2021 - CSS Test

I only barely remember the context for this one. I think I was trying to accomplish three things: figure out how to make a frosted glass effect, learn how gradients and those ::before and ::after things worked in CSS, and how CSS can do some basic interactivity.

Resources used:

March 14, 2021 - Pitfall

My first actual attempt at JavaScript! I haven't looked at this code in months and I wanna throw up. I mean it's readable, I understand what's going on, but violates every one of my senses. It's also pretty broken.

Resource used:

March 14, 2021 - JS Mouse Interaction

Looks like I'm still using that clump of variables. Jeez. This looks like it was me trying to figure out how mouse events worked in JS and how JS interacts with CSS animations. In fairness, I still have no idea. "Witchcraft" is my working theory.

March 14, 2021 - Fetch Data

Did I not have class on the 14th? What the hell was going on?! I recall this was a big project for me, I learned a bunch of new things here. Of course the titular topic, grabbing data from an API, but it looks like I also learned about using third party libraries, asynchronous functions, and the canvas element. It was also around this time I learned about The Coding Train on YouTube, one of my favorite resources over the past year.

Resource used:

March 15, 2021 - canvas-game

I was fairly confused when I opened the HTML file, expecting a game, and finding a whiteboard drawing app instead. Then I saw one of the files was titled gamecode-stopped_bc_trig_was_involved.js and I straight up cackled. I learned a bit more about the Canvas element here, this time working with it without the use of libraries. I also started exploring the Mozilla Developer Network (MDN) documentation for HTML and found out about <input type="color"> which seemed useful for this project.

Resources used:

March 16, 2021 - Spelling Bee

I was a religious player of The New York Times’ Spelling Bee at this point and I tried to replicate it. I think I attempted just writing the script before thinking about the HTML, there's nothing in the HTML. It also looks like this was my first attempt at learning Node judging by the use of require and the various requests to read a local file. I imagine this is because of a Tom Scott video I watched where he used Node to do something similar.

Resource used:

March 20, 2021 - Grab and Send

This looks fairly involved?? I was watching an old WWDC session from 2010 and Cabel Sasser from Panic demoed a neat Safari extention they built for Coda. I tried to replicate (part of) that. Some things to note:

  1. I did not understand why programmatically grabbing a screenshot of the browser is a ginormous pain in the ass. Security is why it is a giant pain in the ass.
  2. I'm using a ton of libraries. No idea why I needed anime.js, this easily could've been done in CSS.
  3. It looks like this was my first time using CSS grid. Just like CSS animations, it is also a confusing mess powered by witchcraft.
  4. The best solution I could think of to inject a generated image into the document was to encode it with base64 and then set it as the background image style. That's objectively insane.
  5. I borrowed the linen pattern from an old version of Mac OS X.

March 28, 2021 - Excl

Today we give thanks to our fallen CSS properties. Properties like wrap-flow, which is both spectacularly useless but really fun to design a banner ad with. No-one besides Microsoft bothered, it was left for dead during the Chromium Edge transition. 2012-2017.

— Sam Henri Gold (@samhenrigold) March 29, 2021

This one will not work in your browser. So back in 2012, Microsoft was trying to pass a CSS Exclusions property through the standards body. This, in theory, would've been awesome. Lay out your websites in funky ways! The web as a publishing platform! Gangnam Style!!

Tragically, the W3C was not Gangnam Style. Not even remotely Gangnam Style. The wrap-flow property was never adopted by any other browser vendor and is all but dead. I still built this little sandbox to see how it worked, I made a draggable rectangle that could grow and expand with a spring animation. To my delight, it worked on Internet Explorer 11 and worked exactly as I had hoped.

April 25, 2021 - WordCrush

This has several layers of failure. So first, I wanted to learn how to make a word game and figured the best way to do so is by learning a fucking game engine. Then I decided that a full game is rather ballsy for a first attempt, so I massively scaled back to just replicating a DVD screensaver where the logo would bounce off the screen edges. Then I didn't even do that. The project died as nothing more than a ginormous JS library being used to draw a blank blue canvas. Steve Jobs didn't die for this.

May 3, 2021 - CSSZenGarden

A mostly text webpage styled as old, yellowed cotton paper on a gray linen background.

Another time I "borrowed" a texture from OS X, hah. So the CSS Zen Garden was a whole movement in the mid 2000s to try and get web designers to separate their CSS from their HTML. The idea being you're given a plain HTML document that links to a blank style.css file and you (the designer) have to style it in some wild way using CSS without ever touching the HTML. Some people took this in a neat direction, I went with a 90s theme. 1790s, to be exact.

Resources used:

July 4, 2021 - owo

On July 4, the nation's birthday, I did my patriotic duty by building the dumbest possible bookmarklet that owo-ifies whatever webpage you're on.

This is loosely-based on the Node package powering the @BBCBweaking account on Twitter. I wanted this to run as a bookmarklet, so I cloned the package, stripped it down to the bare minimum, and then spent a while researching how to jam this into as small as possible of a bookmarklet. You can twy it out hewe uwu.

July 6, 2021 - grid

A continuation of the "sandbox" project from May 30. This was, surprise, a grid. Honestly it still looks pretty dope. No JS here, just HTML and CSS.

Resource used:

July 30, 2021 - AnnotationsRestored

This was my first actual attempt at contributing to an open source project. Before YouTube got rid of annotations back in 2019, a bunch of archivists scraped the site for every video using the feature and saved those annotations to a database. AnnotationsRestored is a Chrome extension that checks if you're on a YouTube video, checks if they've got annotations for it, and if so, loads them. My contributions (two of ’em) were mostly UX. I added the ability to toggle them through the native YouTube player controls menu and I made some visual/copy edits to the extension window. Both were accepted by the maintainer and the changes are live in the Chrome store!

August 3, 2021 - Jams '08

Aw, the first time I used a JS framework. They grow up so fast. I used Svelte here, I just had more fun with it than React. I wanted a way to share my current Spotify playlist with my Apple Music friends, so I built the most unhinged and over-the-top way of doing so. A circa-2008 iTunes Store-themed list of songs complete with previews from Apple's iTunes API. I remember very little of this other than 1. being super proud of getting it to work and 2. getting so tired of dealing with it that I ended up making the play/pause icon a bitmap image instead of making it show the progress like the original app does.

November 24, 2021 - Mandala Doodle Pad

A fairly involved project math-wise. I was mostly curious if I could use the pressure reading from an Apple Pencil on a web app. Turns out, yes. Back in 2015 when the first Apple Pencil came out, someone made a super helpful writeup and demo about it. I don't remember how the Mandala idea came about, but I ended up fusing the Apple Pencil pressure demo with Mandala-JS. I'll give you one guess as to what that library does.

There were a few bugs I couldn't figure out and I was about ready to give up for the night so I filed issues on my site's GitHub repo, committed what I had so far, and went to bed. Finding out a few days later that someone had submitted a pull request that fixed a bug I was struggling to find was a lovely surprise (thanks jayeclark!).

Wrapping up

If it's not already painfully obvious, I've got the Big Time ADHD™. It's easy to think "man I suck at this" after losing focus mid-project and then see people on Twitter announce their shiny new React app side-project. But they have sucked at one point, too. They probably suck at many things right now. For instance, I bet they can't sing the rap part in Magic - B.o.B. while I fuckin’ crush it at karaoke night.

This is all to say learning to code is not a linear journey if you don't want it to be. Sure, learning vanilla JS before learning Svelte is a good idea for most people, but if you really just want to build something in Svelte, go for it.

One final note: I took out some less interesting projects but I've left everything on the GitHub repo. Feel free to clone it and laugh at my early attempts at JavaScript.