Skip to main content

About

Download lisp to my brain is dated 19 July 2009. That's my first post on Hacker News the day I joined nearly seventeen years ago with a goal of learning to program.

The oldest date I can find on this blog is 23 March 2019. It's been taken offline periodically as I stumble my way forward in life as best I can. I still don't really know how to program.

Standard programmer wisdom is if you want to learn to code, have a project.

I've long wanted my own clothing line and some recent posts here are tagged NovemberWestWears, same as the name of the blog where I am developing those business ideas for a clothing line: November West Wears. The pieces here are the tech part of what is intended to be an online only store for made-to-measure business casual knitwear.

In the course of doing this site, I learned that I already have some coding essentials because I'm a longtime blogger who learned HTML and CSS via self study and I hand coded my sites before ultimately moving to blogger where HTML and CSS still come in handy without being a big burden, so I still code a little bit very regularly.

My research says I can probably do this project with HTML, CSS and XML. XML is a markup language but not the one used on Reddit which is Markdown. I've edited posts on Reddit using Markdown, so XML is probably something I can learn.

I've spent a lot of time on Hacker News and that has made me aware that folks who come up with a business idea and imagine they can hire programmers like a waitress to serve them up some slop code tend to fail.

If you want to do it right, do it yourself.



5 July 2026

Comments

Popular posts from this blog

New Accounts

You can set up a new account to save your wardrobe but can't order anything until you get measured. Setting up a new account will prompt you to make an appointment with the nearest certified seamstress allowed to measure you. This potentially tells us where to go certify a bunch of new people. If enough people create an account in x city, we make sure to arrange a certified seamstress as soon as possible if there isn't one yet.

The Norway Problem

The Norway Problem - why StrictYAML refuses to do implicit typing and so should you Norway abbreviates as NO. This is a real word and some programs will alter that to a programming command, such as "False." A workaround in some cases is to put it in quotation marks, but you may not know that ahead of time. There are other cases like this, such as a person whose last name is Null . Found via HN . Related reading: Principle of least astonishment A textbook formulation is: "People are part of the system. The design should match the user's experience, expectations, and mental models."

To Python or not to Python?

I've had a lot of people recommend Python to me as a language I should learn. I have just tripped across this comment on HN : Not to be a total smartass, but if your Python codebase is not that big yet, then the correct answer is none of the above- rewrite in a compiled language if you find the lack of static checks disturbing. I have been using "type checked" python for a year and let me tell you, it is not even 10% as good as having a real compiler. Python type checkers are not even close to 100% accuracy. Now I'm wondering if Python is really a good first language to learn or not.