Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
srparish
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
srparish
2mo ago
An extensible LLM agent (such as https://pi.dev/ or maybe hermes) written in common lisp could be interesting. Conditions and restarts and general debugging and repair of the live system, fast startup, native execution spee
2.
▲
by
srparish
2mo ago
If you have it enabled, and you're in custody or at a border or similar, and have biometric auth enabled on your phone/computer, they can hold it up to your face or force you to put your finger on it to unlock it. Search warrant b
3.
▲
by
srparish
4y ago
Any word on when some of project amber features will come out of preview? I get excited each JVM release for some of those features, but it seems like most of the releases the preview count just gets bumped, and a few more get added to the
4.
▲
by
srparish
5y ago
The book "How to Measure Anything" by Douglas W. Hubbard has a chapter on using Monte Carlo simulations to do project planning and gather estimates. It's successfully been used for project planning large complex projects like
5.
▲
by
srparish
5y ago
> it's hard to find a project from years ago which doesn't "just work" with `go run` That's not been my experience. On a team I was on, even code from six months prior would sometimes be difficult to compile. The
6.
▲
by
srparish
5y ago
They had the limbo language in plan9, which has similar features and quirks. It seems most probable that the outcome of the 45 minute conversation wasn't "let's build a language from scratch", but rather "let's
7.
▲
by
srparish
5y ago
Verbosity of code is more of a go thing these days: hasThing := false for _, v := range stuff { if checkForThing(v) { hasThing = true break } } if !hasThing { return false } Java: if !stuff.stream(
8.
▲
by
srparish
7y ago
+ By declaring a field/variable []Thing vs []*Thing you get different for loop semantics. Way to easy to think your mutating the array item, but only mutating a local copy or vice versa. If you change the field/variable you need t
9.
▲
by
srparish
7y ago
By productive you mean having developers repeatedly manually create loops that are the poor and verbose equivalents of map(), filter(), and reduce()? Out of go, scala, c++, java, python, typescript; go is the least productive language I
10.
▲
by
srparish
7y ago
My understanding is with EKS or similar you still have to manually size your kubernetes cluster, that is you have to make sure there's enough hardware instances in your kubernetes cluster for whatever scaling you'll need. With far
11.
▲
by
srparish
7y ago
Kotlin, java has been adding functional features
12.
▲
by
srparish
10y ago
https://eprint.iacr.org/2014/1004.pdf
13.
▲
by
srparish
10y ago
- Software Engineering Daily: https://softwareengineeringdaily.com/category/podcast/ - Changelog: https://changelog.com/podcast - Functional Geekery: https://www.functionalgeekery.com&#
14.
▲
by
srparish
10y ago
Language wise scala.js[1] with cats[2] or scalaz[3]. The FRP story there is unfortunately more complicated. 1| https://www.scala-js.org/ 2| http://typelevel.org/cats/ 3| http://scalaz.github
15.
▲
by
srparish
10y ago
Are future versions of cats going to require the typelevel scala?
16.
▲
by
srparish
10y ago
http://bdr-project.org/docs/stable/index.html
17.
▲
by
srparish
12y ago
I also don't have a lot of need for scientific computing; Julia has the potential to be a really compelling replacement for Python for general purpose scripting.
18.
▲
by
srparish
12y ago
Not a book, but scipy had a two-part introduction to Julia talk that's worth watching: part 1: https://www.youtube.com/watch?v=vWkgEddb4-A part 2: https://www.youtube.com/watch?v=I3JH5Bg46yU
19.
▲
by
srparish
12y ago
That's great to see. It's sometimes hard to keep up with everything that's going on. Incidentally I really got a kick out of the recent s/Uint/UInt/ rename ( https://github.com/JuliaLang/jul
20.
▲
by
srparish
12y ago
* lack of threads: they do support multiple processes which can be useful for splitting up work for large computation, but not a substitute for threads * module compilation is not cached, so if you use very many modules your start-up times
21.
▲
by
srparish
14y ago
With the title I was expecting that people were finally fed up with getters/setters and all the other ceremonial bloat that's associated with java. Maybe tomorrow.
22.
▲
by
srparish
14y ago
I'd recommend "C++ Primer". It's been updated for C++11, and is written in precise and clear language. As a C programmer, I find understanding details are important; Accelerated C++ was just too chatty, casual, and vague for my tastes.
23.
▲
by
srparish
14y ago
"Beware of bugs in the above code; I have only proved it correct, not tried it." -- Knuth
24.
▲
by
srparish
14y ago
It's not uncommon for languages and libraries to assume that millis are the smallest resolution. Java is getting better, but is still pretty hit or miss. But if you're writing performance sensitive code you're definitely in micros and maybe
25.
▲
by
srparish
14y ago
The name made me hope that it would let you communicate from python with akka actors. Apparently not.
26.
▲
by
srparish
14y ago
I don't work at google, but my team is in the same boat because of this bug: http://bugs.python.org/issue10394 Moving to python3 wouldn't be too hard, except we have some really complicated cheetah templates, and cheetah apparently has no
27.
▲
by
srparish
14y ago
Some language generate a lot more noise then others--the noise is not at all correlated to actual usage or popularity.
28.
▲
by
srparish
15y ago
I've had exactly the opposite experience. I've owned 3 thinkpads, 4 macbook pros (between my wife and i), and an ibook. The thinkpads are tanks that take any beating i give them and keep running. The ibook was solid. The macbook pros have b
29.
▲
by
srparish
15y ago
https://sites.google.com/site/steveyegge2/tour-de-babel
30.
▲
Commit Hygiene and Git
(ericbmerritt.posterous.com)
2 points
by
srparish
15y ago
|
0 comments
More ›