Viewing profile — excessive
excessive
HN member- Joined
- Mon, Aug 05, 2019, 1:10 AM UTC
- HN karma
- 178
- Public activity
- 63 items
- HN profile
- View on Hacker News ↗
About excessive
No profile information was provided.
Recent public activity
-
comment
Comment #21774046
It's also frustrating for only looking at the last 22,000 years or so. Considering how good Randal has been at presenting much larger scales (from quarks to galaxies, the big bang …
-
comment
Comment #21734833
I don't mean this the wrong way, but since you know one instruction is sufficient, the next smallest number is two. Maybe by RISC, you meant a small orthogonal set? Load/Store/ALU …
-
comment
Comment #21734785
x86's version of a single "instruction" is frequently a large class of opcodes. It's kind of crazy considering the assembler chooses one of the following numbers for "mov" based on…
-
comment
Comment #21725389
A few years back, I re-wired the electrics in my guitar using a semi-complicated setup of a 6 way switch for pickups in-phase or out, and parallel or series, tone and volume pots, …
-
comment
Comment #21718926
Here's one you can use with (pretty much) any version of C++: __attribute__ ((format (printf, 1, 2))) static inline std::string format(const char* fmt, ...) { va_list args; va_star…
-
comment
Comment #21659792
> It was about this time that I realized college might not be the thing for me. Frequently, there are higher caliber instructors in colleges than high schools. If your goal is to l…
-
comment
Comment #21555142
> they rarely encounter children these days who can have a conversation. I think public schools do a pretty good job teaching kids to not speak openly with adults.
-
comment
Comment #21548243
That's interesting. I didn't read the paper closely, but skipping to the pictures, it looks like ReLU, but smoothed out so the derivative is continuous. Intuitively, that seems use…
-
comment
Comment #21530864
> Someone should make one language that transpiles down to Javascript AND Python AND Ruby AND Erlang even! Well, not every language, but Haxe has you pretty well covered: https://h…
-
comment
Comment #21511199
Your first line of main is adding -0.0 and -0.0, which is not what I think you intended to show.
-
comment
Comment #21497511
> quite slow due to GIL I don't want to defend the GIL, but that's not the reason CPython is slow. PyPy can be 100s of times faster, and it has a GIL too.
-
comment
Comment #21497419
I'm not the GP, but here's my take on it. First some good: Python is amazing for how approachable it is. I've tried to teach (non-programmer, but smart) people I know other simpler…
-
comment
Comment #21445018
I didn't think it worked that way. After that, can I be the Silent/Greatest Generation? Maybe the word "Boomer" will just get redefined to mean "old people with more money than me"…
-
comment
Comment #21443448
> Some boomer should have some “OK SLACKER” t-shirts As part of Gen-X, I feel like that's appropriating from my culture. I was proudly on the "slackers" mailing list as an adult in…
-
comment
Comment #21439070
Across the world, what percentage is Portland cement vs the other CO2 absorbing kind? I googled around, but couldn't find the answer.
-
comment
Comment #21426298
Thank you for telling me about this - I didn't know they did that... My first thought as I started reading the PEP was, "Why did they bother adding the 'bytes' type if 'str' is jus…
-
comment
Comment #21422848
Yes, that's very much what the video goes into. For any rational approximation of 2 pi, say 22/7, you won't get lines at multiples of 2 or multiples of 11.
-
comment
Comment #21422497
The first time I saw these, I thought it hinted at some deep insight into the nature of primes. However, after watching the following video, I think it just says something about mo…
-
comment
Comment #21422085
> Your proposal only works well for US ASCII users. No, and I explicitly mentioned UTF-8. My suggestion is that str holds arbitrary immutable binary data and that you have a method…
-
comment
Comment #21421625
> There were some intractably difficult, "rip-the-band-aid-off" types of changes that had to happen at some point. I suspect you're referring to Unicode here. In that case, I think…
- comment
-
comment
Comment #21367494
Thank you for your reply, it does actually change how I see the prior art thing played out. > Often, folks think that they've found prior art if they find one thing in one document…
-
comment
Comment #21367406
Here is one in Python. Uncomment the if statement if you want it to terminate. def sin(x): def recur(x, n, s, p, f): #if n > 9: return s; return recur(x, n + 2, s + p/f, -p*x*x, f*…
-
comment
Comment #21367111
Yes, exactly.
-
comment
Comment #21366668
The plaintiffs certainly had a larger legal team. We brought our patent attorney and a trial lawyer on our own dime, and we managed to get some time from the chief patent counsel f…