

The ATT framework was seen as an obstacle to targeted advertising to Apple device users, a major source of funding for application publishers and other online advertising players.
Um. Ok.
The ATT framework was seen as an obstacle to targeted advertising to Apple device users, a major source of funding for application publishers and other online advertising players.
Um. Ok.
“Woops! Well, just reapply via this new DOGE chatbot! It rejects applications with a 100% success rate!”
deleted by creator
I’m running XFCE (but you could do KDE) on my intel Mac, you can get best of both worlds. I heard silicon is more difficult with Linux tho.
I’m not blindly dissing RCs or AI, but his use of it (as the post was about people with problematic uses of this tech I just gave an example). He can’t handle RCs historically, he slowly loses it and starts to use daily. We don’t live in the same country anymore and were never super close so I can’t say exactly what his circumstances are right now.
I think many psychadelics at the right time in life and the right person can produce lifelasting insight, even through problematic use. But he literally went to rehab because he had problems due to his use. He isn’t dealing with something, that’s for sure. He doesn’t admit it is a problem either which bugs me. It is one thing to give up and decide to just go wild, another to do it while pretending one is in control…
So good. the vatican while loop one was a lot of fun too
Yeah. I tried talking to him about his AI use but I realized there was no point. He also mentioned he had tried RCs again and I was like alright you know you can’t handle that but fine… I know from experience you can’t convince addicts they are addicted to anything. People need to realize that themselves.
I knew a guy I went to rehab with. Talked to him a while back and he invited me to his discord server. It was him, and like three self trained LLMs and a bunch of inactive people who he had invited like me. He would hold conversations with the LLMs like they had anything interesting or human to say, which they didn’t. Honestly a very disgusting image, I left because I figured he was on the shit again and had lost it and didn’t want to get dragged into anything.
without electronics
What, you mean like, mechanical? (Imma read the article now but this sounded funny to me…)
Thanks that is real helpful! A lot easier than what I had fuzzily in mind
One thing about the thumbdrives, a LOT of features did not work for me when running live bootable, and it almost put me off. Then I made the actuall full install and a lot of the stuff that had not worked now did. Just so people understand the live bootables are very much just a demo, and doesn’t say much about compatibility really.
Nice I didn’t know that ^^ should probably learn at least the basic bash operators, I am just hacking together the different commands I happen to know at the moment really
Edit: why echo instead of printf?
This was causing a lot of issues with newlines, like when I fetched the log to view it my $ was right after the log entry so I switched it back. But it is probably useful in the future to use >> instead :)
Haha thank you. It was hell for a while but eventually it became fun :p learned a lot as well that I probably wouldn’t have otherwise…
Idk if it is normal, maybe not. I do k ow the broadcom issue is tho. And the crashing installers one for example was something I saw a “solution” for by random, when just watching random linux on mba 2012 setup videos to see what I was doing wrong. No other mention anywhere but right in the middle of this video was someone else with the same problem… So it obviously wasn’t just me.
The broadcom chips are largely a goddamn mess apparently. See this: https://askubuntu.com/questions/55868/installing-broadcom-wireless-drivers
But know that this info is not working for me, and I had to use this instead: https://www.thetestspecimen.com/posts/broadcom-wifi-modules-fedora/
I don’t think you will be running into any other issues really but these are INFURIATING when you don’t know where to start. If you decide to go for an intel mac then spend some time looking up the drivers and issues beforehand I think. Also, I went down many rabbitholes because I am new to linux, if you have some experience this probably isn’t that bad idk…
That does sound nice, thank you for the suggestion
Yeah it is like my own small blog and it really helps remembering for me :)
I will look up rsync, I have no proper backup yet except a script that just copies some folders and files that are important…
It is not as cryptic as it sounded I just explained it badly.
Log everything you do in human readable text, because realistically as a beginner going through machine generated logs is not very fun, and .bash_history will be filled with stuff that isn’t relevant always.
It is just a bash script that logs a message with the current date to a file I can access from MacOS as well (on the shared partition) so that I can see what I did if I mess up too bad…
Edit:
Here it is:
# Log argument to changelog.txt with current date and time.
function log()
{
local changelog="/run/media/jamie/DUAL/changelog"
local text="$(cat $changelog)"
if [ "$1" == "--view" ]; then
cat $changelog
else
printf "$text\n$(date +%D:%H:%M): $1\n" > $changelog
fi
}
Each line looks like this: 03/16/25:11:49: Running dnf upgrade
I will probably add some stuff so I can get the last 5 lines or something if I want, but at the moment this is really fine.
XFCE is really fast for me as well! I thought I was fine with how slow Catalina was running, and I was but now it is kind of painful when I have to boot back into MacOS and it feels slooow…
deleted by creator