
anonymous 2011-11-02 14:21:13
No.944 [
Reply] (3 posts reply - Click Reply to view)
no title
People disappearing or others leaving by the minute of our time and then
returning,surrounded by the future,the past and stadium nightlights when
freaks sleep,are off the streets and believe the stores are
closed,abductions,pressing on your chest suffocations,stretching and
squeezing your genitals,,interference,barking dogs,shootings,popped
people,invisibility,speed,acoustic weapons,sound
amplifiers,alarm,hospitals,clones,androids.Statements,pictures,words,etc
and their various interpretations,coincidence,people saying your this,your
that,your there,did masterbator really turn into a fiend by sniffing the
so-called vaccine nasal spray.Various outside situations
field,cold,hungry,cuts,still standing,sweating,shaking,toilet,down
cave,smoke,bones,breathing,alcohol,walking,spewing acid or
not,alkaline,laugh,cry,worry,calm,emotions,senses,thought,alters you or
your mind will return to the past if your anemic,sound and won't cook with
or touch and remembering,accidents,draining energy from well fed stressed
cancerous pensioned seniors,personally affecting reality,salt and fear and
getting attacked.Stuck in this nest, etc, being pulled to the future or the
past with your iron coins in your pocket and other materials your in
contact with or surrounded by,your really suspicious,connected minds,mind
control now and from the future,controlled and uncontrolled
movements,people leaving this planet,beaming transport,what year are you
from,preparing you for what comes after and now,an animal situation.Really
waking up,poking,picking,prodding,people at the top with medical
instruments,reviving regular people and bringing them out to
court.Attempting to recreate what happened on another world,loading trains
and what appears as empty trucks.Past and horrible future past lives.Pets
people travelling back in time getting attacked,accidents or sending
messages today.Nature's examples.Is this place real,it's like playing the
same video game over and over again,maybe they'll reach through the screen
and your reality show.Tired of the pests act yet pet.Turning your place
into a motel/outhouse.Aneurysms and ruptures.Reverse the situation.An anal
attack on colon cleansed seniors.Facial deformities and other
measurements.Concluding the experiment and cleaning the cage.Figuring and
writing ability.

anonymous 2011-06-27 21:47:36
No.574 [
Reply] (5 posts reply - Click Reply to view)
Python Maze
import Image, ImageDraw, ImageSequence
import random
import Queue
def testVLine(d,y,x1,x2):
if x2 < x1:
t = x1
x1 = x2
x2 = t
for i in range(x1,x2+1):
if d.im.getpixel((y,i)) != (0,0,0):
return True
return False
def testHLine(d,y,x1,x2):
if x2 < x1:
t = x1
x1 = x2
x2 = t
for i in range(x1,x2+1):
if d.im.getpixel((i,y)) != (0,0,0):
return True
return False
def link(d,a,b):
if a[0]!=b[0]:
return testHLine(d,a[1],a[0],b[0])
else:
return testVLine(d,a[0],a[1],b[1])
def trace(d,level,c):
while True:
# recherche d'un spot
pos = None
for x in range(level/2,d.im.size[0],level):
for y in range(level/2,d.im.size[1],level):
if d.im.getpixel((x,y)) == (0,0,0):
pos = (x,y)
break
if pos!=None:
break
if pos==None:
break
#print "found pos at : ", pos
while True:
npos =
[(pos[0]+level,pos[1]),(pos[0]-level,pos[1]),(pos[0],pos[1]+level),(pos[0],
pos[1]-level)]
d.point(pos,fill="black")
gnpos = []
for p in npos:
if p[0] >= 0 and p[0] < d.im.size[0]:
if p[1] >= 0 and p[1] < d.im.size[1]:
if d.im.getpixel(p) == (0,0,0):
if not link(d,pos,p):
gnpos.append(p)
d.point(pos,fill=c)
if gnpos==[]:
break
s = random.choice(gnpos)
d.line([pos,s])
pos = s
def graph(d,L,c):
for i in L:
print "level:",2**i
trace(d,2**i,c)
sizeX = 512
sizeY = 512
def image():
base = Image.new("RGB",(sizeX,sizeY))
d_base = ImageDraw.Draw(base)
graph(d_base,[4,3],"rgb(100,100,100)")
print "done"
base.save("graphOut.jpg")
del d_base
image()