I decided to re-engineer it from the ground up. JPolite V2 is then a complete re-design from the ground up with nothing from V1 except for the look & feel. The code structure is much clearer which makes it easier for customization, as well as integration with other jQuery plugins.
A new feature that is now being tested with JPolite is called XDO (XML Data Object), which currently supports JSON objects only. The whole idea is based on some discussion around “Thin Server Architecture” and REST architecture style, that a browser client first construct the foundation of a web app with STATIC content (HTML, CSS and JavaScript) from a web server, and then exchange only DATA (XML, JSON, TXT) with the application server, which relieves the server from the burden of generating HTML markup. This feature is still experimental with lots enhancements expected.
from In the Beginning was the Command Line available at:...possible to glean certain patterns, and one that recurred as regularly as an urban legend was the one about how someone would move into a commune populated by sandal-wearing, peace-sign flashing flower children, and eventually discover that, underneath this facade, the guys who ran it were actually control freaks; and that, as living in a commune, where much lip service was paid to ideals of peace, love and harmony, had deprived them of normal, socially approved outlets for their control-freakdom, it tended to come out in other, invariably more sinister, ways.
Applying this to the case of Apple Computer will be left as an exercise for the reader, and not a very difficult exercise.
http://artlung.com/smorgasborg/C_R_Y_P_T_O_N_O_M_I_C_O_N.shtml and http://www.cryptonomicon.com/beginning.html
Magnetism: Electromagnetism: An electric motor in 10 minutes Fun with High Voltage A 10 minute railgun A 30 second motor Listening to magnetism Electrochemistry: A plastic hydrogen bomb Building your own solar battery Building a Hydrogen Fuel Cell Homemade Batteries Collecting Chemical Elements Radio: A quick and simple radio Building a radio in 10 minutes Build a portable crystal radio A radio out of household items A simple AM transmitter The Three-Penny Radio Thermodynamics: Aerodynamics: A Bernoulli levitation ball A Homemade Vacuum Pump A Classic Propellor Toy Light and optics: Simple laser communicator Make a solar hotdog cooker A solar powered marshmallow roaster Biology: Extracting DNA in your kitchen Mathematics: Kaleidocycles A Geodesic Dome A Homemade Microgram Balance Computers and Electronics: A Computer Controlled Transmitter A Free Space Laser Data Transmitter Fun With Solderless Breadboards A Simple 1 Watt Amplifier
# Server program from socket import * # Set the socket parameters host = "localhost" port = 21567 buf = 1024 addr = (host,port) # Create socket and bind to address UDPSock = socket(AF_INET,SOCK_DGRAM) UDPSock.bind(addr) # Receive messages while 1: data,addr = UDPSock.recvfrom(buf) if not data: print "Client has exited!" break else: print "nReceived message '", data,"'" # Close socket UDPSock.close()
# Client program
from socket import *
# Set the socket parameters
host = "localhost"
port = 21567
buf = 1024
addr = (host,port)
# Create socket
UDPSock = socket(AF_INET,SOCK_DGRAM)
def_msg = "===Enter message to send to server===";
print "n",def_msg
# Send messages
while (1):
data = raw_input('>> ')
if not data:
break
else:
if(UDPSock.sendto(data,addr)):
print "Sending message '",data,"'....."
# Close socket
UDPSock.close()
Free Serial Port Monitor allows you to intercept, display and analyze all data exchanged between the Windows application and the serial device. It can be successfully used in application development, device driver or serial hardware development and offers the powerful platform for effective coding, testing and optimization.
Mitokine Bioscience was founded in Down East Maine in 2006 to develop a critical new treatment for diabetes. This year - 2009 - Mitokine’s treatment will be tested at Purdue University School of Veterinary Medicine in companion dogs that are insulin dependent, a natural diabetes model. A larger canine study to meet requirements for FDA approval for a veterinary pharmaceutical product will follow. In the mean time, research at Mitokine continues to develop a similar treatment for human diabetes.