TechIsCool’s Webblog

Just Blogging about the World and My Experiences

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(“

Enter RGB Hex:

“);

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

Hey Everyone though i would post this since it  something that you all should look at if you own an Xbox 360
The Xbox 360 product team is looking for Xbox LIVE members from all regions around the globe to participate in this Preview Program
Please fill out the Sign up Survey to be considered for the Preview program!
WARNING: If you are approved for the Preview, and your console is updated, you will not be able to remove the Preview from your console.
Those whom have been accepted into the Preview Program will be contacted by email by July 31, 2009
Thank you and we look forward to your participation!

This is just a copy and paste from the Microsoft Website

Happy 4th of July

Posted by TechIsCool


Click here to see gallery

« Newer PostsOlder Posts »