Welcome to Friendica.Eskimo.Com
Home of Censorship Free Hosting

E-mail, Web Hosting, Linux Shell Accounts terminal or full remote desktops.
Sign Up For A Free Trial Here
Please tell your friends about federated social media site that speaks several fediverse protocols thus serving as a hub uniting them, hubzilla.eskimo.com, also check out friendica.eskimo.com, federated macroblogging social media site, mastodon.eskimo.com a federated microblogging site, and yacy.eskimo.com an uncensored federated search engine. All Free!
Republican lawmaker nearly died amid new Florida abortion laws – but blames the left
Kat Cammack recounts emergency room ordeal but claims ‘fearmongering’ by Democrats and pro-choice activists sowing confusion among medical professionals
Florida Republican Rep. Kat Cammack has revealed that she almost died last year as a result of her state’s six-week abortion ban, which left hospital staff reluctant to treat her ectopic pregnancy for fear of criminal prosecution.
Cammack was only five weeks pregnant at the time, the embryo had no heartbeat and her own safety was in jeopardy, but nevertheless the congresswoman found herself forced to pull up the letter of the law on her phone to argue the case and even put in a call to Governor Ron DeSantis, without being able to reach him, before staff relented and came to her aid.
But surprisingly, given her ordeal, the representative does not feel the law itself is at fault and instead blames Democrats for scaring medical professionals into confusion over their responsibilities.
“There will be some comments like, ‘Well, thank God we have abortion services,’ even though what I went through wasn’t an abortion,” she said.
Dunno what the fuck else you wanna call it, but hey, gotta do those mental gymnastics.
Xlibre 25.0 : summer solstice release
How to use dd in Linux without destroying your disk
How to use dd in Linux without destroying your disk
This article is excerpted from chapter 4 ofOpensource.com
I have used dd a few times without destroying my disk, here is my simple recommendation to stay safe:
DON'T TYPE THE COMMAND DIRECTLY INTO THE TERMINAL!
What I mean is that you should open a text editor, type the dd command you want to run in the editor, let it sit for 5 min, go back to the text editor, find the OF path, doublecheck and verify that it is safe.
Correct misstakes, wait another 5 min and do the check again.
Once you are confident that the command is accurate, copy paste it into a terminal and run it.
Once, while typing a dd
command, I realised I was sleepy.
I deferred until next day.
Usually I keep partitionmanager open alongside, to cross-check my device selection.
Unlike having to use other CLI tools to determine if I have it right, I get some handy icons (like the USB drive symbol). Still, make sure to check the contents just in case it got bugged and set the icon to the wrong type of drive.
It just generally has more bells & whistles. "Kitchen sink"
But I use htop almost exclusively.
The strenghts and weaknesses of atproto and activitypub.
There is a lot bluesky gets right, and a lot it gets wrong, the same is true with Activitypub.
(Some) strengths of Atproto
Atproto is content-addressed, and portable. This means that posts can exist independantly of their original server.
Instead of giving posts a https
uri, which will stop working if a user moves servers or their server disappears, they give them at
uris.
For example, this post on bsky.app: bsky.app/profile/ponder.ooo/po…
Has the at://
link is: at://did:plc:i4bfh2tyxihe2ksplmtcoopk/app.bsky.feed.post/3lk4yrmyugc2f
.
The post does exist over https at https://porcini.us-east.host.bsky.network/xrpc/com.atproto.repo.getRecord?repo=did:plc:i4bfh2tyxihe2ksplmtcoopk&collection=app.bsky.feed.post&rkey=3lk4yrmyugc2f
.
Atproto is very easy to build apps on. For example, tangled.sh, frontpage.fyi and flushes.app are all apps built on atproto.
Atproto allows more flexibility in what an app can do, as opposed to lemmy or mastodon's api.
Atproto is better documented. The ActivityPub spec leaves a lot up to the reader.
Atproto has some really good moderation tools for users. People can make public blocklists of users, and people can subscribe to labellers, people or services which give users/posts a label.
Weaknesses of Atproto
almost everyone is on bluesky's PDSes. I thought mastodon.social and lemmy.world were bad, but the people on alternate PDSes altogether adds up to only a few thousand.
Its decentralised identifiers are actually completely centralised!
DID:PLC, their DID method, originally stood for placeholder, but they renamed it to Public Ledger of Credentials.
To use it, you have to use plc.directory.
You can use a DID:WEB DID, but if your website linked to it goes down you lose your identity.
(I find it extremely funny that its not actually a requirement for a decentralised identifier to be decentralised. )
Everything on the network has to be public to work.
since relays have to be able to collect all the information on the network for Appviews to be able to make use of that information, anyone can find out who's blocking someone, or who is on a list, or who's following who, with no way of hiding that information.
Private accounts and posts are impossible to do on atproto.
Since everything is public, DMs (for now) are centralised. They do seem like they want to change that though.
Strengths of ActivityPub
AP (ActivityPub) is better distributed. While it has large servers (like mastodon.social or lemmy.world (and threads, but we don't talk about threads)) the majority of users are not on those servers. There is no single point of failure. If bluesky disappeared tomorrow, atproto would still exist, it would just have a negligable amount of users.
One node in the network lets you do everything, as opposed to bluesky which has three parts (You can do stuff without a relay though). This means you can trust a lot less of the network.
ActivityPub scales better than ATProto. Atproto scales quadratically, meaning that having a lot of nodes in the network harms performance.
AP scales horizontally, meaning it works better with a lot of small servers.
ActivityPub can keep stuff private, like blocks and posts.
Though, a lot of implementations can leak posts.
Weaknesses of ActivityPub
The spec leaves so much out. They didn't propose a way to make sure requests between servers are validated, so mastodon chose HTTP signatures.
They didn't add any way of looking up handles, so mastodon chose webfinger.
A posts's id is its https uri, this means thatif a server goes down, stuff can't be fetched. A user can't move their followers if their server goes down (you can on ATproto). There is a standard to fix this, FEP-ef61, but it breaks compatibility with a lot of implementations.
Missing information is a problem. Its not really a problem on lemmy, but on mastodon likes and replies from other servers may not make it to your server at all (you can fetch replies in newer versions of mastodon though).
All this aside, I do think the two can coexist. I don't see anything like lemmy working on atproto. ActivityPub seems closer to social networking, as opposed to social media.
Something like facebook would be impossible to make on atproto, because not everything is made to be public.
I am hoping for a bridge, but good (bridgy is opt-in, making it useless).
like this
don't like this
Share a script/alias you use a lot
# Download clipboard to tmp with yt-dlp
tmpv() {
cd /tmp/ && yt-dlp "$(wl-paste)"
}
like this
rm
to be interactive so I don't accidentally delete something important and for mkdir
to create a parent directory if necessary.alias rm='rm -i'
alias mkdir='mkdir -p'
alias podup='podman-compose down && podman-compose pull && podman-compose up -d'
This extract function (which I didn't make myself, I got it from when I was using nakeDeb) has been pretty useful too.
function extract()
{
if [ -f $1 ] ; then
case $1 in
*.tar.bz2) tar xvjf $1 ;;
*.tar.gz) tar xvzf $1 ;;
*.bz2) bunzip2 $1 ;;
*.rar) unrar x $1 ;;
*.gz) gunzip $1 ;;
*.tar) tar xvf $1 ;;
*.tbz2) tar xvjf $1 ;;
*.tgz) tar xvzf $1 ;;
*.zip) unzip $1 ;;
*.Z) uncompress $1 ;;
*.7z) 7z x $1 ;;
*.xz) unxz $1 ;;
*) echo "'$1' cannot be extracted via >extract<" ;;
esac
else
echo "'$1' is not a valid file"
fi
}
nakeDeb | une Debian naked -but safe for work-
une Debian naked -but safe for work-nakedeb.arpinux.org
To answer your question realistically I did history | sed "s/.* //" | sort | uniq -c | sort -n
which returned as first non standard command lr
which from my grep lr ~/.bashrc
is alias lr="ls -lrth"
Share a script/alias you use a lot
OC by @als@lemmy.blahaj.zone
A while ago I made a tiny function in my ~/.zshrc to download a video from the link in my clipboard. I use this nearly every day to share videos with people without forcing them to watch it on whatever site I found it. What's a script/alias that you use a lot?
# Download clipboard to tmp with yt-dlp tmpv() { cd /tmp/ && yt-dlp "$(wl-paste)" }
alias zipcat='gunzip -c'
alias untar='tar -xzvf'
alias ping='ping -c3'
alias ..='cd ..'
alias ...='cd ../..'
alias ....='cd ../../..'
..
alias? I can't think of any case on top of my head, but it feels a bit sketchy. The more than 2 dots however I imagine is pretty safe.
No, never. I rarely use the 4 dots, but 2 and 3, all the time.
Tab completion shows this:
$ ..<Tab><Tab>
../ ... ....
($@ > /dev/null 2>&1 &)
Simple bash function that runs something fully detached even if its parent closes, and is not dependent on any software feature such as bash
Linux on the Behringer X32? Why? I mean, why not? | Chris Noeding
Linux on the Behringer X32? Why? I mean, why not?
In this video I'll take you on a journey setting up and uploading the Linux-kernel together with user-programs to the Behringer X32 - originally an Audio-Mix...YouTube
Sciaphobia
in reply to The Picard Maneuver • • •LandedGentry
in reply to Sciaphobia • • •