• What Are You Thinking? V. Black Friday Blues
    5,002 replies, posted
wingz im challenging u are u gonna man up or are u gonna back down
[QUOTE=ZnT00;49218930]wingz im challenging u are u gonna man up or are u gonna back down[/QUOTE] busy playing tabletop stop being so mad lmao
[QUOTE=Wingz;49218932]busy playing tabletop stop being so mad lmao[/QUOTE] sry ily bb xoxo
[QUOTE=~Kiwi~v2;49218937]i smell burnt weeb guess znt is on fire[/QUOTE] nah im p chill
[QUOTE=~Kiwi~v2;49218944]this is chill[/QUOTE] what is humor
my favorite thing to do on thanksgiving is after the whole dinner thing is done and i'm driving home with my family i ask "so what's for dinner?"
that wasnt humorous znt and u know it lol
every. single. year.
[IMG]http://oi65.tinypic.com/216et2.jpg[/IMG] anime is a terrible medium
[QUOTE=Wingz;49218955]that wasnt humorous znt and u know it lol[/QUOTE] um if i was actually mad enough to say that, i would use proper punctuation and capitalization
[QUOTE=KOS-MOS;49218883][t]http://www.accuracylocksmith.com/Wood-door-installation.jpg[/t][/QUOTE] I can only thing of this when I see that. [video=youtube;4FPHqPix208]https://www.youtube.com/watch?v=4FPHqPix208[/video]
u werent using proper punctuation and capitalization in the steam chat that u were flaming up znt..............................
Who wants to trade my 2 cats to a dog?
My inner right ear is so itchy it's extremely uncomfortable
stop posting about your terrible conversations and talk about how cool of a poster i am
[code]##################### ## Jacob Wilkinson ## ## 12/1/2015 © ## ##################### # Create the states1 list with the abbreviations given, and create two empty strings # Create a list_func function with states2 as argument, use pop to delete, and insert into 2 index. # Ask user for abbreviation of OH, while check if it isn't right to keep asking. Once it's right # add it to our list, and reverse it, then returning it. # In main loop through our states1, printing the clean line with spaces. # Then splice between the middle 4 arguments to create states2, using list_func # loop through the returned list, creating another clean line with spaces. states1 = ["AK", "AL", "AR", "AZ", "CA", "CO", "CT", "DE", "FL", "GA"] states_clean = "" # Empty string, so we can add to it. states2_clean = "" def list_func(states2): states2.pop(1) states2.insert(2, "TX") ohio_abbreviation = input("Enter the state abbreviation for Ohio: ") while ohio_abbreviation != "OH": # While they don't enter the write one print("Sorry, that wasn't right!") ohio_abbreviation = input("Enter the state abbreviation for Ohio: ") states2.append(ohio_abbreviation) states2.reverse() return states2 def main(): for state in states1: if state == "AK": states_clean = state else: states_clean = states_clean + " " + state print(states_clean) states2 = states1[3:7] # Lists start at 0 so we are still going the middle 4 for state in list_func(states2): if state == "OH": states2_clean = state else: states2_clean = states2_clean + " " + state print(states2_clean) main() [/code] Honestly, fuck my teacher. I'll keep doing + " " since... 1) It doesn't state I HAVE to use the format function. 2) It isn't going to kill anything/anyone, and it's appending strings regardless, which is not seen as bad practice (AFAIK, please correct if it is bad practice). If she takes points off, I'ma email her and confront her. Tired of this shit.
[QUOTE=MoopsiePook;49218986]stop posting about your terrible conversations and talk about how cool of a poster i am[/QUOTE] i thought you were a human being not a poster what kind of poster are you it's not a swimsuit poster is it that would be weird [editline]NINJAPROOF[/editline] if you're an anime poster that would be ok as long as it's not a shitty anime
moopsiepook is a boondocks poster
you are super clever superhobo i would let you fuck my videogame sister
I hate when you spend a few hours working on something in photoshop, send it to someone, and they just go "oh so you put a couple of filters on it"
That MoopsiePook guy is such a dipshit he should stop posting altogether
[QUOTE=SuperHoboMan;49218991]i thought you were a human being not a poster what kind of poster are you it's not a swimsuit poster is it that would be weird [editline]NINJAPROOF[/editline] if you're an anime poster that would be ok as long as it's not a shitty anime[/QUOTE] a real human bean [sp]and a real anime[/sp]
[QUOTE=Zonesylvania;49219008]a real human bean [sp]and a real anime[/sp][/QUOTE] But, can it blend?
[QUOTE=MoopsiePook;49219000]you are super clever superhobo i would let you fuck my videogame sister[/QUOTE] [img]http://i.imgur.com/D6NgRwo.gif[/img]
[QUOTE=Nookyava;49219010]But, can it blend?[/QUOTE] A real human anime
[QUOTE=Havolis;49219003]That MoopsiePook guy is such a dipshit he should stop posting altogether[/QUOTE] [IMG]http://oi68.tinypic.com/xfxm3k.jpg[/IMG] [editline]1st December 2015[/editline] i am not a real human anime please stop
[QUOTE=Nookyava;49218684][code]##################### ## Jacob Wilkinson ## ## 11/30/2015 © ## ##################### # def main(): number_list = "" # Keep this empty so we can use it later number_total = 0 numbers_file = open("numbers.txt", "r") for line in numbers_file: clean_line = line.strip() # Get rid of any extra spaces if clean_line: number_total = number_total + int(clean_line) if number_list == "": number_list = clean_line else: number_list = number_list + " " + clean_line print(number_list) print("The total is:", number_total) main() [/code] I can imagine my teacher now "We never used line.strip, where are you getting it, yadyadayada, taking points off." Just like here. [t]http://uploads.jcwcreations.com/d79dac53ac388f1bcf56dfb0f40491a6.png[/t][/QUOTE] The problem with programming and teaching in schools. There are sometimes (a lot of the time) multiple ways of solving a problem Any sane developer knows how to read and learn about a language from it's documentation, and should be encouraged as you are spending time outside of school to evolve your understanding, becoming a more efficient and skilled programmer. In our school, we are taught iterators (twice, I had to repeat :v: fuck paying attention, just browsed facepunch) This year, I just used a forEach method, which the lecturer even knew about, which made it easier for most of the class to understand. We didn't get points off, but we have the [i]always going to happen[/i] interview a few weeks later in the lab class where he asks us what the functions do and how well you understand the code/what you've written, so it helps a lot if you inline document code, acting sort of as a cheat sheet [editline]1st December 2015[/editline] [QUOTE=Infab;49219013]A real human anime[/QUOTE] real human bane
This is what I've been working on btw [t]http://puu.sh/lF8BR/3a616730c0.jpg[/t] I've never tried to give a photo a painted look before and it's a right pain in the ass since I refuse to use the "oil painting" filter or anything similar. It's just layers and layers of bullshit to smooth it all out on top of lots of small tweaks and fussing over little things So it kinda bums me out when someone looks at it and goes "oh you put a filter on a photo". It's still very WIP, but it's one of the few things I've made that I'm pretty proud of so far.
[video=youtube;niJ7ITiZOdQ]https://www.youtube.com/watch?v=niJ7ITiZOdQ[/video] hi guys i did a race
[QUOTE=Katatonic717;49219042]This is what I've been working on btw [t]http://puu.sh/lF8BR/3a616730c0.jpg[/t] I've never tried to give a photo a painted look before and it's a right pain in the ass since I refuse to use the "oil painting" filter or anything similar. It's just layers and layers of bullshit to smooth it all out on top of lots of small tweaks and fussing over little things So it kinda bums me out when someone looks at it and goes "oh you put a filter on a photo". It's still very WIP, but it's one of the few things I've made that I'm pretty proud of so far.[/QUOTE] if they dont know what's involved in doing something people do make assumptions.
Sorry, you need to Log In to post a reply to this thread.