Down Time
Posted by TechIsCool
Hey everyone my shared hosting server is getting moved for Riverside, California to a new data center in Irvine, California so on the 16th of October from 8-12pm pst there will be downtime. Thanks for your participation
-TechIsCool
Code Test
Posted by TechIsCool
This is Just a test
#include
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
byte ip[] = { 192, 168, 6, 177 };
Server server(80);
void setup()
{
Ethernet.begin(mac, ip);
server.begin();
}
void loop()
{
Client client = server.available();
if (client) {
// an http request ends with a blank line
boolean current_line_is_blank = true;
while (client.connected()) {
if (client.available()) {
char c = client.read();
// if we’ve gotten to the end of the line (received a newline
// character) and the line is blank, the http request has ended,
// so we can send a reply
if (c == ‘\n’ && current_line_is_blank) {
// send a standard http response header
client.println(“HTTP/1.1 200 OK”);
client.println(“Content-Type: text/html”);
client.println();
client.print(“
“);
break;
}
if (c == ‘\n’) {
// we’re starting a new line
current_line_is_blank = true;
} else if (c != ‘\r’) {
// we’ve gotten a character on the current line
current_line_is_blank = false;
}
}
}
// give the web browser time to receive the data
delay(1);
client.stop();
}
}
School
Posted by TechIsCool
Hey everyone It seems like I never update my blog anymore even if I have the time. Well things are changing for me and I think its for the good I will be going to Edmond’s Community College this year and since the classes that I want to take are in the afternoon – 10pm that is when I will be going. So hopefully I will stay safe driving back and forth between school and home. 🙂 Maybe I will be updating the Blog with some cool Arduino stuff that I have been working on.
Xbox Live Preview
Posted by TechIsCool

Please fill out the Sign up Survey to be considered for the Preview program!
This is just a copy and paste from the Microsoft Website
Happy 4th of July
Posted by TechIsCool