Viewing profile — peq
peq
HN member- Joined
- Mon, Aug 15, 2011, 11:57 AM UTC
- HN karma
- 128
- Public activity
- 51 items
- HN profile
- View on Hacker News ↗
About peq
No profile information was provided.
Recent public activity
-
comment
Comment #31214645
Isn't this limit per client ip, server ip, and server port? ( https://stackoverflow.com/a/2332756/303637 )
-
comment
Comment #28039789
> Pixel 6 will have the most layers of hardware security in any phone**. > **Based on a count of independent hardware security subsystems and components. That does not seem like a …
-
comment
Comment #28025140
It would be nice if pure benchmark papers were a thing. Most of the time system papers get accepted for some new idea. The evaluation section is often biased towards the new idea. …
-
comment
Comment #27434489
How would you make the button send a request without js and without navigating to another page? Maybe css to load an image on :active or is there some better way?
-
comment
Comment #27324196
I tried following the webdev topic and it's just interaction-baiting bullshit. Like loops vs reduce. Or "offend a webdev with 3 words".
-
comment
Comment #27157925
I think implicit conversions were added originally to support Java compatibility without boilerplate code. It then turned out that they could be used to simulate extension methods,…
-
comment
Comment #27157583
I don't think i will be much of a problem. Braces are already optional in Scala2 if you only use a single expression. The change just gives you the option to be more consistent and…
-
comment
Comment #27157404
Scala is one of the smallest typed languages in terms of syntax. See slide 13: https://www.slideshare.net/Odersky/preparing-for-scala-3#13 With scala 3, syntax has been simplified …
-
comment
Comment #27156472
If I rememver correctly, the python plugin for vscode asks me whether I trust the project before running anything. At least that was the case when I last opened a Jupyter notebook …
-
comment
Comment #27154187
Applications don't need generics, but libraries do. The lack of generics is the reason for a lack of many useful libraries that I miss when writing applications in Go. Things I mis…
-
comment
Comment #27152066
It is related in some way. Since Go has no generics, it does not have datatypes like Sets, Maps (go has maps, but only supports a few types as keys), or Graphs. It also does not ha…
-
comment
Comment #26685589
At first "mathy" objects seem not so important, but it also involves: - Vectors, matrices - Immutable containers (lists, sets, maps, etc.) - Domain specific languages (regular expr…
-
comment
Comment #26367316
A vacuum "filled" tanker would be lighter than a helium filled one :D
-
comment
Comment #24408440
I would be careful in mirroring a site. It's very likely to violate copyright or similar laws, depending on where you are. I think archive.org is considered fair use, but if you pu…
-
comment
Comment #23612123
An underappreciatd feature of Zoom is the 40 minute restriction in the free version. Meetings are more productive with an enforced time limit.
-
comment
Comment #22954992
Some problems I had with Snaps: * Installed VScode. The terminal in VScode was in a different environment from the system terminal, so used different Python environments. Took me a…
-
comment
Comment #22784755
They can probably learn from the German reunion. A lot of mistakes could have been avoided, like letting western companies buy and close east German companies that were previously …
-
comment
Comment #22759049
As I understand this, the approach here is to bet on personal responsibility. This technology cannot be used to enforce quarantines as the authorities have no access to the data. B…
-
comment
Comment #21134482
> it would be even better if TS could do this automatically like Flow though That would imply that the same function signature could produce different type checking results at the …
-
comment
Comment #20543544
Your version still has the problem that since Java 7 the substring method allocates a new String, which in unnecessary when it is only borrowed to the parseLine function and not ne…
-
comment
Comment #20360308
It's easy to run tasks in parallel with just "await". Just start your tasks without await, store the promise in a variable, and then use await later when you actually need the valu…
-
comment
Comment #18035226
Mathematicians should do more computer verifiable proofs to avoid discussions like this. > Definitions went on for pages, followed by theorems whose statements were similarly long,…
- comment
-
comment
Comment #14007144
FLAVOR: Ubuntu desktop HEADLINE: fix smart autohide of unity launcher DESCRIPTION: it is really annoying that the launcher does not appear sometimes, when moving the cursor to the …
-
comment
Comment #12188108
I think the only reason to use json over the binary format is readability, so why care about this?