<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>tinyurl &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/tinyurl/</link>
	<description>Feed of posts on WordPress.com tagged "tinyurl"</description>
	<pubDate>Tue, 24 Nov 2009 12:22:02 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[@webby script]]></title>
<link>http://qinc.wordpress.com/2009/11/20/webby-script/</link>
<pubDate>Fri, 20 Nov 2009 13:00:21 +0000</pubDate>
<dc:creator>Solitary_Scar</dc:creator>
<guid>http://qinc.wordpress.com/2009/11/20/webby-script/</guid>
<description><![CDATA[Webby is a &#8220;web link&#8221; information script by speechless, whereby it display titles and ot]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Webby is a &#8220;web link&#8221; information script by speechless, whereby it display titles and other relevant information from links given in irc channels. It can also be used to test and contstruct regular expression in channel.</p>
<p>My only concern is the network spamfilter; Z:lines, and the &#8216;non-safe_search&#8217; on the script.</p>
<p><strong> Example</strong>:</p>
<blockquote><p>&#60; Solitary_Scar &#62; @webby www.debian.org<br />
&#60; bot &#62; Debian &#8212; The Universal Operating System (http://tinyurl.com/dqx8 )( 200; text/html; iso8859-1; 14791 bytes )<br />
&#60; bot &#62; Debian GNU/Linux is a free distribution of the GNU/Linux operating system. It is maintained and updated through the work of many users who volunteer their time and effort.</p></blockquote>
<p>&#160;</p>
<p><strong>Example2</strong>:</p>
<blockquote><p>&#60; Solitary_Scar &#62; @webby www.coffeegeeksvslinuxgeeks.net<br />
&#60; bot &#62; webby: Couldn&#8217;t open socket: host is unreachable (http://www.coffeegeeksvslinuxgeeks.net )</p></blockquote>
<p>Webby will start working tomorrow Nov 21th, for private channels.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Convierte un URL extenso en uno pequeño]]></title>
<link>http://bibliocti.wordpress.com/2009/11/11/convierte-tu-url-extenso-en-uno-pequeno/</link>
<pubDate>Wed, 11 Nov 2009 17:03:06 +0000</pubDate>
<dc:creator>bibliocti</dc:creator>
<guid>http://bibliocti.wordpress.com/2009/11/11/convierte-tu-url-extenso-en-uno-pequeno/</guid>
<description><![CDATA[Si deseas que tu URL sea más corto y publicar cómodamente en Twitter,  accede los siguientes links: ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Si deseas que tu URL sea más corto y publicar cómodamente en Twitter,  accede los siguientes links:</p>
<p><a href="http://tinyurl.com/">http://tinyurl.com/</a></p>
<p><a href="http://tinyurl.com/create.php">http://tinyurl.com/create.php</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Flash: TinyURL ile twittera post atmak]]></title>
<link>http://funkyspam.wordpress.com/2009/11/11/flash-tinyurl-ile-twittera-post-atmak/</link>
<pubDate>Wed, 11 Nov 2009 09:56:58 +0000</pubDate>
<dc:creator>funkyspam</dc:creator>
<guid>http://funkyspam.wordpress.com/2009/11/11/flash-tinyurl-ile-twittera-post-atmak/</guid>
<description><![CDATA[Biliyorsunuz artık sosyal medyada link gönderme paylaşmak zorunluluk oldu gibi neredeyse. Ancak twit]]></description>
<content:encoded><![CDATA[Biliyorsunuz artık sosyal medyada link gönderme paylaşmak zorunluluk oldu gibi neredeyse. Ancak twit]]></content:encoded>
</item>
<item>
<title><![CDATA[Décoder une adresse bit.ly, tinyurl… en PHP]]></title>
<link>http://zigazou.wordpress.com/2009/11/07/decoder-une-adresse-bit-ly-tinyurl%e2%80%a6-en-php/</link>
<pubDate>Sat, 07 Nov 2009 14:45:41 +0000</pubDate>
<dc:creator>zigazou</dc:creator>
<guid>http://zigazou.wordpress.com/2009/11/07/decoder-une-adresse-bit-ly-tinyurl%e2%80%a6-en-php/</guid>
<description><![CDATA[Dans la série “et si j’essayais de coder ça”, voici une fonction PHP qui donne l’adresse redirigée à]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Dans la série “et si j’essayais de coder ça”, voici une fonction PHP qui donne l’adresse redirigée à partir d’une URL. C’est pas clair ? En gros, vous lui donnez une URL bit.ly, tinyurl ou autre, et elle vous donne l’adresse originale. Ça devrait maintenant être plus clair <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><!--more--></p>
<p>Pour la petite histoire, c’est un tweet de @jdenoy qui m’a donné l’envie de coder cette fonction et la voici :</p>
<blockquote>
<pre><strong>function</strong> get_redirection($address) {
  $url=parse_url($address);
  <strong>if</strong>(!isset($url[<span style="color:#0000ff;">'scheme'</span>])) $url[<span style="color:#0000ff;">'scheme'</span>]=<span style="color:#0000ff;">'http'</span>;
  <strong>if</strong>(!isset($url[<span style="color:#0000ff;">'port'</span>  ])) $url[<span style="color:#0000ff;">'port'</span>  ]=80;
  <strong>if</strong>(!isset($url[<span style="color:#0000ff;">'path'</span>  ])) $url[<span style="color:#0000ff;">'path'</span>  ]=<span style="color:#0000ff;">'/'</span>;

  <strong>if</strong>($url[<span style="color:#0000ff;">'scheme'</span>]!=<span style="color:#0000ff;">'http'</span>) <strong>return</strong> FALSE;

  $fp=fsockopen($url[<span style="color:#0000ff;">'host'</span>],$url[<span style="color:#0000ff;">'port'</span>],$errno,$errstr,30);
  <strong>if</strong>(!$fp) <strong>return</strong> FALSE;

  $out =<span style="color:#0000ff;">"GET "</span>.$url['path'].<span style="color:#0000ff;">" HTTP/1.1\r\n"</span>;
  $out.=<span style="color:#0000ff;">"Host: "</span>.$url[<span style="color:#0000ff;">'host'</span>].<span style="color:#0000ff;">"\r\n"</span>;
  $out.=<span style="color:#0000ff;">"Connection: Close\r\n\r\n"</span>;

  fwrite($fp,$out);
  $response=<span style="color:#0000ff;">""</span>;
  <strong>while</strong>(!feof($fp)) $response.=fgets($fp,4096);
  fclose($fp);

  $lines=explode(<span style="color:#0000ff;">"\r\n"</span>,$response);
  <strong>if</strong>(strpos($lines[0],<span style="color:#0000ff;">"301"</span>)===FALSE <strong>and</strong> strpos($lines[0],<span style="color:#0000ff;">"302"</span>)===FALSE) <strong>return</strong> FALSE;

  <strong>foreach</strong>($lines <strong>as</strong> $line) {
    <strong>if</strong>(substr($line,0,10)==<span style="color:#0000ff;">"Location: "</span>) <strong>return</strong> substr($line,10);
    <strong>if</strong>($line==<span style="color:#0000ff;">""</span>) <strong>return</strong> FALSE;
  }

  <strong>return</strong> FALSE;
}

<strong>print</strong> get_redirection(<span style="color:#0000ff;">"http://bit.ly/3eg1ua"</span>);
</pre>
</blockquote>
<p>Le principe consiste à consulter l’entête de réponse, d’y détecter s’il s’agit d’une redirection (code 301 ou 302) et alors de retrouver la nouvelle adresse (ligne “Location:”). Ça m’a permis aussi de découvrir la fonction parse_url qui est bien pratique dans mon cas <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Introducing The Latest Google Product: TinyURL for Google Accounts]]></title>
<link>http://searchmarketingcommunications.com/2009/11/06/introducing-the-latest-google-product-tinyurl-for-google-accounts/</link>
<pubDate>Fri, 06 Nov 2009 23:53:58 +0000</pubDate>
<dc:creator>Tim Cohn</dc:creator>
<guid>http://searchmarketingcommunications.com/2009/11/06/introducing-the-latest-google-product-tinyurl-for-google-accounts/</guid>
<description><![CDATA[Well it doesn&#8217;t exist yet, but should &#8211; Google&#8217;s answer to TinyURL.com &#8211; the]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Well it doesn&#8217;t exist <em>yet</em>, but should &#8211; Google&#8217;s answer to TinyURL.com &#8211; the Google URL shortener.</p>
<p>Why should Google enter the URL shortening business?</p>
<p>I think a better question is: &#8220;Why not?&#8217;</p>
<p>If anyone could and should be in the url shortening business its Google.</p>
<p>Having a shortened url under a custom domain extension like .Google (dot.Google &#8211; custom brand name domain extensions will become available next year) would create more visitor traffic and page views which in turn would create more advertising inventory for Google to offer to Adwords advertisers.</p>
<p>Making the new Google&#8217;s shortened url service available to Blogger accounts would be a good place to start.</p>
<p>As it stands now, everytime a Blogger account holder wants to share their blog post, Google&#8217;s Blogger service generates a rather lengthy and unwieldy Google domain address.</p>
<div id="attachment_4930" class="wp-caption alignnone" style="width: 460px"><a rel="attachment wp-att-4930" href="http://searchmarketingcommunications.com/2009/11/06/introducing-the-latest-google-product-tinyurl-for-google-accounts/google-blogger-follow-share/"><img class="size-full wp-image-4930" title="Google Blogger Follow Share" src="http://cohn.wordpress.com/files/2009/11/google-blogger-follow-share.png" alt="Google Blogger Follow Share" width="450" height="141" /></a><p class="wp-caption-text">Google Blogger Follow Share</p></div>
<p>Assuming the blog&#8217;s title is more than a single word, this renders most Official Google blog posts incapable of being shared directly with Twitter because of Twitter&#8217;s 140 character limit.</p>
<div id="attachment_4931" class="wp-caption alignnone" style="width: 423px"><a rel="attachment wp-att-4931" href="http://searchmarketingcommunications.com/2009/11/06/introducing-the-latest-google-product-tinyurl-for-google-accounts/share-this-post/"><img class="size-full wp-image-4931" title="Share This Post" src="http://cohn.wordpress.com/files/2009/11/share-this-post.png" alt="Share This Post" width="413" height="279" /></a><p class="wp-caption-text">Share This Post</p></div>
<p>More often than not, Google Blogger account posts&#8217; title and domain addresses far exceed the 140 characters available for sharing a blog post directly with Twitter.</p>
<p>Thus, the Google domain address has to be shortened which is an inconvenience to say the least.</p>
<p>Google then shortens their domain&#8217;s address to one other than the Google&#8217;s brand &#8211; the Bit.ly brand.</p>
<div id="attachment_4932" class="wp-caption alignnone" style="width: 460px"><a rel="attachment wp-att-4932" href="http://searchmarketingcommunications.com/2009/11/06/introducing-the-latest-google-product-tinyurl-for-google-accounts/share-blogger-with-twitter/"><img class="size-full wp-image-4932" title="Share Blogger With Twitter" src="http://cohn.wordpress.com/files/2009/11/share-blogger-with-twitter.png" alt="Share Blogger With Twitter" width="450" height="113" /></a><p class="wp-caption-text">Share Blogger With Twitter</p></div>
<p>This process then requires opening a new browser window, copying and pasting the Blogger address into Bit.ly &#8211; what a pain in the browser!</p>
<p>Bit.ly is a great service but there is no reason why Google couldn&#8217;t make this whole process several steps shorter while retaining a bunch of traffic that was their&#8217;s to begin with.</p>
<p>To take this a step further &#8211; why doesn&#8217;t Google just co-opt the best form and functionality the url shortening industry has to offer and then distribute its shiny new TinyURL shortening service to all Google account holders through their Google Accounts dashboards?</p>
<div id="attachment_4933" class="wp-caption alignnone" style="width: 460px"><a rel="attachment wp-att-4933" href="http://searchmarketingcommunications.com/2009/11/06/introducing-the-latest-google-product-tinyurl-for-google-accounts/google-accounts-url-shortener/"><img class="size-full wp-image-4933" title="Google Accounts URL Shortener" src="http://cohn.wordpress.com/files/2009/11/google-accounts-url-shortener.png" alt="Google Accounts URL Shortener" width="450" height="277" /></a><p class="wp-caption-text">Google Accounts URL Shortener</p></div>
<p>Between offering the new Google url shortening service to Blogger and Google Account holders, Google would surely realize the birth of a signicant new traffic generating property &#8211; the shortened Google URL.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Abbreviare i link con TinyURL, messaggi personali no problem]]></title>
<link>http://msnickcreatornews.wordpress.com/2009/10/25/abbreviare-i-link-con-tinyurl-messaggi-personali-no-problem/</link>
<pubDate>Sun, 25 Oct 2009 07:40:44 +0000</pubDate>
<dc:creator>msnickcreatornews</dc:creator>
<guid>http://msnickcreatornews.wordpress.com/2009/10/25/abbreviare-i-link-con-tinyurl-messaggi-personali-no-problem/</guid>
<description><![CDATA[Un&#8217;altra funzione importante e innovativa dell&#8217;ultima versione di msn è quella di poter ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Un&#8217;altra funzione importante e innovativa dell&#8217;ultima versione di msn è quella di poter inserire link nel messaggio personale per condividere il proprio sito web o qualsiasi altra cosa on-line con i propri amici. Ma quì sorge il nostro problema, quando inseriamo un nostro link troppo lungo questo viene tagliato per questioni di spazio nel client, quindi come possiamo fare per aggirare l&#8217;ostacolo?&#8230;Semplice basta usufruire del servizio offertoci da TinyURL disponibile <a href="http://tinyurl.com/">qui</a>. Inseriamo il nostro link e clicchiamo su &#8220;Make TinyURL&#8221; ed in pochi secondi abbiamo il nostro link abbreviato. Questo servizio può comunque essere sfruttato anche nei siti web o forum quando si deve inserire un link di un immagine ecc.<br />
<img src="http://www.fileden.com/files/2008/3/25/1834805/abbreviareilink.png" alt="immagine" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Twitter is over capacity !]]></title>
<link>http://mnam.wordpress.com/2009/10/21/twitter-is-over-capacity/</link>
<pubDate>Wed, 21 Oct 2009 19:24:01 +0000</pubDate>
<dc:creator>Guillaume</dc:creator>
<guid>http://mnam.wordpress.com/2009/10/21/twitter-is-over-capacity/</guid>
<description><![CDATA[DERNIÈRE MINUTE En allant sur Twitter il y a juste une heure, je tombe sur une page qui m&#8217;a fa]]></description>
<content:encoded><![CDATA[DERNIÈRE MINUTE En allant sur Twitter il y a juste une heure, je tombe sur une page qui m&#8217;a fa]]></content:encoded>
</item>
<item>
<title><![CDATA[Url shorteners- Ow.ly,Bit.ly,tinyurl,memurl,3.ly....]]></title>
<link>http://fantasticcalicut.wordpress.com/2009/10/05/url-shorteners-ow-lybit-lytinyurlmemurl3-ly/</link>
<pubDate>Mon, 05 Oct 2009 11:52:00 +0000</pubDate>
<dc:creator>Nothing</dc:creator>
<guid>http://fantasticcalicut.wordpress.com/2009/10/05/url-shorteners-ow-lybit-lytinyurlmemurl3-ly/</guid>
<description><![CDATA[We have moved to BLOGGER now.Here is the URL SHORTENER post http://violetorkut.blogspot.com/2009/10/]]></description>
<content:encoded><![CDATA[We have moved to BLOGGER now.Here is the URL SHORTENER post http://violetorkut.blogspot.com/2009/10/]]></content:encoded>
</item>
<item>
<title><![CDATA[Facebook Banned Cli.gs - Now What?]]></title>
<link>http://marnieswedberg.wordpress.com/2009/10/02/facebook-banned-cli-gs-now-what/</link>
<pubDate>Fri, 02 Oct 2009 19:34:51 +0000</pubDate>
<dc:creator>Marnie</dc:creator>
<guid>http://marnieswedberg.wordpress.com/2009/10/02/facebook-banned-cli-gs-now-what/</guid>
<description><![CDATA[So sad! One day cli.gs was a thriving little business and the next day, well&#8230; someone or somet]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><table>
<tr>
<td><img src="http://media.cli.gs/logo.png" width="65"></td>
<td width="15">
<td>So sad! One day cli.gs was a thriving little business and the next day, well&#8230; someone or something apparently abused their program and now they are banned by Facebook. <BR><BR> Note to self: It could happens to any of us!!</td>
</tr>
</table>
<p><BR>Here are my personal choices for alternatives. Just choose one and keep on pinging:<BR><a href="http://tr.im/">http://tr.im/</a>: Includes bells &#38; whistles<BR><a href="http://notlong.com">http://notlong.com</a>: Includes bells &#38; whistles<BR><a href="http://tinyurl.com/">http://tinyurl.com/</a>: Basic<br /><BR>And, if this is all Greek to you, check out the free ebook, <a href="http://www.sanesns.com"><b>Sane Social Networking in 15 Minutes a Day</b></a>.<BR><BR></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[TK-it! - Wygodniejsze skracanie odsyłaczy niż za pomocą serwisu TweaK]]></title>
<link>http://kosinski.wordpress.com/2009/09/30/tk-it-wygodniejsze-skracanie-odsylaczy-niz-za-pomoca-serwisu-tweak/</link>
<pubDate>Wed, 30 Sep 2009 16:28:08 +0000</pubDate>
<dc:creator>Paweł Kosiński</dc:creator>
<guid>http://kosinski.wordpress.com/2009/09/30/tk-it-wygodniejsze-skracanie-odsylaczy-niz-za-pomoca-serwisu-tweak/</guid>
<description><![CDATA[Istnieje wiele serwisów służących do skracania odsyłaczy. Najpopularniejszymi z nich są TinyURL i Bi]]></description>
<content:encoded><![CDATA[Istnieje wiele serwisów służących do skracania odsyłaczy. Najpopularniejszymi z nich są TinyURL i Bi]]></content:encoded>
</item>
<item>
<title><![CDATA[TinyPaste nay đã “lớn” hơn]]></title>
<link>http://anhhangxomonline.wordpress.com/2009/09/28/tinypaste-nay-da-%e2%80%9cl%e1%bb%9bn%e2%80%9d-h%c6%a1n/</link>
<pubDate>Mon, 28 Sep 2009 05:31:10 +0000</pubDate>
<dc:creator>anhhangxomonline</dc:creator>
<guid>http://anhhangxomonline.wordpress.com/2009/09/28/tinypaste-nay-da-%e2%80%9cl%e1%bb%9bn%e2%80%9d-h%c6%a1n/</guid>
<description><![CDATA[Cách đây khoảng 2 năm, tôi biết đến một dịch vụ “mới toanh” (lúc đó) là tinypaste, thấy nó rất hay n]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Cách đây khoảng 2 năm, tôi biết đến một dịch vụ “mới toanh” (lúc đó) là <a href="http://tinypaste.com/" target="_top">tinypaste</a>, thấy nó rất hay<a href="http://tinypaste.com/9bd0814" target="_top"><img class="alignright" title="TinyPaste" src="http://www.anhhangxomonline.comze.com/wp-content/uploads/2009/09/tinypaste2.jpg" alt="" width="188" height="98" /></a> nên có giới thiệu trên eChip. <a href="http://tinyurl.com/" target="_top">Tinyurl</a> thì giúp bạn thu gọn link, còn tinypaste ? – rất độc đáo, nó giúp bạn thu gọn một đoạn text. Nói rõ hơn là bạn sẽ được cung cấp một đường link ngắn gọn để dẫn đến một đoạn text, ví dụ : <a href="http://tinypaste.com/9bd0814" target="_top">http://tinypaste.com/9bd0814</a> , nếu bạn thấy đường dẫn đó quá dài thì có thể dùng <a href="http://tinyurl.com/" target="_top">tinyurl</a> hay <a href="http://bit.ly/" target="_top">bit.ly</a> để….thu gọn tiếp, haha.<br />
Hôm nay tôi có dịp quay lại trang <a href="http://tinypaste.com/" target="_top">tinypaste</a> thì thấy nó có nhiều cải tiến so với hồi đó :<br />
<a href="http://www.anhhangxomonline.comze.com/2009/09/tinypaste-nay-da-lon-hon/#more-1601">Đọc tiếp… »</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Catching Up]]></title>
<link>http://asydik.wordpress.com/2009/09/25/catching-up/</link>
<pubDate>Fri, 25 Sep 2009 22:37:28 +0000</pubDate>
<dc:creator>aSydiK</dc:creator>
<guid>http://asydik.wordpress.com/2009/09/25/catching-up/</guid>
<description><![CDATA[So I&#8217;ve fallen behind on some of my work.   I&#8217;ve been busy with some other school projec]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>So I&#8217;ve fallen behind on some of my work.   I&#8217;ve been busy with some other school projects.  This means the list I&#8217;ve whittled down last week has grown considerably large again.</p>
<ul>
<li><span style="text-decoration:line-through;">Consider creating a Twitter account in conjunction with your blog</span> (not considering doing)</li>
<li><span style="text-decoration:line-through;">Comment on another student’s blog</span></li>
<li><span style="text-decoration:line-through;">Watch online lectures/readings</span></li>
<li><span style="text-decoration:line-through;">Complete lab by Friday</span></li>
<li><span style="text-decoration:line-through;">Watch two online lectures</span></li>
<li>Read document on Mercurial</li>
<li>Read up on GCC</li>
<li>Read the How to Make</li>
<li>Build Firefox</li>
<li><span style="text-decoration:line-through;">Pick a project</span></li>
<li>Complete the Initial Project Plan</li>
</ul>
<p>While that list doesn&#8217;t look too much larger than last time, falling behind on readings isn&#8217;t too fun because you then have to do double the amount of readings.  As like last time, I&#8217;ve crossed off all the things I&#8217;ve done so far.  Let&#8217;s do a run down.</p>
<p>I&#8217;ve crossed off joining Twitter, even though I really haven&#8217;t joined.  I&#8217;m not too into the whole Twitter system.  While I understand that it may have closed some doors to a certain part of the community, I don&#8217;t think it&#8217;s expressly needed.  I believe I have access to what I need with the blogs, wikis and IRC channels.  I&#8217;m not too fond of Twitter so there will be no alerts following me.  If you really wish to follow me, you can just use the <a href="http://asydik.wordpress.com/feed/" target="_blank">feeds</a> on my blog as this is where I&#8217;ll be publishing the important parts of my work and life.</p>
<p>I&#8217;m always willing to leave a comment on a blog post that interests me.  It&#8217;s part of the whole blogging community.  I know it&#8217;s nice receiving feedback on what you&#8217;ve written, so it&#8217;s only natural to do so when you&#8217;re inspired by what someone&#8217;s written.  I did this on a <a href="http://xudiera.wordpress.com/2009/09/21/osd600-week-3/" target="_blank">blog post</a> that a colleague of mine did.  I was initially on the fence about what project to work on.  I couldn&#8217;t decide on whether to <a href="https://wiki.mozilla.org/Education/Projects/ProcessingForTheWeb/Tasks#3D_Features" target="_blank">help</a> with <a href="http://zenit.senecac.on.ca/wiki/index.php/Processing.js" target="_blank">Processing.js</a> or to stick to my C/C++ programming background and work on some bugs there.  I was also thinking of working on the mobile side of Mozilla with Fennec.  <a href="http://xudiera.wordpress.com/" target="_blank">Carlos</a>&#8216; blog post gave me what it was I was I needed.  It was the inspiration to work on something new and innovative.  Also, the courage to learn a new language and a new style of coding.  So with that, I was able to cross two items off my list.  I put my name down for Processing.js!</p>
<p>I finished my lab, albeit a little late, with the help of <a href="http://buddhatron.wordpress.com/" target="_blank">buddhatron</a> through IRC.  My <a href="http://zenit.senecac.on.ca/wiki/index.php/User:ASydiK" target="_blank">page</a> on the CDOT wiki is now updated.  In the process, I was able to use <a href="http://pastebin.com/" target="_blank">pastebin</a> and <a href="http://tinyurl.com/" target="_blank">tinyurl</a> as was part of the learning experience for the lab.</p>
<p>Now, the rest of my catching up had to do with a lot of reading and watching online lectures.  My first online lecture, about the <a href="http://zenit.senecac.on.ca/wiki/index.php/Mozilla_Community" target="_blank">Mozilla Community</a>, would cause my Firefox browser to crash.  I was able to start it up at school but couldn&#8217;t at home because I hadn&#8217;t downloaded and installed Quicktime.  I talked to <a href="http://vocamus.net/dave/">David</a> about it and he said he was switching the video formats.  So hopefully, I&#8217;ll be able to see it soon.</p>
<p>The next online lecture I watched was called &#8220;<a href="http://videos.mozilla.org/mozilla24/1-16_david.mp4" target="_blank">Learning to be at the festival</a>.&#8221;  It was a lecture given by David Humphrey and it&#8217;s a great summary for what he&#8217;s been trying to teach us during the first couple weeks of this course.  The best way to learn in the environment of the Open Source Community is to just jump right in and get your hands dirty.  You learn through experience.  It&#8217;s a great lecture for anyone apprehensive about the course work and project, which I&#8217;m sure most of us are.</p>
<p>I watched this week&#8217;s lectures as well.  They were not as interesting to me.  They were <a href="http://zenit.senecac.on.ca/wiki/index.php/How_the_Build_Works" target="_blank">How the Mozilla Build Works</a> by <a href="http://weblogs.mozillazine.org/preed/" target="_blank">J. Paul Reed</a> and <a href="http://sparc.senecacollege.ca/pub/mozilla.lecture/mozilla-20073/1-Mozilla-build-system.avi" target="_blank">Mozilla&#8217;s Build System</a> by <a href="http://blog.mozilla.com/ted/" target="_blank">Ted Mielczarek</a>.  As you can guess, they were both about Mozilla&#8217;s build system and how it works behind the scenes.  I couldn&#8217;t run the video for preed&#8217;s lecture so I just listened to the sound recording.  Unfortunately, I couldn&#8217;t follow along too well because the slides posted aren&#8217;t available anymore.  Ted&#8217;s video lecture was better, in terms of being able to access it.  However, I noticed that I wasn&#8217;t paying attention too much to either lecture.  While I can understand that being knowledgeable in what you&#8217;re diving into is important, I just wasn&#8217;t interested in the behind the scenes work.  For me, it&#8217;s kind of like Discovery channel&#8217;s How It&#8217;s Made.  It just wasn&#8217;t very interesting.  I sat through them though, not absorbing all too much.</p>
<p>The stuff I haven&#8217;t crossed out, I&#8217;m in the process of doing.  I was in the middle of going through the <a href="http://www.network-theory.co.uk/docs/gccintro/" target="_blank">GCC reading</a>, when I spotted another blog post that inspired me to <a href="http://buddhatron.wordpress.com/2009/09/25/goneforadip/" target="_blank">just dive right in</a>.  So I decided to take the first plunge and while writing this blog I was downloading and installing my virtual machine courtesy of <a href="http://www.virtualbox.org/wiki/Downloads" target="_blank">VirtualBox</a>.  I, then, downloaded <a href="http://fedoraproject.org/en/get-fedora" target="_blank">Fedora</a> to install on the vm.  It&#8217;s now running smoothly in the background, minus the fact that I can&#8217;t change the resolution past 800&#215;600.  Anyone have suggestions or is this the limitation of a vm?  Anyway, I&#8217;m going to start on Mercurial and then try to build Mozilla.  I&#8217;ll update more later!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[آپلود فایل در Bit.ly + سبقت Bit.ly از TinyURL]]></title>
<link>http://pccity.wordpress.com/2009/09/23/bitly-short-links-and-shares-files-no-hosting-needed/</link>
<pubDate>Wed, 23 Sep 2009 04:08:33 +0000</pubDate>
<dc:creator>pccity</dc:creator>
<guid>http://pccity.wordpress.com/2009/09/23/bitly-short-links-and-shares-files-no-hosting-needed/</guid>
<description><![CDATA[آپلود فایل در Bit.ly + سبقت Bit.ly از TinyURL Bit.ly یکی از محبوبترین سرویس کوتاه کننده‌ی URL بر روی]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h2 style="text-align:center;">آپلود فایل در Bit.ly + سبقت Bit.ly از TinyURL</h2>
<h2 style="text-align:center;"><img class="aligncenter size-full wp-image-4027" title="bitly_files" src="http://pccity.wordpress.com/files/2009/09/bitly_files.jpg" alt="bitly_files" width="340" height="226" /></h2>
<div>
<div>
<p>Bit.ly یکی از محبوبترین سرویس کوتاه کننده‌ی URL بر روی وب، با توافقی که با yFrog (سایت به اشتراک گذاری فایل‌های چندرسانه‌ای)به عمل آورد، قابلیت کوتاه کردن سریع آدرس تصاویر و دیگر فایل‌ها را به امکانات خود افزود.</p>
<p style="text-align:center;">ادامه خبر در ادامه مطلب&#8230;</p>
<p style="text-align:center;"><!--more--></p>
<p>این بدان معناست که <a href="http://bit.ly/" target="_blank">Bit.ly</a> در واقع عمل آپلود و به اشتراک گذاری فایل‌ها و سپس کوتاه کردن آدرس را با هم تافیق کرده است و دیگر برای به اشتراک گذاری فایل‌ها نیاز به وبسایت دیگری نخواهیم داشت.</p>
<p>اما نکته مهم آنکه در حال حاضر <a href="http://bit.ly/" target="_blank">Bit.ly</a> محدودیتی برای فایل‌های آپلودی در نظر گرفته است و آن‌ها را به فایل‌هایی با پسوندهای jpg, png, gif, bmp, tiff, swf, flv, pdf, mp4, mov, avi محدود کرده است.</p>
<p>پیش‌بینی می‌شود با اضافه شدن این قابلیت، گرایش به <a href="http://bit.ly/" target="_blank">Bit.ly</a> نسبت سایر وبسایت‌های مشابه نظیر <a href="http://tinyurl.com/" target="_blank">TinyURL</a> به شدت افزایش یابد. همچنان که این روند رشد از مدت‌ها قبل شروع شده بود.</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-4028" title="Bit.ly سایت TinyURL را پشت سر خواهد گذاشت" src="http://pccity.wordpress.com/files/2009/09/bitly_traffic.png" alt="Bit.ly سایت TinyURL را پشت سر خواهد گذاشت" width="500" height="246" /></p>
</div>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[آپلود فایل در Bit.ly + سبقت Bit.ly از TinyURL]]></title>
<link>http://itstart.wordpress.com/2009/09/22/bitly-short-links-and-shares-files-no-hosting-needed/</link>
<pubDate>Tue, 22 Sep 2009 19:47:12 +0000</pubDate>
<dc:creator>احسان شریعتی</dc:creator>
<guid>http://itstart.wordpress.com/2009/09/22/bitly-short-links-and-shares-files-no-hosting-needed/</guid>
<description><![CDATA[Bit.ly یکی از محبوبترین سرویس کوتاه کننده‌ی URL بر روی وب، با توافقی که با yFrog (سایت به اشتراک گذا]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://bit.ly/" target="_blank">Bit.ly</a> یکی از محبوبترین سرویس کوتاه کننده‌ی URL بر روی وب، با توافقی که با <a href="http://yfrog.com/" target="_blank">yFrog</a> (سایت به اشتراک گذاری فایل‌های چندرسانه‌ای)به عمل آورد، قابلیت کوتاه کردن سریع آدرس تصاویر و دیگر فایل‌ها را به امکانات خود افزود.</p>
<p><img class="alignnone" title="سرویس آپلود فایل در Bit.ly" src="http://cache.gawker.com/assets/images/lifehacker/2009/09/bitly_files.jpg" alt="" width="340" height="226" /></p>
<p>این بدان معناست که <a href="http://bit.ly/" target="_blank">Bit.ly</a> در واقع عمل آپلود و به اشتراک گذاری فایل‌ها و سپس کوتاه کردن آدرس را با هم تافیق کرده است و دیگر برای به اشتراک گذاری فایل‌ها نیاز به وبسایت دیگری نخواهیم داشت.</p>
<p>اما نکته مهم آنکه در حال حاضر <a href="http://bit.ly/" target="_blank">Bit.ly</a> محدودیتی برای فایل‌های آپلودی در نظر گرفته است و آن‌ها را به فایل‌هایی با پسوندهای jpg, png, gif, bmp, tiff, swf, flv, pdf, mp4, mov, avi محدود کرده است.</p>
<p>پیش‌بینی می‌شود با اضافه شدن این قابلیت، گرایش به <a href="http://bit.ly/" target="_blank">Bit.ly</a> نسبت سایر وبسایت‌های مشابه نظیر <a href="http://tinyurl.com" target="_blank">TinyURL</a> به شدت افزایش یابد. همچنان که این روند رشد از مدت‌ها قبل شروع شده بود.</p>
<p><img class="alignnone" title="Bit.ly سایت TinyURL را پشت سر خواهد گذاشت" src="http://img.labnol.org/di/bitly_traffic.png" alt="" width="490" height="241" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Το bit.ly μεγαλύτερο από το TinyURL]]></title>
<link>http://xollothnews.wordpress.com/2009/09/11/%cf%84%ce%bf-bit-ly-%ce%bc%ce%b5%ce%b3%ce%b1%ce%bb%cf%8d%cf%84%ce%b5%cf%81%ce%bf-%ce%b1%cf%80%cf%8c-%cf%84%ce%bf-tinyurl/</link>
<pubDate>Fri, 11 Sep 2009 03:49:11 +0000</pubDate>
<dc:creator>xollothnews</dc:creator>
<guid>http://xollothnews.wordpress.com/2009/09/11/%cf%84%ce%bf-bit-ly-%ce%bc%ce%b5%ce%b3%ce%b1%ce%bb%cf%8d%cf%84%ce%b5%cf%81%ce%bf-%ce%b1%cf%80%cf%8c-%cf%84%ce%bf-tinyurl/</guid>
<description><![CDATA[Το bit.ly μεγαλύτερο από το TinyURL Το Twitter ήρθε και άλλαξε πολλά στο χώρο του Internet. Άλλαξε τ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div><a href="http://www.koutsou.gr/?p=536">Το bit.ly μεγαλύτερο από το TinyURL</a></p>
<blockquote><p><a href="http://images.google.com/imgres?imgurl=http://www.borthwick.com/weblog/wp-content/uploads/2008/08/bitly-screen-shot.jpg&#38;imgrefurl=http://www.borthwick.com/weblog/2008/08/29/bitly-v2/&#38;usg=__dVXdAKuLcGqXfU3FSqzewhCmVbA=&#38;h=444&#38;w=640&#38;sz=38&#38;hl=en&#38;start=2&#38;tbnid=oXY7Bwj_1UtGxM:&#38;tbnh=95&#38;tbnw=137&#38;prev=/images%3Fq%3Dbit.ly%26ndsp%3D18%26hl%3Den%26lr%3D%26sa%3DN%26start%3D1"><img style="border:1px solid;" src="http://t3.gstatic.com/images?q=tbn:oXY7Bwj_1UtGxM:http://www.borthwick.com/weblog/wp-content/uploads/2008/08/bitly-screen-shot.jpg" alt="" width="137" height="95" /></a>Το <a class="zem_slink" title="Twitter" rel="homepage" href="http://twitter.com">Twitter</a> ήρθε και άλλαξε πολλά στο χώρο του <a class="zem_slink" title="Internet" rel="wikipedia" href="http://en.wikipedia.org/wiki/Internet">Internet</a>. Άλλαξε τις ισορροπίες σε πολλά επίπεδα, έφερε μαζί του νέες τάσεις και συμπαρέσυρε άλλους μαζί του στη επιτυχία και άλλους τους υποβάθμισε. Ένας από τους τομείς που πήρε την ανοδική είναι ο τομέας των Url Shortener. Η ανάγκη για 140 χαρακτήρες και κατ’επέκταση μικρά link είχε σαν αποτέλεσμα την δημιουργία χιλιάδων τέτοιων site και την αύξηση χρήσης των ήδη υπαρχόντων. Δύο βέβαια από όλα ξεχωρίζουν και έχουν, ανάμεσα σε όλα τα άλλα, την μερίδα του λέοντος όσο αφορά τα shorten url.[<a href="http://www.koutsou.gr/?p=536">next]</a></p></blockquote>
</div>
<div class="zemanta-pixie" style="margin-top:10px;height:15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/083d7cc3-a5eb-8ac7-897a-ffc4d0d10af5/"><img class="zemanta-pixie-img" style="border:medium none;float:right;" src="http://img.zemanta.com/reblog_e.png?x-id=083d7cc3-a5eb-8ac7-897a-ffc4d0d10af5" alt="Reblog this post [with Zemanta]" /></a></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Around Me:Bit.ly's new j.mp]]></title>
<link>http://techkiru.wordpress.com/2009/09/09/around-mebit-lys-new-j-mp/</link>
<pubDate>Wed, 09 Sep 2009 20:53:00 +0000</pubDate>
<dc:creator>swarnkiran88</dc:creator>
<guid>http://techkiru.wordpress.com/2009/09/09/around-mebit-lys-new-j-mp/</guid>
<description><![CDATA[You all know the shorten URL web apps, they exist for a long time now, but they sure have become a m]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://feedads.g.doubleclick.net/%7Ea/PRZseWkDSRpm-Bdkh7hqYt4zaSo/1/da"><img src="http://feedads.g.doubleclick.net/%7Ea/PRZseWkDSRpm-Bdkh7hqYt4zaSo/1/di" border="0" /></a></p>
<p><a href="http://crenk.com/wp-content/uploads/2009/09/ly03.png"><img title="ly03" alt="ly03" src="http://crenk.com/wp-content/uploads/2009/09/ly03.png" height="56" width="120" /></a>You all know  the shorten URL web apps, they exist for a long time now, but they sure have  become a must use app if you are using <a class="zem_slink" href="http://twitter.com" title="Twitter" rel="homepage">Twitter</a>. And Twitter itself made the  choice of their favorite shorten URL site: <a href="http://bit.ly/">http://bit.ly/</a> . But this last one has one  interesting, new and even shorter option to use it: <a href="http://j.mp/">http://j.mp/</a>.</p>
<p><a href="http://crenk.com/wp-content/uploads/2009/09/ly01.png"><img title="ly01" alt="ly01" src="http://crenk.com/wp-content/uploads/2009/09/ly01-450x309.png" height="163" width="239" /></a>J.mp gives  you two extra chars to use with your tweets, and will represent from now on,  that everyone that uses <a href="http://j.mp/">j.mp</a> can have a 1.4% length  increase in their tweets. Yes, I know, those stats doesn’t sound like a big deal  to you, but isn’t cool to have a even shorter option for your <a class="zem_slink" href="http://en.wikipedia.org/wiki/Uniform_Resource_Locator" title="Uniform Resource Locator" rel="wikipedia">URLs</a>?</p>
<p><a href="http://bit.ly/">Bit.ly</a> and <a href="http://j.mp/">j.mp</a> are  both products from <a href="http://betaworks.com/">Betaworks group</a>, that is  having an important growth from last May: Since then, Twitter replaced <a href="http://tinyurl.com/">TinyUrl</a> with <a href="http://bit.ly/">Bit.ly</a>  as its built-in short URL service.</p>
<p>I’ve been always grateful with these shorten URLs apps, did you ever ask to  you what would Twitter be without the shorten URLs?</p>
<div style="margin-top:10px;height:15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/0b220a81-9e26-493d-8c5e-661696125abe/" title="Reblog this post [with Zemanta]"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=0b220a81-9e26-493d-8c5e-661696125abe" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"></span></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ Bit.lify for BlackBerry]]></title>
<link>http://brothatech.com/2009/09/08/bit-lify-for-blackberry-phones/</link>
<pubDate>Tue, 08 Sep 2009 16:11:05 +0000</pubDate>
<dc:creator>Brotha Tech</dc:creator>
<guid>http://brothatech.com/2009/09/08/bit-lify-for-blackberry-phones/</guid>
<description><![CDATA[For those of us who Twitter allot using their BlackBerry (can&#8217;t you tell which smartphones a b]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://smg.photobucket.com/albums/v119/MAJESTY/?action=view&#38;current=Bitlify_2.jpg" target="_blank"><img src="http://img.photobucket.com/albums/v119/MAJESTY/Bitlify_2.jpg" border="0"/></a></p>
<p>For those of us who <a href="http://www.twitter.com/">Twitter</a> allot using their <a href="http://na.blackberry.com/eng/">BlackBerry</a> (can&#8217;t you tell which smartphones a brotha favors?) trying to shorten a url and post a new tweet, or retweet is challenging.  Let me show how I USE to do it:</p>
<p>1. type in the url address I want to shorten on my desktop Internet explorer<br />
2. copy the url<br />
3. go to <a href="http://tinyurl.com/">tinyurl</a> and shorten the url<br />
4. copy the shortened url<br />
5. send myself an email with the new url pasted in my subject<br />
6. open up the email on my blackberry<br />
7. copy the new url<br />
8. open the <a href="http://www.ubertwitter.com/">ubertwitter</a> app<br />
9. paste the new url in my message, and send tweet</p>
<p>Well thanks to the folks over at the <a href="http://forums.crackberry.com/">Crackberry Forums</a>, I have found (and dowloaded) the life-saving little app called Bit.lify.  This FREE (a brotha loves free) BlackBerry application enables you to shorten AND copy (or email, or text) any url from your phone, using your phone&#8217;s browser &#8211; no need to mess with trying to go to an url shortener website on your computer (or phone) copy, shorten, copy again, and paste again.</p>
<p><a href="http://smg.photobucket.com/albums/v119/MAJESTY/?action=view&#38;current=bitlify_5.jpg" target="_blank"><img src="http://img.photobucket.com/albums/v119/MAJESTY/bitlify_5.jpg" border="0"/></a></p>
<p>Here are my new steps:<br />
1. type in the url address on my phone&#8217;s browser<br />
2. click the BB menu button, and select &#8220;bit.lify&#8221; in the menu<br />
3. select copy from the list of choices<br />
4. open ubertwitter app<br />
5. paste the new url in my message, and send tweet</p>
<p>Just about half of the steps are gone!  This is a MUST-HAVE app for die hard BlackBerry/Twitter users!</p>
<p>For more information and to download Bit.lify, go to <a href="http://bit.lify.ubiquitoussystems.com/">ubiquitoussystems.com</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Bit.ly's Growth]]></title>
<link>http://mychillerlife.wordpress.com/2009/09/01/bit-lys-growth/</link>
<pubDate>Tue, 01 Sep 2009 13:02:17 +0000</pubDate>
<dc:creator>mccollunsky</dc:creator>
<guid>http://mychillerlife.wordpress.com/2009/09/01/bit-lys-growth/</guid>
<description><![CDATA[Bit.ly A couple weeks ago  I talked about Tr.im the url shortner. This time I am talking about Bit.l]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="wp-caption alignright" style="width: 156px"><a href="http://bit.ly/"><img style="padding-bottom:2px;vertical-align:bottom;" title="Bit.ly logo" src="http://bit.ly/static/images/bitly_logo_top.png" alt="" width="146" height="40" /></a><p class="wp-caption-text">Bit.ly</p></div>
<p><span style="color:#cb346d;">A couple weeks ago  I talked about <a title="Tr.im piece" href="http://mychillerlife.wordpress.com/2009/08/18/tr-im-update-2/" target="_self">Tr.im the url shortner</a>. This time I am talking about Bit.ly no they are not closing or closed then reopen  Don&#8217;t give them idea&#8217;s. But no Bit.ly has grown beyond expections .  Twitter changed it&#8217;s default Url Shortener earlier this year from the tinyurl.com to bit.ly. CBS uses them and they have become very popular in use.  So are competeing in a very large Url Shortening Market like against Tr.im so they are in a very large market that once again is free thing that goes will with twitter use And them being the default on twitter if you don&#8217;t use a different shortener brings them many uses. Like Tinyurl was and they are still doing well.  One of the reasons why Twitter picked Bit.ly was Tinyurl.com takes more charaters then Bit.ly and twitter you need that extra room for those 140 charter limits.So Bitly is the king now but so was tinyurl so  we&#8217;ll se what happens next. I think Twitter needs to make their own. So does Facebook since many of their users also use Url Shorteners. </span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[url kısaltma ile ilgili görmeniz gereken 6 eşsiz servis]]></title>
<link>http://baybedava.wordpress.com/2009/09/01/url-kisaltma-ile-ilgili-gormeniz-gereken-6-essiz-servis/</link>
<pubDate>Tue, 01 Sep 2009 08:36:49 +0000</pubDate>
<dc:creator>baybedava</dc:creator>
<guid>http://baybedava.wordpress.com/2009/09/01/url-kisaltma-ile-ilgili-gormeniz-gereken-6-essiz-servis/</guid>
<description><![CDATA[url kısaltıcılar, bir internet adresi paylaşırken, bir yere not düşereken vb. durumlarda gerçekten ç]]></description>
<content:encoded><![CDATA[url kısaltıcılar, bir internet adresi paylaşırken, bir yere not düşereken vb. durumlarda gerçekten ç]]></content:encoded>
</item>
<item>
<title><![CDATA[Melihat link tinyurl yang asli]]></title>
<link>http://lerry060183.wordpress.com/2009/08/28/melihat-link-tinyurl-yang-asli/</link>
<pubDate>Fri, 28 Aug 2009 18:13:43 +0000</pubDate>
<dc:creator>lerry060183</dc:creator>
<guid>http://lerry060183.wordpress.com/2009/08/28/melihat-link-tinyurl-yang-asli/</guid>
<description><![CDATA[Bagi yang hobi ngeblog mungkin sering melihat link yang awalanya tinyurl.com, bit.ly DLL, nah kali i]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Bagi yang hobi ngeblog mungkin sering melihat link yang awalanya tinyurl.com, bit.ly DLL, nah kali ini saya akan memberikan tips cara decode Melihat link <strong>tinyurl</strong> yang asli, jadi kita dapat melihat link affiliasi yang biasanya berada di balik banner2 di suatu blog tanpa harus ikut affiliasi dari yang menawarkan, tapi kasihan juga yah udah capek-capek tapi yang ikut langsung ke situsnya tanpa perantara yang punya blog :lol </p>
<p>Sebenarnya banyak situs yang dapat melakukan decode terhadap link tinyurl, tetapi kali ini saya hanya membahas satu saja, sebab hasil yang di dapat juga masih yang itu-itu juga kok. Berikut caranya:</p>
<p>- pertama dan utama anda masuk ke sini http://longurl.org/<br />
- setelah itu pada kolom isian yang seperti gambar dibawah masukan link yang ingin di lihat sumber aslinya, sebagai contoh saya memasukan link &#8220;http://bit.ly/cCcob&#8221; dan klik tombol &#8220;expand&#8221;<br />
<!--more--><br />
<img src="http://lerry060183.wordpress.com/files/2009/08/tinyurl-1.jpg?w=300" alt="tinyurl 1" title="tinyurl 1" width="300" height="200" class="aligncenter size-medium wp-image-2544" /></p>
<p>-  nah setelah proses selesai dilakukan kita dapat melihat apasih isi di balik http://bit.ly/cCcob itu tadi, lihat bambar di bawah!</p>
<p><img src="http://lerry060183.wordpress.com/files/2009/08/tinyurl.jpg?w=300" alt="tinyurl" title="tinyurl" width="300" height="200" class="aligncenter size-medium wp-image-2543" /></p>
<p>Saya kira sampai disini sudah selesai tugas kita untuk menterjemahkan sulapan tinyurl. Apa bila tulisan yang saya buat ini merasa ada yang dirugikan saya minta maaf, sebenarnya bukan itu tujuan postingan ini , saya membuat postingan hanya untuk menjaga-jaga apabila kita mendapatkan atau diberikan oleh seseorang link tinyurl kita tahu apakah itu mengarah kesitus spam yang mengandung virus dan dapat merugikan kita. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Selamat mencoba.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Tweet stop link]]></title>
<link>http://twitteritaliatesi.wordpress.com/2009/08/27/tweet-stop-link/</link>
<pubDate>Thu, 27 Aug 2009 15:48:06 +0000</pubDate>
<dc:creator>giovannibrusi</dc:creator>
<guid>http://twitteritaliatesi.wordpress.com/2009/08/27/tweet-stop-link/</guid>
<description><![CDATA[Twitter ha deciso che verrà messo un filtro per bloccare quei link che portano a siti contenenti mal]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Twitter ha deciso che verrà messo un <strong>filtro </strong>per bloccare quei <strong>link </strong>che portano a siti contenenti <strong>malware</strong>. Questa decisione è stata presa a seguito di <strong>diversi episodi spiacevoli</strong> avvenuti nella breve storia dell&#8217;uccellino più famoso del mondo.  Sta di fatto che da adesso, chiunque voglia inserire all&#8217;interno della propria twittata un collegamento ad un sito con dei malware, comparirà il messaggio <strong>&#8220;Oops! Il tuo tweet conteneva un URL di un noto sito di malware&#8221;</strong>. Sembra una storia a lieto fine, ma non è tutto oro quello che luccica. Perchè il meccanismo funziona, ma solo con la navigazione via browser (e quindi non con i cellulari), ma soprattutto non funziona se i collegamenti vengono accorciati da altri siti come <strong>tinyurl</strong>. Insomma, si può fare di meglio..</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
