Viewing profile — gwu78
gwu78
HN member- Joined
- Sun, Jul 07, 2013, 4:01 AM UTC
- HN karma
- 480
- Public activity
- 451 items
- HN profile
- View on Hacker News ↗
About gwu78
No profile information was provided.
Recent public activity
- comment
-
comment
Comment #14419806
http://www.internetsociety.org/deploy360/blog/2017/05/google...
-
comment
Comment #14419635
I was using the first example with a char in the first column. A 4 B 5 B 8 C 9 A 6 How to solve with only a dict? Regarding the 1gram file at https://storage.googleapis.com/books/n…
-
comment
Comment #14415143
"The task is to sum the values for each key and print the key with the largest sum." What is the smart way to do this in kdb+? This is my naive, sloppy 15min approach. Warning: Noo…
- comment
-
comment
Comment #14385386
Long before amp, Google began prefixing search result urls with "google.tld?url=" and adding Google parameters as suffixes such as "sa=", "ved=", etc. Unless I am mistaken this par…
-
comment
Comment #14380909
Favorite part is how he mixes the register allocator with a chain of seds. I did something similar with a youtube downloader I wrote, using a long chain of seds. It is not as beaut…
-
comment
Comment #14380858
This is my "Hacker News Reader". It converts HN to csv. (Only selected fields of interest to me.) From there it can easily be imported into kdb+. I have more reusable generalized l…
-
comment
Comment #14380771
"I suggest compiler writers stop viewing the x86 stack as a twisted version of a traditional 8-register set." What if compiler writers will not fix the problem? Write own register …
-
comment
Comment #14373214
Yes, this sounds right. It has been a while since I looked at it. Is it just one name? I have a faint recollection it tried more than one. Anyway, how is the difference significant…
-
comment
Comment #14368114
Notable that he calls the "kill-switch" a "mistake". For example, Chrome does the same thing. When it starts it checks for some presumably non-existant domain name.
-
comment
Comment #14367760
Is this a "JSON Feed" from NYTimes? Example below filters out all URLs for a specific section of the paper. test $# = 1 ||exec echo usage: $0 section curl -o 1.json https://static0…
-
comment
Comment #14333261
"Lessons learnt by ransomware developers..." If you are suggesting that developers, regardless whether they develop mobile apps or ransomware, will start relying less on DNS, I res…
-
comment
Comment #14278371
Here is a spitbol/snobol4 solution. Assumes the number of items in the set is not greater than the alphabet. * routine stolen from gimpel * algorithm from peck and schrack define('…
-
comment
Comment #14270804
"... is silly, there are better ways." I see this usage often where it seems like grep pattern1 | grep -v pattern2 can be replaced by sed -n '/pattern1/d;/pattern2/p' or at least s…
-
comment
Comment #14270264
Example line from the Openshift reload-haproxy script: old_pids=$(ps -A -opid,args | grep haproxy | egrep -v -e 'grep|reload-haproxy' | awk '{print $1}' | tr '\n' ' ') Can we do th…
-
comment
Comment #14244579
Is it true these packets are HTTP requests full of XML, i.e., SOAP? Do they use HTTPS on ports 16994 and 16995? To avoid a crash, users can mount potentially malicious filesystems …
-
comment
Comment #14236144
First time I learned about SETL at NYU was when I was learning about Spitbol. Here is a fizzbuzz in Spitbol. Probably not the best way to do it. var a = 0; start +a = a + 1; break …
- comment
-
comment
Comment #14233828
The knee-jerk answer upon seeing the title was: "Too many". So many of these instructions I never see anyone use, ever. No doubt there are some folks using them, but as mere mortal…
- comment
- comment
-
comment
Comment #14209334
https://mobile.twitter.com/hashbreaker/status/85322416941220... The strange "counterargument" I commonly see on HN to any suggestion that Microsoft closed source software could pot…
-
comment
Comment #14209137
https://www.symantec.com/connect/tr/blogs/symantec-ca-propos... Works for me without Javascript.
-
comment
Comment #14186993
"UUCP can be setup rather easily with few configuration files and few lines in each of them. But you have to add some encryption and authentication overlay for securing you data tr…