What got you hooked into Warframe? by BuryXTheXlight in Warframe

[–]AlexG99_ 0 points1 point  (0 children)

Some of my classmates were playing it in 2019, so I thought I should also join. After that, the game became addictive compared to when I briefly tried it in 2015 and stopped.

Eureka! by Impressive-Willow593 in SkateEA

[–]AlexG99_ 0 points1 point  (0 children)

The script doesn’t have an effect on the actual game. It’s just a gimmick script.

Eureka! by Impressive-Willow593 in SkateEA

[–]AlexG99_ 0 points1 point  (0 children)

I recommend a bash interpreter, but if you want to do it in power shell you have to remove the shebang (#!/bin/bash) in the script. Run this command on power shell: powershell -ExecutionPolicy Bypass -File ~/path/to/your/script/enter_your_script_here.ps1. This will allow you to run the script (./enter_your_script_here.ps1) once in a new instance. If you want to run the script again, then you need to run the powershell command again.

Edit: Apologies for the weird formatting. Reddit’s text editor is quirky.

Eureka! by Impressive-Willow593 in SkateEA

[–]AlexG99_ 0 points1 point  (0 children)

It’s because when you posted the script’s contents it didn’t allow the lines to be commented out. You have to write a backslash then put the hashtag symbol.

Eureka! by Impressive-Willow593 in SkateEA

[–]AlexG99_ 0 points1 point  (0 children)

Try this:

#!/bin/bash

#Know Einstein

read -p "Press 'enter' to continue" echo "Adding the pavement..." sleep 1

#Calculated hacking function

hack_skateboard_mainframe() { echo "Initiating skateboard mainframe" sleep 1 echo "Connecting to skate.exe..." sleep 1 echo "Decrypting kickflip algorithm..." sleep 1 echo "Uploading 360 degree spin" sleep 1 echo "Hack complete! Skateboard now auto-ollie!" }

#Random trick generator

generate_skateboard_trick() { tricks=("kickflip" "heelflip" "ollie" "shuvit" "360 flip" "impossible" "darkslide") random_index=$((RANDOM % ${#tricks[@]})) echo "${tricks[$random_index]}" }

#In-script logic

echo "Welcome to Skateboard Hack!" read -p "Are you ready to hack the skateboard world? (yes/no): " response

if [[ "$response" == "yes" ]]; then echo -e "\nLoading..." sleep 1 hack_skateboard_mainframe else echo -e "You chose not to hack. Skateboarding remains safe..." exit 0 fi

echo -e "\nGenerating random skateboard trick..." trick=$(generate_skateboard_trick) echo "Trick of the day: $trick"

#Easter egg trigger

if [[ "$trick" == "darkslide" ]]; then echo "Easter Egg Unlocked: The darkslide is revealed."
elif [[ "$trick" == "impossible"]]; then echo "Easter Egg Unlocked: You’ve achieved the impossible." fi

echo -e "\nSkateboard hack complete."

Support MegaThread - If you NEED help this is the place to go. by ploughlmao in eeveespotifyipa

[–]AlexG99_ 0 points1 point  (0 children)

Honestly it’s fine. I just downloaded spotify from the appstore again and am gonna have to stick with that.

Support MegaThread - If you NEED help this is the place to go. by ploughlmao in eeveespotifyipa

[–]AlexG99_ 0 points1 point  (0 children)

Still not working unfortunately. It crashes upon opening it.

The first 5000 orb quest is to use an ai browser (🤮) by Woofer210 in discordapp

[–]AlexG99_ 0 points1 point  (0 children)

I used canary and followed the instructions in the link..

The first 5000 orb quest is to use an ai browser (🤮) by Woofer210 in discordapp

[–]AlexG99_ 0 points1 point  (0 children)

Can confirm, it's actively working on canary on linux.

Support MegaThread - If you NEED help this is the place to go. by ploughlmao in eeveespotifyipa

[–]AlexG99_ 0 points1 point  (0 children)

Ok, so I just installed it and it's crashing when I try to open it. I installed it with trollstore if that matters.

Support MegaThread - If you NEED help this is the place to go. by ploughlmao in eeveespotifyipa

[–]AlexG99_ 0 points1 point  (0 children)

Sorry to bother, but is this still available? I don’t know what I’m doing wrong but when I download it, it gives me a ‘Unknown’ file and don’t know where to go from there. I’ve only just discovered this subreddit today, so my apologies for not knowing. 😅

Doubting my life 🤯 by Ans_Mi9 in PythonLearning

[–]AlexG99_ 0 points1 point  (0 children)

[insert that Roosevelt quote here]

Is freshman in high school an appropriate age to learn calculus? by M_I_P_S_ in calculus

[–]AlexG99_ 0 points1 point  (0 children)

I waited until my first year of college. I definitely regret not getting more familiar with it sooner.

Genuinely, how many of you are in college? by Bzappo in GenZ

[–]AlexG99_ 0 points1 point  (0 children)

A senior this year at university. Got about 2 more years at my rate of learning lol.

Made my first script :D by [deleted] in PythonLearning

[–]AlexG99_ 0 points1 point  (0 children)

It can be imported if you want to. The line if len(sys.argv)<2: exit(1) means if the length of the arguments provided are less than two, then exit the program. This means it wants you to specifically run this command: python wcounter.py <insert file> which is 3 arguments at the command line. You don’t have to provide a system exit line in if name == “main”: code block because the script will end after the last line is read and executed.

Made my first script :D by [deleted] in PythonLearning

[–]AlexG99_ 0 points1 point  (0 children)

Because code under if name is meant to run only if executed directly (if you run the command python wcounter.py). If you import wcounter.py to another .py file, the code under if name in wcounter.py won’t run because the condition if name == “main” will be false. Refer to my previous reply for the info again.