Readit News logoReadit News
csunbird commented on The Age Verification Trap: Verifying age undermines everyone's data protection   spectrum.ieee.org/age-ver... · Posted by u/oldnetguy
fluoridation · 18 days ago
It doesn't sound simple. Now there needs to be some kind of pipeline that can route a new kind of information from the OS (perhaps from a physical device) to the process, through the network, to the remote process. Every part of the system needs to be updated in order to support this new functionality.
csunbird · 18 days ago
and is it easier to implement id checks for each online account that people have, had, and will ever have in the future?

parents need to start parenting by taking responsibility on what their kids are doing, and government should start governing with regulations on ad tech, addictive social media platforms, instead of using easily hackable platforms for de anonymization, which in turn enable mass identity theft.

csunbird commented on AI overviews cause massive drop in search clicks   arstechnica.com/ai/2025/0... · Posted by u/jonbaer
viraptor · 8 months ago
They will because that's how things are supposed to work. For example your preference about tracking will get stored for that site. The same as login details. Those are legitimate interests and you never get an option for them.
csunbird · 8 months ago
most of them try to argue serving ads and tracking is `legitimate interest`, which you have to disable manually
csunbird commented on The Cannae Problem   joanwestenberg.com/the-ca... · Posted by u/flobosg
BeFlatXIII · 10 months ago
One of my favorite anecdotes my history teacher shared was of Hannibal marching to the undefended Rome, throwing a spear at the gates, and walking away under the logic that if Rome could just throw away that many soldiers at Cannae, just how many more did they leave back home to defend the city?
csunbird · 10 months ago
They had two dedicated legions garrisoned in Rome, who did not participate in Cannae, from what I read (not sure)
csunbird commented on The Cannae Problem   joanwestenberg.com/the-ca... · Posted by u/flobosg
cwmma · 10 months ago
Rome recovered because if its literally unmatched in the ancient world ability to recruit armies and put orders of magnitude more men in the field as a portion of their population.

Hannibal never marched on Rome because he knew he could never take it. Doing a siege in the area most loyal to Rome would have been suicidal for his force.

csunbird · 10 months ago
Hannibal was basically in a hostile land, without proper logistics support. There was no way that he can stay still and lay siege, only way he was able to survive so far was his ability to stay mobile and live off the land.

In case of siege, the Romans would not need to fight, they could simply wait until his army slowly died from attrition.

csunbird commented on Making a smart bike dumb so it works again   francisco.io/blog/making-... · Posted by u/franciscop
franciscop · a year ago
I live in Tokyo, and only drive in the city center. 90% of me having a light is the legal requirement of having so, I virtually never need it since the streets I usually ride are well-lit. The remainder 10% is that I like the solid feel of the bike overall and felt sad for the integrated light not to work TBH.
csunbird · a year ago
When you are riding the bike in the city, the light is not for you to see things, it is for others to see and notice you.

Dead Comment

csunbird commented on Using uv and PEP 723 for Self-Contained Python Scripts   thisdavej.com/share-pytho... · Posted by u/thisdavej
singularity2001 · a year ago
uv add --script wordlookup.py httpx

# /// script # requires-python = ">=3.13" # dependencies = [ # "httpx", # ] # ///

import httpx

That seems pretty redundant. Why can't UV just infer the dependencies from the import statements?

csunbird · a year ago
which version of httpx?
csunbird commented on ForeverVM: Run AI-generated code in stateful sandboxes that run forever   forevervm.com/... · Posted by u/paulgb
paulgb · a year ago
Good question, we’ll add some info to the page for this.

LLMs are generally quite good at writing code, so attaching a Python REPL gives them extra abilities. For example, I was able to use a version with boto3 to answer questions about an AWS cluster that took multiple API calls.

LLMs are also good at using a code execution environment for data analysis.

csunbird · a year ago
> For example, I was able to use a version with boto3 to answer questions about an AWS cluster that took multiple API calls.

isn't that very dangerous? The LLM may do anything, e.g. create resources, delete resources, change configuration etc

csunbird commented on Teslas monitor everything – including you [video] from WIRED   youtube.com/watch?v=l7VHs... · Posted by u/mdhb
Fricken · a year ago
A couple days after that United Health CEO was assasinated they has video of the suspect from a deluge of sources and none of them were from busses or cars.

Nearly every business has cameras. More and more residential homes have porch cameras pointed at the street. Even if your vehicle isn't monitoring you, it has a license plate hanging off the back so it can be easily identified. We're all being tracked by our phones, and everybody else's phone will be used against you should you be caught acting weird in pubic. There are records of me in more databases than what's even knowable, the plot is so lost. We're back to being naked all the time, except now without the privilege of knowing who is looking at you.

I felt like people rallying against surveillance and tracking were beating a dead horse 20 years ago and I feel even more that way today.

csunbird · a year ago
Good thing is it is illegal to have video footage of public land where I live. You can only monitor exactly the entrance or your private land.
csunbird commented on The best way to use text embeddings portably is with Parquet and Polars   minimaxir.com/2025/02/emb... · Posted by u/minimaxir
intalentive · a year ago
The problem with Parquet is it’s static. Not good for use cases that involve continuous writes and updates. Although I have had good results with DuckDB and Parquet files in object storage. Fast load times.

If you host your own embedding model, then you can transmit numpy float32 compressed arrays as bytes, then decode back into numpy arrays.

Personally I prefer using SQLite with usearch extension. Binary vectors then rerank top 100 with float32. It’s about 2 ms for ~20k items, which beats LanceDB in my tests. Maybe Lance wins on bigger collections. But for my use case it works great, as each user has their own dedicated SQLite file.

For portability there’s Litestream.

csunbird · a year ago
Parquet files being immutable is not a bug, it is a feature. That is how you accomplish good compression and keep the columnar data organized.

Yes, it is not useful for continuous writes and updates, but it is not what it is designed for. Use a database (e.g. SQLite just like you suggested) if you want to ingest real time/streaming data.

u/csunbird

KarmaCake day1965September 3, 2018View Original