Hacker Newsnew | past | comments | ask | show | jobs | submit | more BioGeek's commentslogin

The latest sport where Sportvision used this technology is sailing, called LiveLine there. During the last America's Cup [1] they used it to show the starting, finish and boundary lines, distance between the boats,...

[1] http://youtu.be/r0LH5cCuc_4


That was an incredible use of the technology. I'd watched sailing on TV before, but for the first time I could actually see and understand the scope of the race and the strategies of the skippers.


Some more things you could ask in this article by Hacker School alumna Julia Evans [1] and this article on Runtime Era [2].

[1] http://jvns.ca/blog/2013/12/30/questions-im-asking-in-interv... [2] http://www.runtime-era.com/2013/03/my-interview-questions-fo...


> If he could write it up in a blog, OkTrends-style, I feel like it could get a huge number of hits

He released a 37 page eBook with an easy-to-implement blueprint: http://www.amazon.com/dp/B00HY351S2


> I would imagine that there's hardly a comprehensive database of a DNA of all existing life forms on Earth.

An annotated collection of all publicly available DNA sequences is available from the DNA DataBank of Japan (DDBJ), the European Molecular Biology Laboratory (EMBL), and GenBank at NCBI. They are basically all three the same database and they exchange updates on a daily basis. However, small timelags in propagating data between the database centers causes minor differences.


Also see the discussion at the bioinformatics subreddit: http://www.reddit.com/r/bioinformatics/comments/179e9k/a_far...


Biostars.org is a stackexchange-like site for bioinformaticians.

See there for answers to your question, eg:

* Best resources to learn molecular biology for a computer scientist. [1]

* What are the best bioinformatics course materials and videos (available online)? [2]

[1] http://www.biostars.org/p/3066/

[2] http://www.biostars.org/p/10766/


Some guys in Russia have done something similar. They have released a 360° aerial panorama [1] from the stratosphere. They have also been experimenting with 360° video [2] and provide detailed instructions on how they achieved their results.

[1] http://www.airpano.com/360Degree-VirtualTour.php?3D=Stratosp... [2] http://www.airpano.com/Articles-AirPano.php?article=101606


Wow, very cool. They used much nicer cameras than I did and get much nicer results. Not sure I believe the stars in the sky, though. ;)

Not sure how I didn't see this before. Thanks for the links!


hmm. Or did they? It looks like they were just pointing down and added the whole top in post.


You can use TunesViewer [1] to view iTunesU media and podcasts in Linux.

[1] http://tunesviewer.sourceforge.net/


Thanks, good to know about.


Kevin Kelly has an extensive collection of what he calls True Films [1]: "I define true films as documentaries, educational films, instructional how-to's, and what the British call factuals - a non-fiction visual account."

He has also released an ebook where he offers rave reviews of 150 great true films. Each film gets a short review of why it is worth your time, and then features 4 or 5 screen grabs from the film to show you what the texture and style of the film is. It also includes a picture of the cover and indicate where you can rent it (say on Netflix) or purchase it (from Amazon).

What is he looking for in a great true film? "It must be factual. It must surprise me, but not preach to me. If it introduces me to a world or subculture that I never thought about before, even better. There's a plot - a transformation from beginning to the end."

[1] http://truefilms.com/ [2] http://www.kk.org/books/true-films.php


My Python answer for the second question, where `post` is patrio11's post as input:

    from  collections import defaultdict
    from string import ascii_letters

    d= collections.defaultdict(int)

    for letter in post:
        d[letter] += 1

    print [letter for letter in sorted(d, key=d.get, reverse=True) if letter in ascii_letters][2]
Any comments on improvement for readability or conciseness?


Ah, your use of the collections module prompted me to read the docs for it (who would've guessed :) ) which leads to a revision of my other response:

  import string, collections

  s = "your text here"

  print collections.Counter([i for i in s.lower()
                             if i in string.letters]).most_common(3)[-1]


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: