HN user

cron

29 karma
Posts0
Comments12
View on HN
No posts found.

So a bit of internet sleuthing later...

The creator, Dr. Juan Asenjo, is speaking at the World Vaccine Congress and Expo [1]. He also refers to the drug as a vaccine [2].

[1] http://www.terrapinn.com/2013/world-vaccine-congress-washing...

[2] http://www.ibtimes.co.uk/articles/430928/20130203/alcoholism... (unfortunately the original source of this quote seems to be behind a paywall [3])

[3] http://www.santiagotimes.cl/chile/science-technology/25637-w...

Could someone explain to me how this is a vaccine? In school we were taught inoculations boost immunity and a vaccine is a form of inoculation which works by introducing enough of a bacteria or virus to make a person build antibodies.

I'm guessing this was generated by running `man -f` on the list of executables provided by util-linux.

    descriptions() { xargs -I '{}' man -f '{}' ; }
    executables() { pkgfile -bl $1 | cut -f 2; } # Arch Linux specific
    executables util-linux | descriptions 2> missed | sort | less

I'm also coding an Erlang websocket app. In my implementation a simple_one_for_one spawns a new gen_server when a connection is accepted. It looks a little prettier because all the spawning, sending and receiving is now handled by the OTP. I also use active sockets, but I'm a bit worried about flood protection, what's your strategy?