Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
nightlyherb
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
1.
▲
by
nightlyherb
2y ago
Would readers well-versed in physics be happier if the equation in the title were `g ≈ π² m/s²` instead of `π² ≈ g`?
2.
▲
by
nightlyherb
2y ago
Is there a way to read this style of C, without prior knowledge of APL, J, or K? Can people with prior knowledge read this more easily? I'm asking this because this is the first time I took the time to read that `j.c` and it wasn'
3.
▲
by
nightlyherb
2y ago
I'd like to add another point worth mentioning. When I read the other poster's post, I was thinking about the semantics of OOP, specifically encapsulated objects and messages. I may have misinterpreted the other poster, but I hope
4.
▲
by
nightlyherb
2y ago
Okay, I see what you mean. > Maybe you and the other poster have in mind specific fields of math, Yes, because this is about Julia, I assumed we are talking about the specific fields of math that happen to be commonly used in mathematica
5.
▲
by
nightlyherb
2y ago
I'm not the GP, but I'm sorry you felt gatekeeped. I don't think GP conveyed "real mathematicians should do FP", but rather something else, so I'll try my best to share what I understood from that comment. Hope
6.
▲
by
nightlyherb
2y ago
As a person who respects many programming paradigms including OOP and FP, I beg to disagree. Specifically, I'm assuming you're talking about OOP the paradigm, not only the dot notation, for which the pipe operator is a viable alte
7.
▲
by
nightlyherb
2y ago
Hi, as someone who has been interested in functional programming for a while but who struggled to read point-free Haskell code until recently, I think it might be useful to share my perspective. gears = filter ((==2) . length)
8.
▲
by
nightlyherb
3y ago
Disclaimer: I'm a Korean native speaker. It is interesting to see a perspective of someone who seems to have studied multiple languages. I think it would be useful to clarify what is meant by "writing system". The term may re
9.
▲
by
nightlyherb
3y ago
Using church numerals[1], right_incr(n) = g => y => n(g)(g(y)) and using the following shorter fixed-point combinator[2], X(f) = ( a => a(a) )( x => f(x(x)) ) I get this junk: X(right_incr) = ( a =
10.
▲
by
nightlyherb
3y ago
Most of my use cases for string interpolation doesn't involve the concept of templates, so for me embedding the "data" inside the "template" is easier to read most of the time. Perhaps it's because the data an
11.
▲
by
nightlyherb
3y ago
I was curious why the author decided to call them "51 percenters." A google search of the term suggests that the skills of this group of employees are divided by 51% hospitality and 49% technical excellence. Please feel free to co
12.
▲
by
nightlyherb
3y ago
Python seems to be popular for solving leetcode style interview questions, which might be something worth of note.
13.
▲
by
nightlyherb
3y ago
Current is about the throughput of electrical charge at a specific point of an electrical circuit, while what you're describing seems to be about the latency or the speed of electricity.
14.
▲
by
nightlyherb
3y ago
Security-wise, how is a server returning HTMX any different from a server returning HTML with forms? The clients both have the same capabilities, no?
15.
▲
by
nightlyherb
3y ago
N.B. Assuming `readLineStream` in that for await loop is node's readline object, the code is iterating over an asyncIterator[1] which works exactly as what you describe in your solution. (AsyncIterators have a next method that returns
16.
▲
Show HN: Tagged Unions and Factories in TypeScript
(gist.github.com)
2 points
by
nightlyherb
4y ago
|
1 comments
17.
▲
How does this look as a representation for do-notation?
1 points
by
nightlyherb
4y ago
|
1 comments