Live data from Hacker News

Ask HN: Who needs help with side projects?

news.ycombinator.com

41–50 of 65 posts

Re: Ask HN: Who needs help with side projects?

#41
post #28

http://random-character.com It generates characters from tropes, weighted by the popularity of those tropes. Which was a nice experiment, but it's probably not the future direction. This is something with a lot of iteration. Procedurally generated stories and backgrounds. Letting users input a character and using the tool to shape the character around it. Relationship graphs to other characters. AI will be in use, bu…

I really like this idea! I feel like you could have the character mapping and input be geared towards writers for a story documentation tool as a UI and framework for the generated content would be in what a writer would need. Then offer as much or as little generator access as the user wants.

For that generated content, I do a lot of character creation in a completely different context than writing/D&D, and I would pay for a service or software that let me input or override the story type character data with ones of my own making.

The goal of self-sustaining stories that can be tweaked or woven into is awesome.

Re: Ask HN: Who needs help with side projects?

#42
post #37

Which is the cheapest way to serve Json to customers with a budget under usd10 a month, a Json size of aprox 50KB and aprox 1 million reqs/day

Netlify free tier + Cloudflare CDN (if requests are cacheable).

https://www.netlify.com/pricing/

https://www.cloudflare.com/plans

Re: Ask HN: Who needs help with side projects?

#43
I am working on "Free Hero Mesh" project (but it is not written in Python or Java). It is a puzzle game engine, and is FOSS.

Things that I can use help with are including (but not necessarily limited to):

- Promotion of project

- Testing

- Bug reports and feature requests

- If you are interested to make something with this

- Porting and distributions

- Patches to the code, if necessary

- Maybe someone has idea to improve documentation (such as tutorials) or to make a logo, or something else

http://chiselapp.com/user/zzo38/repository/freeheromesh

Re: Ask HN: Who needs help with side projects?

#44
post #12

There are columns of data, and as a simple example they are {{1,a},{1,b},{1,c},{2,a},{2,b},{2,c},{3,a}} of two columns and seven lines. I'd like to process the data through a function which would yield {{{1,2},{a,b,c}},{{3},{a}}} which is slightly better than {{{1,2,3},{a}},{{1,2},{b,c}}} because former has 7 leaf elements vs latter 8 leaf elements while both has if you will two lines. How to write that function?

This is similar to a Karnaugh Map: https://www.youtube.com/watch?v=3vkMgTmieZI

Basically, you can map the data values into a boolean truth table representation:

      a b c
    1 x x x
    2 x x x
    3 x
And use the Karnaugh Map to visually simplify:

      a b c
    1 ┌───┐
    2 └───┘
    3 □
into:

    {1,2}{a,b,c}
    {3}{a}
If you'd like to do this algorithmically, there are Karnaugh solver libraries which use algorithms such as the https://en.wikipedia.org/wiki/Quine%E2%80%93McCluskey_algori...

Re: Ask HN: Who needs help with side projects?

#45
http://sparrowhub.io:2222 - SparkyCI - dead simple CI service.

Please give me a shout if you need to add other languages support. I would consider such an interest as a help )))

So far the service supports amazing Raku language, but the platform is general enough to support other languages as well …

Also I would appreciate help with frontend … The UI is simple html plus some JS / css under bulma.

Re: Ask HN: Who needs help with side projects?

#46
I am working on creating a hosting server that can cater to landing page+blog+selling digital content with minimal maintenance overhead.

Beta version is ready here https://github.com/newbeelearn/sserver

I am looking for following - marketing and sales (I need some guidance from experienced marketer who has done this before) - beta users to try this product and give feedback so that i can improve - frontend for admin UI (backend api's are ready)

I can help with golang based backends if that is needed by anyone.

Re: Ask HN: Who needs help with side projects?

#47
post #37

Which is the cheapest way to serve Json to customers with a budget under usd10 a month, a Json size of aprox 50KB and aprox 1 million reqs/day

Netlify free tier + Cloudflare CDN (if requests are cacheable). https://www.netlify.com/pricing/ https://www.cloudflare.com/plans

Thanks. Something I missed is that the JSON is gonna be updated every 1 minute.

I've never tried netlify or vercel, I've been told that the 1 min updates are a problem in platforms like that. I'm an nginx kind of guy but I'm helping an org that has no budget whatsoever and I'm exploring options.

Re: Ask HN: Who needs help with side projects?

#49
post #39

I'm working on an in-browser Doom-like level editor. I'd really appreciate some constructive criticism of the architecture or anything else that jumps out for rewriting besides some general code cleanup. https://bitbucket.org/bbcolt/unnamed-project2/src/master/

Perhaps less of a code-related comment than you are looking for, but: to make it easier to collect feedback on the architecture/code, I think it might help to add a readme document that summarizes the layout and structure of the repository in a few paragraphs.

Yes, there's a bit of overhead to maintaining that, and it can fall out-of-sync with the code over time.. the key benefit, though, is that it provides useful context for reviewers, a bit like a geographic map does when navigating a new place.

The goal should be to make people feel like they understand more of the purpose and design of the project shortly after they arrive; as a result they'll be able to figure out what aspects of their own experience they can use to help review (and perhaps contribute changes to) the code, and where to go (in terms of files/directories/modules) to best apply that expertise.

Re: Ask HN: Who needs help with side projects?

#50

Hi, my friend and I have a side project that let users learn almost anything for free online. We are both front-end developers and want a backend developer to join. If you are interested and want to learn more. Just drop me a message deexie1990 # gmail.com

Interesting. I will drop a mail soon.
Post reply on HN