blog users and writes are increasing recently as well as blog sites. got other blogsite at friendster and blogspot. to view, check out my personal link =)
Friday, December 14, 2007
Thursday, December 13, 2007
Jhoy Imperial and the Web logo
Unveil Me - a photoshop art
lately, i have been into a new hobby and i really love it. It's digital art. its scope is anywhere from digital photography to photoshop editing and creation. mine is the latter.
it's really fun playing with your brushes and expressing your thoughts... imagination... feelings.... i have uploaded before my other photoshop works. here is my latest one entitled "Unveil Me". click on the image to view it in its original size =)
it's really fun playing with your brushes and expressing your thoughts... imagination... feelings.... i have uploaded before my other photoshop works. here is my latest one entitled "Unveil Me". click on the image to view it in its original size =)
new post at Jhoy Imperial and the Web
Just finished developing a web site for my uncle. it's http://szingtohproducts.com/.
you can view my other blog here Szingtoh Products
you can view my other blog here Szingtoh Products
Wednesday, December 12, 2007
Personal logo
I have created a personal logo for this blog.
You can view the post and the logo here "Jhoy Imperial and the Web logo"
You can view the post and the logo here "Jhoy Imperial and the Web logo"
Szingtoh Products
Hey guys! Just finished developing a simple product-selling site for my uncle. http://szingtohproducts.com/
It's very simple but easy to navigate. I'll enhance it later, slowly hehe... hope you'll like it =)
Saturday, December 8, 2007
Thursday, December 6, 2007
Friday, October 12, 2007
Image Gallery
hi guys! just been playing around with photoshop CS and here are my works... hope you' ll like 'em hehe... see my gallery below... =) thanks
Wednesday, October 10, 2007
PHP Classes
ei guys! got new PHP classes posted at "Jhoy Imperial and the Web". I've been writing simple and comprehensive snippets that i could share. hope you'll check it out.. thanks! =)
unwanted noise
tip tap tip
the drops of the water kept dripping
tip tap tip
the sound of the noise, i can't sleep
tip tap tip
breaks the silence of the night, killing me
tip tap tip
my head explodes from so much thinking
tip tap tip
gets louder and louder and i can't hear
tip tap tip
anger, depression, confusion surrounds
tip tap tip
help me forget, help me think, set me free
the drops of the water kept dripping
tip tap tip
the sound of the noise, i can't sleep
tip tap tip
breaks the silence of the night, killing me
tip tap tip
my head explodes from so much thinking
tip tap tip
gets louder and louder and i can't hear
tip tap tip
anger, depression, confusion surrounds
tip tap tip
help me forget, help me think, set me free
StumbleUpon
just recently, i registered to StumbleUpon. StumbleUpon is just like Digg where you could discover web sites and rate them whether you like them or not. just so simple, just simply click the "Thumbs-up" icon in the firefox-addon StumbleUpon! toolbar if you like the current web page and "Thumbs-down" icon if it doesn't satisfy your taste.
i just get addicted with this web page rating site because of the web pages other stumblers has stumbled(pages other users has discovered and marked as their favorite). i've discovered a lot of other web sites about various topics like people, place, photography and others. i am amazed with the photos my co-stumblers has rated. they are really awesome and are truly artistic. i can't help myself aspiring to create such fantastic works of arts. others sites are really informative giving fascinating facts about simple things.
there are a lot of sites that i really loved when i randomly stumble on them. other stumblers has given their part in "stumbling" and so i feel i must do my part. hehe, and the most exciting part of it is to be able to discover more and share them to all.. gotta go stumbling. see yah! ^_^
i just get addicted with this web page rating site because of the web pages other stumblers has stumbled(pages other users has discovered and marked as their favorite). i've discovered a lot of other web sites about various topics like people, place, photography and others. i am amazed with the photos my co-stumblers has rated. they are really awesome and are truly artistic. i can't help myself aspiring to create such fantastic works of arts. others sites are really informative giving fascinating facts about simple things.
there are a lot of sites that i really loved when i randomly stumble on them. other stumblers has given their part in "stumbling" and so i feel i must do my part. hehe, and the most exciting part of it is to be able to discover more and share them to all.. gotta go stumbling. see yah! ^_^
Simple PHP Class Example Part 1
$item = new Items;
$item -> setName("Book");
$book = $item->getName();
$item -> setName("Pencil");
$Pencil = $item->getName();
class Items
{
var $item;
function setName($newname)
{
$this->title=$newname;
}
function getName()
{
return $this->title;
}
}
$item -> setName("Book");
$book = $item->getName();
$item -> setName("Pencil");
$Pencil = $item->getName();
class Items
{
var $item;
function setName($newname)
{
$this->title=$newname;
}
function getName()
{
return $this->title;
}
}
Simple PHP Class Example Part 2
/*Create a new Object*/
$pricelist = new PriceList;
/*Set item name and price*/
$pricelist-> setItem("Carrot",10);
/*Get Item information*/
$itemname = $pricelist->getItemName();
$itemprice = $pricelist->getItemPrice();
$iteminfo = $pricelist->getItemInfo();
/*Display Item Information*/
echo "Name: $itemname \n";
echo "Price: $itemprice \n";
echo "Item Information: $iteminfo \n";
/*
OUTPUT
Name: Carrot
Price: 10
Item Information: Item=Carrot, Price=10
*/
/* This is the class object */
/* The Class name is "PriceList"*/
class PriceList
{
var $item; // -> this will hold the item name
var $price; // -> this will hold the item price
var $iteminfo; // -> this will hold the item info
/* This function will set the item name and price and store them in "inteminfo"*/
function setItem($newitem, $newprice)
{
$this->item=$newitem;
$this->price=$newprice;
$this->iteminfo = "Item=".$this->item.", Price=".$this->price;
}
/* This function will return the item info of the object */
function getItemInfo()
{
return $this->iteminfo;
}
/* This function will return the item name of the object */
function getItemName()
{
return $this->item;
}
/* This function will return the item price of the obj*/
function getItemPrice()
{
return $this->price;
}
}
$pricelist = new PriceList;
/*Set item name and price*/
$pricelist-> setItem("Carrot",10);
/*Get Item information*/
$itemname = $pricelist->getItemName();
$itemprice = $pricelist->getItemPrice();
$iteminfo = $pricelist->getItemInfo();
/*Display Item Information*/
echo "Name: $itemname \n";
echo "Price: $itemprice \n";
echo "Item Information: $iteminfo \n";
/*
OUTPUT
Name: Carrot
Price: 10
Item Information: Item=Carrot, Price=10
*/
/* This is the class object */
/* The Class name is "PriceList"*/
class PriceList
{
var $item; // -> this will hold the item name
var $price; // -> this will hold the item price
var $iteminfo; // -> this will hold the item info
/* This function will set the item name and price and store them in "inteminfo"*/
function setItem($newitem, $newprice)
{
$this->item=$newitem;
$this->price=$newprice;
$this->iteminfo = "Item=".$this->item.", Price=".$this->price;
}
/* This function will return the item info of the object */
function getItemInfo()
{
return $this->iteminfo;
}
/* This function will return the item name of the object */
function getItemName()
{
return $this->item;
}
/* This function will return the item price of the obj*/
function getItemPrice()
{
return $this->price;
}
}
Wednesday, September 26, 2007
Silence and Melancholy
it was indeed a very peculiar night. the cold breeze is blowing and the sky is covered with clouds. it's about to rain again though it had rained hard earlier, it still have much to pour.
the dinner is served but still silence remains still. no words were spoken. no whispers were heard. only the murmuring conversation of the other couples across the table filled the air as if a very precious secret is being conversed.
the food is scrumptious but no one gave a compliment. dinner is finished and the bill was paid. it's time to go but only body language led the way.
the cold lonely night embraced me outside. another quiet walk has saddened my heart. i hoped it'll rain over me. i want to cry and hide the tears but i can't. i must be strong and keep myself together or I'll break down.
it is a very awkward feeling. silence kept echoing and my heart kept hurting. i feel so broken still i managed to smile. it's time to go. maybe later it'll be okay. i hope.
the dinner is served but still silence remains still. no words were spoken. no whispers were heard. only the murmuring conversation of the other couples across the table filled the air as if a very precious secret is being conversed.
the food is scrumptious but no one gave a compliment. dinner is finished and the bill was paid. it's time to go but only body language led the way.
the cold lonely night embraced me outside. another quiet walk has saddened my heart. i hoped it'll rain over me. i want to cry and hide the tears but i can't. i must be strong and keep myself together or I'll break down.
it is a very awkward feeling. silence kept echoing and my heart kept hurting. i feel so broken still i managed to smile. it's time to go. maybe later it'll be okay. i hope.
Saturday, September 22, 2007
Jhoy Imperial and the Web
Ei their guys! just created a new blog site. it will be about web development. Just simple codes of PHP in the simplest way of understanding and usage... i'll stick with PHP for now, maybe in the future ill add codes for other languages that i know ^_^ im so excited ...
View my new blog site here "Jhoy Imperial and the Web"
View my new blog site here "Jhoy Imperial and the Web"
Simple PHP Class Example
/* Simple Class Structure */
class MathOperation
{
var $value1;
var $value2;
function Sum($value1, $value2)
{
$result = $value1 + $value2;
return $result;
}
function Diff($value1, $value2)
{
$result = $value1 - $value2;
return $result;
}
function Prod($value1, $value2)
{
$result = $value1 * $value2;
return $result;
}
function Quot($value1, $value2)
{
$result = $value1 / $value2;
return $result;
}
}
/*
STRUCTURE : [object variable name] = new [class name]
$compute : is the variable name of the new class object that we created
MathOperation : is the name of the class that we creayed
*/
$compute = new MathOperation;
/*
STRUCTURE : [object variable name] -> functionname(parameter1, parameter2)
$sum : is the variable which would hold the result of the class function that we called
Sum() : is the class function that we called
2 : would be assigned to $value1
9 : would be assigned to $value2
thus, "$value1 = paramater1, $value2 = parameter2" and so on
*/
$sum = $compute->Sum(2,9);
$diff = $compute->Diff(5,6);
$prod = $compute->Prod(3,2);
$quot = $compute->Quot(7,3);
/*This will display the result of the above operation*/
echo "Sum(2,9) = $sum, Diff(5,6) = $diff, Prod(3,2) = $prod, Quot(7,3) = $quot";
/*
OUTPUT :
Sum(2,9) = 11, Diff(5,6) = -1, Prod(3,2) = 6, Quot(7,3) = 2.33333333333
*/
class MathOperation
{
var $value1;
var $value2;
function Sum($value1, $value2)
{
$result = $value1 + $value2;
return $result;
}
function Diff($value1, $value2)
{
$result = $value1 - $value2;
return $result;
}
function Prod($value1, $value2)
{
$result = $value1 * $value2;
return $result;
}
function Quot($value1, $value2)
{
$result = $value1 / $value2;
return $result;
}
}
/*
STRUCTURE : [object variable name] = new [class name]
$compute : is the variable name of the new class object that we created
MathOperation : is the name of the class that we creayed
*/
$compute = new MathOperation;
/*
STRUCTURE : [object variable name] -> functionname(parameter1, parameter2)
$sum : is the variable which would hold the result of the class function that we called
Sum() : is the class function that we called
2 : would be assigned to $value1
9 : would be assigned to $value2
thus, "$value1 = paramater1, $value2 = parameter2" and so on
*/
$sum = $compute->Sum(2,9);
$diff = $compute->Diff(5,6);
$prod = $compute->Prod(3,2);
$quot = $compute->Quot(7,3);
/*This will display the result of the above operation*/
echo "Sum(2,9) = $sum, Diff(5,6) = $diff, Prod(3,2) = $prod, Quot(7,3) = $quot";
/*
OUTPUT :
Sum(2,9) = 11, Diff(5,6) = -1, Prod(3,2) = 6, Quot(7,3) = 2.33333333333
*/
Tuesday, September 4, 2007
Modeling
Modeling is really a fabulous world. You meet lots of faces usually renowned people from big industries, visit places locally and around the globe and a free pass in being popular in the world. Though really tiring and exhausting, the fun part of it is you get a lot of freebies and stuffs. Branded items and usually limited edition, collectible items.
Lots and lots of people are aspiring to be on top of the modeling scene. People of all ages and of all genders. But modeling is not only for models alone. Modeling world is also comprised of photographers and stylists, without them, there can be no runway shows or fashion magazines.
Although I'm not into modeling, i really admire the artistic works of this industry. The glamorous outfits and styles, amazing poses and so artistic and fantastic photos. It's just very wonderful world where beauty really counts.
Lots and lots of people are aspiring to be on top of the modeling scene. People of all ages and of all genders. But modeling is not only for models alone. Modeling world is also comprised of photographers and stylists, without them, there can be no runway shows or fashion magazines.
Although I'm not into modeling, i really admire the artistic works of this industry. The glamorous outfits and styles, amazing poses and so artistic and fantastic photos. It's just very wonderful world where beauty really counts.
Monday, September 3, 2007
Jhoy Imperial
Ei guys!
this is my first blog and i just want to keep it simple by just introducing myself... hehe that's all ^_^ see yah in my other upcoming blogs... teeceee!
this is my first blog and i just want to keep it simple by just introducing myself... hehe that's all ^_^ see yah in my other upcoming blogs... teeceee!
Subscribe to:
Posts (Atom)