quality Lauren southern meme. https://twitter.com/Lauren_Southern/status/999672163773927425
My Battlefield V team
seal.mp4<:vinny:631324820386349077><:vinny:631324820386349077><:vinny:631324820386349077>
My Battlefield V team
The favorite weapon of those in charge has always been to censor “rogue thinkers.” And let’s not kid ourselves…a Republican may be in the White House…but the...
youtu.beST. PAUL, MN—Identifying a clear preference for novelty above all other qualities, a report from the University of Minnesota released Friday found that morbid curiosity now accounts for 79 percent of the nation’s snack food purchases. “Whether they’re trying to figure...
www.theonion.comA former NAACP leader in Washington state whose life unraveled after she was outed as a white woman pretending to be black has been charged with welfare fraud. Rachel Dolezal, who legally changed her name...
www.nbcwashington.comOriginal video : https://www.youtube.com/watch?v=2YtOog-kwec All footage belongs to: MsBreezy
youtu.beUHC for Spring Mindcrack Marathon (Extra Life, check out http://twitch.tv/Mindcrack)
www.twitch.tvThis is the greatest david cage of All Time
www.youtube.comYes I have 2 forms human and pony. I'm Toshiro some prefer to call me Senpai. I love to roleplay. ( Facebook:Toshiro Oshiro )
youtu.beCurrently want to screw up my luck
www.twitch.tvloss = [[1,0,1,1],
[1,0,1,1],
[1,1,1,0],
[1,1,1,1]]
import numpy as np
from scipy.misc import imsave
im = np.array(loss).astype(float)
gap_width = 4
while im.shape[0] < 1024*4:
new_im = np.zeros([gap_width*4,gap_width*4])
new_im[:gap_width,:gap_width] = im
new_im[:gap_width,2*gap_width:3*gap_width] = im
new_im[:gap_width,3*gap_width:] = im
new_im[gap_width:2*gap_width,:] = new_im[:gap_width,:]
new_im[2*gap_width:,:2*gap_width] = new_im[:2*gap_width,2*gap_width:]
new_im[2*gap_width:,2*gap_width:] = new_im[:2*gap_width,2*gap_width:]
new_im[2*gap_width:3*gap_width,3*gap_width:] = 0
im = new_im
gap_width *= 4
imsave("test.png",im*255)