Slept in today!

Posted on April 15, 2012 by in Blog, PhotoGraphy
-->0 Comments

Yay! Now I got to do more things in less time! :D

Gonna work on Cyphacon pictures soon, just need to do other things first. Bleh.


Tags: ,


Cyphacon! Part 2

Posted on April 14, 2012 by 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!


Tags: ,


Cyphacon!

Posted on April 13, 2012 by 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!


Tags: ,


More stuffies from Matsuri!

Posted on April 13, 2012 by in Blog
-->0 Comments

This is pretty creepy…


Tags: , , ,


Custom CMS software

Posted on April 12, 2012 by 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!


Tags: , , ,


Fixing to break website to test themes.

Posted on April 12, 2012 by in Blog
-->0 Comments

Will be back soon!



Look who was at Anime Matsuri

Posted on April 12, 2012 by in Blog, PhotoGraphy
-->0 Comments

Horse Head


Tags: , ,


Creating Classes in PHP: Beginners

Posted on April 12, 2012 by 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.

  • class hello(){} creates class hello
  • function hello() creates the class constructor. Use the same name as the class to make a constructor. When the class is created, the class constructor is called automatically.
  • $this->display_hello(); calls upon a function defined within the class hello. You use $this only when you are calling functions with the same class.
  • $hello = new hello; creates the class. When the class is created the constructor runs.

Tags: , ,


Revamp coming!

Posted on April 11, 2012 by 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!


Tags:


Mnnn, nice and toasty…

Posted on November 5, 2010 by 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 :) .


Tags: ,