Slept in today!
Posted on April 15, 2012 by Scott in Blog, PhotoGraphy
-->0 Comments
Yay! Now I got to do more things in less time!
Gonna work on Cyphacon pictures soon, just need to do other things first. Bleh.
Posted on April 15, 2012 by Scott in Blog, PhotoGraphy
-->0 Comments
Yay! Now I got to do more things in less time!
Gonna work on Cyphacon pictures soon, just need to do other things first. Bleh.
Posted on April 14, 2012 by Scott in Blog, PhotoGraphy
-->2 Comments
Second day of Cyphacon, and lots of new pics that I will need to go through. Too tired to go through them tonight, so I will do that later ;P.
Last day tomorrow!
Posted on April 13, 2012 by Scott in Blog, PhotoGraphy
-->0 Comments
Cyphacon starts today! So hopefully Ill have some pictures to post on here soon! Will tweet and post randomly I guess. Check back later!
Posted on April 13, 2012 by Scott in Blog
-->0 Comments
This is pretty creepy…
Posted on April 12, 2012 by Scott in Downloads, PHP
-->0 Comments
I am currently working on a custom cms system based on PHP/MySQL. I have quite a bit of it done but I want to get more done with it first before I release it! Right now it can show posts, create new posts, tag those posts, numbered pages of posts, and other things.
Before I release it I want to write up alittle CSS documentation on it so it will be easier to change the look if you wanted to.
Right now, the name I am giving it is Custom CMS (or CCMS for short).
Coming soon!
Posted on April 12, 2012 by Scott in Blog
-->0 Comments
Will be back soon!
Posted on April 12, 2012 by Scott in PHP
-->0 Comments
Classes are a great way to object-orient your code and to specify which functions are public, private, etc.
Lets start with a simple class that prints out “Hello world.”.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
class hello{
//Class constructor
function hello(){
$this->display_hello();
}
function display_hello(){
echo 'Hello world.';
}
};
$hello = new hello;
Now, when you run this PHP script the only thing that will show up is Hell world. When the class gets created in $hello, the class constructor is called automatically and runs whatever function calls you write in it.
Posted on April 11, 2012 by Scott in Blog
-->0 Comments
Due to school, work, and personal life I have not had time or the will to upkeep this blog. I will be deleting some posts and keeping others. Check back soon!
Posted on November 5, 2010 by Scott in Blog
-->0 Comments
Sitting in the computer lab right now, being all nice and warm because of my handy usb warming gloves. Since we live in times of budget crunching, the school doesn’t keep the heater on as long as they really should to keep students warm in classes. Ive been getting a few weird looks because of the wires coming out of my gloves. Its pretty funny to see though
.