It’s the new hyped up version of “no-code” or low-code solutions, but with AI so you have more flexibility to footgun.
Not any lazier. Script kiddies didn’t write the code themselves, either.
Are you talking about a warning for a self signed cert or for not using HTTPS?
My immediate reaction: It still looks like this, doesn’t it?
It doesn’t, but I feel like I saw this like a couple weeks ago. Does it still look like this on the website on mobile or something?
Depends on your perspective. Would it be fine for Meta Threads to replace it? Threads supports ActivityPub, so in some ways it likely interacts better with the fediverse.
If we agree that Threads isn’t a suitable replacement, then clearly there’s some criteria a replacement should meet. A lot of the things that make Threads unpalatable are also true of Bluesky, particularly if your concern relates to the platform being under the control of a corporation.
On the other hand, from the perspective of “Twitter 2.0 is now a toxic, alt-right cesspool where productive conversations can’t be had,” then both Threads and Bluesky are huge improvements.
Do you honestly think that’s because all the older toys got banned and not largely because toy companies sell whatever makes them the most money?
It’s largely the first one, at least according to The Man Who Killed Google Search.
See also the Hackernews discussion and this follow-up article by the same author (with links to an article with Google’s response, summaries of other discussions on the topic, etc.)
They aren’t. From a comment on https://www.reddit.com/r/ublock/comments/32mos6/ublock_vs_ublock_origin/ by u/tehdang:
For people who have stumbled into this thread while googling "ublock vs origin". Take a look at this link:
"Chris AlJoudi [current owner of uBlock] is under fire on Reddit due to several actions in recent past:
- In a Wikipedia edit for uBlock, Chris removed all credits to Raymond [Hill, original author and owner of uBlock Origin] and added his name without any mention of the original author’s contribution.
- Chris pledged a donation with overblown details on expenses like $25 per week for web hosting.
- The activities of Chris since he took over the project are more business and advertisement oriented than development driven."
So I would recommend that you go with uBlock Origin and not uBlock. I hope this helps!
Edit: Also got this bit of information from here:
https://www.reddit.com/r/chrome/comments/32ory7/ublock_is_back_under_a_new_name/
TL;DR:
- gorhill [Raymond Hill] got tired of dozens of "my facebook isnt working plz help" issues.
- he handed the repository to chrismatic [Chris Aljioudi] while maintaining control of the extension in the Chrome webstore (by forking chrismatic's version back to himself).
- chrismatic promptly added donate buttons and a "made with love by Chris" note.
- gorhill took exception to this and asked chrismatic to change the name so people didn't confuse uBlock (the original, now called uBlock Origin) and uBlock (chrismatic's version).
- Google took down gorhill's extension. Apparently this was because of the naming issue (since technically chrismatic has control of the repo).
- gorhill renamed and rebranded his version of ublock to uBlock Origin.
For anyone who didn’t click into the original post and whose client didn’t include its text, here are the instructions for opting out:
Opt-out. You can decline this agreement to arbitrate by emailing an opt-out notice to arbitration-opt-out@discord.com within 30 days of April 15, 2024 or when you first register your Discord account, whichever is later; otherwise, you shall be bound to arbitrate disputes in accordance with the terms of these paragraphs. If you opt out of these arbitration provisions, Discord also will not be bound by them.
Note that the forced arbitration clause applies only to Discord users in the US. The class action waiver appears to apply regardless.
This is also not a new addition to their TOS, but it does appear to require opting out again even if you already did, and to grant an additional opt out opportunity if you didn’t.
Do you not think it’s relevant to point out that:
- Only 3.7% of the protests involved vandalism or property damage
- Only 2.3% of the protests involved any sort of violence (excluding vandalism or property damage)
- Much of the violence was directed against the BLM protesters
- Much of the violence was begun or escalated by police (who are supposed to be trained to de-escalate)
- Much of the property damage and property damage was not linked to protesters
If 5% of the people involved at violent BLM protests were violent and if the numbers above reflected only protester initiated violence, then that would mean roughly 0.12% of BLM protesters (or 1 in a thousand) were violent. But since, as we know, most of the violence was directed against them, that number is probably more like 0.05%, or 5 in 10,000. Obviously that number would be much worse for the actual instigators of most of the violence (police and far-right Trump supporters).
Also weird that you say “like 30 people” died when it was more like 10:
- 8 BLM protesters
- 1 far-right, pro-Trump protester, who was shot by a self-identified anti-fascist protester who said he had been acting in self-defense
- the above anti-fascist protester, who was shot by police
Yes, there were like 25 deaths related to political unrest in 2020, but most of those were not at BLM protests. Source: https://www.theguardian.com/world/2020/oct/31/americans-killed-protests-political-unrest-acled
But hey, keep telling yourself that an active, intentionally orchestrated attempt by Trump and his supporters to violently overturn the results of our Presidential election was “basically the same thing lol” as a bunch of people who were protesting police violence and racism.
the next-generation Switch might still be able to hold its own in terms of graphics performance with Sony’s PlayStation 5 and Microsoft’s Xbox Series X|S in some optimized titles.
I’ll believe that when I see it.
I think the best way to handle this would be to just encode everything and upload all files. If I wanted some amount of history, I'd use some file system with automatic snapshots, like ZFS.
If I wanted to do what you've outlined, I would probably use rclone with filtering for the extension types or something along those lines.
If I wanted to do this with Git specifically, though, this is what I would try first:
First, add lossless extensions (
*.flac
,*.wav
) to my repo's.gitignore
Second, schedule a job on my local machine that:
.mp3
,.ogg
- possibly also with a confirmation that the codec is up to my standards with a call to ffprobe, avprobe, mediainfo, exiftool, or something similar), it encodes the file to your preferred lossy format.git status --porcelain
to if there have been any changes.git add --all && git commit --message "Automatic commit" && git push
Added album: "Satin Panthers - EP" by Hudson Mohawke
orRemoved album: "Brat" by Charli XCX; Added album "Brat and it's the same but there's three more songs so it's not" by Charli XCX
Third, schedule a job on my ~~remote machine~~ server that runs
git pull
at regular intervals.One issue with this approach is that if you delete a file (as opposed to moving it), the space is not recovered on your local or your server. If space on your server is a concern, you could work around that by running something like the answer here (adjusting the depth to an appropriate amount for your use case):
Another potential issue is that what I described above involves having an intermediary git to push to and pull from, e.g., running on a hosted Git forge, like GitHub, Codeberg, etc.. This could result in getting copyright complaints or something along those lines, though.
Alternatively, you could use your server as the git server (or check out forgejo if you want a Git forge as well), but then you can't use the above trick to prune file history and save space from deleted files (on the server, at least - you could on your local, I think). If you then check out your working copy in a way such that Git can use hard links, you should at least be able to avoid needing to store two copies on your server.
~~The other thing to check out, if you take this approach, is git lfs.~~ EDIT: Actually, I take that back - you probably don't want to use Git LFS.