Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
cron
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
1.
▲
by
cron
12y ago
`select-string` or it's alias `sst`. I find myself filtering collections of objects far more frequently then grepping lines when using powershell.
2.
▲
by
cron
13y ago
In Ireland it's fairly common for people to use "you" as the singular and "ye" as the plural. It's less ambiguous but definitely not considered proper.
3.
▲
by
cron
13y ago
I'd say levelling (getting inside a players head, understanding how they'll react to a situation and staying one step ahead) is important for higher level play in both games.
4.
▲
by
cron
14y ago
It's right and proper that microsoft receive a payment for every pc laptop sold?
5.
▲
by
cron
14y ago
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...
6.
▲
by
cron
14y ago
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.
7.
▲
by
cron
14y ago
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 executabl
8.
▲
by
cron
14y ago
Building hard core, committed fans is probably more valuable in the long term rather than maximizing profits from ticket sales.
9.
▲
by
cron
15y ago
IMO, minimalism is as much a defensive strategy as it is an aesthetic for Arch users.
10.
▲
by
cron
15y ago
The Linux kernel `container_of` and `offset_of` macros can be pretty handy when writing generic containers.
11.
▲
by
cron
15y ago
Cute way to reverse a string, taken from the K+R: for (i = 0, j = strlen(s)-1; i < j; i++, j--) c = s[i], s[i] = s[j], s[j] = c;
12.
▲
by
cron
16y ago
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.