Live data from Hacker News

Ask HN: Show me your half baked project

news.ycombinator.com

561–570 of 708 posts

Re: Ask HN: Show me your half baked project

#561
https://polynomial.so

https://github.com/corradio/polynomial

As founder, I lacked a central place to gather all my KPIs. It works by integrating to other data sources you already use (Google Analytics, Plausible, LinkedIn, Google Sheets..)

It’s open source, feel free to give it a try!

Re: Ask HN: Show me your half baked project

#562
https://penpinery.com

At its core it's NaNoWriMo but I was frustrated with the limited use of NaNo after completing a novel. So this adds the social aspect found in GoodReads + the profile akin to Bandcamp. At the moment it's just a host of my own books but all the functionality is there for real use.

- Custom Author profile w/ Blog posting - Publication list - WIP list w/ Github-like stats - Word count tracking and badging gamification

It's built with Django 4, Bootstrap 5 and Postgres. I'm hosting on DigitalOcean. I mention this as it was my first time working with any of those technologies, and even if the user base is nil, I've learned a lot from the experience.

Re: Ask HN: Show me your half baked project

#563

https://millionballs.app It's a web app to help you improve your real-life pool (billiards) game. You can practice shots and learn to visualize the angles. Eventually, I want to go way beyond basic shotmaking and teach patterns, but it's already useful in it's current state at least to beginners and intermediate players. I've posted about it before but I've made a lot more progress since then, including making it mob…

This is cool! It felt really satisfying finally getting shots after trying a couple times. Makes me want to play billiards again, it's been a while now :)

Re: Ask HN: Show me your half baked project

#564
https://www.sunnynests.com/

Niche real estate portal for foreigners looking to buy a property in Spain.

I’ve built it in Ruby on Rails and hosting on Heroku.

Running free trials for realtors in case anyone’s interested :-)

But I would mostly appreciate feedback about what you are missing from existing real estate portals.

Re: Ask HN: Show me your half baked project

#565
post #532

My half baked project (more of an idea really) is a toe-clipping robot. No really, I'm serious. Like many older folks I have some mobility issues. Nothing that stops me from doing most things I need to do, but trying to bend over every couple of weeks for minutes at a time, and trying to get a good look in an awkward position to make sure I'm getting a reasonably straight cut to avoid ingrown nails is a challenge. Of…

I would have a slightly different approach here. Instead of trying to make the thing smart with lots of sensors I would start from the "clippers on a long pole" or some other manually-actuated design and try to solve the things that make it fail in reality.

Some ideas:

Clippers on a unit that just sits stationary on the floor, actuation via a cable, so you can hold the actuator but the clippers don't wobble around. Some control to move the clippers but also some reliance on being able to position your foot. A foot rest that is designed to help you position your foot correctly (with, eg, individual toe-rest, etc). Would need to experiment a bit to work out what clipper or foot-rest movement is actually needed - the less the better, for simplicity and reliability, but given users have mobility problems and most people aren't super dexterous with their toes anyway, perhaps it does need several axes of controllable motion.

I imagine one problem is seeing what you're doing so add a camera in the unit on the floor, put a display in the control unit. Nice nail close-up to work with ;-)

If everything is motorized you can use a smartphone for the control unit, but motorization might not be the best approach and wouldn't be my initial approach. "Actuation via cable" could mean a literal physical cable like a bicycle brake cable.

Actual clippers are cheap so if it makes things easier to design you can use, eg, multiple clippers in the floor unit (different sizes or angles) to use for different nails. (I don't mean clip multiple nails at once)

For woodworking/working with machine tools, you can get lasers that fit to the tool and show on the piece exactly where the cut will be. These are very simple (they're just static things). Perhaps something similar could be included to help with positioning. Again, the human will be doing the positioning, just want to give them good controls and clear direct feedback to work with.

Re: Ask HN: Show me your half baked project

#566
https://picrankr.com - upload pictures and have friends rank them. I've already showed it to enough people to know about some of the issues the idea has, and will improve it whenever I find the time .

Some issues:

- most issues where people need to choose a pic is a large N problem (100s of pics, not a handful)

- no-one wants to bubble sort pics for large N

- people want qualitative feedback, not only quantitative

There are some other issues I know about as well, such as image compression, etc., but feel free to try it out and give additional feedback :)

Re: Ask HN: Show me your half baked project

#567
https://gencmd.com

Generate cmd line options on the cmd line. The web interface is a quick trial ground, but the real productivity boost is with the cli with integration in-place at the prompt.

As of now, it's very basic and working directly of the PaLM Text Bison model, but I'm adding more features and fine tuning. Also, trying to make it usable by enterprises.

E.g.

   $ gencmd find txt files that contain the text hello
   find . -type f -name "*.txt" | xargs grep -i hello
   find . -type f -name "*.txt" -exec grep -i "hello" {} \;
   find . -type f -name "*.txt" -exec grep -i hello {} \;

   $ gencmd -c grep find txt files that contain the text hello
   grep -r hello *.txt
   grep -r "hello" \*.txt

If you want to know more about how I went about building it, I've written about it here: https://medium.com/@sathishvj/gencmd-generate-commands-with-...

Re: Ask HN: Show me your half baked project

#568
post #530

I left my last job and a toxic boss a few months back and decided the only viable future is to start my own thing again. But this time I was going to do it properly - lean customer development, speak to users before writing a line of code, etc. Instead, I became fascinated by the massive improvements in OCR and how they can be applied to digitising boring paper records. Decided to start out with the most boring probl…

> Might get some feedback Landing page says you're best rated over 37k reviews?

Hah, yes. It's just the remnants of a template. As I said - totally half-baked and not ready for (or expecting) users yet.
Post reply on HN