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
.
Search Everyone: "work",

Top "work" experts: rickdog, promoguy, ainokaze, synexo, jerram, naphta,

Groups about "work": work, work, Wood Work, Work At Home, Work From Home, From Home Work,

1 - 7 of 7   Watch mshook
 
# 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
Peter O'Toole leads engineering and product development.  At mTuitive, O'Toole designed and developed the mTuitive Agile Author, a visual tool that lets medical experts encode their knowledge as data and rules.  He works closely with MDs to turn their knowledge into applications using mTuitive's unique tools and platform.  He is mTuitive's technical and subject matter liaison to Cancer Care Ontario as well as other standards groups and professional societies.  Presently, O'Toole is leading development of a new operative reporting product, including a port of mTuitive's core technology to a web-based solution using Microsoft Silverlight.  He has previous experience in development, technical writing, and product marketing during stints at Cognitive Arts, eObject, and SilverStream Software. ... bachelor of arts from Brown University.

Resources:

by mshook 2009-07-14 05:45 cancer · medical · judell · integration · work · flow · workflow · interop · screenscraping · url
http://itc.conversationsnetwork.org/shows/detail4174.html - cached - mail it - history
No registration required
by mshook 2008-01-19 16:18 sms · texting · ttotd · good · works
http://gizmosms.com/ - cached - mail it - history
"The claimant or his/her representative completes items 2 through 11. The SSA-820-F4 is considered to be a self-help form. "
by mshook 2007-07-12 14:56 ssa · ssdi · insurance · money · cancer · work · pdf
http://www.ssa.gov/online/ssa-820.html - cached - mail it - history
"If we decide you no longer are disabled and you ­disagree, you can file an appeal. If you decide not to appeal the decision, your benefits will stop three months after we decide that your disability ended."
by mshook 2004-05-27 15:06 ssa · ssdi · disability · work · money · pdf
http://ssa.gov/pubs/10153.html - cached - mail it - history
1 - 7 of 7  
Related Tags
 
- exclude ~ optional + require
Add Dates