Live data from Hacker News

Viewing profile — brianpane

brianpane

HN member
Joined
Mon, Aug 08, 2011, 1:00 AM UTC
HN karma
108
Public activity
8 items

About brianpane

No profile information was provided.

Recent public activity

  1. comment
    Comment #49248384

    Have Eircodes improved the situation? I know they’re supposed to provide a postcode unique to a specific address, but I’m not clear on how thoroughly they’ve been implemented.

  2. comment
    Comment #47807372

    This seems ill-advised. The protocol as documented is trivially exploitable by reflection attacks. The cat next door said one meow, and now every cat in the neighborhood is wailing…

  3. comment
    Comment #47017659

    There is a rustls side project called Graviola that's building a fast crypto provider in Rust+ASM. It's taken an interesting approach: starting with an assembly library that's been…

  4. comment
    Comment #43387865

    I basically did manual PGO because I was also reducing the size of several integer fields at the same time to pack more into each cache line. I’m excited to try out the rustc+LLVM …

  5. comment
    Comment #43386768

    I contributed a number of performance patches to this release of zlib-rs. This was my first time doing perf work on a Rust project, so here are some things I learned: Even in a pro…

  6. comment
    Comment #3030232

    The way Chrome achieves this backward-compatibility is by using the SSL Next Protocol Negotiation (NPN) extension during SSL handshaking. When the browser is establishing an SSL se…

  7. comment
    Comment #2915342

    I've found Ragel ( http://www.complang.org/ragel/ ) to be a good compromise: it's less error-prone and easier to maintain a Ragel grammar than a handwritten lexer, but Ragel lets y…

  8. comment
    Comment #2858524

    In my experience, it's useful, even when writing high-level applications, to be aware of the relative cost of low-level operations. The "Numbers Everyone Should Know" slide from th…