* http://twit.tv/floss97 about http://exist.sourceforge.net/
* example: http://history.state.gov/
* http://itc.conversationsnetwork.org/shows/detail4301.html
* http://www.amazon.com/Building-Social-Web-Applications-Establishing/dp/0596518757/
* interview with Jon Udell
* at ~22:30 - Jon: ~"an application" can be accomplished by a convention
* noticings (Flickr game) - Activity Stream - Oauth - OpenID
* http://itc.conversationsnetwork.org/shows/detail4289.html
* panel discussion of spectrum: cognitive radio, FCC, policy, lots of complicated stuff
* is Unix
Jacob Kaplan-Moss
October 7, 2009
void httpRequest()
{
byte theByte;
xPortSerial.print("GET ");
xPortSerial.print(PHP_PAGE_LOCATION);
// value0 = 123 and value1 = 456
// You should change these to be your sensor values or whatever you want to send
// (see php code if you want to add more values or change the names value0/value1
xPortSerial.print("?value0=123&value1=456");
xPortSerial.print(" HTTP/1.1n");
xPortSerial.print(WEB_HOST);
while(!xPortSerial.available()) {} // Just loop until available
theByte = xPortSerial.read();
if (theByte != 0)
Serial.println("Passed.");
else
Serial.println("Failed.");
}
You need to tell subversion what mime-type to use. Just use the command: svn propset svn:mime-type 'text/html' FILENAME or svn propset svn:mime-type 'image/jpeg' FILENAME For more info: http://svnbook.red-bean.com/en/1.4/svn.advanced.props.file-portability.html#svn.advanced.props.special.mime-type It's also possible to configure your Subversion client to automatically set each file's mime-type. For example, by modifying ~/.subversion/config to resemble [miscellany] enable-auto-props = yes [auto-props] *.html = svn:mime-type=text/html For more info: http://svnbook.red-bean.com/en/1.1/ch07.html#svn-ch-7-sect-1.3.2