Live data from Hacker News

Ask HN: What are you Building?

news.ycombinator.com

1–10 of 146 posts

Re: Ask HN: What are you Building?

#2
I'm building a web package in Lua/Kepler. The idea is that you install it, create an admin account, and then decide what you want the site to be. If you want a wiki, then it installs wikimedia and configures all that. If you want a blog, it'll install a custom blog software with lots of extensibility. If you want CMS, then it will install Joomla/Drupal/Whatever, and you can configure all of that. If you want forums, then you can install phpbb/vbullshit/custom forum software.

Right now, I'm mostly designing blogging software and forum software. I plan on making everything first, releasing it all separately, then just packing it all up as a chameleon package once everything is finished.

You know, the usual.

Re: Ask HN: What are you Building?

#3
I'm working on step 2 of a naming company (we create names for new startups and products). The plan is to offer a package with a name, logo, and business card, so I'm working on my logo design skills and bringing in some more designers.

Also, I'm building an copy editing service that's more transparent and straightforward. Most editors have complicated pricing schemes that vary depending on the topic, document type and whether they charge by the hour or by the number of words. Instead, I'm charging a flat fee per word, no matter what the project, and you'll be able to customize other features (like delivery date, format, etc.)

Hoping to get both startups rolling by the end of June.

Re: Ask HN: What are you Building?

#4
I'm finishing up an ebook. I've found that startup founders struggle to tackle privacy issues. I'm hoping this ebook helps early stage startups find both a reason and a method to tackle privacy issues. If anyone is interested send me an email (in profile) and I'll send along a full copy -- I'd love to get your feedback.

http://startupprivacy.com

Re: Ask HN: What are you Building?

#5
I'm currently working on a little project that has a new spin on Pastebin. I'm playing with a Bayesian classifier (or attempting and learning a lot) to auto-detect the language and appropriately set the syntax highlighting automatically without a dropdown and a reload. The paste will also be saved automatically so there isn't a page load for anything.

I'm still hacking away and haven't got very far whilst I'm getting my head around the classifier. One other problem I've noticed is keeping track of ownership. One solution I have in mind is that there is no ownership: when it's modified it generates a new link to share with. It might be good for very simple code collaboration - I've tried doing this with Pastebin over Facebook chat and this should make the process a whole lot smoother.

I also need to think about how training will work. I envisioned it so that the user can train it i.e if it guesses wrong, the user would correct it by selecting the proper language and the program will learn for the future. I'd be putting a lot of faith in potential future users but I'm not expecting it to be big or anything, maybe just something me and my friends can share and work on code friction-free (some don't have GitHub/BitBucket/etc accounts, one doesn't like CAPTCHAs at all).

I'm currently going off 100% self-education here too so I'm having to get to grips with some other maths stuff like some symbols (such as | means conditional probability and _not_ to be confused logical OR), so if the project falls flat on its face at least I learned something from it :)

Re: Ask HN: What are you Building?

#7
post #5

I'm currently working on a little project that has a new spin on Pastebin. I'm playing with a Bayesian classifier (or attempting and learning a lot) to auto-detect the language and appropriately set the syntax highlighting automatically without a dropdown and a reload. The paste will also be saved automatically so there isn't a page load for anything. I'm still hacking away and haven't got very far whilst I'm getting…

Why not just make it a branching model? Whenever a new user edits a paste it creates a branch off that paste. It allows seamless sharing, without links. Kinda like this: http://srctree.net/

Re: Ask HN: What are you Building?

#8
I'm working in a 2D RPG in ImpactJS. Spent the last week getting HTML 5 caching to work on desktop and iOS, then put the finishing touches on a bash script to update the cache manifest, compress all my JS files and rsync them to the server.

Re: Ask HN: What are you Building?

#10
post #5

I'm currently working on a little project that has a new spin on Pastebin. I'm playing with a Bayesian classifier (or attempting and learning a lot) to auto-detect the language and appropriately set the syntax highlighting automatically without a dropdown and a reload. The paste will also be saved automatically so there isn't a page load for anything. I'm still hacking away and haven't got very far whilst I'm getting…

Why not just make it a branching model? Whenever a new user edits a paste it creates a branch off that paste. It allows seamless sharing, without links. Kinda like this: http://srctree.net/

Oh wow, that's the perfect thing and achieves what I need and more. I didn't even think about being able to see the history of a piece of code.

Thanks for showing me this. Much appreciated.

Post reply on HN