A daily game that challenges our understanding of human cultures. Ten objects. 5,000 years of human history. Guess where and when each artif
An interesting game where you are presented with 10 artifacts from the MET. You have to place where the artifact is from and what time period it is from. Each artifact scores up to 10,000 points, and you lose points the further away your guess is and how far off in time you are. You can only play once a day. Thanks to @baebeylik for showing this to me.
Today I scored really well. Yesterday ... not so much.
Since Israel and the US have started bombing Iran, Israel has bombed Gaza almost every single day. Conditions in the strip grow even rockier than they were before. Food scarcity is a huge problem and the medical needs of the people are not being met. People are dying.
Please consider helping my friend Hamza, whose large family is currently struggling with their health due to malnutrition. His fundraiser is here.
Iâm a busy man. Got two caution signs to remind me to slow down sometimes. Got a vibrating megaphone. Clocks. Radiation. Four goats. Got half a tank of simple columnar epithelial tissue. 60% through my day. Half a tank of gas. And itâs only 10:50.
i will preface this by saying that im not an it guy, i dont code or anything but i do love linux. after i found a distribution that i liked i found that finding open source alternatives and trouble shooting stuff etc became pretty satisfying. linux is like a puzzle that you can make into whatever you want if you have the right pieces. but i will apologize in advance to it peeps if i dont use the right technical term for something.
to start off with some technical stuff you have the linux kernel, then you have all the distributions based on said kernel that are customized to suit different needs.
"A kernel is a computer program at the core of a computer's operating system that always has complete control over everything in the system. The kernel is also responsible for preventing and mitigating conflicts between different processes. It is the portion of the operating system code that is always resident in memory and facilitates interactions between hardware and software components."
tbh i think of it like ice cream flavors. each distro is a different flavor but theyre all ice cream. so while anything that i say here is geared towards my distro of choice, cachyos, it would work on other distros, you would just want to find a tutorial to see the differences.
i have tried other linux distros, but cachy has blown me away by how well and fast everything works. i honestly think that if youre gaming or doing any kind of content creation its the way to go. for the sake of this post not getting stupid long im going to assume you have linux installed. if not here is a tutorial: "How to Install Linux."
starting out
thinking of content creators you would usually go to streamers, digital artists, photographers, gamers etc. so thats what this post (kind of guide?) is geared towards. so. if youre on your fresh cachyos install you can navigate to cachyos hello.
i have cachyos hello launch at start as its an easy way to update your computer.
go to apps/tweaks and click install gaming packages. thatll prompt it to download stuff that makes gaming easier on linux. also in cachyos hello go to install apps, which will open the gui (graphical user interface) of the package manager and you can install the heavy hitters, discord, obs and steam, pretty close to how you would on windows by clicking through the prompts. i also downloaded krita, libreoffice (awesome microsoft office alternative), and vlc (my preferred media player). theres also some cool stuff like opentoonz (2d animation), blender and darktable (RAW photo editing) in there.
when you download programs from your package manager (through the terminal or with the gui), youre installing them natively. there is something called a flatpak, which runs a sandboxed version of the program. its in the name of security so its sectioned off from the other stuff on your computer and so that a company can make one version, the flatpak, and it should work on all linux distros without issue. well get more into flatpaks later.
discord: finding json files
once you have all of that installed these are some tweaks that i did. sometimes the cachyos update of discord is a little behind the official discord update (usually less than a day tbh but if youre planning to log into a call not being able to before a collab stream would be bad) so you can navigate to the json of discord (basically just the settings txt file) and turn off that discord checks for updates before launching.
you will want to go here: ~/.config/discord/settings.json
and add this line somewhere in the file: "SKIP_HOST_UPDATE": true
it should look something like this. you can still update whenever its rolled out but youll be able to use discord uninterrupted while youre waiting.
obs: git, the aur and yay
obs almost works the same as on windows. the plugin structure is a little different but its not too bad once you know what to look for. you have the easy ones like this closed captions plugin. where all you have to do is download the linux zip, extract it and put it in this folder in your file directory: ~/.config/obs-studio/plugins.
then there are the harder ones like the move plugin. where you have to clone and build the plugin yourself from github. or the aitum multistream plugin where cloning and building it myself resulted in a cmake error so the best bet is to navigate to the aur and download it that way.
which sounds like A LOT. so let me explain.
something that makes linux so cool is how easy it is to just grab cool shit from github. but to do that well need to start talking about the terminal which seems to scare people.
so background, cachyos is based on another flavor of linux, arch. its super lightweight and customizable! but when you dont know what youre doing it can be scary. since cachyos is based on arch it used the same package manager and the same commands to navigate through the terminal.
you can follow this tutorial here: "How to Install Git on Arch," and just follow to first steps to install and verify that you installed it. ill be honest i havent actually needed to configure it as it works just fine without doing so.
after youve done that you can install all the cool stuff youve seen on github. going back to the obs move plugin you would type the following in the terminal to clone (download all the necessary files from github): git clone <repository link>
which is https://github.com/exeldro/obs-move-transition
still in the terminal, you want to navigate to where it downloaded by typing: cd <folder name in file directory>
which is usually the name of the program obs-move-transition
most github pages have instructions on how to actually build the thing. for the move plugin you would type: cmake -S . -B build -DBUILD_OUT_OF_TREE=On && cmake --build build
(i realized that i already had cmake installed when i wrote this but if you dont youll want to before try to set up the move plugin. you can install it with the command âsudo pacman -S cmakeâ then check that itâs installed with âcmake âversionâ)
youll see a bunch of stuff pop up in the terminal and once its done, you should be able to see the folder for it in your file directory.
youll navigate to /home/*your username*/obs-move-transition/build/ and there should be the actual plugin move-transition.so. thats what youll put in your obs plugin folder from earlier. youll might have to make a few new folders but it should be nested like this: /home/*your username*/.config/obs-studio/plugins/move-transition/bin/64bit/
git is cool but theres another really cool thing that cachy has because of being based on arch. and thats the aur, the arch user repository. it hosts packages made by the community. in order to install these packages i personally use yay. and heres a tutorial for how to install it here, i followed option 1: "How to Install yay on Arch Linux."
but going back up to the obs plugin example, its similar to what we did earlier. first youd have to find the aur version of the aitum multistream plugin then you would type: git clone https://aur.archlinux.org/packages/obs-aitum-multistream-bin
then: cd obs-aitum-multistream-bin
the difference is that someone already built the plugin for us so you just have to type: makepkg -si
it should once again appear in your home directory and you can go digging for the .so. for me it was in /home/*your username*/obs-aitum-multistream-bin/pkg/obs-aitum-multistream-bin/usr/lib/obs-plugins/. and youll nest it the same way we did earlier with the move plugin.
since i linked what we needed for the multistream plugin we didnt need to use yay very much but the tutorial i linked earlier shows the other ways that you can use it!
once youre done collecting all the plugins you want you can start obs, connect your twitch/youtube account and start streaming the same way you would on windows.
steam: proton, wine and flatpaks
moving onto steam... honestly... a lot of steam games should just work. steam comes with proton, which is basically a compatibility layer that lets window games run on linux. its something that we actually downloaded earlier when we installed the gaming packages. if you want to check before hand what games work you can visit ProtonDB. what is pretty much a guarantee NOT to work are games that use kernel level anticheat, like apex legends, sorry. i dont play any games like that anyways because that seems like an invasion of privacy. but you do you.
if theres something that you want to play that isnt on steam you can use wine instead, or the wine manager bottles to do so. wine is another compatibility layer, its actually partially what proton is based off of. if you want to check and see if something specific runs through wine you can check WineHQ.
if you want to use bottles (which is my preference it keeps everything neat), well be rounding back to flatpaks! to get flatpaks set up youll need to install it by typing in the terminal: sudo pacman -S flatpak
sudo means your acting as the "superuser," itll prompt you to type in your password to verify that you actually want to do what youre doing and that your authorized to do it. you wont see your password as your typing. it looks blank for security purposes but if you type your password and hit enter it will work as long as it was typed correctly. pacman is the name of the package manager for arch. heres some more about the commands you can use in pacman: "pacman."
now with flatpak installed you can install anything from the flathub! but were specifically looking for bottles right now. if you go to the bottles page on flathub the install button will give you what to put into the terminal: "Flathub- Bottles"
getting started with veadotube
veadotube is a good place to start if you want to try out streaming. its an easy to learn program for pngtubers specifically. mini is available for free and once the full version is released i can only imagine that it would be installed the same way.
honestly this is the easiest thing to install out of everything weve talked about. all you need to do is go to the veadotube website and download the zip file for mini. you extract it and inside is an exe file like youd be familiar with if you use windows.
i moved the extracted veadotube mini folder to my home folder for easy access. i will admit im not sure if theres a better place but this works for me. once you launch it, veadotube should work pretty much the same as how it does on windows. i havent run into an issues yet but just in case ill leave the docs for veadotube here: LINK
closing thoughts and links
those are honestly the biggest things that i can think of right now. just walking through how to setup/tweak discord, obs, steam and bottles walks you through everything that ive needed to learn in order to get streaming working comparably to how i used to stream and game with windows. everything that i use can be installed with once you know how to use pacman, git or yay.
something that might be helpful is wget... but honestly i wouldnt worry about it unless its needed for something you want. theres no need to have it if you dont use it.
some other useful things:
a general how to doc for streaming on linux, with a bunch of programs i didnt mention: LINK
streamer.bot for managing streams: LINK
what i used to get csp working. my fiance noticed lag while drawing, but its worth a try if you dont want to use krita or other drawing programs with linux versions: LINK
or you can set csp up in a bottle: LINK
opendeck, to use the elgato streamdeck: LINK
this is a plugin for opendeck to use the fifine steam deck, which is what i have: LINK
slime2 is just a neat chatbox for obs, it doesnt say anything about linux but because of how its built it works: LINK
the obspluginbuilding page for if you want to look more into how plugins work: LINK
prism launcher, to play minecraft, i just used pacman but theres other ways to install it listed on the downloads page: LINK
cachyos wiki: LINK
arch linux wiki, if you run into problems that you cant find in the cachyos wiki the solution is probably somewhere in here: LINK
ill sign this off by saying linux, especially distributions like cachyos, are constantly improving. make sure you update often (the easiest way to do so is using cachyos hello) and keep your files clean so you know where everything is if you run into problems!
pre-linux i didnt have a super extravagant streaming set up so theres not too too much here but i hope it at least gets you started and gives you resources to figure out the rest!
These dudes are fucking legit. Â They donât just show up one day in court, either, they actually make friends with the kids and let them know they have a support system and that there are people in the world who care about them and will always have their back. Â And less important, but also cool, is that the few times a couple of them have come into my cafe, theyâve been super friendly and polite and when I told one of the guys that I noticed his Bikers Against Child Abuse patch and wanted him to know how awesome I thought he was because of it, he got kind of shy and blushed and said, âThe kids are the awesome ones, we just let them know theyâre allowed to be brave.â
The source is long, but so, so good. These men and women are available in 36 states, 24 hours a day to stand guard at home, in court, at school, even if the child has a nightmare. Many of them are survivors of childhood abuse as well, and know what itâs like to feel scared and alone.
In court that day, the judge asked the boy, âAre you afraid?â No, the boy said.
Pipes says the judge seemed surprised, and asked, âWhy not?â
The boy glanced at Pipes and the other bikers sitting in the front row, two more standing on each side of the courtroom door, and told the judge, âBecause my friends are scarier than he is.â
Bikers Against Child Abuse was founded in 1995 by a Native American child psychologist whose ride name is Chief, when he came across a young boy who had been subjected to extreme abuse and was too afraid to leave his house. He called the boy to reach out to him, but the only thing that seemed to interest the child was Chiefâs bike. Soon, some 20 bikers went to the boyâs neighborhood and were able to draw him out of his house for the first time in weeks.
Chiefâs thesis was that a child who has been abused by an adult can benefit psychologically from the presence of even more intimidating adults that they know are on their side. âWhen we tell a child they donât have to be afraid, they believe us,â Arizona biker Pipes told azcentral.com. âWhen we tell them we will be there for them, they believe us.â
( Article)
My parents are a part of this organization and they are metal af
They go on runs to protect the child if they feel even the slightest threatened no matter where. If the child needs them to go on vacation with them, they do. Bikers come from across the nation to watch over and take shifts for these kids. And the best part is once youâre adopted into this family as a BACA kid, youâre always one. Even when youâre 40 and the perp gets released from jail, theyâll come meet with you and find your best options for avoiding the person and maintaining the life youâve built for yourself. Once a BACA child, always a BACA child. In Florida, thereâs 100% rate for identifying the perp based on the childâs testimony. Why? Because BACA stands with the child and supports the child so they feel comfortable enough to point out their attacker.
Whatâs better than a badass biker gang being on your side???
NATIVE AMERICAN CHILD PSYCHOLOGIST WHO IS A BIKER AND NAMED HIMSELF CHIEF HELL YES IâM HERE FOR THAT AND BIKERS BEING BAD ASS TO PROTECT KIDS. HELL YEAH.
Guys? This post changed my life. I saw this post. Forever ago. And thought it was only in america⊠and wished desperately that they could help me. But then I saw it again, during a bad episode, and checked their site. They arenât just in the USA
Theyâre in Canada as well and probably other countries. I met and talked with a native guy who runs the place near me. His name is Shaman. I got in, and Iâm considered a BACA child now. Despite being 17, turning 18 when I talked to them. They spent time with me when my abuser was over, they gave me therapy resources. They give you something called a âlevel 1âČ where they go to your house with as many bikers as they can, i shit you not a solid 20-40 bikers came from even out of province, and met me. I got to choose my biker name and I got a vest with patches on it and my name on it. They all hugged a Teddybear before giving it to me, and told me if I ever felt the BACA bear was running out of love, to give them a call and theyâd refill it for me, and then I got a ride on one of their bikes. Just a day or so ago I went to an annual party with them and they we ate food one of them cooked and had a lot of laughs.Â
Iâve never felt as loved as I did being a part of the BACA family. They also gave me dog tags with the names, and phone numbers of my 2 workers. So I can call them whenever I feel scared.Â
BACA is an absolutely wonderful group that will do everything in itâs power to help any child whos been abused.Â
And it doesnât end when youâre 18 either. As long as you get in contact/get your level 1 before youâre 18? youâre ALWAYS a BACA kid. Iâm 18 now and they still invite me to parties, ask me if Iâm okay, and are there for me. Theyâre still trying to find me resources for therapy.Â
BACA has changed my fucking life.Â
I hope you all can read this, and reblog it knowing from someone who fucking been with them, that they are absolutely amazing.Â
Had seen this before, but never realised that this is on an international level - thereâs even a contact address close to where I live (in Germany), very cool (though hoping the only use Iâll ever have to make of it is for donations) â€
image description: a ceramic coyote with pale grey and tawny fur painted on. the coyote is posed in the middle of stepping forward, smiling with its eyes closed.