Main challenge: not be too perfectionist. I hate the hustling culture where each MVP has to be rushed in 2 weeks. It might be risk-effective, but it can't possibly be meaningful. I want to do the best I possibly can with the greatest care however long it takes, but I also don't want to waste (too much) time on irrelevant details and over-perfectionism
What Are You Building? Share Your Projects
11–20 of 49 posts
Re: What Are You Building? Share Your Projects
#12I had a fairly naive, limited Bash script wrapping docker to provide something similar, but for fun I decided to rewrite it in Golang with arbitrary command support. Turns out that Go is not my cuppa so I rewrote it again in C# (my go-to), using the AOT compilation as well. Something like this probably already exists but writing it is about the journey, the fun of problem solving.
It will ultimately be a simple translator from a convenient config format (e.g. something like below) to shell commands, so nothing special. Just a useful tool for my day to day.
[command="git",exec="/bin/bash"]
cm = commit
cm = commit -m "$CommitMessage"
cm pop = reset HEAD~$CommitCountRe: What Are You Building? Share Your Projects
#13Re: What Are You Building? Share Your Projects
#14Re: What Are You Building? Share Your Projects
#15Re: What Are You Building? Share Your Projects
#16Inspired by Andrej Karpathy's excellent YouTube video on tokenizers, I used Llama3 to analyze all of GPT-4's 100.000 tokens and today I wrote a blog post about it! https://koenvangilst.nl/blog/analyzing-gpt-4-tokens
Is this meant to be "or"? It probably wouldn't change the output very much though
Re: What Are You Building? Share Your Projects
#17I’m building it because I’m tired of being oncall for lousy delay queues, which seem to always be built in house with no docs or tests. I think I’ve seen it homebrewed at least 6 times now.
It’s the smallest possible idea I could see myself getting across the line while on paternity leave. I guess project number #1 is baby boy #2!
Re: What Are You Building? Share Your Projects
#18It was inspired when working on a tutoring service and realizing that the key problem of AI tutors was that they didn't know the student well enough. As we started tackling the problem other builders around us mentioned similar concerns. It's been pretty hard to explain the value to those not experiencing the same problems, but it's slowly catching on.
Re: What Are You Building? Share Your Projects
#19Also I have a SMPT server featuring automatic encryption using the WKD standard: https://dovel.email the idea is that people could self host their email easily. Maybe I'll make a SAAS for this.
My webring is mostly for fun and testing stuff: https://derelict.garden
Now they are hosted on my raspberry pi zero on my living room!
Re: What Are You Building? Share Your Projects
#20I have an example use case of embedding a snake AI player (trained in Python) in a JavaScript version of snake for distribution on the web.
https://www.cardamom.ai/snake.html
I have a similar demo building for iOS, I’ve deployed ML as a lambda layer before, and I’d like to continue embedding in fun places.