Little goblin with catears. Unfinished projects, complaining about computers, reinventing the wheel (badly), has not fully read any docs since 2015. Certified cognitohazard. Proud bot parent to many failsons: @enojifier_bot @dreizehnzwoelf_bot Infosec related: https://infosec.exchange/collections/116931760660109009 Testimonials: "not helpful" @LucasWerkmeister "silly 😌" also @LucasWerkmeister All my opinions are that of my employer but they don't know it yet & I am not telling you were I work. Apropos: If you need some idiot to kick computers for purposes of making them secure hmu, this job fucking sucks (vulnerability management, automation/engineering for your soc/isrt, ...). PFP by Jen
nyan
@nyanbinary@infosec.exchange
infosec.exchange
Replying to
@nyanbinary@infosec.exchange
@ajn142@infosec.exchange so, some basic sketch for how to do this ethically...
Use https://docs.joinmastodon.org/methods/push/ to receive notifications, ideally maintain SOME state for rate limiting misbehaving users/instances, https://docs.joinmastodon.org/methods/accounts/#followers to get a list of users that opted in, https://docs.joinmastodon.org/methods/statuses/#create to create responses to the post in question (direct, splitting all followers into buckets so they fit in one message)...
𓂆✊🇵🇸 Diaa-Ayyad 97
@DiaaMahmoud097@ieji.de
Diyaa | 28 | #Gaza 🇵🇸 I swear I am not a scammer. I am just a person trying to survive under very difficult conditions. If you want to verify me, you can ask me anything. 🙏 There are 9 people relying on this fundraiser to survive. 👨👩👧👦 Please consider donating or sharing the campaign: https://chuffed.org/project/193219-support-diyaa-after-devastating-injury ✅Verified by https://lifeline4gaza.com/share/1142 🤍 ✅Verified by #GazaVerified https://gaza-verified.org/people/@DiaaMahmoud097@ieji.de/
ieji.de
RE: https://ieji.de/@DiaaMahmoud097/116968103003114740
💔 It's now 2:15 AM... and I'm still waiting.
I'm still hoping for one message from a kind, generous person with a compassionate heart who is willing to help us create a new fundraising campaign for my brother, Diaa, after our previous campaign was closed.
I'm not asking for the impossible. I'm simply looking for someone who chooses to be the reason a person in urgent need of medical treatment gets another chance.
If you can help, or if you know a trustworthy person who can create the campaign, please send me a message. And if you can't, please share this post—it might reach the one person who can.
May God send us someone who makes this night the beginning of hope. 🤲💙
#HelpDiaa #SaveDiaa #Gaza #Palestine #genocide #chuffed #create #donationcampaign
Replying to
@staircase@programming.dev
I had found myself reinstalling and reconfiguring a lot of the same things over and over while distro hopping, so I came up with a bash script with some of the most common configuration changes and such. As an example, here is my Fedora post=install script:
script
#!/usr/bin/env bash
# remove all permission restrictions from current directory
#sudo chmod -R a+rwX .
sudo hostnamectl set-hostname [redacted]
# prompt for ssh password to use later
if [[ $1 == "" ]]; then
read -p "Enter ssh password: " ssh_pass
else
ssh_pass=$1
fi
# default dnf prompts to 'y'
sudo sh -c "echo 'defaultyes=True' >> /etc/dnf/dnf.conf"
# install packages that are needed to add repos and other packages
sudo dnf up -y && sudo dnf in curl flatpak wget -y
#add repos
sudo dnf copr enable lilay/topgrade -y
sudo dnf copr enable aflyhorse/libjpeg -y
sudo dnf config-manager addrepo --from-repofile=https://repository.mullvad.net/rpm/stable/mullvad.repo
sudo dnf in https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm -y
sudo dnf in https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm -y
sudo sh -c 'curl -fsSL https://repo.librewolf.net/librewolf.repo | pkexec tee /etc/yum.repos.d/librewolf.repo'
sudo flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
echo -e "[gitlab.com_paulcarroty_vscodium_repo]\nname=gitlab.com_paulcarroty_vscodium_repo\nbaseurl=https://paulcarroty.gitlab.io/vscodium-deb-rpm-repo/rpms/\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg\nmetadata_expire=1h" | sudo tee -a /etc/yum.repos.d/vscodium.repo
#install packages
sudo dnf in augeas-devel btop cairo-devel cairo-gobject-devel cargo cmake codium dbus-devel expat-devel gifsicle gimp git kde-connect kdenlive libavcodec-freeworld librewolf libxkbcommon-devel lightdm-gtk-greeter-settings mpv mullvad-vpn ninja-build openssh-server openssl openssl-devel pipx python3-dbus python3-devel python3-pip rpmbuild syncthing thunderbird topgrade vlc sshpass -y
sudo dnf in $(curl -s https://raw.githubusercontent.com/teervo/bitwig-fedora/refs/heads/main/bitwig-rpm.sh | bash -s 4.4.10) -y
sudo dnf swap ffmpeg-free ffmpeg --allowerasing -y
export PATH="$HOME/.cargo/bin:$PATH" && echo $'export PATH= \"$HOME/.cargo/bin:$PATH \"' >> ~/.bashrc
cargo install gifski cargo-updateflatpak install com.github.iwalton3.jellyfin-media-player -y
#pipx install numlockw
pip install pandas odfpy
#create ssh key, copy to servers
ssh-keygen -q -t rsa -N '' <<< $'\ny' >/dev/null 2>&1
hosts=("10.0.0.10" "10.0.0.11")
for host in "${hosts[@]}"; do
ssh-keyscan -H $host >> ~/.ssh/known_hosts && sshpass -p "$ssh_pass" ssh-copy-id -o StrictHostKeyChecking=no [redacted]@$host && ssh -q [redacted]@$host exit
done
#enable/start ssh server
sudo systemctl enable sshd
sudo systemctl start sshd
#add external drive to fstab to automount
directory_secondary_drive=$HOME/nvme
uuid=[redacted]
sudo blkid
sudo cp /etc/fstab /etc/fstab.bak
sudo sh -c "echo 'UUID=$uuid $directory_secondary_drive btrfs rw,auto,user,exec 0 0' >> /etc/fstab"
sudo mount -a
#copy over custom config files
directory_software=$directory_secondary_drive/sync/software
cp -r $directory_software/setup/configs/* $HOME/.local/share/
#install fonts
cp $directory_software/fonts/* $HOME/.fonts
fc-cache -vf
#set git credentials
git config --global user.name "[redacted]" && git config --global user.email "[redacted]@yourdomain.com"
#add aliases to bashrc
echo $'alias pipup=\'pip list -o | cut -f1 -d\'\\\'\' \'\\\'\' | tr " " " " | awk \'\\\'\'{if(NR>=3)print}\'\\\'\' | cut -d\'\\\'\' \'\\\'\' -f1 | xargs -n1 pip install -U; pip install -U cyberdrop-dl-patched\'' >> ~/.bashrc
echo $'alias up=\"topgrade -y && echo \'\\nChecking pip\\n\' && pipup\"' >> ~/.bashrc
echo $'alias e=\"exit\"' >> ~/.bashrc
#https://support.mozilla.org/en-US/kb/compact-mode-workaround-firefox
#print ssh key
echo $'\nPublic SSH key:'
cat $HOME/.ssh/*.pub
Note that I used [redacted] here in places for anonymity reasons. This could give you a decent starting point to do something similar.
Rent is past due, Mom sits laughing and playing having no idea that we will be ripped away from saftey in a few hrs
What can I do?
There's no where to go
I lose the last bits of what I use to #create #art #music and every other kind of media I have to offer
I've been too weak to stream on #Twitch for weeks
My battery is at 57%
I don't have savings, I never did.
When they knock we're done... Do I take clothes I can't wash? Do I take my bunnies' ashes, do I take food... Oh yeah
古代宗教 Antiqua Religio
古代において、宗教とは何だった!?
Quae religio apud antiquos fuit! ?
https://note.com/poison_raika/n/nf649743983df
<>
#Religion #subjugate #called #gods #people #believe #create #control #change #modern #elements #remain #well_known #fact #malicious #way
GP Print LTD
@gpprintltd@mastodonapp.uk
mastodonapp.uk
You've seen all posts