Viewing profile — CasperDern
CasperDern
HN member- Joined
- Sun, Jun 03, 2018, 4:24 PM UTC
- HN karma
- 35
- Public activity
- 29 items
- HN profile
- View on Hacker News ↗
About CasperDern
No profile information was provided.
Recent public activity
-
comment
Comment #30587465
The kernel is relatively easy to compile and install, so I would think that's exactly what they did.
-
comment
Comment #30378006
Silero[0] seems to have decent performance (although you will have to some minimal coding). I believe there are better ones if you're willing to tinker a bit more. [0]: https://git…
-
comment
Comment #30229545
This can argument can be made for all essential products/services, what you are arguing seems to be effectively UBI causes additional inflation, which may or may not be true.
-
comment
Comment #30175267
> or any other identifying details in the request you transmit You can definitely still use GA if you really wanted to, just not in any way that uses PII (the default).
-
comment
Comment #30143127
The goal of the paper was not to get the best pattern fitter, but to see if it's even possible to do symbolic regression with a simple token-to-token prediction method.
-
comment
Comment #30143068
They used a fixed size transformer, where the vocab determines the functions and input/output range. So unless the model needs more 'memory' for your class of expression there woul…
-
comment
Comment #30096519
UI looks nice but is janky. Documentation is lacking, but sufficient. Longhorn works great (if you ignore CPU usage due to syncing when there's a lot of IOPS). Overal though self-h…
- story
-
comment
Comment #29963715
As inconsistent as it is, "AngularJS" is the correct spelling and casing, that's probably why it kept coming. Just check the official website.
-
comment
Comment #29891508
IANAL, but I think "to the extent allowed by the law" is a way to allow an overreaching (doing more than the law allows) contract to not be fully voided. It effectively allows you …
-
comment
Comment #29767325
> Unsigned does not mean "not negative", it means "modular arithmetic". Unsigned does mean non-negative (or rather no indication of negatives) as the sign of a number is just the p…
-
comment
Comment #29762109
It's actually an interesting discussion. After thinking about it for a bit, it seems like Google is a search company fronting for it's own ad business. In the early days their core…
-
comment
Comment #29668887
The talk: https://youtu.be/i_VsgT5gfMc (Unable to edit the parent)
-
comment
Comment #29668852
I recommend watching this interview with the creator of NFTbay, there are a lot of misconceptions on it's current usage. TL;DW: it's an immutable representation of some data (usual…
-
comment
Comment #29564095
I do not know about cloudflare's internals, but I believe the 6 connections limit is purely a browser thing. So it should be able to do as many connections as it's able to handle.
-
comment
Comment #29338156
Not an expert, but I don't think it's necessarily a weakness in the current applications of cryptography. In something like RSA a typical key is >=1024 bits, which is 1.7e308 possi…
-
comment
Comment #27169078
It's been a while, so I'm not sure if it will work on the newer models, but I used to use the xtensa-lx106-elf (patched from crosstool-NG[0]) toolchain to build my ESP8266 project …
-
comment
Comment #26924045
Yes, it's pretty common in the modern web (search terms: ECDH, TLS). In this case it would be as fast as any E2EE connection.
-
comment
Comment #26768771
> Typically 15% now. Only because of the (still ongoing) anti-trust lawsuit against them.
-
comment
Comment #26409361
> The customer scans the code, sees the amount to be debited, and presses OK. The amount then moves from one phone to another without the need for WiFi or another wireless network …
-
comment
Comment #26257119
The repository linked is just a part of the entire model so it can't be used as is. That said there is a completely implementation made by lucidrains[1] with some results, the only…
-
comment
Comment #21663605
Since KiCad 5.1 you can have more than 2 layers.
- story
- story
-
comment
Comment #20871949
RSA is pretty easy to implement, but hard to get right, PKCS#1v1.5 can be broken using padding attacks, and should not be used. OAEP is generally recommended. The entire RSA suite …