HN user

Grollicus

1,054 karma
Posts0
Comments228
View on HN
No posts found.

The main argument for this seems to be that they catch many pedos by using image recognition tech on facebook etc.

Thus, discontinuing the permit to use these techniques did have enforcement numbers of those crimes found drop significantly.

I'm wondering if they've given up real policing of these crimes completely?!

Spreading pedo content on Facebook, those people have to be the dumbest of the dumb? Everyone spending even a single critical thought on their crimes won't be caught by this.

And they say enforcement numbers drop significantly? Meaning they don't catch many other people? What the fuck are they even doing? Did they completely give up trying to find the real criminals, and instead fall back on sugar-coated figures to conceal that failure?

Our Mercedes:

- beeps about the speed limit, especially if it misses a sign. For example every time starting on a parking lot it keeps the 5 kph even after multiple turns

- warns about leaving the lane, including trying to stay on the lane by slightly couter steering while ignoring yellow construction lines

- Sometimes when moving off from a standstill in a queue, it triggers all "careful you're about to crash into something"-warnings. I suspect it's detecting exhaust gasses from a car in front?

- You must not, ever, touch the turn signal to announce your will switch lanes soon, while there is still a car next to you. You'll get a loud, obnoxious warning tone. This one is especially annoing as it makes sleeping as a passenger on the autobahn basically impossible.

Stop Using JWTs 1 month ago

I'm right now adding rabbitmq for notification pushing to a website. Using JWT authentication to control where and what clients are allowed to read, with short lifetimes and regular token refresh.

I don't see another setup that comes close to the ease of setting this up - add an endpoint that provides jwt tokens to valid sessions, done. With user-individual permissions.

That's intersting to see.

Does the api support progress reporting? ("30 % done")

Of course one could build this manually when you're building the worker implementation but I'd love to have it reflected in the api somewhere. Celery also seems to be missing api for that.

Anyone sees a reason why that's missing? I don't think it complicates the api much and seems such an obvious thing for longer-running background tasks.

I've tried the Kolbenrückholfeder of your shops non-ai-predecessors fame: https://etel-tuning.eu/produkt/tuning-kolbenruckholfeder/

Didn't work out that well, sadly. At first it gave me a greek pillars, then when trying english translations it at least gave me some springs.

It knew the https://anycrap.shop/product/airhook. But only for light loads like snacks and the "heavgy duty airhook" it wanted to sell me is for a clothesline. While useful, I'm afraid your product engineers have to spend some more time so that we can reliably suspend cars from the air again.

I know they are worlds apart, but just look at what happened in Nepal...

They let hotel inhabitants leave before burning it down. The finance minister got caught by the mob and survived. Does make it seem quite controlled, imo.

One issue I have with her is her insistence that alternative video platforms, such as Odysee/LBRY, will never have a chance against YouTube

Youtube is free to do whatever they want on their own platform, within the law. Arguing that they dominate the market brings antitrust laws into play here. On these grounds their TOS about ContentID (basically we'll decide whatever we want and you'll take it) can be evaded.

That may be technically correct, but doesn't count in front of a judge. They generally don't care for implementation details but they care for the results. And the result is that you made your visitor talk to google.

The worst thing (for me) about this is that whenever I go to the Apple App store I get bombarded will all these "games" that just try to make my life actively worse.

I don't understand why they pollute their brand like that.

I used this as a backup target for the longest time. Simply split the backup file into 10 MB chunks and send as mails to a gmail account. Encrypted so no privacy problems. Rock solid for years.

And as it was just storing emails it was even using gmail for it's intended purpose so no TOS problems..

There'll be a bunch of cheap singular apartments spread all over the US - let's for convenience's sake assume they're about a one hour drive apart from each other but that's a totally random number of course.

You can rent them for very cheap but just as you're about to move in they suddenly become unavailable for whatever reason? Probably the owner lost their keys or something and then lawyers can argue for years if the owner is actually required to hand over the keys. Or maybe the apartment has no way to enter and lawyers can now argue for years if an apartment needs to have a door?

At least that's what I can imagine would happen.

I could not just approach my employer and ask if I could help code this open source project

I've open sourced multiple (small) changes I've made to various open source projects on company time. Usually it's projects we use and where I've either fixed bugs or added a small feature that we could use.

Employer doesn't have to apply patchsets to our dependencies and doesn't have to keep them up to date. Everyone else gets the fixes as well. => Everyone wins. Employer sees that.

I do agree with you. I'd go even further and say using vue helps build more maintainable websites in that it encapsulates components and thus keeps related things together. Also that it provides a separation of the data model and how it is displayed, so one can reason about both things separately.

But, all that are not things this article is about. They just name five specific things you meet regularly in web design and that don't need JS anymore. And in that case it's valid as the browser will generally do things better than you do yourself, be more accessible and integrate better into different platforms / OSes.

They seem to store all translated strings in a single jsonfield instead of using a separate column for each language.

That means there's a bit more overhead while loading (and you can't exclude unneeded language fields), but it allows dynamically changing languages during runtime without needing a migration.

I'm currently thinking about the multi table search problem and lean towards updating the index table in the ORM (save method of the corresponding Django models in this case). Postgres doesn't seem to support incremental updates of materialized views yet, and always recomputing the whole table just because some few rows changed seems very much overkill to me. That it integrates better into the rest of the app and makes configuring the indexed columns easier is just a bonus.

Not that Postgres probably wouldn't handle the full table refresh effortlessly as it generally does - at least at my scale. But that feels kind of icky to me and I'm surprised there doesn't seem to be a better solution for this yet - everyone building a search function for their site must run into this and I'd expect it to scale terribly at dimensions startups generally aim at.