Viewing profile — jimmy_ruska
jimmy_ruska
HN member- Joined
- Sun, Feb 24, 2019, 3:22 PM UTC
- HN karma
- 108
- Public activity
- 19 items
- HN profile
- View on Hacker News ↗
About jimmy_ruska
No profile information was provided.
Recent public activity
-
comment
Comment #19532204
There's nothing stopping you from using lisp as a transpiler to generate the java, or different interop glue for the lowest common factor code everyone will surely understand. The …
-
comment
Comment #19450420
Somewhat related subreddit https://www.reddit.com/r/netsec
-
comment
Comment #19440234
Why would they fix the problem. Every crash is a redistribution of wealth. When there's a recession, if you're wealthy and have diversified assets you can buy everything at a disco…
-
comment
Comment #19426326
Imagine if you invest some money into what becomes a 9 billion dollar valuation company. That valuation is before they've really gone to mass market with their product. If their pr…
-
comment
Comment #19421527
I don't see what you can't do with neo4j, neptune, datomic. Neptune offers a sparql interface. You could easily specify an explicit schema. If you wanted to make an ontology that's…
-
comment
Comment #19419557
In his book programming erlang Joe Armstrong talks about how erlang is OOP in the original sense. You spawn a bunch of light weight processes, and each process is like a living fun…
-
comment
Comment #19419519
Sussman of SICP fame gave a similar analogy. Not really about messaging but about biology in general - https://www.youtube.com/watch?v=O3tVctB_VSU
- comment
-
comment
Comment #19419431
Things like json-ld, microdata, rdfa https://developers.google.com/search/docs/data-types/product Wikidata also has data in rdf https://wikidata.org/wiki/Wikidata:Database_download…
-
comment
Comment #19389538
Another option is to use a cloudfront hosted pixel, and have a cloudwatch job to schedule processing of that data every X minutes. This gives you ultra fast edge response time on y…
-
comment
Comment #19376067
Sorry, Bill tripped on the server cable
-
comment
Comment #19365566
Planes don't just fall out of the sky. Having 2 major crashed on the same model could indicate mechanical defects. When microsoft faced an issue with statistically increased failur…
-
comment
Comment #19365468
Some statistically significant percentage of xbox 360s are starting to red light for customers running a certain model number. Microsoft assures customers that there's no need to p…
-
comment
Comment #19350784
Could be to avoid liability? > Why were you hacked > Weak passwords > What are you going to do about it > We've forced all systems and employees to regenerate passwords and service…
-
comment
Comment #19293854
* If it's simple transforms, use cli tools. * If it requires aggregation and it's small, use cli tools. * If this is data you're using over and over again then load it in the datab…
-
comment
Comment #19263387
Hetzner lists VMs that are ultra cheap but then has separate listing for more expensive VMs with dedicated cores. Alibaba does the same. With these shared core machines, I wonder w…
-
comment
Comment #19240522
Some links worth mentioning https://www.colm.net/open-source/ragel/ https://beautifulracket.com/ https://www.jetbrains.com/mps/ https://kotlinlang.org/docs/reference/type-safe-buil…
-
comment
Comment #19240432
From my understanding this library takes a grammar and generates a run time interpreter for that grammar. Antlr is much more similar as it takes in a grammar, and generates code yo…
-
comment
Comment #19238872
When you have an erlang distributed app and need caching without having the overhead of converting erlang terms then ETS is the best solution. That's not to say you would want to u…