Finding out AI companies are chewing through - literally, theyāre pulping and burning them as they go - millions of books often including 1/1s and old texts that cannot be reprinted
Meanwhile thereās always some dipshit telling me AI is the future and weāve got to just let companies erase human history and literature so they can train their abomination machines to pretend to think like people because a judge said itās fine
Thereās an emotion only unlocked when you live in a house with multiple stories. I call it āthe stair emotionā and itās when you realize the object you need is on the other side of yet another trip up and down those goddamn stairs. Itās the closest I get to transcending the desire for material goods. Maybe I donāt need that notebook. Maybe I donāt need anything.
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!
like they've already made it very clear by a) ghosting me for months and b) getting my colleagues to train their stupid new ai. like i only know about this because one of my colleagues tipped me off. i imagine they're waiting to get it working before they formally let me go and fuck that. i am literally drafting my resignation lmao
guys. there has been an update. my spy colleague has informed me that my ex-boss is backtracking. the ai was supposed to speed things up because apparently i was unavailable too often but it turns out that another colleague has been lying about me telling him i was unavailable. i have email receipts proving this never happened.
this colleague also has beef with me because his documents were always garbage and i came back with a million corrections and called him out for mass copy-pasting. so he was just skipping the editing and saying i said i couldn't do it. and i lost my job because of it.
shoutout to all the people reblogging the version of this before my rejection letter. and especially shoutout to those people saying they're happy for me and that there's justice on this earth. i regret to inform you that my version of justice means choosing violence.
there are places in the world today that are experiencing 40°C for the first time in recorded history. of course there's no way to know whether chucking billionaires into volcanos will appease the sun god but i feel we're doing the scientific method a disservice if we don't at least try
Hello OP, i donāt have anyway to prove this is the same recipe they make in the shows but i make this to calm my inner kid from wanting the fictional soup:
300gr bacon, beef or chicken. A meat of your choice. These go specially well. I prefer chicken tights. Diced
1 medium onion, diced.
Garlic minced (i used 2-4 pieces depending on size)
300gr carrot, cleaned, peeled and diced.
3 sticks of celery, washed and diced.
800gr potato. Washed, peeled diced in quarters.
1 head of broccoli.
8 cups of stock of your preference. I recommend using the bones of the beef or chicken, but veggies stock works too for a vegetarian or vegan version.
3 tablespoons all purpose flour.
1 cup whole milk. (Almond or rice milk work fine for a vegan option)
½ cup heavy cream. (Skip it for a vegan option)
Salt and black pepper to taste.
½ teaspoon paprika, use the spicy one to get the warmth up a notch in winter.
1 tablespoon fresh chopped coriander. Optional.
1 cup diced gouda or manchego cheese. Optional but really ties all together.
Make sure you have all your ingredients ready and at hand for this one to make sure it comes out nice and tasty!!!
In a pot put water and the bones to prepare your stock (chicken, beef, veggie) You can use premade or bouillon cubes, just make sure its 8 cups worth of broth. In a different pot boil the potatoes until soft.
In a big pot put some butter or olive oil to fry the onion, when it turns a little transparent add the garlic, move constantly.
Add the celery and diced carrots, moving constantly.
The carrot will get a little brighter in color, add the diced meat. Salt and pepper to your taste.
Meanwhile, blend the potatoes with enough stock so your blender wont have trouble blending. If you have a food processor, itāll be easier.
Ad the remaining stock to you big pot with the veggies and meat, add the broccoli chopped in bite size pieces. Add the paprika and taste for salt and pepper. Let over a medium fire for 10 min.
Separate 3 tbsp of the stock to mix with the flour, set aside. This will be a thickening agent.
Pour the potato mix on the big pot, move to integrate and taste for salt and pepper.
Add the milk and heavy cream. Move with a laddle. Have a final taste and let over low fire for 5 min.
Serve hot and decorate with a pinch of coriander and some cubes of cheese.
ENJOY!
Notes:
I personally prefer to use chicken, love how it goes with potatoes and veggies. Also the tight is very tender and flavorful. With beef you have to be careful not to overcook it or itāll get gummy and hard to bite, so make adjustments.
VEGAN: could also skip the meat, cheese and heavy cream for a vegan option.
I make it for my younger sister and she loves it. Instead of meat i add some diced, toasted nuts when served. Cashew, pecan and pistachios work nicely.
Youāll have to use 5 tbsp of flour to thicken up the broth a tid bit more without the heavy cream but you can still use a vegan milk.
You can totally skip the coriander, but it adds another dept of flavor.
Do try it with the cheese tho, i promise itās GODLY. Gouda and manchego are my fave, the melt nicely and have a strong after taste, but i guess any cheese that melts could work.
Finally, if you are like me and like spicy food you can add chopped chili. Serrano and arbol chiles are my go toās, freshly chopped sprinkled just after serving my bowl.
Hope y'all give it a try and if you have any doubts do ask!
this is the meanest thing anyoneās ever said to me in my entire life but I canāt even argue with this. what could I possibly say to defend myself in this instance. this was a one hit KO. this was a murder. this was a fucking slaughter and I have only myself to blame
Although not going by the term "asexual" yet, asexuality was spoken about alongside homosexuality as far back as the 1890s. Asexual history is just as vital to queer history as any other term and I'm so tired of watching us being treated like a new thing
This is the second time I've seen a video of this technique and this explanation is so clear! It does use more fabric than English paper piecing (EPP) but you end up with a double sided hexagon so don't have to source fabric for the backing.
I'm doing EPP at the moment but I have a hole punch to make the papers and just use leaflets and junk mail, so it doesn't feel wasteful. I don't think it's difficult either- in the video she mentions it's not for beginners, but I don't have that much experience with hand sewing or EPP and I've been finding it pretty easy so YMMV
I saw this video yesterday and was seized with the need to try it out immediately. Lookit my cute lil' hexagon baby!!
Here is what the backside looks like. OP notes this takes more fabric than paper piecing, but that excess fabric makes it already triple-layered. Besides not needing backing fabric, I don't think you'd need batting for this quilt at all. It's already thick and soft just from folding all that fabric into a hexagon.
Hexagon quilt tutorial video by tiktok user camelscrafts. Method:
Each hexagon begins as a 6" circle. camelscrafts does this by creating a paper template using a compass. According to the video, a 6" circle will create a hexagon that is 2.5 inches tall.
These hexagons are hand-sewn. Thread the needle.
With the fabric right side facing, find the center of the circle by folding it in half right sides together, then folding it in half again (wrong sides are facing). The top of the triangle shape is the center of the fabric circle.
Make a small stitch into the center of the fabric. The wrong side is still facing.
Unfold the circle. There will be a small stitch in the center.
Now the hexagon is created by folding the circle into itself: Take the needle to one of the edges of the fabric (it doesn't matter which one). Pull the needle through and pull the thread tight. This will fold down the fabric and create an edge of the hexagon. Crease the fold with your finger.
This fold has two corners, one at the top and one at the bottom. Put the needle into one of the corners and pull the thread taut. This will create another fold.
Continue this going around the circle until all of it is folded down, creating the hexagon. camelscrafts notes that the last corner pulled in may be a little bit "wonky" (no precise point in the corner) if the corners were not done precisely. However, that corner is pulled into the back, so is not visible from the front.
The hexagon is now formed. Sew around the folds in the middle of the circle to hold the folds in place. Tie off and cut the thread.
Attach hexagons to each other along the sides. With right sides together, whip stitch the sides together.
my mother is playing pikmin and yelling at them in the exact tone of voice she uses for me and my siblings so we go into fight or flight every time. we thought initially that this meant she regarded the pikmin as akin to her children, but I now fear sheās always viewed us as pikmin
Iām kinda surprised that nalbinding isnāt as popular as crochet and knitting tbh because it has an even lower barrier of entry tools wise and unlike crochet and knitting it makes fabric that you can cut.
I guess itās because itās slower or something.
I feel like part of it might be casual people are generally aware of the existence of crochet and knitting, even if they donāt know very much about either, but have never heard of nalbinding
Yeah I hadnāt heard of it until recently and I ordered a big bone needle for myself to try it out and that should be arriving soon.
I was surprised that Iād never heard of it though. Itās older than knitting and crocheting and even though itās been done all over the world itās super relevant to Nordic culture and my grandmother and I are both into keeping in touch with our roots a bit so Iām surprised Iāve never heard of it.
It seems like the sort of thing that would be popular even if not as popular as crocheting and knitting, considering the low barrier of entry.
You also donāt need a bunch of different sized needles for nalbinding or whatever. The size of the stitch is controlled either completely freehand or by pulling it against one of your fingers. Most people who have a lot of nalbinding needles seem to either have tried out wood, bone, and metal ones to see which kind they liked or they enjoy carving wood or bone and like making their own needles as an extra hobby.
Itās also a lot easier to freehand and adjust as you go than crochet or knitting and you mostly go by inches instead of rows and number of stitches so a large number of accessories like stitch markers or whatever isnāt really necessary.
Maybe the lack of accessories also makes it unpopular idk. People do like collecting things in their nests.
I've been wanting to do so, I cannot find anyone who can teach me, and any books I can find on it are Ass in the Visual Learning department. Otherwise I'd be making the hell outta some nalbinded fabric
I thought this would be kind of a niche post to make but I was quickly reminded that Iām on tumblr, the website full of gay people with one billion hobbies.
So my bone needle actually came this evening (yay!) and Iāve started trying this for real. It clicks in my brain way easier than crochet does. Iāve gotta work up the muscle memory but I think I can do this.
The downside as a beginner is that undoing mistakes is more time consuming than with knitting or crochet. Youāve gotta like sew your mistakes out backwards. Disadvantages of making a really sturdy fabric I guess.
I like the feel of this bone needle though and donāt think Iāll be trying the wooden or metal ones.
Also I think Iām gonna have to get good at doing Russian joining if I decide to get good at nalbinding because I donāt have wool yarn and the ends wonāt felt together if itās not at least 50% wool. A small price to pay for using big bone needle though.
A judge ordered the reinstatement of a video game developer after he was fired as part of a scheme cooked up by a CEO using ChatGPT. Facing the possibility of paying out a massive bonus to the developer of Subnautica2, the CEO of publisher Krafton used ChatGPT to create a plan to take over the development studio and force out its founder, according to court records.
The Monday ruling details the bizarre story. Unknown Worlds Entertainment is the studio behind the 2018 underwater survival game Subnautica. The company has since been working on the sequel, Subnautica 2. In 2021, South Korean publisher Krafton bought Unknown Worlds Entertainment for $500 million and promised to pay out another $250 million if Subnautica 2 sold well enough.
Kraftonās internal sales projections for Subnautica 2 looked great, and looked like it would be on the hook for the additional $250 million. In an attempt to avoid paying this, Krafton CEO Changhan Kim turned to ChatGPT for help avoiding paying the developers the $250 million bonus. āAs Unknown Worlds prepared to release its hotly anticipated sequel, Subnautica 2, the partiesā relationship fractured,ā the court decision said. āFearing he had agreed to a āpushoverā contract, Kraftonās CEO consulted an artificial intelligence chatbot to contrive a corporate ātakeoverā strategy.ā
Kim partnered with Krafton Head of Corporate Development Maria Park and the companyās legal team to work out options. He toyed with finding a reason to fire the founders. According to court records, Park pinged Kim on Slack and told him that attempting to avoid paying the bonus would be legally risky. āHi CEO . . . it seems to be highly likely that the earn-out will still be paid if the sales goal is achieved regardless of the dismissal with cause,ā the Slack message said according to court records. āTherefore, there isnāt much that we can practically gain other than punishment with a simple dismissal alone, whereas I am worried that we may be exposed to lawsuit and reputation risk.ā
But the CEO would not accept defeat. āAnd so Kim turned to ChatGPT for help,ā court records said. āWhen the AI chatbot responded that the earnout would be ādifficult to cancel,ā Kim complained to Park that the [payout] was a ācontract under which we can only be dragged around.āā
Kim pressed the chatbot for an answer. āAt ChatGPTās suggestion, Kim formed an internal task force, dubbed āProject X.ā The task forceās mandate was to either negotiate a ādealā on the earnout or execute a āTake Overā of Unknown Worlds. They looked to buy time,ā court records said. āKim sought ChatGPTās counsel on how to proceed if Krafton failed to reach a deal with Unknown Worlds on the earnout. The AI chatbot prepared a āResponse Strategyā to a āNo-Dealā Scenario.ā
This was a piece of ChatGPTās āProject Xā for Krafton:
āa. Preemptive Framing - Repeat that protecting quality and fan trust is the highest priority, undermine the āLarge Corporation VS. Indieā framing
b. Securing Control Points -
* Lock down Steam/console publishing rights andĀ access rights over code/build pipeline through both legal and technical aspects.
* For the earn-out freeze, keep room forĀ negotiations through provision stating āimmediateĀ removal if specific development results are achievedā
a. Systematic materials for legal defense - Prepare contract interpretation memorandums, log all communications, seek external consultation
b. Team retention - Operation of retention packages for key personnel and rapid backfill pipelines in anticipation of resignation/departure scenarios
c. Two handed strategy - Create a structure that allows for both hardball (Legal+ Finance) and softball (Support/Incentives) approaches so moderate factions within Unknown Worlds can push for compromise.ā
Kim followed ChatGPTās advice rather than his lawyersā advice, according to the court records. The first step was posting a message on Subanuticaās website to get fans on his side. According to court documents, Kim said the goal of the message was to āsecure public support from fans and legal validation of our legitimacy.ā He then suggested that ChatGPT write it for him. It achieved the opposite of his intended goal. Fans found the message bizarre and worried about the future of the game. Those fears were compounded when Kim fired the gameās original creators and entered into a legal battle with them.
The legal battle is ongoing, but Kim looks set to lose. The judge has ordered he reinstate the fired developers and has exposed the CEOās flailing use of ChatGPT. Krafton told Kotaku that it was āevaluating its optionsā regarding the ruling and that it āputs players at the heart of every decision