links · people · groups · tags | My: links · tags · groups · watchlists · notes login · sign up now! | help · blog
Simpy simpy
 
Michael Shook, member since May 27, 2004
.
1 - 10 of 14021 next »   Watch mshook
 
via http://twitter.com/programmingjoy/status/5857692995

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.

by mshook 2009-11-19 10:20 jquery · jpolite · interview · javascript · portal · igoogle · netvibes · why · json · gadget · framework · rest · architecture · xdo · interesting
http://openvoice.ossreleasefeed.com/2009/11/wayne-lee-on-jpolite-lightweight-jquery-based-portal-framework/ - cached - mail it - history

...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.

from In the Beginning was the Command Line available at:
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
by mshook 2009-11-19 09:53 20 · november · 2009 · a · neal · quote · good · apple · jobs · stevejobs · control · freak · controlfreak · culture · cult
http://mshook.appspot.com/z/d4m.htm?/20+november+2009+a - cached - mail it - history
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
by mshook 2009-11-15 13:25 electronics · science · good · project · motor · radio · transmitter · laser · optics · eclectic · interesting · morse
http://sci-toys.com/index.html - cached - mail it - history
# 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()
by mshook 2009-11-14 18:27 test · python · udp · example · code · simple · useful · works
http://www.evolt.org/node/60276 - cached - mail it - history
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.
by mshook 2009-11-13 19:15 debug · protocol · com · uart · usb · emon · useful · works
http://www.serial-port-monitor.com/ - cached - mail it - history

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.

by mshook 2009-11-06 23:21 biology · maine · business · hancock · medical · mti · test
http://mitokine.com/ - cached - mail it - history
1 - 10 of 14021 next »  
Top Tags
View: alpha · freq · cloud / 20 · 50 · 100 · all
 
239 via
130 good
123 book
120 how
101 photo
95 howto
91 history
84 maine
84 2009
80 engine
80 swhpl
73 video
72 train
72 saved
69 rail
67 example
64 pdf
Related Users
 
Add Dates