@JulianRota's banner p

JulianRota


				

				

				
1 follower   follows 1 user  
joined 2022 September 04 17:54:26 UTC
Verified Email

				

User ID: 42

JulianRota


				
				
				

				
1 follower   follows 1 user   joined 2022 September 04 17:54:26 UTC

					

No bio...


					

User ID: 42

Verified Email

I don't recall anyone actually being against body cams, aside from some griping about the cost. IME most cops want to wear them because they're great at rebutting false accusations of misconduct and brutality.

I haven't noticed the sibling's comment that BLM is actually against them now, though maybe I haven't been paying enough attention. I suppose it wouldn't surprise me all that much though. I still recall the case where the cops shot a black teenage girl who was actively in the process of stabbing another girl, it was caught on bodycam quite clearly, and BLM still threw a fit, though a bit more muted.

I think it's pretty well-accepted that an Iranian nuclear capability would likely result in a number of regional counter-moves, such as:

The regional Sunni Arab states may then perceive a much more serious threat from Iran. They would likely seek to either build their own nuclear weapons or come explicitly under the protection of one of the existing nuclear powers. We're talking Saudi Arabia, Emirates, Oman, Quatar, Yemen, Egypt, and Jordan. Iraq and Syria aren't usually seen as Sunni-aligned, but they may not necessarily take such a thing lying down either.

Israel has long maintained a policy of "nuclear ambiguity", refusing to explicitly confirm that they do have a nuclear arsenal. If Iran does openly have a nuclear arsenal, I would think Israel would change this policy.

It's also the status quo of nuclear geopolitics that nuclear powers are not allowed to attack or threaten non-nuclear powers with nuclear weapons. You can attack, invade, and conquer with conventional weapons, but nothing nuclear. Once you have your own nuclear weapons though, you're now fair game for other nuclear powers to more directly threaten.

So, maybe Israel and Iran openly pointing nuclear ballistic missiles at each other? Not sure if that's a good thing. At least they might both cool their jets a little with the constant proxy wars.

Maybe American nuclear weapons in Saudi Arabia? It's possible. There's precedent in America defending them from Saddam's invasion, and the Saudis don't seem terribly interested in manufacturing their own high-tech weapons. Or maybe they would ally with an openly-nuclear Israel? Both don't sound very likely now, but it's hard to see the Saudis just sitting idly by with an nuclear-armed Iran right across the Persian Gulf.

Who decides what it's "supposed to do"? What gives any such person the right to dictate that?

For that matter, how do you know there aren't already sites that work exactly the way you think, but you don't know about them, because they aren't as popular or well-advertised? That would imply that the way all existing well-known sites work is exactly how their users and their owners think they should work. I think private chat groups, as exist in pretty much every messaging app, are much more like this, but by their nature aren't well-known.

So by saying you want a law, as an "interesting experiment". Laws mean people will be fined, potentially lose their livelihoods, get thrown in jail, etc. Somehow I don't think the people who would be affected by such a law will find this "experiment" quite so "interesting". Particular when you are forcing every site and all of the users to do things they actively dislike to satisfy your notions about how they "should" work, when there are already alternatives that work that way.

Android app? Almost certainly a bad idea, unless you already have experience in building android apps and getting them onto your phone. Just figuring out how to build a "hello world" level app and get it onto your phone could easily take 8 hours by itself, much less setting up even a fairly basic UI that's functional. Using GSheets as a data store sounds like a bad idea too, way too much work to interface with. What I'd do is, in this order, following the steps until you think it's good enough or get tired of it or whatever:

  1. Open up dev tools network tab the next time you use the form. Note down everything about the request to actually reserve a spot and what it returns on success and failure.
  2. Put together a CLI script on your developer machine to make those requests. Iterate on that until you are able to successfully reserve a spot without using the website directly. Doesn't matter what language, Python is fine, just make direct HTTP requests, you almost certainly don't need full browser emulation.
  3. Hard-code in the info for your regular visitors, implement a decent CLI interface to make reservations for any of them. This is probably good enough for most people.
  4. Turn that script into a basic web server, running locally on the developer machine. A few simple HTML pages to interface with it you can use on the browser on your developer machine.
  5. If you still really want to use it on mobile, rework the CSS etc until those pages look good on a mobile browser
  6. You could leave it running on your developer machine or some other machine in your local network and access it from your mobile any time you're on your home WiFi. Or you could deploy it to a proper web server somewhere, probably for free, maybe using Google Cloud Run or something like that, to be able to use it on your mobile from anywhere. It'll be on a weirdo URL nobody can guess, so you can probably get away with no authorization. And the visitors are still hard-coded, so you'd need a redeploy to add or remove anyone, but that shouldn't be hard enough to be annoying.
  7. If you're still feeling ambitious, add a proper DB on the server to store visitor info, and web interfaces for managing them. Probably ought to do authorization too at this stage.
  8. For even more ambition, set it up so other residents can register themselves on your system, enter their own visitor lists, and reserve spots too. Then advertise it to other people in your building, or even people in other buildings that use the same system.

What does "fix" mean - what do you consider to be broken about it? What's the end-goal?

Of all of the things that people have ever said were bad about social media, I don't think the idea that a few people have tons of followers while most have few to none is on anyone's to 10 list.

Incidentally, I'm not sure the idea of specifically redistributing follows is meaningful, considering that basically every social media site pushes hard for you to use algorithmic feeds that show you a selection of things that an algorithm thinks you'll like or engage with rather than strictly people you follow. They can just as easily stick the random small-timers posts in more timelines and rate-limit the big accounts that you actually do follow, and probably nobody will really notice, aside from occasionally liking or following somebody they weren't already following.