<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9" -->
<rss version="0.92">
<channel>
	<title>Cell Tutorials Micro Tutorials</title>
	<link>http://celtu.com</link>
	<description>Shortest Tutorials</description>
	<lastBuildDate>Thu, 05 Aug 2010 07:01:06 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>PhoneGap &#8211; Great Framework!</title>
		<description><![CDATA[PhoneGap is an open source development framework for building  cross-platform mobile apps.  Build apps in HTML and JavaScript and still take advantage of  core features in iPhone/iTouch, iPad, Google Android, Palm, Symbian and  Blackberry SDKs.
http://www.phonegap.com/
 Tweet This Post
]]></description>
		<link>http://celtu.com/?p=180</link>
			</item>
	<item>
		<title>Google Voice &#8211; Dialing free calls or receiving on iPodTouch</title>
		<description><![CDATA[This is the only completely free method of both calling and receiving calls on your Ipod Touch that I&#8217;ve found. And I&#8217;ve done lots and lots of looking.
Although Gizmo5 can be used as call-out, the free version only works for 3 minutes.  This restriction can be bypassed however, by the following method:
1. Sign up/ possess [...]]]></description>
		<link>http://celtu.com/?p=174</link>
			</item>
	<item>
		<title>Installing 500GB Hitachi 7200 RPM 2.5&#8243; on 1.83GHz Macbook</title>
		<description><![CDATA[Installing 500GB Hitachi 7200 RPM 2.5&#8243; on 1.83GHz Macbook
Macbook has Core 2 Duo, 2GB, 60GB hard drive using Leopard.
Someone needed it to get upgraded:
1. bought 500GB 7200rpm Hitachi 2.5&#8243; delivered $85 from NewEgg.com
2. removed battery and 3 screws from the tin around the battery space
3. pulled white plastic on left to pull hard drive out
4. [...]]]></description>
		<link>http://celtu.com/?p=170</link>
			</item>
	<item>
		<title>JQuery to remove any div with id on any web page</title>
		<description><![CDATA[JQuery to remove any div with id on any web page
Usually you need this kind of situation when you are using any framework or templates where header is in different file but being used as common and you need not to show anything specific from that header only on this page, where you can add [...]]]></description>
		<link>http://celtu.com/?p=156</link>
			</item>
	<item>
		<title>IE issue when using Wordpress 2.7 (IE 6, 7, 8) troubleshooting</title>
		<description><![CDATA[Wordpress IE troubleshooting]]></description>
		<link>http://celtu.com/?p=146</link>
			</item>
	<item>
		<title>Wordpress Highlight comments by multiple Authors.</title>
		<description><![CDATA[&#60;![CDATA
IN Comments.php ADD FOLLOWING RIGHT BEFORE FIRST &#60;ol element that contains comment_author_link():
&#60;?php
$users = get_users_of_blog();
foreach( $users as $user ) {
$role = array_pop( array_keys( unserialize($user-&#62;meta_value) ) ); // yeah, I know, looks awkward  
$user_id = $user-&#62;user_id;
if ( $role != 'subscriber' ) // collect id of anyone whose role is greater than 'subscriber'
$roles[ $user_id ] = $role;
}
?&#62;
&#60;style&#62;
#commentlist [...]]]></description>
		<link>http://celtu.com/?p=139</link>
			</item>
	<item>
		<title>Unix or Mac OS X Leopard Terminal commands and definitions</title>
		<description><![CDATA[1)
To point PEAR to any directory which has correct db2.prop (or info etc):
a.)
First cd folder_that_has_PEAR
b.)
ln -s /Applications/XAMPP/xamppfiles/lib/php/pear PEAR
2.
To see full path of current folder in Terminal:
pwd
3.
To search:
find . -name &#8220;db.php&#8221;
find . -name &#8220;DB.php&#8221;
find . -name &#8220;*.php&#8221;
Create Directory:
sudo mkdir php
 Tweet This Post
]]></description>
		<link>http://celtu.com/?p=126</link>
			</item>
	<item>
		<title>to submit your web site for SEO to all search engine</title>
		<description><![CDATA[to submit your web site for SEO to all search engine
http://www.submitexpress.com/submit.html
The main engines we submit to:



 Google
Whatuseek
Wisenut
ExactSeek 
Scrubtheweb
Jayde  


 







In addition your site will be listed in the below Search Engines:




AOL Search
HotBot
Search.com
 Metacrawler 
 Dogpile
 Mamma
C4
Canada.com
ixquick
Infogrid
 WebInfoSearch
 Fast Search (AllTheWeb.com)
Query Server
800go
Debriefing
  Highway 61
  37.com
OneSeek
MetaSpider
Vivisimo
PlanetSearch
 surfwax
qbSearch
ProFusion
Proteus
Go 2 Net
MegaGo.com
WebFile
myGO
Megacrawler
Search Climbers  



 Tweet This [...]]]></description>
		<link>http://celtu.com/?p=124</link>
			</item>
	<item>
		<title>Wrapper/outer div to keep inner div top right regardless of resolution:</title>
		<description><![CDATA[Wrapper/outer div to keep inner div top right regardless of resolution:
&#60;html&#62;&#60;head&#62;
&#60;style type=&#8221;text/css&#8221;&#62;
#divnamewrap{
height:140px;
width:100%;
position:absolute;
left:0px;
top:0px;
}
#divname{
height:140px;
width:185px;
position:relative;
z-index:0;
float:right;
}
&#60;/style&#62;
&#60;/head&#62;
&#60;body&#62;
&#60;div id=&#8221;divnamewrap&#8221;&#62;
&#60;div id=&#8221;divname&#8221;&#62;div content here &#60;/div&#62; &#60;!&#8211; top right this div will appear that&#8217;s why we used wrapper so that change of resolution should keep it on right &#8211;&#62;
&#60;/div&#62;
&#60;/body&#62;
&#60;/html&#62;
 Tweet This Post
]]></description>
		<link>http://celtu.com/?p=122</link>
			</item>
	<item>
		<title>Vanishing a div using JavaScript timer and CSS display none</title>
		<description><![CDATA[Removing div after defined time using JavaScript timer and CSS Display none without any library.]]></description>
		<link>http://celtu.com/?p=116</link>
			</item>
</channel>
</rss>
