Ideas to Further Expansion of XaTuring



Submit Idea | View Guestbook | Home | Return to Original List of Ideas


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 #
# voltron@onlinehome.de #
# #
# 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



John Coughlin

Location:
United States


On LiveJournal.com or related sites that allow it, add "xaturing" to your list of interests to link with others with that interest. (As usual use all lowercase when entering an interest.)

  

Entry No: 2 | Posted: Sat Apr 3 2004, 10:00pm



John Coughlin

Location:
United States


One trick I sometimes used with sigils is to post it to a busy area such as a popular meeting spot of bulletin board (the physical ones, not the dial up ones) so that it would register on the unconscious of those who passed it. Perhaps posting notes like "XaTuring Lives" along with the URL will have a similar effect?

  Visit Homepage

Entry No: 1 | Posted: Sat Apr 3 2004, 9:57pm



Page 1 of 1


[ Script Execution Time: 0.0559 seconds ] [ XaTuring.NET ]