Posts

Showing posts from March, 2012

Asus Transformer Prime TF201 Review

Image
Asus is probably the first manufacturer to out a quad-core tablet and also the first one to set the tone on netbook-cum-tablet form factor. Check out our full review of the  Asus Transformer Prime  TF201  after the jump. The Transformer Prime is a second-generation tablet from Asus and the company has made sure its got all the bells and whistles with it. Its got a thinner body but on a same solid, metal chassis coupled with a very powerful engine under the hood. Read More on:  Asus Transformer Prime TF201 Review

Electronic Cigarette or E-cig

Electronic Cigarette or E-cig become popular this days. E-cig is an electrical device that simulated the act of tobacco by producing an inhaled mist bearing the physical sensation, appearance, and often the flavor and nicotine content of inhaled tobacco smoke. By using e-cig it gives satisfaction to the user that they feel when they used tobacco but less risk from the nicotine. The device uses heat to vaporize a propylene glycol or glycerin-based liquid solution into an aerosol mist, similar to the way a nebulizer or humidifier vaporizes solutions for inhalation. The purpose of creating e-cig is to eliminate and it gives alternative to tobacco smoking. How Does An Electronic Cigarette Work? There are three main parts to an electronic cigarette. The Cartridge. This acts like the butt of the electronic cigarette, it contains a liquid that determines the flavor and nicotine strength of your e-cig.  Cartridges can be purchased with flavors like Tobacco and Menthol. You also can de

Pinoy developer salaries, the lowest in the world?

Image
Annual Salaries: Graphic Designers: $5,657.71 (Php243,281 or Php18,713/month) Web Developer: $6,873.83 (Php295,574 or Php22,736/month) Senior Web Developer: $9,054.33 (Php389,336 or Php29,949/month) Software Developer: $7,521.83 (Php323,439 or Php24,880/month) Web Designer: $4,244.28 (Php182,504 or Php14,039/month) Senior Web Designer: $7,190.59 (Php309,195 or Php23,784/month) Medical Transcriptionist: $3,112.47 (Php133,836 or Php10,295/month) Pinoy developer salaries, the lowest in the world?

Check out my new Portfolio

Image
Check out my new website. It will show all my latest works and recent writings. I appreciate if you leave some comments. http://kaethleenborja.com

In Creating your Website you need

Text Editor   - you will need this to write your web pages.   The very basic tool for your text editor is the NOTEPAD. But today, you can use different tools such as Notetab, Dreamweaver, Notepad++, etc. Browser – this will be the tool to see how your web pages will look like FTP -  According to Holzschlag, “File Transfer Protocol (FTP) is one of a variety of protocols that run on the Internet.  An FTP client allows you to transfer any kind of file from a local computer to a remote server, and depending upon the capabilities of the client you’re using, perform important functions such as changing file permissions.” Source:  Holzschlag, M. E. (n.d.). 250 HTML and Web Design Secrets. Wiley Publishing, Inc.

How to create a VCF card?

First you need to call your settings and generate a vcf. You can even create an image or create a button  rather than text to give more style on your website. Code:  <a href="vcard.settings.php">Download VCF Card</a>  Below is a sample file called vcard.settings.php require_once('./vcard.class.php'); //Path of your vcard class $vc = new vcard(); //Creating new vcard object $vc->filename = "Melanie Borja"; $vc->revision_date = ""; //If you leave this blank, the current timestamp will be used. $vc->class = "PUBLIC"; /* Contact's name data.*/ $vc->data['display_name'] = ""; $vc->data['first_name'] = "Melanie Kaethleen"; $vc->data['last_name'] = "Borja"; #$vc->data['additional_name'] = ""; //Middle name #$vc->data['name_prefix'] = "";  //Mr. Mrs. Dr. #$vc->data['name_suffix'] = &qu

HTML 5: Placeholder

The placeholder attribute shows text  or short hint in a field intended to help user in data entry. The text will be disappear until the field is focused upon, then hides the text.  Placeholder text is supported by Firefox 3.7+ and Chrome/Safari 4.0+ Example: <input type="text" name="FirstName" value="" placeholder="First Name"> Output will be: Now, when IE and Opera is being used your placeholder won't work. To work for your placeholder we need to do some javascript.  /* This will check if your browser supports placeholder */ jQuery(function() { jQuery.support.placeholder = false; test = document.createElement('input'); if('placeholder' in test) jQuery.support.placeholder = true; }); /* This will transfer your placeholder to your input value */ $(function() { if(!$.support.placeholder) { var active = document.activeElement; $(':text').focus(function () { if ($(this).attr('

CSS & Javascript Style

Changing the style of an object is as simple as finding the object on the page, then setting the new style value. Use the code below as an example. //Find the div you want to update var divResponse = document.getElementById('response'); //Set the width style divResponse.style.width = '300px'; CSS attribute names are slightly different when used in JavaScript, so you will need to reference the list below before you get frustrated and pull your hair out. CSS Attribute to JavaScript Reference CSS Property JavaScript Reference background background background-attachment backgroundAttachment background-color backgroundColor background-image backgroundImage background-position backgroundPosition background-repeat backgroundRepeat border border border-bottom borderBottom border-bottom-color borderBottomColor border-bottom-style borderBottomStyle border-bottom-width borderBottomWidth border-color borderColor border-left borderLeft border-left-color bor