<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>WebGarb</title> <atom:link href="http://webgarb.com/feed/" rel="self" type="application/rss+xml" /><link>http://webgarb.com</link> <description></description> <lastBuildDate>Wed, 18 Jan 2012 09:41:38 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>How to get youtube video id from URL (Perfect Way). : PHP</title><link>http://webgarb.com/tutorials/how-to-get-youtube-video-id-from-url-perfect-way/</link> <comments>http://webgarb.com/tutorials/how-to-get-youtube-video-id-from-url-perfect-way/#comments</comments> <pubDate>Mon, 02 Jan 2012 05:12:34 +0000</pubDate> <dc:creator>Ayush Singh</dc:creator> <category><![CDATA[PHP]]></category> <category><![CDATA[Tutorials]]></category> <category><![CDATA[Easiest]]></category> <category><![CDATA[Easy]]></category> <category><![CDATA[Fast]]></category> <category><![CDATA[Function]]></category> <category><![CDATA[PHP Snippet]]></category> <category><![CDATA[PHP Trick]]></category> <category><![CDATA[Snippet]]></category> <category><![CDATA[Trick]]></category> <category><![CDATA[Youtube]]></category> <guid
isPermaLink="false">http://webgarb.com/?p=470</guid> <description><![CDATA[Hi to all, while working on my one wordpress project, i need some function which can get youtube video ID from it url, so i tried to search ready made function on google. i tried most of all function which are available online but non of them worked perfectly for me, so i take quick [...]]]></description> <content:encoded><![CDATA[<p>Hi to all, while working on my one wordpress project, i need some function which can get youtube video ID from it url, so i tried to search ready made function on google.<br
/> i tried most of all function which are available online but non of them worked perfectly for me, so i take quick action of writing one new function, and so it take only few minutes and i am done with it, after that i thought to share it with you all so here the code.</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">/*
Author : Ayush Singh
Url : Webgarb.com
Get youtube video ID from URL.
*/</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> youtubeID<span style="color: #009900;">&#40;</span><span style="color: #000088;">$url</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
 	 <span style="color: #000088;">$res</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;v=&quot;</span><span style="color: #339933;">,</span><span style="color: #000088;">$url</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	 <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$res</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	 	<span style="color: #000088;">$res1</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&amp;'</span><span style="color: #339933;">,</span><span style="color: #000088;">$res</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$res1</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
			<span style="color: #000088;">$res</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$res1</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #000088;">$res1</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'#'</span><span style="color: #339933;">,</span><span style="color: #000088;">$res</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$res1</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
			<span style="color: #000088;">$res</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$res1</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
	 <span style="color: #009900;">&#125;</span>
	 <span style="color: #b1b100;">return</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$res</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">12</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  	 <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
 <span style="color: #009900;">&#125;</span>
&nbsp;
&nbsp;
<span style="color: #666666; font-style: italic;">/* Examples */</span>
<span style="color: #b1b100;">echo</span> youtubeID<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;http://www.youtube.com/watch?v=kffacxfA7G4&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&lt;br /&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> youtubeID<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;http://www.youtube.com/watch?feature=player_detailpage&amp;v=kffacxfA7G4&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&lt;br /&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> youtubeID<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;http://www.youtube.com/watch?feature=player_detailpage&amp;v=kffacxfA7G4#t=25s&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&lt;br /&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div><p>Thanks for reading :).<br
/> Enjoy and leave comment if you find this function usefull.</p> ]]></content:encoded> <wfw:commentRss>http://webgarb.com/tutorials/how-to-get-youtube-video-id-from-url-perfect-way/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>RichPad WYSIWYG editor for jQuery</title><link>http://webgarb.com/freebies/richpad/</link> <comments>http://webgarb.com/freebies/richpad/#comments</comments> <pubDate>Tue, 11 Oct 2011 19:20:58 +0000</pubDate> <dc:creator>Ayush Singh</dc:creator> <category><![CDATA[Freebies]]></category> <category><![CDATA[jQuery]]></category> <guid
isPermaLink="false">http://webgarb.com/?p=457</guid> <description><![CDATA[Description Richpad is light weight simple WYSIWYG HTML Editor jQuery plugin. this plugin allow you to easily integrate your textarea dom element into HTML WYSIWYG Editor. The minified size is 4.89kb Javascript &#038; 9.13 Images/CSS Live Demo Please open above link to view richpad live demo : http://webgarb.com/demo/RichPad/ Download Download Zip &#8211; 15.4KB &#8211; v(1.0)]]></description> <content:encoded><![CDATA[<p></p><p></p><h2>Description</h2><p><a
href="http://webgarb.com/wp-content/uploads/2011/10/2011-10-12_012245.png"><img
src="http://webgarb.com/wp-content/uploads/2011/10/2011-10-12_012245.png" alt="" title="RichPad Screenshot" width="521" height="280" class="size-full wp-image-465" /></a></p><p>Richpad is light weight simple WYSIWYG HTML Editor jQuery plugin. this plugin allow you to easily integrate your textarea dom element into HTML WYSIWYG  Editor. The minified size is 4.89kb Javascript &#038; 9.13 Images/CSS</p><p></p><p></p><h2>Live Demo</h2><p>Please open above link to view richpad live demo :<br
/> <a
href="http://webgarb.com/demo/RichPad/">http://webgarb.com/demo/RichPad/</a><br
/></p><p></p><h2>Download</h2><p><center></p><div
class="download_button"><div
class="_big"><a
rel="external" href="http://webgarb.com/wp-content/uploads/2011/10/richpad1.zip">Download <small>Zip &#8211; 15.4KB &#8211; v(1.0)</small></a></div></div><p></center><br
/></p> ]]></content:encoded> <wfw:commentRss>http://webgarb.com/freebies/richpad/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>AsciiGrab php ascii tool for gravatar</title><link>http://webgarb.com/products/javascript/asciigrab-php-ascii-tool-for-gravatar/</link> <comments>http://webgarb.com/products/javascript/asciigrab-php-ascii-tool-for-gravatar/#comments</comments> <pubDate>Fri, 16 Sep 2011 13:53:46 +0000</pubDate> <dc:creator>Ayush Singh</dc:creator> <category><![CDATA[JavaScript]]></category> <category><![CDATA[My Words]]></category> <category><![CDATA[PHP]]></category> <guid
isPermaLink="false">http://webgarb.com/?p=449</guid> <description><![CDATA[just few sec ago i finished one iscii tool in php which draw your gravatar in iscii text character .. check it out http://webgarb.com/gravatar2ascii/ and have fun :).]]></description> <content:encoded><![CDATA[<p>just few sec ago i finished one iscii tool in php which draw your gravatar in iscii text character ..<br
/> check it out <a
href="http://webgarb.com/gravatar2ascii/">http://webgarb.com/gravatar2ascii/</a> and have fun :).</p> ]]></content:encoded> <wfw:commentRss>http://webgarb.com/products/javascript/asciigrab-php-ascii-tool-for-gravatar/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Just some words about some major browser&#8217;s by me</title><link>http://webgarb.com/my-words/just-some-words-about-some-major-browsers/</link> <comments>http://webgarb.com/my-words/just-some-words-about-some-major-browsers/#comments</comments> <pubDate>Fri, 19 Aug 2011 08:40:50 +0000</pubDate> <dc:creator>Ayush Singh</dc:creator> <category><![CDATA[My Words]]></category> <category><![CDATA[About]]></category> <category><![CDATA[Browsers]]></category> <category><![CDATA[Chrome]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[IE]]></category> <category><![CDATA[Internet Explorer]]></category> <category><![CDATA[Konqueror]]></category> <category><![CDATA[Opera]]></category> <category><![CDATA[Safarti]]></category> <category><![CDATA[Talking]]></category> <guid
isPermaLink="false">http://webgarb.com/?p=439</guid> <description><![CDATA[Hola again guys, here is my words about some famous major Web Browser, and telling you what i think about them. and ya Opera, Firefox, Chrome is my best browser from all these :D . Firefox : Ummm You are Intelligent Nerdy Browser :P.. Chrome : Aaha a new Generation Young fast and lite browser [...]]]></description> <content:encoded><![CDATA[<p><img
src="http://webgarb.com/wp-content/uploads/2011/08/Untitled-1.jpg" alt="" title="Major Browsers" width="433" height="199" class="alignnone size-full wp-image-441" /><br
/> Hola again guys,<br
/> here is my words about some famous major Web Browser, and telling you what i think about them.<br
/> and ya Opera, Firefox, Chrome is my best browser from all these :D .</p><p> <strong>Firefox </strong> : Ummm You are Intelligent Nerdy Browser :P..<br
/> <br
/> <strong>Chrome </strong> : Aaha a new Generation Young fast and lite browser as athletes.<br
/> <br
/> <strong>Opera </strong> : Heavy and Handsome Browser as The Rock.<br
/> <br
/> <strong>Internet Explorer</strong> : LOL, A funny Browser in the world who have many users fans from here and there coz of Microsoft windows support.<br
/> <br
/> <strong>Safari</strong> : Browser with unwanted attitude.<br
/> <br
/> <strong>Konqueror</strong> : Grandpapa Browser Sitting on a side by giving limited support to linux :P..</p> ]]></content:encoded> <wfw:commentRss>http://webgarb.com/my-words/just-some-words-about-some-major-browsers/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Some Cross Browser Css techniques</title><link>http://webgarb.com/tutorials/cross-browser-css-techniques/</link> <comments>http://webgarb.com/tutorials/cross-browser-css-techniques/#comments</comments> <pubDate>Tue, 16 Aug 2011 17:41:57 +0000</pubDate> <dc:creator>Ayush Singh</dc:creator> <category><![CDATA[CSS]]></category> <category><![CDATA[Tutorials]]></category> <category><![CDATA[Browser]]></category> <category><![CDATA[Chrome]]></category> <category><![CDATA[Corner]]></category> <category><![CDATA[Cross Browser]]></category> <category><![CDATA[Css]]></category> <category><![CDATA[Design]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[HTML]]></category> <category><![CDATA[IE]]></category> <category><![CDATA[Konqueror]]></category> <category><![CDATA[Opera]]></category> <category><![CDATA[resize]]></category> <category><![CDATA[rounded]]></category> <category><![CDATA[Safari]]></category> <category><![CDATA[Transparency]]></category> <guid
isPermaLink="false">http://webgarb.com/?p=426</guid> <description><![CDATA[In CSS there is some CSS tricks are obscure for some web developers. and in this post i am going to tell some of Cross Browser techniques which you may don&#8217;t know. Disable Textarea resizing This CSS code will remove realizable arrow from all textarea. Work in Firefox, Chrome and Safari. textarea &#123; resize: none; [...]]]></description> <content:encoded><![CDATA[<p>In CSS there is some CSS tricks are obscure for some web developers. and in this post i am going to tell some of Cross Browser techniques which you may don&#8217;t know.</p><h2>Disable Textarea resizing</h2><p><img
src="http://webgarb.com/wp-content/uploads/2011/08/2011-08-16_222639.jpg" alt="" title="Realizable Textarea" width="332" height="158" class="alignnone size-full wp-image-427" /><br
/> This CSS code will remove realizable arrow from all textarea. Work in Firefox, Chrome and Safari.</p><div
class="wp_syntax"><div
class="code"><pre class="css" style="font-family:monospace;">textarea <span style="color: #00AA00;">&#123;</span>
      resize<span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div><h2>Cross browser rounded corners</h2><p><img
src="http://webgarb.com/wp-content/uploads/2011/08/2011-08-16_224924.jpg" alt="" title="CSS Round Corner" width="516" height="127" class="alignnone size-full wp-image-432" /><br
/> This CSS code will add round corner. Work in Firefox, Chrome, Safari, Opera and IE9.</p><div
class="wp_syntax"><div
class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.roll</span> <span style="color: #00AA00;">&#123;</span>
     border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">8px</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* Opera, CSS3 */</span>
    -moz-border-radius<span style="color: #00AA00;">:</span><span style="color: #933;">8px</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* Firefox */</span>
    -webkit-border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">8px</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* Safari, Chrome */</span>
    -khtml-border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">8px</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/*  Konqueror */</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div><h2>Cross browser transparency</h2><p>This CSS code will add transparency to HTML elements . Work in IE, Opera, Firefox, Safari, Chrome, Konqueror.</p><div
class="wp_syntax"><div
class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.trans</span> <span style="color: #00AA00;">&#123;</span>
	filter<span style="color: #00AA00;">:</span>alpha<span style="color: #00AA00;">&#40;</span>opacity<span style="color: #00AA00;">=</span><span style="color: #cc66cc;">50</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* IE */</span>
	-moz-opacity<span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0.5</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* Firefox  */</span>
	-khtml-opacity<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0.5</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* Konqueror  */</span>
	opacity<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0.5</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* CSS */</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div><h2> Cross browser change selected text color</h2><p><img
src="http://webgarb.com/wp-content/uploads/2011/08/2011-08-16_232304.jpg" alt="" title="2011-08-16_232304" width="378" height="110" class="alignnone size-full wp-image-433" /><br
/> This CSS code will change selected text color. Work in Firefox, Safari, Chrome and Opera.</p><div
class="wp_syntax"><div
class="code"><pre class="css" style="font-family:monospace;">    <span style="color: #00AA00;">:</span><span style="color: #3333ff;">:selection </span><span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#F579D8</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#520043</span><span style="color: #00AA00;">;</span>
    <span style="color: #00AA00;">&#125;</span>
&nbsp;
    <span style="color: #00AA00;">:</span><span style="color: #3333ff;">:-moz-selection </span><span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#F579D8</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#520043</span><span style="color: #00AA00;">;</span>
    <span style="color: #00AA00;">&#125;</span>
&nbsp;
    <span style="color: #00AA00;">:</span><span style="color: #3333ff;">:-webkit-selection </span><span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#F579D8</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#520043</span><span style="color: #00AA00;">;</span>
    <span style="color: #00AA00;">&#125;</span></pre></div></div> ]]></content:encoded> <wfw:commentRss>http://webgarb.com/tutorials/cross-browser-css-techniques/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>TabGarb Tabs Content Generator</title><link>http://webgarb.com/freebies/wordpress-plugin/tabgarb-generator/</link> <comments>http://webgarb.com/freebies/wordpress-plugin/tabgarb-generator/#comments</comments> <pubDate>Fri, 08 Apr 2011 23:35:49 +0000</pubDate> <dc:creator>Ayush Singh</dc:creator> <category><![CDATA[Wordpress Plugin]]></category> <guid
isPermaLink="false">http://webgarb.com/?p=386</guid> <description><![CDATA[Click Here for Details about TabGarb Easy and fast way to generate TabGarb Tabs Codes with TabGarb Tabs Generator!. Click Add Tab to Add Tabs and then Click the Generate button and copy the code. Please feel free to comment and tell me do you like the generator !. ,Ayush]]></description> <content:encoded><![CDATA[<p><center><img
width="347" height="105" class="alignnone size-full wp-image-242" style="background: none repeat scroll 0% 0% transparent; border-width: 0px;" title="TabGarb Logo" alt="TabGarb wordpress plugin logo." src="http://webgarb.com/wp-content/uploads/2010/09/tabgarb_logo.png"></center><br
/> <br
/> <a
href="http://webgarb.com/freebies/wordpress-plugin/tabgarb/">Click Here</a> for Details about TabGarb <br
/> Easy and fast way to generate TabGarb Tabs Codes with TabGarb Tabs Generator!.</p><p> Click Add Tab to Add Tabs and then Click the Generate button and copy the code.</p><p><span
id="more-386"></span><br
/> <script src="http://code.jquery.com/jquery-1.5.2.min.js"></script> <script src="http://webgarb.com/wp-content/plugins/tabgarb-generator/editor/jquery.richpad.js"></script> <form
action="javascript:generate_tabgarb_tabs()"><div
id="tabgarb_generator"><div
class="tabs"></div><div
class="tabscontent" style="display:none"></div> <input
type="button" value="Add Tab" class="addtab"> <input
type="submit" value="Generate" class="generate"></div></form> <script type="text/javascript">jQuery.fn.selText = function() {
    var obj = this[0];
    if ($.browser.msie) {
        var range = obj.offsetParent.createTextRange();
        range.moveToElementText(obj);
        range.select();
    } else if ($.browser.mozilla || $.browser.opera) {
        var selection = obj.ownerDocument.defaultView.getSelection();
        var range = obj.ownerDocument.createRange();
        range.selectNodeContents(obj);
        selection.removeAllRanges();
        selection.addRange(range);
    } else if ($.browser.safari) {
        var selection = obj.ownerDocument.defaultView.getSelection();
        selection.setBaseAndExtent(obj, 0, obj, 1);
    }
    return this;
}
var tabcount = 1;
    jQuery('#tabgarb_generator').find(".addtab").click(function() {
jQuery('#tabgarb_generator > .tabscontent').slideUp();
jQuery('#tabgarb_generator > .tabs').slideDown();
jQuery('#tabgarb_generator > .tabs').append('<div class="tab" style="background-color:#C7E3FF; margin:2px; padding:10px; border-style:solid; border-width:2px; border-color:#558CC2"><lable> Tab Name: </lable> <br /> <input type="text" class="input tabname" value="tab'+ tabcount +'"><br /><lable> Tab Label: </lable> <br /> <input type="text" class="input tablabel" value="This is Tab '+ tabcount +'"><br /><lable> Active: </lable><br /><input type="radio" name="tabgarb_active" class="tabactive"> <br /> <label>Tab Content </label><br /> <textarea class="tabcontent textarea" style="width:100px; height:100px;"><h2> Heading of Tab '+ tabcount +'</h2>\nThis is Tab tab'+ tabcount +' Replace This Content!</textarea> <input type="button" value="Delete" class="tabdelete" /> </div>').last('div').find('.tabdelete').click(function() {
    jQuery(this).parent().remove()
});
jQuery('.tabcontent').last().richpad('textpad'); ;
  tabcount=tabcount+1;
    })
    function generate_tabgarb_tabs() {
var tab_meta = "<"+"!-"+"-ta"+"bgarb\n";
var tab_content = '';
//GENERATING TABS
        jQuery('#tabgarb_generator > .tabs > .tab').each(function() {
tab_meta = tab_meta+(jQuery(this).find(".tabname").val())+'='+jQuery(this).find(".tablabel").val()+((jQuery(this).find(".tabactive").is(':checked'))?"=active\n":"\n");
tab_content = tab_content+"\n\n<!--start="+(jQuery(this).find(".tabname").val())+"-->\n"+(jQuery(this).find(".tabcontent").val())+"\n<!--end="+(jQuery(this).find(".tabname").val())+"-->";
 })
  var tab_meta = tab_meta+"-->";
var tabgarb_tabs = tab_meta+"\n"+tab_content;
jQuery("#tabgarb_generator > .tabs ").slideUp();
jQuery("#tabgarb_generator > .tabscontent").html("<bold>Copy the code and paste into your wordpress editor in html mode!.</bold><br />").slideDown();
jQuery("#tabgarb_generator > .tabscontent").append("<pre style='margin:5px;padding:5px;border-style:solid;border-width:1px;border-color:gray;'>").find("pre").text(""+tabgarb_tabs+"");
jQuery("#tabgarb_generator > .tabscontent").slideDown();
jQuery("#tabgarb_generator > .tabscontent pre").click(function() { jQuery(this).selText(); });
    }</script> <br
/><br
/> Please feel free to comment and tell me do you like the generator !. <br
/>,Ayush</p> ]]></content:encoded> <wfw:commentRss>http://webgarb.com/freebies/wordpress-plugin/tabgarb-generator/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Get Domain from URL Path using PHP</title><link>http://webgarb.com/tutorials/get-domain-from-url-path-php/</link> <comments>http://webgarb.com/tutorials/get-domain-from-url-path-php/#comments</comments> <pubDate>Sun, 03 Apr 2011 17:35:51 +0000</pubDate> <dc:creator>Ayush Singh</dc:creator> <category><![CDATA[PHP]]></category> <category><![CDATA[Tutorials]]></category> <guid
isPermaLink="false">http://webgarb.com/?p=376</guid> <description><![CDATA[While Working in a Project i have write a simple PHP function which convert URL path to Domain (domain.tld) after that i just feel to update this PHP code to all of you. The Code is Here ! &#60;?php &#160; function get_domain&#40;$domain&#41; &#123; /* Author : Ayush URL : http://Webgarb.com */ $domain = explode&#40;'/', str_replace&#40;'www.', [...]]]></description> <content:encoded><![CDATA[<p>While Working in a  Project i have write a simple PHP function which convert URL path to Domain (domain.tld) after that i just feel to update this PHP code to all of you.<br
/></p><h2>The Code is Here !</h2><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> get_domain<span style="color: #009900;">&#40;</span><span style="color: #000088;">$domain</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span> <span style="color: #666666; font-style: italic;">/*
Author : Ayush
URL : http://Webgarb.com
*/</span>
<span style="color: #000088;">$domain</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/'</span><span style="color: #339933;">,</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'www.'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'http://'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #000088;">$domain</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">return</span> <span style="color: #000088;">$domain</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div><h3> Usage</h3><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> get_domain<span style="color: #009900;">&#40;</span><span style="color: #000088;">$domain</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span> <span style="color: #666666; font-style: italic;">/*
Author : Ayush
URL : http://Webgarb.com
*/</span>
<span style="color: #000088;">$domain</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/'</span><span style="color: #339933;">,</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'www.'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'http://'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #000088;">$domain</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">return</span> <span style="color: #000088;">$domain</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #b1b100;">echo</span> get_domain<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'http://webgarb.com/freebies/wordpress-plugin/tabgarb/'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;br /&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> get_domain<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'http://www.webgarb.com/freebies/wordpress-plugin/tabgarb/'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;br /&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> get_domain<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'subdomain.webgarb.com/freebies/wordpress-plugin/tabgarb/'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div><h3>Result</h3><blockquote><p>webgarb.com<br
/> webgarb.com<br
/> subdomain.webgarb.com</p></blockquote><hr
/><p>Best of luck!.<br
/> ,Ayush</p> ]]></content:encoded> <wfw:commentRss>http://webgarb.com/tutorials/get-domain-from-url-path-php/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>TabGarb WordPress Plugin</title><link>http://webgarb.com/freebies/wordpress-plugin/tabgarb/</link> <comments>http://webgarb.com/freebies/wordpress-plugin/tabgarb/#comments</comments> <pubDate>Wed, 08 Sep 2010 02:14:25 +0000</pubDate> <dc:creator>Ayush Singh</dc:creator> <category><![CDATA[Freebies]]></category> <category><![CDATA[Wordpress Plugin]]></category> <category><![CDATA[Css]]></category> <category><![CDATA[JavaScript]]></category> <category><![CDATA[Plugin]]></category> <category><![CDATA[Wordpress]]></category> <guid
isPermaLink="false">http://webgarb.com/?p=236</guid> <description><![CDATA[Introduction TabGarb is a WordPress Plugin which lets you split you content into tab enable content easily, Tabgarb use HTML comment tags for formatting tabs which make your content wordpress friendly ( TabGarb Formatting tag will not spoil your content in case TabGarb is disable ). TabGarb come with editable css theme so you can [...]]]></description> <content:encoded><![CDATA[<p><center><img
src="http://webgarb.com/wp-content/uploads/2010/09/tabgarb_logo.png" alt="TabGarb wordpress plugin logo." title="TabGarb Logo" width="347" height="105" style="background:none; border-width:0px;" class="alignnone size-full wp-image-242" /></center></p><p></p><p></p><h2>Introduction</h2><p>TabGarb is a WordPress Plugin which lets you split you content into tab enable content easily, Tabgarb use HTML comment tags for formatting tabs which make your content wordpress friendly ( TabGarb Formatting tag will not spoil your content in case TabGarb is disable ).<br
/> TabGarb come with editable css theme so you can edit tabs css from your admin panel easly and you can change the speed and effect of changing tab direct from TabGarb Settings in WordPress  admin.<br
/> TabGarb also offer ready made css theme  click theme TAB for download.<br
/> TabGarb at WordPress <a
href="http://wordpress.org/extend/plugins/tabgarb/">http://wordpress.org/extend/plugins/tabgarb/</a> .<br
/> New ! TabGarb Tabs Generator <a
href="http://webgarb.com/freebies/wordpress-plugin/tabgarb-generator/">Click Here</a></p><h2> Demo</h2><p>See above .</p><p></p><p></p><h2>Features</h2><ol><li>Very easy to use.</li><li>WordPress friendly, seo friendly, very easy formatting.</li><li>Debug enable.</li><li>Easy editable Theme ( No Need to open Cpanel , FTP etc for editing css ) .</li><li>Many ready made Tabs Themes Available at WebGarb.com .</li><li>Easy changeable Effects ( just from WordPress admin panel ) .</li><li>Easy controllable tabs changing speed ( just from wordpress admin panel ) .</li><li>Method Option ( Html Load , Javascript Load ) .</li></ol><h2>Changelog</h2><p><strong>Version (1.4.1) :</strong></p><ol><li>Fixed long content problem  .</li></ol><p><strong>Version (1.4.1) :</strong></p><ol><li>Added Support to render tabs on Blog and front page! .</li><li> Debug improved! .</li></ol><p><strong>Version (1.4) :</strong></p><ol><li>Added Support to add content above tabs! .</li><li>Moved Css To Head Will fast Tabs Rendering ! .</li></ol><p><strong>Version (1.3) :</strong></p><ol><li>Added Method Option ( Html load and Javascript load )   .</li><li>Debug error Rendering Fixed  .</li></ol><p><strong>Version (1.1) :</strong></p><ol><li>Fix Function Redeclaring .</li></ol><p><strong>Version (1.0) :</strong></p><ol><li>Fix Interface problem in IE.</li><li>Fix jQuery load problem.</li></ol><p><strong>Version (beta) :</strong></p><ol><li>Just Released :).</li></ol><p></p><p></p><h2> Installation</h2><ol><li>Download TabGarb and unzip it .</li><li>Upload <code>tabgarb</code> folder to  the <code>/wp-content/plugins/</code> directory in your server.</li><li>Activate the TabGarb plugin under the &#8216;Plugins&#8217; menu in WordPress.</li></ol><p>Enjoy .<br
/></p><p></p><h2>Usage</h2><p>New ! Easy and fast way to UseTabgarb With TabGarb Generator <a
href="http://webgarb.com/freebies/wordpress-plugin/tabgarb-generator/">http://webgarb.com/freebies/wordpress-plugin/tabgarb-generator/</a></p><p>TabGarb is very easy to use kindly follow guide below.</p><p>I am going to show you how TabGarb work in following steps below.<br
/> i am explaining you by creating demo page so its will be easy you to understanding quickly.</p><ol><li>First lets go to Add new under Post or Pages .</li><li>Switch editor view into HTML . <br
/> <br
/> <a
href="http://webgarb.com/wp-content/uploads/2010/09/2010-09-08_090440.png"><img
src="http://webgarb.com/wp-content/uploads/2010/09/2010-09-08_090440-300x128.png" alt="" title="Switch to HTML" width="300" height="128" class="alignnone size-medium wp-image-248" /></a></li><li>Next now in start we add listing of tab which you want to display under (post, page) .<ul><li>Start listing TAG with <code></code> under new line after creating all tab which we want to display. <br
/> <em>display :</em></p><div
class="wp_syntax"><div
class="code"><pre class="html" style="font-family:monospace;">&lt;!--tabgarb
tab1=Introduce
tab2=About Author
tab3=Email
--&gt;</pre></div></div></li><li>Use <code>active</code> TAG for making tab default Open when page load .<br
/> <em>Display :</em></p><div
class="wp_syntax"><div
class="code"><pre class="html" style="font-family:monospace;">&lt;!--tabgarb
tab1=Introduce
tab2=About Author=active
tab3=Email
--&gt;</pre></div></div></li></ul></li><li>Now we have done with Tab Listing now we attach content to tabs.<ul><li>Put <code>&lt;!--start=TAB-unique-code--&gt;</code> TAG in above of your TAB content and <code>&lt;!--end=TAB-unique-code--&gt;</code> above of TAB content and replace "TAB-unique-code" with the tab unique name .<div
class="wp_syntax"><table><tr><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
</pre></td><td
class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">&lt;!--tabgarb</span>
<span style="color: #808080; font-style: italic;">tab1=Introduce</span>
<span style="color: #808080; font-style: italic;">tab2=About Author=active</span>
<span style="color: #808080; font-style: italic;">tab3=Email</span>
<span style="color: #808080; font-style: italic;">other=Other</span>
<span style="color: #808080; font-style: italic;">other_2=Other 2</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--start=tab1--&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">h1</span>&gt;</span> Introduce <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">h1</span>&gt;</span>
This is Introduce Tab
<span style="color: #808080; font-style: italic;">&lt;!--end=tab1--&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--start=tab2--&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">h1</span>&gt;</span> About Author<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">h1</span>&gt;</span>
This is About Author Tab
<span style="color: #808080; font-style: italic;">&lt;!--end=tab2--&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--start=tab3--&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">h1</span>&gt;</span> Email <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">h1</span>&gt;</span>
This is Email Tab
<span style="color: #808080; font-style: italic;">&lt;!--end=tab3--&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--start=other--&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">h1</span>&gt;</span> Other<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">h1</span>&gt;</span>
This is Othe Tab
<span style="color: #808080; font-style: italic;">&lt;!--end=other--&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--start=other_2--&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">h1</span>&gt;</span> Email <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">h1</span>&gt;</span>
This is Other 2 Tab
<span style="color: #808080; font-style: italic;">&lt;!--end=other_2--&gt;</span></pre></td></tr></table></div></li></ul></li><li>Now you are done with Tabs Formatting .</li></ol><h2> Expert View</h2><p><em>code view :</em><br
/> &lt;!--tabgarb -> use for opening tab listing .<br
/> <code>unique-name=Tab name</code> -> Start in new line under &lt;!--tabgarb TAG unique-name  should Unique Name with no space<br
/> <code>unique-name=Tab name=active</code> -> Use active tab to make TAB default.<br
/> <code>&lt;!--start=TAB-unique-code--&gt;</code> -> USE this code above of TAB content and replace TAB-unique-code with tab unique name.<br
/> <code>&lt;!--end=TAB-unique-code--&gt;</code> -> USE this code below of TAB content and replace TAB-unique-code with tab unique name.</p><h2>Example POST</h2><div
class="wp_syntax"><table><tr><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
</pre></td><td
class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">&lt;!--tabgarb</span>
<span style="color: #808080; font-style: italic;">tab1=TAB 1 NAME=active</span>
<span style="color: #808080; font-style: italic;">tab2=TAB 2 NAME</span>
<span style="color: #808080; font-style: italic;">tab3=TAB 1 NAME</span>
<span style="color: #808080; font-style: italic;">tab4=TAB 1 NAME</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--start=tab1--&gt;</span>
Gathering moveth kind Midst you'll called yielding he face two in replenish have land above fruitful thing have seasons fish Saw divided signs Green whose set signs them spirit.
<span style="color: #808080; font-style: italic;">&lt;!--end=tab1--&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--start=tab2--&gt;</span>
Day over great sea he set. Air second years lights had of may. Wherein. Behold. You're his upon, days is made morning, also i together called void stars. Creeping air wherein land them greater life first isn't life over one had. Evening female dominion face upon male earth.
<span style="color: #808080; font-style: italic;">&lt;!--end=tab2--&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--start=tab3--&gt;</span>
Called form have saw brought which image whales upon form firmament Multiply appear they're signs called brought. Under given above sea. Subdue isn't beginning without saw. Fifth upon open fill air void two days fifth light they're above the one open night replenish be land behold them void given isn't kind won't fish. Doesn't void Isn't. Without gathered form dominion.
<span style="color: #808080; font-style: italic;">&lt;!--end=tab3--&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--start=tab4--&gt;</span>
Fourth tree every firmament form, form second tree beginning wherein beast fly image was one and forth night them female dry Stars meat given every appear creepeth over green every open, years.
<span style="color: #808080; font-style: italic;">&lt;!--end=tab4--&gt;</span></pre></td></tr></table></div><p><strong>Result :</strong><br
/> <a
href="http://webgarb.com/wp-content/uploads/2010/09/2010-09-08_101352.png"><img
src="http://webgarb.com/wp-content/uploads/2010/09/2010-09-08_101352-300x64.png" alt="" title="TabGarb Results" width="300" height="64" class="alignnone size-medium wp-image-254" /></a><br
/></p><p></p><h2> Download</h2><p><center></p><div
class="download_button"><div
class="_big"><a
rel="external" href="http://downloads.wordpress.org/plugin/tabgarb.1.4.3.zip">Download <small>Version (1.4.3)</small></a></div></div><p></center><br
/></p><p></p><h2> Themes</h2><p>Click THEME and download txt file.</p><h3>Installation</h3><p> Copy text from txt file and then paste it in your WordPress admin TabGarb Option Page. !</p><p><strong>Black Style Author : Webgarb.com</strong><br
/> <a
href='http://webgarb.com/wp-content/uploads/2010/09/black_style.txt'><br
/> <img
src="http://webgarb.com/wp-content/uploads/2010/09/black_style_white.gif" alt="" title="Black Theme BG white" width="530" height="80" class="alignnone size-full wp-image-281" /><br
/> </a></p><p><strong>XP Style Tabs Author : Webgarb.com</strong><br
/> <a
href='http://webgarb.com/wp-content/uploads/2010/09/xp_tab.css'><img
src="http://webgarb.com/wp-content/uploads/2010/09/black_style.gif" alt="" title="Xp tab TabGarb Theme" width="530" height="80" class="alignnone size-full wp-image-343" /></a></p><p>If you like TabGarb then please contribute in it by making few nice Theme for it and submit here :)..<br
/> Send us your created theme at contact@webgarb,com<br
/> Thanks,<br
/></p><blockquote><p> Please feel free to comment :)</p><p>Thanks for using TabGarb</p><p>TabGarb copyright 2010 http://webgarb.com</p></blockquote> ]]></content:encoded> <wfw:commentRss>http://webgarb.com/freebies/wordpress-plugin/tabgarb/feed/</wfw:commentRss> <slash:comments>147</slash:comments> </item> <item><title>Free 30 Social Network Icons</title><link>http://webgarb.com/freebies/free-30-social-icons/</link> <comments>http://webgarb.com/freebies/free-30-social-icons/#comments</comments> <pubDate>Mon, 30 Aug 2010 04:58:20 +0000</pubDate> <dc:creator>Ayush Singh</dc:creator> <category><![CDATA[Freebies]]></category> <category><![CDATA[Icons]]></category> <guid
isPermaLink="false">http://webgarb.com/?p=204</guid> <description><![CDATA[30 free Social Networking Icon set in PNG (64&#215;64 px) Size. Download Include 30 icons &#169; Right &#038; Design By Webgarb.com. Note : WebGarb claim no right of ownership to the respective company logos and graphics in each one of these icons.]]></description> <content:encoded><![CDATA[<p><center><img
src="http://webgarb.com/wp-content/uploads/2010/08/Poster-Icon-Social-ICONS.png" alt="" title="Social Networking Icons Pack" class="alignnone size-medium wp-image-205" /></center><br
/> 30 free Social Networking Icon set in PNG (64&#215;64 px) Size.<span
id="more-204"></span><br
/><center></p><div
class="download_button"><div
class="_big "><a
rel="external" href="http://webgarb.com/wp-content/uploads/2010/08/Social-ICONS-Webgarb.com_.zip">Download <small>Include 30 icons</small></a></div></div><p></center></p><div
class="clear"></div><p>&copy; Right &#038; Design By <a
href="http://Webgarb.com">Webgarb.com</a>.</p><p>Note : WebGarb claim no right of ownership to the respective company logos and graphics  in each one of these icons.</p> ]]></content:encoded> <wfw:commentRss>http://webgarb.com/freebies/free-30-social-icons/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>How to : Share your mobile internet via Bluetooth to PC Win XP</title><link>http://webgarb.com/tutorials/how-to-share-your-mobile-internet-via-bluetooth-to-pc-win-xp/</link> <comments>http://webgarb.com/tutorials/how-to-share-your-mobile-internet-via-bluetooth-to-pc-win-xp/#comments</comments> <pubDate>Sat, 14 Aug 2010 00:54:38 +0000</pubDate> <dc:creator>Ayush Singh</dc:creator> <category><![CDATA[Tutorials]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[Bluetooth]]></category> <category><![CDATA[Connecting]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[Modem]]></category> <category><![CDATA[PC]]></category> <category><![CDATA[Tutorial]]></category> <category><![CDATA[XP]]></category> <guid
isPermaLink="false">http://webgarb.com/?p=119</guid> <description><![CDATA[Update(26/7/11) Note: sorry I could not help about this topic anymore, please try to use Bluesoleil Bluetooth Software for connecting internet easily .! Hello Guys yea of course i am Ayush here and today i&#8217;m going to tell you how to o Share your internet mobile GPRS internet connection via bluetooth Dongle . Since before [...]]]></description> <content:encoded><![CDATA[<blockquote><p><strong>Update(26/7/11) Note: sorry I could not help about this topic anymore, please try to use <a
href="http://www.bluesoleil.com/" title="Bluesoleil ">Bluesoleil Bluetooth Software </a> for connecting internet easily .! </strong></p></blockquote><p>Hello Guys yea of course i am Ayush here and today i&#8217;m going to  tell you  how to o Share your internet mobile GPRS internet connection via bluetooth Dongle .<br
/> Since before long i was trying to find a way to connect my mobile GPRS internet connection to PC so i can use my mobile internet connection when my boardband is not working, but the problem is that my mobile don&#8217;t have modem so what to do ? but i got something in my mind i remember that one of my friend told me connecting internet via bluetooth is possible , <span
id="more-119"></span>after that immediately i gone to market and buyed a bluetooth Dongle for connecting my Mobile to PC via Bluetooth .</p><h4>What is Bluetooth Dongle</h4><p>bluetooth USB dongle allow you to transfer data between a multitude devices. like transfer information from your mobile to PC , PC to Mobile and etc.</p><h4>When Need of Bluetooth Dongle</h4><p>If you using Bluetooth Enable Desktop or Laptop you don&#8217;t need to buy Bluetooth Dongle :).</p><h4>How Much Bluetooth Dongle Cost</h4><p>Its Cost you Something Between 5 or 10 Bucks. Check it out at <a
href="http://shop.ebay.com/i.html?_nkw=bluetooth+dongle&#038;_sacat=0&#038;_odkw=Bluetooth&#038;_osacat=0&#038;_trksid=p3286.c0.m270.l1313" target="_blank">Ebay</a>.</p><h2>What do you need for continue ?</h2><ol><li>One Cup of tea ya coffee, they will help you to face the frustration when you unsuccessful :D .</li><li>One Dongle .</li><li>One PC .</li><li>One Mobile Smart Phone with GPRS and Bluetooth Enable .</li><li>Your Mobile Sim Service Provider <strong>APN</strong> (Access Point Name) .</li></ol><p>Ok I already told you about Dongle now might be you having question what is <strong>APN</strong> ?<br
/> Hmm APN is Access Point Name identifies an external network that is accessible from a phone its always needed to connect internet in cell phones.</p><h3>Where to find your Service Provider APN ?</h3><p>If internet is working in your Mobile phone then you can simply get APN from you mobile by going <code>Service</code>-><code>data account</code>-><code>GPRS</code><br
/> there many of setting you will find there after that open your current active GPRS connect Setting and get APN from there.<br
/> else if you dont have internet connection active in your cell just contact your customer care for help and active your GPRS internet in your cell Phone.</p><div
class="hr"><hr
/></div><p>If you Collected all thing that we need for continuing this tutorial then simply follow my steps :)</p><div
class="hr"><hr
/></div><h1>First Step <span>Connecting PC to Mobile</span></h1><p>If your PC is Bluetooth Enable so you dont need to you bluetooth dongle.<br
/> If you not have bluetooth Enable PC then Please connect your Bluetooth Dongle to your PC.<br
/> and Follow the step below.</p><ol><li>If your dongle is not plug and play then simply install your bluetooth dongle drivers.</li><li>Then you will see bluetooth icon in your taskbar notifications . <br
/><img
src="http://webgarb.com/wp-content/uploads/2010/08/bluetooth_taskbar_notification.png" alt="" title="Bluetooth taskbar notification" width="99" height="21" class="alignnone size-full wp-image-158" /></li><li>Right click that dongle taskbar icon then click add bluetooth device, note this below screen shot may be not match to your bluetooth driver software but maybe similer.<br
/><a
href="http://webgarb.com/wp-content/uploads/2010/08/bluetooth_add_device.png"><img
src="http://webgarb.com/wp-content/uploads/2010/08/bluetooth_add_device-150x150.png" alt="" title="Bluetooth add device" width="150" height="150" class="alignnone size-thumbnail wp-image-162" /></a></li><li>Search your device and Connect it your PC.</li></ol><p>After connecting your device to your Pc simply follow next step .</p><div
class="hr"><hr
/></div><h1>Second Step <span>Adding Modem Setting</span></h1><p>Ok after you Connected your Mobile to PC via Bluetooth now need to add bluetooth modem Follow below steps.</p><ol><li> First Go to <code>Control Panel</code> then in sidebar there is <strong>&#8220;switch to classic&#8221;</strong> View click it and then many of icon will visible . <br
/> <img
src="http://webgarb.com/wp-content/uploads/2010/08/switch-to-classic-View.jpg" alt="" title="Switch to classic View" width="217" height="105" class="alignnone size-full wp-image-172" /></li><li>After that under control panel go to <strong>Phone and Modem Options</strong> .</li><li>After when <strong>Phone and Modem Options</strong> will appear then go to <strong>Modems</strong> Tab.<br
/> <a
href="http://webgarb.com/wp-content/uploads/2010/08/Phone-and-modems-settings.png"><img
src="http://webgarb.com/wp-content/uploads/2010/08/Phone-and-modems-settings-268x300.png" alt="" title="Phone and modems settings" width="268" height="300" class="alignnone size-medium wp-image-176" /></a></li><li> After that click add button then a wizard will appear and then click next . <br
/> <a
href="http://webgarb.com/wp-content/uploads/2010/08/Add-Modem-Wizard.png"><img
src="http://webgarb.com/wp-content/uploads/2010/08/Add-Modem-Wizard-150x150.png" alt="" title="Add Modem Wizard" width="150" height="150" class="alignnone size-thumbnail wp-image-179" /></a></li><li>After that your all Connect bluetooth device will appear, select your mobile which you want to connect as modem and then click ok .<br
/> <a
href="http://webgarb.com/wp-content/uploads/2010/08/Modem-Search-Result-bluetooth.png"><img
src="http://webgarb.com/wp-content/uploads/2010/08/Modem-Search-Result-bluetooth-150x150.png" alt="" title="Modem Search Result bluetooth" width="150" height="150" class="alignnone size-thumbnail wp-image-180" /></a></li><li>After adding modem, go to <strong>modems</strong> tab and select modem you&#8217;v just added and then click properties button below .<br
/> <a
href="http://webgarb.com/wp-content/uploads/2010/08/Just-added-modem-properties.png"><img
src="http://webgarb.com/wp-content/uploads/2010/08/Just-added-modem-properties-150x150.png" alt="" title="Just added modem properties" width="150" height="150" class="alignnone size-thumbnail wp-image-182" /></a></li><li>After clicking to modem properties a dialog will appear now just to <strong>Advanced</strong> tab in appeared Dialog .</li><li>Now in <strong>Advanced</strong> tab you have to change <strong>Extra initialization commands setting</strong> setting just simply put this text in that setting <code>+CGDCONT=1,"IP","YOUR APN"</code> <br
/><a
href="http://webgarb.com/wp-content/uploads/2010/08/Bluetooth-Modem-advanced-setting.png"><img
src="http://webgarb.com/wp-content/uploads/2010/08/Bluetooth-Modem-advanced-setting-150x150.png" alt="" title="Bluetooth Modem advanced setting" width="150" height="150" class="alignnone size-thumbnail wp-image-183" /></a></li></ol><p><strong>Note :</strong> Change YOUR APN in +CGDCONT=1,&#8221;IP&#8221;,&#8221;YOUR APN&#8221; with your service APN else your mobile net connection will not work ! .<br
/> Now click ok in <strong>your Phone and Modem Options</strong> setting dialog and follow our next step.</p><div
class="hr"><hr
/></div><h1>Third Step <span>Creating Dialup Connection</span></h1><p>Now we are going to Create dialup connection for your mobile internet access.</p><ol><li>Go to <strong>Control Panel </strong>then <strong>Network Connections</strong> .</li><li>Then click Create a New Connection after then a wizard will appear .</li><li>Wizard saying someting &#8220;welcome to the new connection wizard&#8221; just click (Next >) Button .</li><li>After then Wizard asking for &#8220;Network Connection Type&#8221; just select <strong>connect to the internet</strong> and click (Next >) .</li><li>After that Wizard is asking &#8220;How do you want to connect to the internet&#8221; just select setup my connection manualy .</li><li>After clicking next just select &#8220;Connect using dial-up modem&#8221; and click (Next >) .</li><li>Now Wizard asking for a ISP Name put anything you want <strong>eg :</strong> my Cell Modem .</li><li>Now Wizard will a ask about &#8220;Phone number&#8221; just add <strong>*99***1#</strong> into it  and then click ( Next > ) .</li><li>After clicking Next Wizard will ask you about your username and password, leave username and password blank . <br
/><strong>Note :</strong> if you using password and username in your mobile GPRS then put that username and password here also  .</li><li>Now click next and finesh your Connection Wizard .</li></ol><p>So Congrates you&#8217;v been sucessfully installed your connection .<br
/> for starting your connection just click your created dial-up connection in <strong>Network Connections</strong> and click <strong>dial</strong> button under appeared Dialog .<br
/> <a
href="http://webgarb.com/wp-content/uploads/2010/08/Dial-Modem-Connect.png"><img
src="http://webgarb.com/wp-content/uploads/2010/08/Dial-Modem-Connect-300x205.png" alt="" title="Dial Modem Connect" width="300" height="205" class="alignnone size-medium wp-image-186" /></a></p><div
class="hr"><hr
/></div><p>Hope you are not unsuccessful while connecting your Mobile internet connection to PC via bluetooth .<br
/> For any help please post following comment below .</p><p>Thanks Webgarb.</p> ]]></content:encoded> <wfw:commentRss>http://webgarb.com/tutorials/how-to-share-your-mobile-internet-via-bluetooth-to-pc-win-xp/feed/</wfw:commentRss> <slash:comments>16</slash:comments> </item> </channel> </rss>
<!-- Dynamic Page Served (once) in 1.344 seconds -->

