Live data from Hacker News

Ask HN: What are you working on and why is it cool?

news.ycombinator.com

201–210 of 786 posts

Re: Ask HN: What are you working on and why is it cool?

#201
Currently I'm working on a few different developer tools, as part of my continuing mission to make my own life easier. I figure they're probably cool because if I'm scratching my own itch then I should be scratching itches for other devs too.

* GitHubReminder - serendipitous email reminders about your starred repos on GitHub. https://githubreminder.org/

* JSComplexity - code complexity metrics for JavaScript. http://jscomplexity.org/

* CoffeeComplexity - code complexity metrics for CoffeeScript projects (still in development).

* GrepSrc - regex-based source code search engine (still in development).

Re: Ask HN: What are you working on and why is it cool?

#203

https://www.truevault.com/ TrueVault is a HIPAA compliant data backend for apps, devices, and sites. Developers use TrueVault so they can develop healthcare apps without building out their own HIPAA compliant infrastructure. You access data in TrueVault via our API and native clients. Think of TrueVault as Stripe for confidential patient data. You use Stripe to store credit card data so that you are PCI compliant. Ou…

Excellent. Two of my clients need exactly this service. We have the pain point you describe, i.e. needing to build out AWS, Rackspace, etc. Currently we build custom AWS images, however we'd much rather pay for a HIPAA stack. Kudos!

Re: Ask HN: What are you working on and why is it cool?

#204
I'm building a community-based startup and project incubator with the goal of forming "classes" of founders who support and advise each other. It's called http://launchway.net - though it's been difficult to get people on board I'll keep trying.

As an aside, I think we should have threads like this one more often, I'd love to learn what everone's been up to periodically.

Re: Ask HN: What are you working on and why is it cool?

#205
I'm working on a gmail replacement to deploy on my own server. It's called kite. It uses a lot of cool techs like vagrant, puppet, angularjs and of course, postfix for mail handling.

For the moment, it doesn't do much besides displaying a list of emails in a maildir but in a week or two I should have thread handling written.

The source is at: http://github.com/khamidou/kite (sorry for the lack of readme, I should get around to do this tomorrow)

Re: Ask HN: What are you working on and why is it cool?

#207
post #170

Earlier quoted context omitted.

> The state of the art in guitar tabs is horrible ASCII crap (example: http://tabs.ultimate-guitar.com/e/eagles/hotel_california_ta... ). Soundslice is a 1000x improvement. Oh come on - you guys even mention Guitar Pro on the About page. This is like building a word processor and then comparing it to Notepad.

The vast majority of guitarists still use those ASCII tabs, not Guitar Pro -- but, fair point! The biggest problem with Guitar Pro is that the playback is synthetic/MIDI. Our philosophy is that learning from a real recording is the best (only?) way to catch subtleties of music like phrasing, timing and feel.

I feel bad for those guitarists...

I've been using Guitar Pro for most the time that I've been playing guitar and bass, and the fact that the playback is Midi has not been much of an issue (and I wasn't sold on Guitar Pro 5 "real sound engine" or whatever it was called). Though I've been playing bass which has less subtleties in my main genre (rock/metal). Even with guitar the heavy lifting for me is to learn what fingers goes where on the fretboard. After that, I can listen to the actual song and polish whatever nuances I feel that I need, without referring to the tab (since I know where the fingers goes on the fretboard at this point).

Re: Ask HN: What are you working on and why is it cool?

#208

A book that explains the core ideas of neural networks and deep learning. Cool because: * The book incorporates lots of running code for readers to explore and extend. * The book's philosophy is to go deep into the core concepts of deep learning, not to superficially cover a long laundry list of ideas. This gives readers a solid foundation to build on, and makes understanding other material much easier. * Deep learni…

Awesome, signed up as well. Is your QC&QI book still accurate after 10 years of being in the wild? Have there been any advances that verify / invalidate the ideas you present?

Thanks!

The quantum computing book holds up okay, so far as I know. Of course, there's been many new developments since we wrote it, and a text written today would be somewhat different. But the core material in the field has changed only slowly, so a book can be surprisingly durable.

Re: Ask HN: What are you working on and why is it cool?

#209
I'm working on a JSON based website layout and component system.

For example: a component that lists blog posts could be represented by:

  {
    options:{
      elements:[image, title, author, date]
    },
    criteria:{
      sort:date.desc, 
      published:true, 
      limit:10
    },
    request_vars:{page:3}
  }
That would show the last 10 posts that are published, ordered by date, on page 3 of the results.

That's a simple example, this site: volumeone.org is built almost entirely this way.

Since it's in JSON format, JavaScript can be used to build UIs that build the components and layouts.

Re: Ask HN: What are you working on and why is it cool?

#210
Recommendation engine as a service (http://savant-api.com/) -- absolutely nothing public yet, except a fancy d3 powered widget that has nothing to do with the service.

It's cool because I'm hoping to make collaborative filtered recommendations easy to obtain for small outfits.

Post reply on HN