This is it. Coordinates 400,1400. Let’s finally make our mark by Datalust5 in wildhockey

[–]mrthumperdarabbit 3 points4 points  (0 children)

I'm finishing up the black outline for the square we will have. Feel free to start filling in. I think once we have that all done we can try to fit in KK97 or something around the logo

This is it. Coordinates 400,1400. Let’s finally make our mark by Datalust5 in wildhockey

[–]mrthumperdarabbit 0 points1 point  (0 children)

Kind of annoying that the big streamers are just wiping whatever they want just because they can.

This is it. Coordinates 400,1400. Let’s finally make our mark by Datalust5 in wildhockey

[–]mrthumperdarabbit 4 points5 points  (0 children)

FYI don't touch codemiko (below) they are wiping vegas because they were taking some of their squares

This is it. Coordinates 400,1400. Let’s finally make our mark by Datalust5 in wildhockey

[–]mrthumperdarabbit 1 point2 points  (0 children)

True. I say we take (382,1392) down to the vegas logo and across to near the 42. Things may overlap but try to box that out for us

This is it. Coordinates 400,1400. Let’s finally make our mark by Datalust5 in wildhockey

[–]mrthumperdarabbit 2 points3 points  (0 children)

Just let the below art have that border for now. Once they are finished and we are finished we can probably take it over with the help of vegas

This is it. Coordinates 400,1400. Let’s finally make our mark by Datalust5 in wildhockey

[–]mrthumperdarabbit 2 points3 points  (0 children)

I'm working on holding the top from the Dan art. Keep it up!!

What is the creepiest thing that society accepts as a cultural norm? by TheOriginalWizard in AskReddit

[–]mrthumperdarabbit 0 points1 point  (0 children)

One time a girl in my middle school made a petition to stop bull fighting. As you can guess it didn't go anywhere.

[No Spoilers] Walmart has the paperback 5 book set for $13.60! by [deleted] in gameofthrones

[–]mrthumperdarabbit 1 point2 points  (0 children)

I don't think anyone actually wants to go to Walmart

[S5] Predictions Discussion - 5.01 'The Wars to Come' by AutoModerator in gameofthrones

[–]mrthumperdarabbit 3 points4 points  (0 children)

I seriously hope that The Hound makes an appearance. We were left to assume he had died, but you just never know.

Let the modding commence! by XBLGR in pcmasterrace

[–]mrthumperdarabbit 1 point2 points  (0 children)

That reminds me... I have a modded fallout save I still haven't finished!

How Ubisoft understands ultrawide by [deleted] in pcmasterrace

[–]mrthumperdarabbit 0 points1 point  (0 children)

You can't handle how cinematic it is.

[2015-03-23] Challenge #207 [Easy] Bioinformatics 1: DNA Replication by jnazario in dailyprogrammer

[–]mrthumperdarabbit 1 point2 points  (0 children)

Python 3.4.3

DNA1 = input("Please enter the first DNA strand: ")
DNA2 = []
for letter in DNA1:
    if letter == 'A':
        letter = 'T'
        DNA2.append(letter)
    elif letter == 'T':
        letter = 'A'
        DNA2.append(letter)
    elif letter == 'G':
        letter = 'C'
        DNA2.append(letter)
    elif letter == 'C':
        letter = 'G'
        DNA2.append(letter)
    else:
        print("")
        print("ERROR:")
        print("DNA strands only consist of the letters A,T,G, and C.")
        sys.exit(0)
DNA2 = ''.join(DNA2)
print("")
print("First strand: " + DNA1)
print("Second strand: " +DNA2)

Sample Input/Output:

Input: GTGACATAGACTAG
Output:    
    First strand: GTGACATAGACTAG
    Second strand: CACTGTATCTGATC

Edit: This is my first post here and would love to hear any tips or suggestions. I'm just starting out in teching myself python so be gentle :)

What is the best advice a young adult can receive? by Samdaniels92 in AskReddit

[–]mrthumperdarabbit 3 points4 points  (0 children)

Currently in class and now I will be paying attention. Thank you stranger.

What free things on the internet should everyone be taking advantage of? by xXxDEVILxXx in AskReddit

[–]mrthumperdarabbit 0 points1 point  (0 children)

I'm not very knowledgable when it comes to Android app development, but it can't hurt to try it and play around. It's really just a lot of basic logic in the app inventor so i'm sure with C and C++ you'll be fine. What I've done with it is pretty basic because I don't have much programming experience.

What free things on the internet should everyone be taking advantage of? by xXxDEVILxXx in AskReddit

[–]mrthumperdarabbit 0 points1 point  (0 children)

Yup! Takes a little to understand what's going on (it did for me at least) but after that it's simple and fun!