HN user

r2b2

737 karma
Posts20
Comments62
View on HN
news.ycombinator.com 1y ago

Ask HN: What is your expierence selling a domain name?

r2b2
8pts2
www.chiark.greenend.org.uk 2y ago

Simon Tatham's Portable Puzzle Collection

r2b2
212pts53
news.ycombinator.com 2y ago

Ask HN: What are your favorite puzzles?

r2b2
4pts5
github.com 2y ago

Signal 7.0 released for iOS – Private Phone Numbers

r2b2
3pts0
news.ycombinator.com 2y ago

Ask HN: Which language has the clearest type syntax?

r2b2
6pts7
flame-odm.com 2y ago

Show HN: Flame – Data Model and Query Library for Firestore

r2b2
1pts0
news.ycombinator.com 2y ago

Photos of your home and pet on Rover are not private

r2b2
5pts0
news.ycombinator.com 2y ago

Ask HN: How would you build an interactive hex-grid for web?

r2b2
2pts2
news.ycombinator.com 2y ago

Ask HN: Where to find board game artists?

r2b2
1pts3
conscious.org 5y ago

Conscious Culture | Bridging Humanity with Execution

r2b2
1pts0
github.com 5y ago

Homebrew Compatibility on Apple Silicon

r2b2
2pts0
owlmail.io 5y ago

Introducing Incognito Email Addresses

r2b2
5pts0
science.sciencemag.org 5y ago

SARS-CoV-2 Reducing Transmission

r2b2
1pts0
www.youtube.com 5y ago

Bret Victor the Future of Programming

r2b2
12pts2
news.ycombinator.com 6y ago

Ask HN: Tips when changing your name?

r2b2
1pts0
www.covidshield.app 6y ago

Covid Shield - open source contact tracing app using Google + Apple APIs

r2b2
2pts1
news.ycombinator.com 6y ago

Ask HN: Have you used Firestore at scale?

r2b2
2pts0
www.stellar.org 6y ago

Stellar Development Foundation Burns 55 Billion Lumens

r2b2
2pts1
www.keybr.com 11y ago

Improve your touch typing

r2b2
413pts195
m.theatlantic.com 11y ago

The Miracle of Minneapolis

r2b2
82pts67
Roc Camera 9 months ago

This camera's attestation and zero-knowledge proof cannot verify that a photo is not AI generated. Worse, those "verifications" may trick people into believing photos are trustworthy or authentic that are not.

Similar to ad-clicks or product reviews, if this were to catch on, Roc cameras (and Roc camera farms) will be used to take photos of inauthentic photos.

Ultimately, the only useful authenticity test is human reputation.

If someone (or an organization) wants to be trusted as authentic, the best they can do is stake their identity on the authenticity of things they do and share, over and over.

Patients and providers should have the ability to shop and negotiate price directly with each other. No 3rd party will ever be in a better position to negotiate individualized care and prices for 350,000,000 people better than we (or our family) can for ourselves.

Currently, patients cannot price compare anything, not even for the exact same drug from two different pharmacies on the same street! To make it worse, most providers can't even make sense enough of the provider-insurer prices to shop on behalf of the patients.

To improve prices in healthcare, all care must have a price visible to all, paid by patients. Insurance should be required by law to publicly publish their reimbursement rates and immediately (48 hours) reimburse their insured patients for care at approved (in-network) providers.

This would end the current: impossible to self advocate, impossible for providers to advocate on behalf of patients, intractable insurer-provider price web.

Insurers and providers should never negotiate price. Providers should only be concerned with providing good care, how to classify/code it, and the amount they need to charge for that care to be financially viable. Insurers should only be concerned with how much they will pay out for each classification/code, and which providers they authorize as in-network.

Last, since there is a long tail of medical care that doesn't fit nicely into a code box, each plan should have a mandatory minimum coverage of something like 50% all unknown-care costs at in-network providers and pharmacies above $5,000 annually, with some annual cap.

As a society, if we want to further subsidize healthcare for those with lower economic means, and/or those who end up with catastrophic expenses, then that should be done on it's own, as two distinct standalone welfare programs.

I've found that as LLMs improve, some of their bugs become increasingly slippery - I think of it as the uncanny valley of code.

Put another way, when I cause bugs, they are often glaring (more typos, fewer logic mistakes). Plus, as the author it's often straightforward to debug since you already have a deep sense for how the code works - you lived through it.

So far, using LLMs has downgraded my productivity. The bugs LLMs introduce are often subtle logical errors, yet "working" code. These errors are especially hard to debug when you didn't write the code yourself — now you have to learn the code as if you wrote it anyway.

I also find it more stressful deploying LLM code. I know in my bones how carefully I write code, due to a decade of roughly "one non critical bug per 10k lines" that keeps me asleep at night. The quality of LLM code can be quite chaotic.

That said, I'm not holding my breath. I expect this to all flip someday, with an LLM becoming a better and more stable coder than I am, so I guess I will keep working with them to make sure I'm proficient when that day comes.

Firefox should make it clear that Firefox (browser) will not collect, transmit, nor sell user data beyond what is technically required for interaction between the browser and other computers over networks.

Anything less and people stop using Firefox.

If other Mozilla services need broader terms, those should be separate.

To somewhat mitigate the link-loading bot issue, the link can land on a "confirm sign in" page with a button the user must click to trigger the POST request that completes authentication.

Another way to mitigate this issue is to store a secret in the browser that initiated the link-request (Ex. local storage). However, this can easily break in situations like private mode, where a new tab/window is opened without access to the same session storage.

An alternative to the in-browser-secret, is doing a browser fingerprint match. If the browser that opens the link doesn't match the fingerprint of the browser that requested the link, then fail authentication. This also has pitfalls.

Unfortunately, if your threat model requires blocking bots that click too, your likely stuck adding some semblance of a second factor (pin/password, bio metric, hardware key, etc.).

In any case, when using link-only authentication, best to at least put sensitive user operations (payments, PII, etc.) behind a second factor at the time of operation.

To create private shareable links, store the private part in the hash of the URL. The hash is not transmitted in DNS queries or HTTP requests.

Ex. When links.com?token=<secret> is visited, that link will be transmitted and potentially saved (search parameters included) by intermediaries like Cloud Flare.

Ex. When links.com#<secret> is visited, the hash portion will not leave the browser.

Note: It's often nice to work with data in the hash portion by encoding it as a URL Safe Base64 string. (aka. JS Object ↔ JSON String ↔ URL Safe Base 64 String).

The syntax of your language is quite nice. I’d maybe change (for …) to (each …), (fun …) to (fn …), and (let …) to (def …) or (set …) depending on implementation details of variable assignment, but those are just aesthetic preferences :)

I love '{thing}' for string interpolation.

If you haven’t already, check out clojure, janet-lang, io-lang, and a library like lodash/fp for more syntax and naming inspiration.

Keep building!

  The list-style properties should be called marker-style, and list-item renamed > to marked-block or something.
I think list and list-item are clear.

How about just `mark` instead of `marker-style` to be consistent with other properties that decorate part of an element like `border` or `background`?

Yes, using a watch + compile + restart development environment where everything can be worked on locally reduces cycle time to 5ms, which is ~100,000x quicker than the 10m compile time in the parent post.

I've deployed 35,000+ lines of code to prod in 2023 with this flow. I've only had 2 small bugs.

This is by far the most efficient setup I've ever used.

• Ngrok only provides tunnels.

• Ngrok pulled a pricing bait-and-switch a year ago increasing prices to $240/year/user if you wanted a stable subdomain, even for bandwidth-trivial users.

-

Edit: Looks like they now have an $8/month/user tier for a single stable subdomain and now offer some edge hosting as well.

Money now is more valuable than money later.

As someone who has both built and sold software, it's simply to be able to sell software before it's complete. Without estimates, you can't sell something that doesn't exist yet.

This doesn't change the fact that requiring estimates is a bad idea if you want great software. The best software is built well, then sold.[0]

Great software later is more valuable long-term than bad software now.

--

[0] The best case is actually to sell software without a timeline. But most organizations are not able to operate this way.

Why mix regulation of two effects (sound and emissions)?

It's smarter to write regulation for each uniquely and directly.

Eg.

- Sound from air traffic shall meet <sound regulations> and when violated will incur automatic fees of <formula> amount.

- Air traffic emissions are required to meet <emission regulations> and will be taxed at <formula> amount (which should be used to offset pollution).

I'd love to see re-purchase delay[0] and re-purchase rate[1] as well. Useful looking at multiple highly rated products and products that you go through more quickly (Eg. many bathroom supplies).

--

[0] Time between a customer's purchase and re-purchase of a product.

[1] Percent of original buyers that buy again.

It's worth a lot of money for the ad-tech (consumer tracking) industry to understand.

If a domain only occurs once in a user database, it's likely to be a personal domain. A data broker that sees the same domain in a few different datasets (once in each) can be quite confident that the domain is an individual's.

On Mac, ⌘ + M minimizes a window (like on Windows) and ⌘ + H hides all of an app's windows.

You can then use ⌘ + Tab [+ Arrows] to get back to both minimized windows and hidden apps. Combined, this window-access flow is simple yet powerful.

Deno Is Webby 4 years ago

Deno is just a javascript runtime and standard library, so in theory you can already use coffeescript.