Viewing profile — taltman1
taltman1
HN member- Joined
- Tue, Nov 27, 2012, 12:32 AM UTC
- HN karma
- 50
- Public activity
- 23 items
- HN profile
- View on Hacker News ↗
About taltman1
No profile information was provided.
Recent public activity
-
comment
Comment #26909111
Check out this paper from my friend Ronen, and Prof. Fateman, putting Lisp into Excel: "A paper written with Ronen Gradwohl on Lisp and Symbolic Functionality in an Excel Spreadshe…
-
comment
Comment #26882207
I'm late to the game, but I'm surprised that no one has mentioned StaticMan yet: https://github.com/eduardoboucas/staticman Just uses Git(Hub|Lab) to triage and approve comments fo…
-
comment
Comment #9162900
Reservoir sampling in a few lines of awk: https://github.com/taltman/scripts/blob/master/EDA/samp It's shorter than this ruby implementation, and includes copious documentation, fi…
-
comment
Comment #9029890
For those who might want a fuller description of IBM's active facilitation of these kinds of crimes, you should read Edwin Black's book, "IBM and the Holocaust". Those tattoo's on …
-
comment
Comment #8975345
> An intelligence agency that keeps a list of demographic minorities for the purposes of spying & persecution is Holocaust-precursor-grade stuff Exactly. And that's how Jacob Appel…
-
comment
Comment #8933524
I used blueproximity successfully with my Linux laptop. I bought the smallest bluetooth headset I could find ($25), removed all extraneous parts, and carried it on my person (not m…
-
comment
Comment #8913302
This is a great exercise of how to take a Unix command line and iteratively optimize it with advanced use of awk. In that spirit, one can optimize the xargs mawk invocation by 1) G…
- story
-
comment
Comment #8248367
KEGG filters at the MAP or MODULE level, but it merely highlights the enzymes of the mosaic MAP/MODULE that it inferred is present in the organism, rather than display the subset o…
-
comment
Comment #8245689
A problem with these wall charts and the KEGG diagrams is that not only do you not know which enzymes or pathways are active in which tissues within a single multi-cellular organis…
-
comment
Comment #8245679
Using Pathway Tools, the pathways are automatically laid out for you in a rational manner, organizing pathways and super-pathways based on a manually-curated ontology. For example,…
-
comment
Comment #8245673
The Roche Biochemical Pathways charts were the inspiration for the MetaCyc family of pathway/genome databases, all enabled by the Pathway Tools software (itself written with 400,00…
- story
-
comment
Comment #5700505
It's not exactly macrology, but here's a page on functional AWK: http://awk.info/?Funky
-
comment
Comment #5700499
I love using gawk for slicing and dicing huge data files. The performance and conciseness of an AWK script is hard to beat. For those interested in general resources related to AWK…
-
comment
Comment #5553011
Notice how they cherry-pick among genomes to get their fitted line. A common fallacy is to associate genome size with the "complexity" of an organism. Even assuming that there is a…
-
comment
Comment #5277218
Whether vanilla TeX supports this out of the box or not, the TeX technology stack (including MetaFont and friends) has intimate knowledge of the size and shape of all glyphs. It is…
-
comment
Comment #5268916
TeX uses a dynamic programming algorithm to perform its advanced hyphenation, which allows the text to fill the page "beautifully": http://en.wikipedia.org/wiki/TeX#Hyphenation_and…
-
comment
Comment #5095070
You can think of Eshell as a Unix shell that is 100% customizable, and those customizations are done in a very high level language like Elisp, not in C. Sometimes it's great to use…
-
comment
Comment #4852469
In case anyone is interested, I've extended this code and put it up on GitHub as a script called 'samp': https://github.com/taltman/scripts
-
comment
Comment #4845002
Looks like a valid sample to me. Are you bothered by the ordering of the sample members? Then I'd continue the pipeline to include a call to shuf.
-
comment
Comment #4840043
As minimax stated, your awk code won't provide exactly k samples. Here's a bit of awk code that implements reservoir sampling (apologies in advance for any bugs) and prints the cur…
-
comment
Comment #4834854
I don't understand why the data is unstructured, and thus SQL is not an option. Isn't the data coming in from calls to the company's own API?