Ask HN: What is your “I don't care if this succeeds” project?
321–330 of 960 posts
Re: Ask HN: What is your “I don't care if this succeeds” project?
#322I've written about it elsewhere, but I've made what I call a "newsbetting" site where users get an article stripped of defining details (author, news source, etc) and must bet whether the content comes from a right leaning or left leaning news source. I've been a good way for me to learn the basics of web development and I hope to introduce little side projects to improve it, like a toy blockchain or some NLP machine…
Re: Ask HN: What is your “I don't care if this succeeds” project?
#323https://bytebucket.co I'm the kind of person that always buys electronics used on eBay, where you can get really powerful but 2-3 years old devices for a few hundred $. And, I find shopping for used electronics elsewhere is still terrible (how good is a 1yo i5 vs a 3yo i7?). So, I made this site to help me in that -- I started scraping eBay listings for laptops, picked out the specs and cross-referenced them to bench…
Re: Ask HN: What is your “I don't care if this succeeds” project?
#324I have a podcast where me and a guest talk about technical interviewing then they give me a live technical interview. Video podcast: https://www.youtube.com/c/TaylorDorsett/ It's fun because I get talk with smart people about a topic with no real solution, then sometimes I do well or sometimes I get destroyed in the interviews. I'd love to have more subscribers but I don't think its ever going to make me any money.
Re: Ask HN: What is your “I don't care if this succeeds” project?
#325Re: Ask HN: What is your “I don't care if this succeeds” project?
#326I'm building an app to host one debate every day. https://getdebatable.com/ It may never get traction, but it feels good to build something from scratch.
Re: Ask HN: What is your “I don't care if this succeeds” project?
#327I made a little dungeon crawler game that I needed to make to prove to myself I could actually ship a complete game, which has been a struggle for me. https://smoldungeon.com
Re: Ask HN: What is your “I don't care if this succeeds” project?
#328I just started working on a cli tool to easily create, manage, and spin up dev environments in docker containers. The initial impetus for starting the project was to try out Doom Emacs without messing with my current Emacs setup, so an example session could be: dv new emacs dev-img-emacs:latest dv start emacs dv conn emacs The first line creates a new "development environment" named emacs, based on the docker image d…
LXD container instances are much better suited for portable dev environments. They are persistent by default and are intended to run multiple processes within a container instance. They can also be copied/migrated between lxd agents.
In contrast, docker was created to run a single ephemeral process per container. It's nice in production environments, but its also a huge pain for some tasks. That's why were seeing folks create things like docker s6-overlay.
Re: Ask HN: What is your “I don't care if this succeeds” project?
#329Learn the tool behavior in a safe way very quickly. Thats my goal. I'll at least force it on my teammates for a small workshop.
Re: Ask HN: What is your “I don't care if this succeeds” project?
#330https://github.com/The-Next-Bug/k8s-node-watcher
It's really crappy go code, but it seems to work well enough for what I needed, which is basically a toy.