Viewing profile — cron
cron
HN member- Joined
- Wed, Mar 17, 2010, 7:16 PM UTC
- HN karma
- 29
- Public activity
- 16 items
- HN profile
- View on Hacker News ↗
About cron
No profile information was provided.
Recent public activity
- comment
- comment
- comment
-
comment
Comment #9189919
`select-string` or it's alias `sst`. I find myself filtering collections of objects far more frequently then grepping lines when using powershell.
- comment
-
comment
Comment #7217048
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.
-
comment
Comment #6277937
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.
-
comment
Comment #5386301
It's right and proper that microsoft receive a payment for every pc laptop sold?
-
comment
Comment #5229162
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:…
-
comment
Comment #5228962
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 …
-
comment
Comment #4494119
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…
-
comment
Comment #4196234
Building hard core, committed fans is probably more valuable in the long term rather than maximizing profits from ticket sales.
-
comment
Comment #3705173
IMO, minimalism is as much a defensive strategy as it is an aesthetic for Arch users.
-
comment
Comment #3604474
The Linux kernel `container_of` and `offset_of` macros can be pretty handy when writing generic containers.
-
comment
Comment #2783150
Cute way to reverse a string, taken from the K+R: for (i = 0, j = strlen(s)-1; i
-
comment
Comment #2323365
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…