Skip to content

Blog

Page 6 of 71 - keep going...

CSS Only Display Element After Click

Whenever I can use plain CSS instead of Javascript to solve a user interface or experience problem, a thousand angels rejoice. Well that, and usually the result is a lot less bytes sent for a faster page load. With this in mind, I had a problem a while ago that I solved using CSS only: showing a form only when a link was clicked to display it. Let’s see how.

Nov 9, 2023 2 min read #css #html

Explain WTF

A couple years ago I was working with a group of great hearted well meaning people who just didn’t know anything about tech. So I decided to create a website where I explained terms to them - but in my typical manner. That was explain.wtf.

Nov 9, 2023 20 min read #archived-projects

Job Trader Website Idea

What if you could trade your job with someone else - who wanted your job - and you wanted theirs? Would this be that hard to do? Here’s my idea.

Nov 8, 2023 2 min read #ideas

Obsidian Always Show Markdown Header Level

I love Obsidian for note taking. But one thing bothers me with its live preview mode: I want to see my heading level, without seeing any other markdown directly. If you’re not using a theme that does this, you can do it with CSS snippets. Let me show you how:

Jul 25, 2023 2 min read #css #misc-web

How Do I Find a Programmer?

So you have a great idea. You have some budget. It’s now time to make your vision into a reality. The problem is - you don’t know any programmers. You don’t even know where you’d find one. What can you do?

The answer is so simple… you’re going to kick yourself. Let me explain:

Jul 17, 2023 2 min read #business

Should We Use a Monorepo?

A monorepo refers to a single repository in your version control system that holds all of the code for an entire project. That project could be made up of many services, front and back end code, ETLs, etc.

There are many technical arguments for using a monorepo vs a bunch of smaller repos that are more targeted to that functionality. But, one argument is often left out of the discussion.

Jul 1, 2023 2 min read #programming