Isn't this limit per client ip, server ip, and server port? (https://stackoverflow.com/a/2332756/303637)
> 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 meaningful measure for security.
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. Independent benchmarks could fix this.
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?
I tried following the webdev topic and it's just interaction-baiting bullshit. Like loops vs reduce. Or "offend a webdev with 3 words".
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, which is probably the main use case…
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 remove braces everywhere.
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 even more, e.g.: No more braces…
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 in vscode.
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 missed lately: Sets, maps with arbitrary…
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 have immutable collections. This…
At first "mathy" objects seem not so important, but it also involves: - Vectors, matrices - Immutable containers (lists, sets, maps, etc.) - Domain specific languages (regular expressions, constraint languages, etc.)…
A vacuum "filled" tanker would be lighter than a helium filled one :D
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 put it on a personal or even business…
An underappreciatd feature of Zoom is the 40 minute restriction in the free version. Meetings are more productive with an enforced time limit.
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 while to figure out why installing a…
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 owned by the state, or closing eastern…
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. Basically, we have to stop 2/3 of…
> 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 call site. That is something I find…
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 needed afterwards. What you probably want…
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 value.
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, but whose proofs only said,…
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 edge of the screen. There are several…
I think the only reason to use json over the binary format is readability, so why care about this?
I agree. In particular in languages without null you will have a lot of Option types in the mapping. You no longer can generate useful type definitions from the proto spec.
Isn't this limit per client ip, server ip, and server port? (https://stackoverflow.com/a/2332756/303637)
> 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 meaningful measure for security.
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. Independent benchmarks could fix this.
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?
I tried following the webdev topic and it's just interaction-baiting bullshit. Like loops vs reduce. Or "offend a webdev with 3 words".
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, which is probably the main use case…
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 remove braces everywhere.
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 even more, e.g.: No more braces…
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 in vscode.
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 missed lately: Sets, maps with arbitrary…
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 have immutable collections. This…
At first "mathy" objects seem not so important, but it also involves: - Vectors, matrices - Immutable containers (lists, sets, maps, etc.) - Domain specific languages (regular expressions, constraint languages, etc.)…
A vacuum "filled" tanker would be lighter than a helium filled one :D
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 put it on a personal or even business…
An underappreciatd feature of Zoom is the 40 minute restriction in the free version. Meetings are more productive with an enforced time limit.
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 while to figure out why installing a…
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 owned by the state, or closing eastern…
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. Basically, we have to stop 2/3 of…
> 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 call site. That is something I find…
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 needed afterwards. What you probably want…
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 value.
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, but whose proofs only said,…
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 edge of the screen. There are several…
I think the only reason to use json over the binary format is readability, so why care about this?
I agree. In particular in languages without null you will have a lot of Option types in the mapping. You no longer can generate useful type definitions from the proto spec.