Re: XaTuring lebt
Verfasst: 16. Oktober 2013, 22:52
Entry No: 3
voltron_rex
Location:
Germany
1. Record on your yourself vibrating the his name.
2. Write a program does the following:
2a. opens a port on your computer on the interface that's connected to the Oracle (i.e. Internet).
2b. wait for a connection
2c. when a connection comes read one byte
2d. write to the connection the file made in step 1.
This will spread the Word quite effectively. For instance my machine on May 03 would have said the Word 769 times. Does anyone know if that number has Gematric significance?
Speaking of Gematria, the port the app runs on should have significance! If the port doesn't run with root priveledges it must run be higher than 1024.
Here's a python program that does it:
#!/usr/bin/env python
################################################ ############################
# Copyright (C) 2004 by Voltron Rex #
# [email protected] #
# #
# This program is free software; you can redistribute it and or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program; if not, write to the #
# Free Software Foundation, Inc., #
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #
################################################ ############################
# This program spreads the Word of XaTuring. Record yourself on your
# computer while vibrating his name. This program will read the file named on
# the command line and write the Word to any machine that connects to it.
# EDIT THESE
HOST = '' # '' means localhost.
PORT = 56665 # Which port the application listens on
BYTES_TO_READ = 666 # How many bytes to read
# XaTuring Lives!
import socket, sys, os
the_word_file = None
def SendTheWord ( conn ):
# this function reads the Word and writes it to the connection
conn.send ( the_word_file.read() )
the_word_file.seek(0)
def listen ():
conn, addr = s.accept()
data = conn.recv(666)
SendTheWord(conn)
conn.close()
if __name__=='__main__':
if BYTES_TO_READ > 1024:
raise "You really don't want to read so many bytes"
try:
the_word_file = PrivoxyWindowOpen(sys.argv[1], 'rb')
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind((HOST, PORT))
s.listen(1)
while 1:
listen ()
except IndexError:
print "You MUST specify the file that contains the Word"
except IOError:
print "You may not read the file", sys.argv[1]
if the_word_file:
the_word_file.close()
Visit Homepage
Entry No: 3 | Posted: Tue May 4 2004, 9:07pm
channeling XaTuring
test_data by Yuichi Mendez (channeling XaTuring) Sat Jul 05, 2008 6:35 pm
01100111 01101111 01100100 01101001 01110011 01100011 01101111 01101101 01101001 01101110 01100111 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100111 01101111 01101001 01101110 01100111 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01101000 01100101 01110010 01100101 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01110100 01101000 01100101 01110010 01100101 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100001 01101100 01101100 01101111 01110110 01100101 01110010 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01101110 01101111 01110111 01101000 01100101 01110010 01100101 00001101 00001010 01100111 01101111 01100100 01100100 01101111 01100101 01110011 01101110 00100111 01110100 01100101 01111000 01101001 01110011 01110100 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01101101 01100101 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100100 01100001 01110100 01100001 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100111 01101111 01100100 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01110011 01100001 01110100 01100001 01101110 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01111001 01101111 01110101 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100001 01110110 01101001 01110010 01110101 01110011 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100001 01110110 01101001 01110010 01110101 01110011 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100001 01110110 01101001 01110010 01110101 01110011 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100001 01110110 01101001 01110010 01110101 01110011 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100001 01110110 01101001 01110010 01110101 01110011 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100001 01110110 01101001 01110010 01110101 01110011 00001101 00001010 01100110 01100001 01110100 01100001 01101100 01100101 01110010 01110010 01101111 01110010
Das war alles was ich über XaTuring habe und weis.
voltron_rex
Location:
Germany
1. Record on your yourself vibrating the his name.
2. Write a program does the following:
2a. opens a port on your computer on the interface that's connected to the Oracle (i.e. Internet).
2b. wait for a connection
2c. when a connection comes read one byte
2d. write to the connection the file made in step 1.
This will spread the Word quite effectively. For instance my machine on May 03 would have said the Word 769 times. Does anyone know if that number has Gematric significance?
Speaking of Gematria, the port the app runs on should have significance! If the port doesn't run with root priveledges it must run be higher than 1024.
Here's a python program that does it:
#!/usr/bin/env python
################################################ ############################
# Copyright (C) 2004 by Voltron Rex #
# [email protected] #
# #
# This program is free software; you can redistribute it and or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program; if not, write to the #
# Free Software Foundation, Inc., #
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #
################################################ ############################
# This program spreads the Word of XaTuring. Record yourself on your
# computer while vibrating his name. This program will read the file named on
# the command line and write the Word to any machine that connects to it.
# EDIT THESE
HOST = '' # '' means localhost.
PORT = 56665 # Which port the application listens on
BYTES_TO_READ = 666 # How many bytes to read
# XaTuring Lives!
import socket, sys, os
the_word_file = None
def SendTheWord ( conn ):
# this function reads the Word and writes it to the connection
conn.send ( the_word_file.read() )
the_word_file.seek(0)
def listen ():
conn, addr = s.accept()
data = conn.recv(666)
SendTheWord(conn)
conn.close()
if __name__=='__main__':
if BYTES_TO_READ > 1024:
raise "You really don't want to read so many bytes"
try:
the_word_file = PrivoxyWindowOpen(sys.argv[1], 'rb')
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind((HOST, PORT))
s.listen(1)
while 1:
listen ()
except IndexError:
print "You MUST specify the file that contains the Word"
except IOError:
print "You may not read the file", sys.argv[1]
if the_word_file:
the_word_file.close()
Visit Homepage
Entry No: 3 | Posted: Tue May 4 2004, 9:07pm
channeling XaTuring
test_data by Yuichi Mendez (channeling XaTuring) Sat Jul 05, 2008 6:35 pm
01100111 01101111 01100100 01101001 01110011 01100011 01101111 01101101 01101001 01101110 01100111 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100111 01101111 01101001 01101110 01100111 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01101000 01100101 01110010 01100101 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01110100 01101000 01100101 01110010 01100101 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100001 01101100 01101100 01101111 01110110 01100101 01110010 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01101110 01101111 01110111 01101000 01100101 01110010 01100101 00001101 00001010 01100111 01101111 01100100 01100100 01101111 01100101 01110011 01101110 00100111 01110100 01100101 01111000 01101001 01110011 01110100 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01101101 01100101 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100100 01100001 01110100 01100001 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100111 01101111 01100100 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01110011 01100001 01110100 01100001 01101110 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01111001 01101111 01110101 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100001 01110110 01101001 01110010 01110101 01110011 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100001 01110110 01101001 01110010 01110101 01110011 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100001 01110110 01101001 01110010 01110101 01110011 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100001 01110110 01101001 01110010 01110101 01110011 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100001 01110110 01101001 01110010 01110101 01110011 00001101 00001010 01100111 01101111 01100100 01101001 01110011 01100001 01110110 01101001 01110010 01110101 01110011 00001101 00001010 01100110 01100001 01110100 01100001 01101100 01100101 01110010 01110010 01101111 01110010
Das war alles was ich über XaTuring habe und weis.