Readit News logoReadit News
acrispino commented on Hold Off on Litestream 0.5.0   mtlynch.io/notes/hold-off... · Posted by u/mtlynch
acrispino · 2 months ago
mtlynch, since you're a litestream+backblaze user, did you encounter this with 0.5.0? https://github.com/benbjohnson/litestream/issues/747
acrispino commented on Blocking LLMs from your website cuts you off from next-generation search   johnjianwang.medium.com/w... · Posted by u/johnjwang
acrispino · 5 months ago
Why was the link title changed?
acrispino commented on A faster way to copy SQLite databases between computers   alexwlchan.net/2025/copyi... · Posted by u/ingve
yellow_lead · 8 months ago
Litestream looks interesting but they are still in beta, and seem to have not had a release in over a year, although SQLite doesn't move that quickly.

Is Litestream still an active project?

acrispino · 8 months ago
seems like a new release is being worked on: https://github.com/benbjohnson/litestream/pull/636
acrispino commented on July 2024 Update on Instability Reports on Intel Core 13th/14th Gen Desktop CPUs   community.intel.com/t5/Pr... · Posted by u/acrispino
acrispino · a year ago
An Intel employee is posting on reddit: https://www.reddit.com/r/intel/comments/1e9mf04/intel_core_1...

A recent YouTube video by GamersNexus speculated the cause of instability might be a manufacturing issue. The employee's response follows.

Questions about manufacturing or Via Oxidation as reported by Tech outlets:

Short answer: We can confirm there was a via Oxidation manufacturing issue (addressed back in 2023) but it is not related to the instability issue.

Long answer: We can confirm that the via Oxidation manufacturing issue affected some early Intel Core 13th Gen desktop processors. However, the issue was root caused and addressed with manufacturing improvements and screens in 2023. We have also looked at it from the instability reports on Intel Core 13th Gen desktop processors and the analysis to-date has determined that only a small number of instability reports can be connected to the manufacturing issue.

For the Instability issue, we are delivering a microcode patch which addresses exposure to elevated voltages which is a key element of the Instability issue. We are currently validating the microcode patch to ensure the instability issues for 13th/14th Gen are addressed

acrispino commented on Redis re-implemented with SQLite   github.com/nalgeon/redka... · Posted by u/tosh
nalgeon · 2 years ago
Thought about it, decided to start with simpler and good enough option. The goal here is not to beat Redis anyway.
acrispino · 2 years ago
for what it's worth, the two pool approach is suggested here by a collaborator to github.com/mattn/go-sqlite3: https://github.com/mattn/go-sqlite3/issues/1179#issuecomment...
acrispino commented on Htmx vs. React: A Complete Comparison – Semaphore   semaphoreci.com/blog/htmx... · Posted by u/kiyanwang
SahAssar · 2 years ago
Any time someone shows only HTMX examples without error handling I feel like they have not tried it in an actual use case. To me it feels non-obvious how to handle these non-happy-path things without having to write client-side code which is what I understood HTMX promised to do away with.

In the traditional browser model that HTMX espouses to emulate and improve on we have form resubmitting (with a warning that it will resubmit data), we have different errors for if the server returns an error or if your wifi disconnected, etc. Those errors are perhaps not well designed, but they are there and explain what is happening. With HTMX (at least when I tried it) it just got swallowed and one had to write client side code to handle it.

acrispino · 2 years ago
Where is this promise on the htmx website?
acrispino commented on J vs. K by Example (2005)   olegykj.sourceforge.net/j... · Posted by u/Tomte
airstrike · 2 years ago
I read the K (K9) manual[0] and it points to https://shakti.com/ as the authoritative place to download K, but the download link is gone and Wayback Machine hasn't helped

[0] https://estradajke.github.io/k9-simples/k9/Introduction.html...

acrispino · 2 years ago
Look at one of the captures around the end of 2021.
acrispino commented on Express.js repo swamped with spam PRs thanks to YouTube tutorial   twitter.com/feross/status... · Posted by u/nailer
vunderba · 2 years ago
This was also a huge obnoxious issue when I think GitHub was offering some kind of promotional T-shirt for a certain number of open source related pull requests.

There needs to be a way to setup a filter that auto denies comment only based PRs, unless it comes from a dev with a certain minimum "reputation / contribution" threshold score.

acrispino · 2 years ago
You might be thinking of digital ocean's hacktoberfest
acrispino commented on The Design of SQLite4 (2014)   sqlite.org/src4/doc/trunk... · Posted by u/iamwil
anyfoo · 2 years ago
EDIT: It looks like something that mostly addresses my problem, “strict tables”, was added in 2021. Thank you everyone.

It seems this rewrite would not have addressed my biggest gripe with SQLite: Surprisingly, it is not actually type safe.

    SQLite uses a more general dynamic type system. In SQLite, the datatype of a value is associated with the value itself, not with its container.
https://www.sqlite.org/datatype3.html

That’s right, the type you give to a column when creating a table is merely a suggestion. This means at some point, TEXT may make it into a column where a NUMERIC is expected.

This actually caused a large scale problem in production once.

I still love SQLite, it’s the very best at what it does, but I’m a bit more careful now. The same documentation says SQLite uses dynamic typing so that you can “do more things” than with other databases, but for me this is akin to saying you can “do more things with assembly than with a high level language” (in both cases that’s mostly not even true).

I expect my SQL database to keep data from taking the wrong form. It looks like the SQLite 4 rewrite would at least have enabled constraints by default…

I think many would appreciate a “no surprises” strict, type safe mode in SQLite 3, for me this would complete it. Maybe that exists already?

acrispino · 2 years ago
Strict tables were added with 3.37.0, does that help? https://www.sqlite.org/stricttables.html

One issue I've run into while using strict tables is that since sqlite does not (yet?) have a dedicated type for timestamps, a driver like github.com/mattn/go-sqlite3 use the typename in the schema to determine when a column can be converted to a native time datatype. But STRICT tables only allow 6 specific typenames: INT, INTEGER, REAL, TEXT, BLOB, ANY

u/acrispino

KarmaCake day337March 11, 2013View Original