HN user

sakai

1 karma
Posts75
Comments156
View on HN
nymag.com 11y ago

The Trans-Everything CEO

sakai
3pts0
www.businessinsider.com 11y ago

1284 Slides Prepared by Ryan Allis for 30th Birthday

sakai
3pts0
github.com 12y ago

Show HN: Simple interactive SQL exploration with IPython/Pandas

sakai
22pts3
www.enterprisetech.com 12y ago

Google Runs All Software In Containers

sakai
2pts0
www.economist.com 12y ago

Getting a job at a top university will not make you a better researcher

sakai
2pts0
www.fastcompany.com 12y ago

Antivirus is dead. Meet the next-generation of anti-hacker tools.

sakai
2pts1
www.illumina.com 12y ago

Illumina Accelerator Program

sakai
49pts11
www.slate.com 12y ago

The Flaw at the Heart of [Chua + Rubenfeld's] The Triple Package

sakai
1pts0
helix.io 12y ago

Show HN: Instant genetic classification

sakai
8pts2
medium.com 12y ago

A Day at the ODNI

sakai
3pts0
nbviewer.ipython.org 12y ago

Peter Norvig on xkcd 1313: Regex Golf [Updated IPython Notebook]

sakai
3pts0
juanluisgarcia.com 12y ago

Dear Spike Lee

sakai
652pts158
features.thecrimson.com 12y ago

Hacking Harvard

sakai
1pts0
www.fastcompany.com 12y ago

Google Maps Help Predict Meth Labs Before They Open

sakai
1pts0
www.nytimes.com 12y ago

Same Firm Did Checks on Snowden and Gunman

sakai
1pts0
news.cnet.com 12y ago

Lego machine removes DRM from Kindle e-books

sakai
1pts0
www.thephoblographer.com 12y ago

Mugshots from the 1920s are Significantly Cooler Than Mugshots from Today

sakai
3pts0
collaboratory.airforce.com 12y ago

The Air Force's New "Collaboratory"

sakai
3pts0
wccftech.com 12y ago

Xeon Phi Coprocessor (Intel) Codenamed Knights Landing Unvieled

sakai
4pts0
venturebeat.com 13y ago

Sequoia confirms stealth army of early deal scouts (February 2013)

sakai
1pts0
twentytwowords.com 13y ago

Scientists explain their processes with a little too much honesty (with photos)

sakai
1pts0
boss.blogs.nytimes.com 13y ago

An Entrepreneur Moves Into a Swedish Forest

sakai
1pts0
www.nytimes.com 13y ago

AP Phone Records Seized by Justice Dept.

sakai
3pts0
www.whitehouse.gov 13y ago

White House: New Open Data Policy Executive Order Today

sakai
2pts0
www.nytimes.com 13y ago

Racially Segregated Proms Still Exist in Pockets of the South

sakai
1pts0
queue.acm.org 13y ago

B-Heap vs. Binary Heap (2010)

sakai
99pts20
nickchirls.com 13y ago

My Time at Lehman

sakai
304pts190
www.wired.com 13y ago

Forget Disclosure -- Hackers should keep security holes to themselves

sakai
2pts0
nymag.com 13y ago

Brown Student Has Pretty Convincing Explanation for This Whole ‘Hurricane’ Thing

sakai
2pts0
boydgreenfield.com 13y ago

Show HN: Weekend project, D3.js Globe of Recent Earthquakes

sakai
79pts29

Well, the troubling thread here is that that may not be posssible using the amount of blood Theranos collects. Then the question becomes not only why is their valuation so high (which the public doesn't need to care too much about) but "how well do these traditional tests work with Theranos samples?"

That the answer could be "not very well" (and we haven't heard otherwise) is what's most troubling to me.

Yes, we're building out the features to make it easy to use with your own corpus. I'll follow up by email, but can you clarify what species identification issues you're seeing? (Would like to double check and get it fixed asap if there's a problem).

Thx!

That was an attempt to say (without resorting to Big Oh notation) that the data structures and algorithms we're working on provide O(1) lookups that take a fixed amount of time regardless of the reference / dataset size. Does that make more sense?

Hope it was clear that you can test it out with some small FASTA or FASTQ files now (just drag onto the upload icon).

And yes, we'd be happy to discuss your use case and get you set up with something. Just shoot me a note at nick at helix dot io and we can follow up off thread.

In principle, some of them can be yes. Though genetic reference datasets tend to be much larger than, e.g., codebases -- and therefore require different approaches.

One of the core things we're working on is a data structure for more efficient, constant-time sequence lookups, and we've definitely thought of some non-bioinformatics use cases as well. Happy to answer any more specific questions by email too (in my profile)!

cfontes – Yes, that's definitely another use case of the underlying technology, though please note that the database loaded for the demo only include archaeal, bacterial and viral genomes (so you'd have a very hard time getting a hit on sugarcane sequences!).

(This is nkrumm's and my project)

Honest suggestion: Change the tagline to "less than 1000 lines" or exclude the GUI or whatever, but don't just not include line breaks anywhere.

You have 7 very sensible, and indeed admirable, style guidelines and while no line breaks only clearly violates one of them (PEP8), it's not really in the spirit of the others either. I opened gui.py and immediately was overwhelmed, rather than compelled to dive in and digest your small codebase.

Very cool.

One question – I noticed that you're doing some validation of the inputs (i.e., I can't seem to submit a sentence without a period) – could you explain the reasoning for this?

On the one hand, it seems fairly constraining (and probably comes with a few unfortunate edge cases). On the other, perhaps that's the benefit of the kata philosophy.

I find the timing of this and the "New Deal" press releases a bit confusing -- is YC starting to take biotech companies now (like YC S14) or in the next batch?

I'm assuming the New Deal terms are for S14, but was also surprised to see the announcement after the applications were all in.

Can anyone clarify / point me to what I've missed?

Ask HN: Idea Sunday 12 years ago

Yes! Well said.

It would definitely need to include:

* Web code editor for jobs (JS, Python, Ruby, Perl, Go, etc., etc.)

* Results served over an authenticated API (e.g., servicename.com/api/<username>/<jobname>/files/result.csv would get you the latest result.csv file generated by your script, .../<jobname>/20140419/files/result.csv would get you yesterday's, etc.)

* Jobs could probably be both scheduled (i.e., cron-like) or triggered via a webhook

Ask HN: Idea Sunday 12 years ago

A simple service for setting up and running jobs/workers without having to run a server.

Ideally, it would have the following features:

* Pay once, run forever (pay for the job up front and never again -- no recurring billing to worry about)

* Configure once, run forever (use Docker/LXC in the background to allow custom environments and absolve the user of the dependency headaches that can arise when running multiple jobs on a single machine)

* Easy to use

I've been casually working on this as it's a pain point I've experienced numerous times (e.g., running a daily job that should cost ~50 cents per month, which is substantially below any available VM price).

Would anybody use this? Other thoughts?

It is really awesome, though I'm kind of bummed that they held off on announcing this (or didn't otherwise finalize the details) until after the summer applications were due. As someone working on some bioinformatics tech, that definitely would have persuaded me to apply.*

* And not primarily because of Elizabeth – who I'm sure is fantastic – but more broadly because of what it signals with regards to YC's focus and energy.

Aside: would be very interested in connecting about a metagenomics project I've been working on. My email is in my profile if you want to reach out.

16S reads should be fine for basic characterization. The bioinformatics tools for sequence classification of short reads from a full sequencing run have also improved dramatically recently. Especially in terms of speed (100-1000X improvements).

(Plug) I just launched a site last week that demos this and links to a few other academic works in the field (check the FAQ): https://helix.io

Can you share any more about your use case here? Intrigued, as a colleague and I have recently been working on highly space-efficient hash maps for a bioinformatics application that it strikes me could be relevant (similar problem -- huge reference set that needs to be accessible with very low access times).

Email is in my profile. Thx!

4 apps, one weekend 13 years ago

This is very cool -- thank you for sharing.

Would you mind sharing the data source(s) you used for the Do Something app? Curious about both what resources are out there and how easy they are to integrate.

I don't think so – Humble Bundle is a for-profit company, of which YC owns (a small non-controlling set of) common shares. Watsi is a non-profit that YC doesn't own any portion of.

What HB does is really up to them – and donating to charity has always been a core component of both their business and mission/vision.

The free monitoring is only available to the subset that they've confirmed had their payments info affected. They currently are claiming this is only 3M of the 38M customers.

Source: They just directed me to protectmyid.com and told me to sign up and pay for it myself. Not a great customer service experience.

Anybody know anything about VT health stats? I'm struck by the fact that it:

* Has the lowest influenza/pneumonia rate (7.9)

* Has the lowest nephritis rate (6.7)

* Is in the "really low" rate color for HIV and homicides*

* But has the highest Parkinson's rate (9.6)

What's a contributing factor for Parkinson's?

* Edit: That appears to be the "no data" color actually. I just assumed it was very low because VT has few homicides (1.4 / 100k residents average rate for the past 3 years, or about 10 homicides annually)