HackerLangs
TopNewTrendsCommentsPastAskShowJobs

rattray

no profile record

Submissions

Rowspace launches with $50M to help investors scale their alpha with AI

rowspace.ai
15 points·by rattray·5 miesięcy temu·0 comments

comments

rattray
·29 dni temu·discuss
I think that gets you access to mythos, which doesn't have the safeguards. It's configured as a separate model.
rattray
·2 miesiące temu·discuss
GP seemed to be commenting on the Trump administration, not necessarily individuals of conservative persuasion. The Trump administration diverges materially from traditional conservative doctrine in many ways.
rattray
·2 miesiące temu·discuss
> ... and their team is joining Anthropic to build, who knows, some dumb integration to make Hubspot data available in Claude, or something equally as boring.

Fun fact, I named it "Stainless" after Stainless Steel pipes, likening ourselves to a high-end plumbing supply shop. If you look at the earliest versions of stainlessapi.com on archive.org, you'll see our original motto was "Quality fittings for your REST API".

All that is to say, the incredibly "boring" infrastructural work of making "boring" APIs like Hubspot's more usefully accessible is absolutely the kind of thing I'm excited to do at Anthropic :)

(It also happens to be what got us all excited to work at stainless in the first place, but of course, we understand it's not for everyone!)
rattray
·2 miesiące temu·discuss
Aww, well this thread is a nice surprise :) thanks for the kind words!
rattray
·2 miesiące temu·discuss
TypeSpec is awesome!!

(disclaimer: founder of Stainless and also friends with creator of TypeSpec)
rattray
·2 miesiące temu·discuss
darn! anything else i missed?
rattray
·2 miesiące temu·discuss
Hmm, that's one explanation, but I'm curious what leads you to believe it's the correct one?

I'm struck by this quote, which I'd be surprised if they could be explained fully by the distraction-reduction mentioned:

> "Evaluation of symptoms on the Parent Global Impressions found that the treatment group at the end of part 2 improved more than the placebo group in part 1 on nearly all symptoms, with statistically significant improvements in GI, receptive language, and average of all symptoms. There were also marginally significant improvements in tantrums, stimming/perseveration, and cognition."
rattray
·2 miesiące temu·discuss
> Prior to the study, 83% of participants had "severe" autism. Two years later, only 17% were rated as severe, 39% as mild or moderate, and incredibly, 44% were below the cut-off for mild ASD.

Pretty incredible if true!
rattray
·2 miesiące temu·discuss
> why not just build a translation tool for it?

They did ;) a highly dynamic one...
rattray
·2 miesiące temu·discuss
It's possible that use of `contenteditable` and ability to save the file could help but that has a lot of limitations/gotchas, so I'm inclined to agree.
rattray
·2 miesiące temu·discuss
Cool! How'd you build it / what made it work so well?
rattray
·2 miesiące temu·discuss
Aren't there high quality cables available? Eg from companies like Apple or Anker?

I struggle to understand why an Apple lightning cable would be more robust than an Apple thunderbolt cable...
rattray
·3 miesiące temu·discuss
https://archive.ph/U7i8q
rattray
·3 miesiące temu·discuss
I've been very curious about that too. I wonder if it's actually much better at admitting when it doesn't know something, because it thinks it's a "dumber model". But I haven't played with this at all myself.
rattray
·3 miesiące temu·discuss
Has anyone tried both jj and gitbutler extensively yet? Both seem to have some interesting new ideas on top of git.
rattray
·3 miesiące temu·discuss
What's your naming scheme?
rattray
·3 miesiące temu·discuss
Abandoned open-source projects with poor code quality are nothing new.

The merits of any project are yours to evaluate.

To me, I see some encouraging thoughtfulness here. However, again, it's true most projects like this don't achieve liftoff.
rattray
·3 miesiące temu·discuss
This seems awesome. Seems to address many of my armchair complaints about both Go (inexpensive) and Rust (bloated/complex).

I'm curious what compilation times are like? Are there theoretical reasons it'd be order of magnitude slower than Go? I assume it does much less than the rust compiler...

Relatedly, I'd be curious to see some of the things from Rust this doesn't include, ideally in the docs. Eg I assume borrow checking, various data types, maybe async etc are intentionally omitted?
rattray
·3 miesiące temu·discuss
Some details on how it works from a code comment:

Problem: DOM-based text measurement (getBoundingClientRect, offsetHeight) forces synchronous layout reflow. When components independently measure text, each measurement triggers a reflow of the entire document. This creates read/write interleaving that can cost 30ms+ per frame for 500 text blocks.

Solution: two-phase measurement centered around canvas measureText.

prepare(text, font) — segments text via Intl.Segmenter, measures each word via canvas, caches widths, and does one cached DOM calibration read per font when emoji correction is needed. Call once when text first appears.

layout(prepared, maxWidth, lineHeight) — walks cached word widths with pure arithmetic to count lines and compute height. Call on every resize. ~0.0002ms per text.

https://github.com/chenglou/pretext/blob/main/src/layout.ts
rattray
·3 miesiące temu·discuss
Regardless of the subject matter, the tweets announcing this are a masterclass in demoing why an architectural/platform improvement can be impactful.