HN user

c-fe

812 karma
  c  [at]   c f  x [dot] l u
Posts4
Comments166
View on HN

will claude platform on aws offer the same nerfed (dumb) opus 4.5/4.6/4.7 of the recent weeks, or will it be possible to use opus 4.5/4.6 from february/march?

Maybe it arrives while the first request is still running. Now your idempotency layer is part of your concurrency control.

I recently designed a system where this had to be taken into consideration. I find my solution very elegant: When the request arrives, I put the pending request into a map, keyed by the idempotenceId. This whole operation is executed in one step. Now the event loop may process other requests. If one of them has the same key, it will await the same response object from the store. And then, once i have the response, I resolve both promises with it.

Swift 6.3 4 months ago

funnily enough, I talked recently to someone working on the swift compiler (not an Apple employee) to make Swift functions differentiable. So its not all dead yet

Write-only code 5 months ago

In the Write-Only Code story, that same engineer becomes a systems designer, a constraint writer, and a trade-off manager.

This is also what I see my job to be shifting towards, increasingly fast in recent weeks. I wonder how long we will stay in this paradigm, I dont know.

uninstall the app. Works really well to me. The conscious effort of reinstalling it is enough to prevent me from doing it. Whereas using the awfully implemented screentime guards, I just find myself clicking on "Allow for 15 minutes" before I even understand what I do.

Is OpenAI Dead Yet? 6 months ago

Im not sure I like that market in particular, but probably polymarket is indeed the best one… assuming the market will resolve fairly

Is OpenAI Dead Yet? 6 months ago

Exactly. I would prefer to remain invested as I dont want to time the market. But I would prefer if I could meaningfully reduce exposure to OpenAI and the consequences of their possible downfall.

Is OpenAI Dead Yet? 6 months ago

As a retail investor mostly invested into broad ETFs (All World), is there any way I can get short exposure to OpenAI? Being short Oracle/Nvidia/Microsoft?

Impeccable Style 6 months ago

I was about to write the same. I scrolled through it but I dont understand what it is.

<1MB is also relatively easy to reach with swiftui apps. I had two fully working ones in the app store below 1MB. They are removed now since I didnt pay the yearly 100€

i am still skeptical about HDR as pretty much all HDR content I see online is awful. But this post makes me believe that Lux/Halide can pull of HDR in a way that I will like. I am looking forward to Halide Mk3.

Congrats to you too! Indeed, I think they could have improved the visual and comparison part, its a bit dark and not too interesting to look at. But I am envious of how smooth their tiling is. My tiles are 4096x4096 which allows me to satisfy both the 20,000 file limit and the max 20mb file limit imposed by cloudflare. I had some issues with smaller tiles, and wanting to host it on cloudflare restricted me from doing 512x512 tiles iirc. Also I really like that they extracted the publisher information and put that as a pmtile vector, thats something I attempted but ultimately ran out of time with.

Annas Archive has both books in their archive, but they also have other datasets that connect a book ISBN to the metadata (title, author, publisher, ...).

In my visualisation https://isbnviz.pages.dev you can see which books they actually have the files of (blue) and which ones they know exist because they have the metadata from some other source (like google books, ...) (red). Finally, there are also ISBNs not contained in any of the sets that Annas Archive has, and these are either assigned or not assigned. A lot of the 979 prefixed ISBNs are not assigned, that means, no country/publisher has the right to assign them to a book. Other ISBNs are assigned to a publisher, but they just haven't published a book with that ISBN yet. Or they may have published a book, but Anna's archive doesnt know about the book because its not in their (or the ones they scraped) dataset.

Thanks! That is indeed all thanks to using the hilbert curve fractal which has the property that it maps numbers which are close together onto 2d (or higher dimensional) coordinates which are close together, its a very cool property! Its used in lots of contexts for that reason

Its due to how those ISBN ranges were handed out - I think they probably gave a block like 978-53 (for example) to those countries, meaning the right to distributed ISBNs 978-530-000-000 to 978-539-999-999 and then later they ran out or had all subblocks distributed to publishers, and then they got a new block further away (so not 978-54 in my example) and therefore those blocks are not numerically close to each other and thus also they are separate "islands" in the hilbert space.

I think the language problem will become less of a problem in the future due to (1) more (young) people living in citys and (2) all young people in cities speaking english. At least compared to previous generations imo. This could be my subjective view based on luxembourg, netherlands, and visiting other european cities.

I sometimes reminisce about the 2010-2020 deep learning and reinforcement learning etc era, as a student I did some projects in that domain back then and it felt very approachable and relatively easy to get into it compared to how I (most likely subjectively) see it today as a developer (in a different field).

I remember I doing a project in my second bachelor semester, where I generated random 64x64 images of a simple maze with a start and finish and then I tried to train a RNN algorithm that could navigate unseen mazes. There are so many better ways and algorithms to do it, but I learned a lot of cool tech anyway with this approach.