Live data from Hacker News

Ask HN: What did you build in March?

news.ycombinator.com

51–60 of 147 posts

Re: Ask HN: What did you build in March?

#52
Working literally every waking hour (22 hour+ coding sessions) for two weeks, I've created a replacement for our WinPE-based Windows repair CDs [1] in Linux, in anticipation of Microsoft's non-renewal of all WinPE licensing agreements to 3rd parties, and made them fit on an ISO that (GUI desktop environment, all kinds drivers and binary blobs, web browser, partition editor, custom repair tools, and all) is only 40MiB. CDs will (hopefully, DV) fix any and all boot-related issues, attempt to repair registry, and perform various sanity checks to get your PC booting once more for Windows XP - 7.

Now for the testing phase! (anyone interested in trying it out, drop me an email mqudsi@neosmart.net and I'll send you a copy for free)

[1]: http://systemdiscs.com/

Re: Ask HN: What did you build in March?

#55
I built an in-memory NoSQL index (not a database) for answering subset inclusion queries, i.e. "find me all the Items with {Feature1, Feature2, Feature3}". It also supports queries by category, and by color.

It's vastly faster than SQL for this purpose.

http://www.chrisstucchio.com/blog/2012/introducing_hobo.html

https://github.com/stucchio/Hobo

I say it's not a database because it isn't even a Key-Value store. It's just a key-store - you query it for the keys, and retrieve the values from somewhere else (e.g. postgres).

Post reply on HN