Live data from Hacker News

Ask HN: Show me your half baked project

news.ycombinator.com

391–400 of 841 posts

Re: Ask HN: Show me your half baked project

#391

Paint by Pixel: creates a custom paint-by-numbers grid based on an image you upload and colors you already have. The "download template" button doesn't work right now, but it just replaces the colors from the "preview" image with numbers and a white background that you print and color in. Similar to a paint by numbers craft. Right now I'm working on the backend before making the frontend minimally-less-ugly. It resiz…

I couldn't get it work on mobile.. I selected and image and hit preview and nothing happened.

Hmm.. do you know the size of the image? Also, there’s no loading wheel so it might take a second depending on the size of the image. Just tried on mobile with a 1.8mb image and the preview popped up.

Re: Ask HN: Show me your half baked project

#392
Erdem (https://github.com/skytreader/erdem) is a small "media-center" webapp that I've been building. I'm also using this as an opportunity to learn React.

Over the years I've amassed a collection of video files with filenames similar but not exactly like, "Lionel Messi vs Miroslav Klose".

The actual data set is dirtier, can't be regexed, etc. A key property of my data set is that a name features in the filename of different files.

I made this to easily answer the question "Hey, I want to watch a video about Messi. I wonder what I have?"

So, being the computer scientist I am, I thought it'd be interesting to index the filenames. Hence, the indexer whose code I experiment with a lot; dirtier than usual, very "academic" style.

Then I realized all I need is a search function (which I have implemented already!). Life works. Maybe I'll keep with the indexer idea but just for something to play with.

P.S., I have words to say about React but this isn't the thread for it I guess. Been a frustrating experience so far. But well, that's why I used it in such a rough hack in the first place.

Re: Ask HN: Show me your half baked project

#394
I've been working on an open-source Identity Access Management solution in the past few months: https://gatekeeper.page/en/

Gatekeeper aims to enable small and medium-sized enterprises to have their own on-premise IAM solution that supports all relevant protocols and standards and is secure by default (by offering automated updates and using memory-safe languages etc.).

Features include, for example, LDAP, OpenID Connect, SCIM, and Gatekeeper as an identity-aware reverse proxy. (with fully managed ACME certificate management)

The tech stack is ASP.NET Core + Postgres on the backend. The frontend is written in C# and uses Blazor to run using Web Assembly. If someone is interested in taking a look, we are working on a hopefully helpful Developer Documentation (https://docs.gatekeeper.page/developer/)

The code on GitHub: https://github.com/GetGatekeeper/Server

Re: Ask HN: Show me your half baked project

#395
post #256

A "survival wiki." I built it for myself. It's mediawiki on a raspberry pi zero, AC/DC powered, with an e-ink display. It connects automatically to a known wifi network and displays the connection details. When the wifi network goes down however, it automatically switches to access-point mode, allowing you to connect directly to it through your phone or other wifi client device. There's still some quirks to work out,…

Very interesting. Any code?

Re: Ask HN: Show me your half baked project

#396

Static SMS microblog, https://phasedust.com Been trying this out with friends and family for a couple of weeks. Some things we like about it: no setup or signup, fast and snappy, doesn’t demand or abuse attention. Some things I’m still thinking about: image scaling and optimization, discovery (search? hashtags? web-rings?).

That's how Twitter started back in 2006. Also, you reminded me Posterous [0], which ironically has been acquired by the very same Twitter.

[0] https://en.wikipedia.org/wiki/Posterous

Re: Ask HN: Show me your half baked project

#397

I've been working for some time on a capture the flag web game called Rock Paper Scissor Battle!, which is basically a simplified version of Stratego, but the pieces are rock, paper and scissor instead of numbers). Its open source on my Github: https://github.com/daniel-bytes/rps-scala , the backend is Scala and Redis and the frontend React + Typescript. I have a live version of it up at http://rock-paper-scissor-bat…

This is cool. I particularly like the styling.

Thanks, appreciate it!

Re: Ask HN: Show me your half baked project

#398
Code Reading Club: https://codereading.club

The idea of this project is to make a small, cozy kind of “book club for code” that enables club members to study and discuss the architecture/structure of open source code. I wanted it to be both a way to study others’ work as a means of developing more intuition about how to structure software, as well as a creative exploration and discussion of code as art.

I know the UI is quite poor right now, and the information about the time of the first session needs to be updated. I’ve pivoted to working on another project (a CLI reader for HN that lets you navigate with a UI like that generated by pager utilities such as “more”) while I flesh out the idea for this one more, as I’m not sure if I can reconcile the two aims for the club I cited above. I have to think more carefully about what I want it to be, and who I want to reach/how I want to reach them.

I really like the idea of doing this, but I just don’t have the mental/emotional bandwidth for it at the moment, which is why I’m working on other, more solitary projects instead. I think it’s important to have discipline and “grind” through things at times, but when I’m doing something in my free time for my own enjoyment and already feel a bit burned out from my other existing roles/responsibilities, I prefer not to add to it by actively building something that might create even more expectations from others. Instead, I try to get back to my first passion, which is just the joy of building programs bit by bit and understanding every piece of what I do in a gradual, methodical fashion.

A related idea I’ve had is making a YouTube channel where I do a similar thing to Code Reading Club, but just break down different applications on my own, bit by bit. I’d include architecture diagrams, doodles, and source code snippets. I imagine it being something like MaiZure’s Decoded: GNU coreutils project[0].

[0]: https://www.maizure.org/projects/decoded-gnu-coreutils/

Re: Ask HN: Show me your half baked project

#399
post #256

A "survival wiki." I built it for myself. It's mediawiki on a raspberry pi zero, AC/DC powered, with an e-ink display. It connects automatically to a known wifi network and displays the connection details. When the wifi network goes down however, it automatically switches to access-point mode, allowing you to connect directly to it through your phone or other wifi client device. There's still some quirks to work out,…

Very interesting. Any code?

Thanks, nothing public yet but I am getting inspired to share what I have. It is really nothing more than some systemd units, /etc configurations, and a dockerfile. I will try to put something together though.

Re: Ask HN: Show me your half baked project

#400

Reddit is awesome and houses some of the best content I've read, but there's a problem. In some subreddits like Writing prompts, ELI5, etc... we care more about the upvotes/score of comments than the comment's parent post. This is a problem because the best comments (explanations, stories, jokes, etc...) are not always in the highest-rated post. Sometimes comments are higher rated than the parent post. This extremely…

Cool project. How us the score calculated?
Post reply on HN