squid

joined 2 years ago
MODERATOR OF
 

Something ive been wanting for a while is a highly portable linux device like a phone or small tablet but obviously running fully flegde linux.

I need a device that is x86, 5g/4g networking water resistant if possible, sliding kB would be great but thats a bye gone era.

I don't want to use android based systems as when they have linux support it is via a spersific distribution made for that device. Virtualization is also not for me.

 

Instagram is one place I can't avoid as most artists post there and I'm always in need of inspiration

 

This is an issue I have, I tend to stick to dating sites as intentions are out lined but saying that I still struggle in my day to day as I think people being nice to me male or female are presenting sexual interest, I was sexualized at a young age hense I have this unhealthy mind set.

[–] squid@feddit.uk 1 points 2 years ago

I'm in a loop, finding this incredibly difficult to stop thinking about. Idk if talking to her will resolve my issue

 

Went on a date with someone, caring understanding and diagnosed with cptsd. We had a lot to talk about. Date went on for 8 hours, near the end we entered a very busy restaurant, I started have symptoms of anxiety, hot and cold flushes, heart racing, unable to talk or hold a dialogue, felt so uncomfortable, I randomly said about getting the food to go alluding to going home, I knew what I was saying and the connotations that went with it but couldn't stop myself. Its the next day and I feel so embarrassed, I continued texting her after the date and spoke to people about what had happened. I'm still dealing with the anxiety but think I stopped dissociating anyway

This hole thing has put me in a depression.

I want to tell her what was happening but idk if I should continue contacting her. I feel like a weirdo

[–] squid@feddit.uk 1 points 2 years ago (1 children)

Yea mullvad released a tor browser and search engine

[–] squid@feddit.uk 14 points 2 years ago (1 children)

Do away with YouTube and use software like freetube, no adds, sponsorblock, and google can't track my habbits

[–] squid@feddit.uk 26 points 2 years ago (1 children)

And this is why I only torrent and use third-party software for my media consumption needs

[–] squid@feddit.uk 35 points 2 years ago (1 children)

I saw this in a few applications, I wonder if it's a general bug with shared software code

[–] squid@feddit.uk 2 points 2 years ago

Not a problem till next time, and you too buddy have great day

[–] squid@feddit.uk 4 points 2 years ago

Christ they're at it again

[–] squid@feddit.uk 5 points 2 years ago

Mental outlaw wears his political stance , in doing so its very in your face, I'm aligned with European libertarianism and communism so for me to watch an unboxing channel would be uncomfortable as the idear are juxtaposed to mine so I can see how some may find it difficult. To me he's a wholesome dude

[–] squid@feddit.uk 11 points 2 years ago* (last edited 2 years ago)

I agree, come of as an american libertarian, but at least he's not on the weirder side of the political ideology with age of consent (from my limited knowledge of him)

[–] squid@feddit.uk 1 points 2 years ago* (last edited 2 years ago) (3 children)

Never used it but come across them. Seem holesome.

I've been using mullvads leta search engine and thats been fine for me

[–] squid@feddit.uk 1 points 2 years ago* (last edited 2 years ago) (2 children)

The dictionary definition of obfuscation means to purposely obscure , make harder, and there is no mention of a time frame. So with the add by URL gone from settings and a limited amount of defaults search engine thats are all shit and no clear reasoning for the removal of that setting then how does that not fit the definition of obfuscation.

ETA: My point is you don't get to complain when people reflect back the energy you put out.

I definitly can complain as can you and anyone else. I am admittedly stoborn (not for stobornness sake or pride) but I have not resorted to name calling

 

So been moving around a lot with browsers, waterfox, librewolf and very recently degoogle chromium, figured id look at Firefox and holy theres less than half the option in setting then there were afew years back but I gotta say the biggest sin is that adding custom search engine is obfuscated, and the chooses of engines are google, bing, duckduckgo and fucking Amazon! Wtf is that about? But anyway all these search engines are pretty awful including duckduckgo but beyond that the browser scene is a joke, mullvad are about the only company I feel compatible with using now

Edit: instead of saying how easy it is to add custom search engines, I'd like to know why the "add search engine" feature in settings is gone?

 

So I've got cyberpunk phantom liberty 2.0 but to update to 2.1 heroic game launcher wants me to download the hole game again, gog galaxy through wine is not an option so I'm looking at xdelta3 and innoextract to manually patch game files. But I'm hitting a break wall and seems to fail with every attempt using xdelta3

 

Paste code to text file .sh extension and run script in the directory where jc141 are present, also install dialog

#!/bin/bash

# navigate to the directory containing the .sh files
cd "$(dirname "$(readlink -f "$0")")" || exit

# directory containing the game directories
games_dir="$PWD/"

# check if the games directory exists
if [ ! -d "$games_dir" ]; then
echo "error: The 'games' directory does not exist."
exit 1
fi

# initialize the dialog menu options
menu_options=()

# loop through subdirectories in the games directory
for game_dir in "$games_dir"/*/; do
if [ -d "$game_dir" ]; then
# extract the parent directory name as the game name
game_name=$(basename "$game_dir")
        
# check if any of the specified .sh files exist
if [ -f "$game_dir/start.w.sh" ] || [ -f "$game_dir/start.e-w.sh" ] || [ -f "$game_dir/start.sh" ] || [ -f "$game_dir/start.n.sh" ]; then
# add the game name to the menu options
menu_options+=("$game_name" "Run $game_name")
fi
fi
done

# use dialog to display the menu
choice=$(dialog --title "Select a game:" --menu "Games:" 30 30 15 "${menu_options[@]}" 2>&1 >/dev/tty)

# check if the user selected a game and execute it
if [ -n "$choice" ]; then
selected_game="${choice#* }" # extract the selected game name from the choice
selected_game_dir="$games_dir/$selected_game"

# determine which script exists and set the selected_game_script accordingly
if [ -f "$selected_game_dir/start.w.sh" ]; then
selected_game_script="$selected_game_dir/start.w.sh"
elif [ -f "$selected_game_dir/start.e-w.sh" ]; then
selected_game_script="$selected_game_dir/start.e-w.sh"
elif [ -f "$selected_game_dir/start.n.sh" ]; then
selected_game_script="$selected_game_dir/start.n.sh"
elif [ -f "$selected_game_dir/start.sh" ]; then
selected_game_script="$selected_game_dir/start.sh"
else
echo "error: this script must run with in the directory of jc141 downloads"
exit 1
fi
    
# execute the selected game's script
chmod +x "$selected_game_script" # make the script executable
"$selected_game_script"
fi


 

So I finish phantom liberty where v sides with songbird and puts them on the rocket after killing reed, I'm actually pretty happy with how it played out while also being somewhat sad but for me and my ending I think v dies in a slow burn with johny eventually gaining full control, unlike v though I agree with most of johnys actions. Great dlc cdpr! An emotional rollercoaster. When songbird confesses to lying all I had going through my head was "let's get this sociopath on the rocket"

I'll probs end the game with panam when I want an actual ending

 

I need mother of pearl 75mm by 30mm 1.8mm how can I find distrabuters selling this size?

 

With UK's new security bill that seems to more dismantle security rather than help. Am I still legally okay to use signal, VPN, tutanota, https, tor?

view more: ‹ prev next ›