godlikeproductions is an extremely mental conspiracy site
there's some interesting stuff on there, but quickly looking over the responses to any fringe topic could be construed as evidence that schizophrenia is contagious
yeah, if you don't like exploring you're not going to enjoy any of those open-world RPGs.
I definitely agree with morrowind's narrative being much stronger, but I never played skyrim for the story. in fact I don't think I ever actually finished it over however many playthroughs I did... I usually got messed up and made up my own quests and stories and stuff, like when I made a character called 'Mr Whiskers' who was sworn to kill cat-racists across the land. I had more fun justifying punch-murders and looking for gear to more effectively punch-murder than I did following any of the major quests.
yeah, he didn't give a fuck. the self-professed '#1 nigger in america' used to make how-to crime videos ranging from cc fraud to nigger-rigged weapons like a bottle full of concrete with a stick in it to using hack tools to get free rental cars. guy was fucking hilarious. video relating to his arrest and dick-shooting:
check out some of his other videos... I've been trying to download a copy of his DVD but nobody wants to seed it
hah, have you heard of jigaboo jones? he had cops trying to kick his (reinforced) door in - they said they were cops but kept smashing at the door and wouldn't provide a warrant or ID so he called 911 and told them he had people trying to bust his door down claiming they were cops and that he thought they were gangsters - the operator couldn't verify whether there was a police operation in the area, so he waited for them to kick in his door. then shot one of them in the dick and threw his gun down.
he managed to walk because the cops didn't present ID and calling 911 to verify was seen as a good-faith gesture I guess
I love them, literally get depressed sometimes because I was too young for the rabies/too dark park tours and I know there will never be anything like them again... I mean things like the tree of no cares and ogre's dream machine were probably goofy as fuck in context and not viewed in grainy black and white photos but there was a whole atmosphere around it that just doesn't exist anymore.
that said, not a big fan of their later stuff. GWOTR was ok I guess, too clean for my liking and the tracks were hit and miss. also political commentary felt ham-fisted compared to their older stuff. Mythmaker might as well have been an OGRE album; it sounded more like sunnypsyop than anything else and weapon? no.
golden age of goth right there - I was 1 at the time. Last Rights was my favourite of their albums though.
The existence of the object, the properties of the objects surface, and the wavelength of the light being reflected off the object are all objective. But the colour this object appears to be is not objective.
oh right, you meant to have that correspond to the if statement above the do loop
you need to close the do loop before you can move on to the next option in the if statement
working code:
#!/bin/bash
DONE=$1 PATH="/tmp/"
if [ "$DONE" == "" ] then echo "Downloading and extracting scripts, when ready execute script with arg $1 to remove files" `wget -O /tmp/file1.zip https://github.com/rebootuser/LinEnum/archive/master.zip` `wget -O /tmp/file2.zip https://github.com/PenturaLabs/Linux_Exploit_Suggester/archive/master.zip` `wget -O /tmp/file3.zip https://github.com/pentestmonkey/unix-privesc-check/archive/1_x.zip` for zip in *.zip do dirname=`echo $zip | sed 's/\.zip$//'` if mkdir $dirname then if cd $dirname then unzip ../$zip cd .. rm -f $zip else echo "Could not unpack $zip - cd failed" fi else echo "Could not unpack $zip - mkdir failed" fi exit 1 done else echo ""Removing scripts"" find $PATH/* -exec rm {} \; exit 2 fi
all works ok except my terminal eats shit unless I specify full paths to find/rm/wget/etc, maybe because I don't have bash set up pr0perly
your last 'else' statement doesn't correspond with an opening 'if'; it looks like you messed up and added it where you should've added 'done' to close the do loop