HackerTrans
TopNewTrendsCommentsPastAskShowJobs

tillulen

no profile record

Submissions

Msty – privacy-first AI studio

msty.ai
2 points·by tillulen·6 mesi fa·0 comments

What's Missing from HTML and CSS?

developer.chrome.com
2 points·by tillulen·2 anni fa·0 comments

Bret Victor: impossible dreams, or so it seems

worrydream.com
5 points·by tillulen·2 anni fa·0 comments

rust_core – Rust core library patterns in Dart

github.com
3 points·by tillulen·2 anni fa·0 comments

Entropic Engineering DEFCON 32 Statement

entropicengineering.com
220 points·by tillulen·2 anni fa·158 comments

Open-source tests of web browser privacy

privacytests.org
2 points·by tillulen·2 anni fa·0 comments

Nym – the next generation of privacy infrastructure

nymtech.net
21 points·by tillulen·2 anni fa·4 comments

DNS Attack Vector Exploited in the Wild

blogs.infoblox.com
2 points·by tillulen·2 anni fa·0 comments

Foundation Agents for Decision-Making

venturebeat.com
2 points·by tillulen·2 anni fa·1 comments

An interactive review of the Oklab color space

raphlinus.github.io
1 points·by tillulen·2 anni fa·0 comments

The complications of typographic size on the web

fonts.google.com
2 points·by tillulen·2 anni fa·0 comments

Brave Privacy-Focused AI Answer Engine

brave.com
8 points·by tillulen·2 anni fa·3 comments

Amazon EC2 Instance Comparison

instances.vantage.sh
2 points·by tillulen·2 anni fa·0 comments

Perspective API: using machine learning to reduce toxicity online

perspectiveapi.com
1 points·by tillulen·2 anni fa·1 comments

Markdoc – a flexible Markdown-based authoring framework built by Stripe

markdoc.dev
1 points·by tillulen·2 anni fa·0 comments

0-Days in the Wild: Root cause analyses

googleprojectzero.github.io
1 points·by tillulen·2 anni fa·0 comments

I Feel Love for Others (2019)

jeffreythompson.org
2 points·by tillulen·2 anni fa·0 comments

A new way to visualize general relativity [video]

youtube.com
3 points·by tillulen·3 anni fa·0 comments

Lib.rs – catalog of Rust programs and libraries

lib.rs
5 points·by tillulen·3 anni fa·0 comments

High-Performance Computing

github.com
3 points·by tillulen·3 anni fa·0 comments

comments

tillulen
·mese scorso·discuss
Did you use Mythos or Fable?
tillulen
·anno scorso·discuss
How much does a Firefox 0-day cost these days on the grey market compared to a Chrome 0-day with sandbox escape?
tillulen
·2 anni fa·discuss
On Telegram, even private messages are not end-to-end encrypted by default. The so-called secret chats are end-to-end encrypted but are a major pain to use.
tillulen
·2 anni fa·discuss
Private messages aren’t end-to-end encrypted either. The so-called secret chats are end-to-end encrypted but are a major pain to use. I doubt that feature sees much use.
tillulen
·2 anni fa·discuss
I would like to sort comments by the level of the author’s expertise in whatever they are discussing. HN is a goldmine, but finding valuable knowledge within heated or elaborate discussions requires too much commitment to read through everything.

A weighted number of a comment’s upvotes is one signal. However, I can often tell when an author has deep knowledge or comprehensive experience with a subject just by reading their comment.

Do you think it might be possible to automate that kind of judgment?
tillulen
·2 anni fa·discuss
It looks like a case of managerial miscommunication. Entropic seems to have expected that sending emails with higher budget estimates would give DEFCON the opportunity to say no if they did not agree, and took the lack of response as a sign of DEFCON’s agreement to the new budget. DEFCON seems to have either not read or ignored those emails and expected Entropic to work within the originally agreed-upon budget.
tillulen
·2 anni fa·discuss
Anytype looks promising. It’s at the top of my list of collaborative workspace tools to try.
tillulen
·2 anni fa·discuss
I tried Coda a few months ago. The feature set was very appealing. Coda turned out to be slower and more buggy than Notion, especially when routinely working with databases. The typography and graphic design were also less polished. I kept using Coda until I could no longer tolerate its issues and then have moved everything to Notion.
tillulen
·2 anni fa·discuss
Paper: https://arxiv.org/abs/2405.17009
tillulen
·2 anni fa·discuss
https://archive.is/PnDzt

https://web.archive.org/web/20240531225301/https://www.hudso...
tillulen
·2 anni fa·discuss
GPT-4-turbo-2024-24-09 (temperature = 0.7) just told me a horse had one “frog” per hoof and went on to clarify that a frog does not refer to the amphibian but to a part of the horse’s hoof.

Gemini Pro (the current web chat version) gave a similar answer, either no frogs or four depending on the intended meaning, and showed a photo of a hoof. All 3 drafts agreed on this.

Other models I have tried said a horse had no frogs. That includes gemini-1.5-pro-api-0409-preview as provided by the Chatbot Arena (temperature = 0.7, 2 tries).
tillulen
·2 anni fa·discuss
I admire Daniel Lemire’s work on SIMD implementations. [Lemire]

[Lemire] https://lemire.me/en/#publications

I learn a lot by reading my compiler’s and profiler’s documentation.

For Rust, the Rust Performance Book by Nicholas Nethercote et al. [Nethercote] seems like a nice place to start after reading the Cargo and rustc books.

[Nethercote] https://nnethercote.github.io/perf-book/

Algorithms for Modern Hardware by Sergey Slotin [Slotin] is a dense and approachable overview.

[Slotin] https://en.algorithmica.org/hpc/

Quantitative understanding of the underlying implementations and computer architecture has been invaluable for me. Computer architecture: a quantitative approach by John L. Hennessy and David A. Patterson [H&P] and Computer organization and design: the hardware/software interface by Patterson and Hennessy [P&H ARM, P&H RISC] are two introductory books I like the best. There are three editions of the second book: the ARM, MIPS and RISC-V editions.

[H&P] https://www.google.com/books/edition/_/cM8mDwAAQBAJ

[P&H ARM] https://www.google.com/books/edition/_/jxHajgEACAAJ

[P&H RISC] https://www.google.com/books/edition/_/e8DvDwAAQBAJ

Compiler Explorer by Matt Godbolt [Godbolt] can help better understand what code a compiler generates under different circumstances.

[Godbolt] https://godbolt.org

The official CPU architecture manuals from CPU vendors are surprisingly readable and information-rich. I only read the fragments that I need or that I am interested in and move on. Here is the Intel’s one [Intel]. I use the Combined Volume Set, which is a huge PDF comprising all the ten volumes. It is easier to search in when it’s all in one file. I can open several copies on different pages to make navigation easier.

Intel also has a whole optimization reference manual [Intel] (scroll down, it’s all on the same page). The manual helps understand what exactly the CPU is doing.

[Intel] https://www.intel.com/content/www/us/en/developer/articles/t...

Personally, I believe in automated benchmarks that measure end-to-end what is actually important and notify you when a change impacts performance for the worse.
tillulen
·3 anni fa·discuss
Are there upstream providers in the US or EU that are known to deal with this kind of attacks in a more thoughtful way?