Ask HN: What did you build in March?
91–100 of 147 posts
Re: Ask HN: What did you build in March?
#92My first android app. Added multithreaded ability to request slow network resource, ability to issue raw SSL connections + very nice looking GUI. Actually that was a good month re: learning new, and cool stuff.
Re: Ask HN: What did you build in March?
#93Re: Ask HN: What did you build in March?
#94Finally released the paid subscription offer for my web app and got the first customers. http://www.wookmark.com/about/plus
Re: Ask HN: What did you build in March?
#95Not very pretty, but I am happy to get off the ground. Now building something more complicated. Hope to see it in "What you built in April thread" :)
Re: Ask HN: What did you build in March?
#96Re: Ask HN: What did you build in March?
#97Re: Ask HN: What did you build in March?
#98During my travels, I managed to do quite a bit of work on The Silver Searcher: https://github.com/ggreer/the_silver_searcher . It's a clone of ack[1], but written in C instead of Perl. I've done a decent amount of profiling[2] to find slow parts and improve the speed. For literal searches it uses a version of Boyer-Moore-Horspool strstr[3]. For regex searches it uses the new JIT compiler in PCRE[4].
Depending on the search, it can be 3-5x faster than ack. And thanks to some contributors this past month, it's now in homebrew and Gentoo portage.
Well, back to the grind tomorrow.
2: Using gprof, valgrind, and Instruments.app. See http://geoff.greer.fm/2012/01/23/making-programs-faster-prof...
3: http://en.wikipedia.org/wiki/Boyer%E2%80%93Moore_string_sear...