<?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>tweak &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/tweak/</link>
	<description>Feed of posts on WordPress.com tagged "tweak"</description>
	<pubDate>Tue, 24 Nov 2009 17:03:31 +0000</pubDate>

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

<item>
<title><![CDATA[if you need to send more data to wcf service]]></title>
<link>http://dotnettrails.wordpress.com/2009/11/24/if-you-need-to-send-more-data-to-wcf-service/</link>
<pubDate>Tue, 24 Nov 2009 09:01:55 +0000</pubDate>
<dc:creator>dotnettrails</dc:creator>
<guid>http://dotnettrails.wordpress.com/2009/11/24/if-you-need-to-send-more-data-to-wcf-service/</guid>
<description><![CDATA[For example, you need to upload log file in case of error from desktop application to remote site us]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>For example, you need to upload log file in case of error from desktop application to remote site using WCF service and if the log file is too big, you might have to tweak your WCF service’s Web.config.</p>
<p>By default the configuration for the service will be </p>
<p>&#160;&#160;&#160;&#160;&#160; &#60;services&#62;   <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;service behaviorConfiguration=&#34;ServiceBehavior&#34; name=&#34;Service&#34;&#62;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;endpoint address=&#34;&#34; binding=&#34;basicHttpBinding&#34; contract=&#34;IService&#34;&#62;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;/endpoint&#62;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;endpoint address=&#34;mex&#34; binding=&#34;mexHttpBinding&#34; contract=&#34;IMetadataExchange&#34;/&#62;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;/service&#62;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;/services&#62;</p>
<p>You need to specify the binding manually and add binding reference as highlighted below.&#160;&#160;&#160; </p>
<p>&#160;</p>
<p>&#160;&#160;&#160; &#60;services&#62;   <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;service behaviorConfiguration=&#34;ServiceBehavior&#34; name=&#34;Service&#34;&#62;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;endpoint address=&#34;&#34; binding=&#34;basicHttpBinding&#34; <strong>bindingConfiguration=&#34;BasicHttpBinding_IService&#34;</strong> contract=&#34;IService&#34;&#62;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;/endpoint&#62;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;endpoint address=&#34;mex&#34; binding=&#34;mexHttpBinding&#34; contract=&#34;IMetadataExchange&#34;/&#62;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;/service&#62;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;/services&#62;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; <strong>&#60;bindings&#62;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;basicHttpBinding&#62;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;binding name=&#34;BasicHttpBinding_IService&#34; closeTimeout=&#34;00:01:00&#34;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; openTimeout=&#34;00:01:00&#34; receiveTimeout=&#34;00:10:00&#34; sendTimeout=&#34;00:01:00&#34;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; allowCookies=&#34;false&#34; bypassProxyOnLocal=&#34;false&#34; hostNameComparisonMode=&#34;StrongWildcard&#34;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; maxBufferSize=&#34;2147483647&#34; maxBufferPoolSize=&#34;2147483647&#34;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; maxReceivedMessageSize=&#34;2147483647&#34; messageEncoding=&#34;Text&#34;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; textEncoding=&#34;utf-8&#34; transferMode=&#34;Buffered&#34; useDefaultWebProxy=&#34;true&#34;&#62;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;readerQuotas maxDepth=&#34;32&#34; maxStringContentLength=&#34;2147483647&#34;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; maxArrayLength=&#34;2147483647&#34; maxBytesPerRead=&#34;4096&#34; maxNameTableCharCount=&#34;16384&#34; /&#62;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;security mode=&#34;None&#34;&#62;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;transport clientCredentialType=&#34;None&#34; proxyCredentialType=&#34;None&#34;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; realm=&#34;&#34; /&#62;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;message clientCredentialType=&#34;UserName&#34; algorithmSuite=&#34;Default&#34; /&#62;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;/security&#62;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;/binding&#62;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;/basicHttpBinding&#62;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;/bindings&#62;</strong></p>
<p>That&#8217;s it <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Simple isn’t it?</p>
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7882d4ef-1a1a-40c1-8c73-223623e744a1" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/C%23" rel="tag">C#</a>,<a href="http://technorati.com/tags/WCF" rel="tag">WCF</a>,<a href="http://technorati.com/tags/Handle+More+Data" rel="tag">Handle More Data</a>,<a href="http://technorati.com/tags/web.config" rel="tag">web.config</a>,<a href="http://technorati.com/tags/binding" rel="tag">binding</a>,<a href="http://technorati.com/tags/Service" rel="tag">Service</a>,<a href="http://technorati.com/tags/Buffersize" rel="tag">Buffersize</a>,<a href="http://technorati.com/tags/Tweak" rel="tag">Tweak</a></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cara Mempercepat Firefox versi KU ,]]></title>
<link>http://coolankalink.wordpress.com/2009/11/21/cara-mempercepat-firefox-versi-ku/</link>
<pubDate>Sat, 21 Nov 2009 13:10:30 +0000</pubDate>
<dc:creator>fajardemovic</dc:creator>
<guid>http://coolankalink.wordpress.com/2009/11/21/cara-mempercepat-firefox-versi-ku/</guid>
<description><![CDATA[Berikut adalah beberapa trik sederhana untuk mempercepat kinerja Firefox anda. Trik &#8211; trik ini]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Berikut adalah beberapa trik sederhana untuk mempercepat kinerja Firefox anda. Trik &#8211; trik ini memungkinkan Firefox untuk mengunduh halaman situs lebih cepat dengan membuka lebih dari satu koneksi agar ia dapat melakukan lebih dari satu download setiap waktu.</p>
<p>Harap diingat bahwa ini hanya berlaku bagi pengguna jaringan pita lebar (<em>broadband</em>), jadi bagi pengguna dial-up, anda dapat melupakannya untuk saat ini.</p>
<p>1. Ketik &#8220;about:config&#8221; pada address bar dan tekan return. Scroll ke bawah untuk mencari konfigurasi &#8211; konfigurasi ini:</p>
<p>&#8220;network.http.pipelining&#8221;<br />
&#8220;network.http.proxy.pipelining&#8221;</p>
<p>&#8220;network.http.pipelining.maxrequests&#8221;</p>
<p>Biasanya <em>browser</em> hanya akan membuat satu permintaan terhadap sebuah situs setiap waktu. Namun dengan<em></em></p>
<p><em> pipelining</em>, anda dapat membuatnya lebih dari satu, yang membuat download halaman menjadi lebih cepat.</p>
<p>2. Ubah entri menjadi:</p>
<p>Set &#8220;network.http.pipelining&#8221; menjadi &#8220;true&#8221;<br />
Set &#8220;network.http.proxy.pipelining&#8221; menjadi &#8220;true&#8221;<br />
Set &#8220;network.http.pipelining.maxrequests&#8221; menjadi 30. Ini berarti ia akan melakukan 30 request dalam satu waktu.</p>
<p>3. klik kanan dimanapun dan pilih  New-&#62; Integer. Namai &#8220;nglayout.initialpaint.delay&#8221; dan set value menjadi &#8220;0&#8243;.</p>
<p>4. Terakhir,Download aplikasi FIRETUNE untuk mempercepat Mozilla Firefox</p>
<p>nih link downloadnya langsung dari fb aku <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><a href="http://apps.facebook.com/files/shared/ttqltihp97"> LINK</a></p>
<p>Jika anda menggunakan koneksi broadband, maka anda akan membuka halaman dengan lebih cepat sekarang!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Windows 7 Logon screen boring?]]></title>
<link>http://versatile1.wordpress.com/2009/11/21/windows-7-logon-screen-boring/</link>
<pubDate>Sat, 21 Nov 2009 08:26:48 +0000</pubDate>
<dc:creator>stitch140</dc:creator>
<guid>http://versatile1.wordpress.com/2009/11/21/windows-7-logon-screen-boring/</guid>
<description><![CDATA[Are you tired of the default Windows 7 Logon? Well I&#8217;m about to quickly show you how to change]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignnone" src="http://jens-schaller.de/files/Windows_7_logon_0.jpg" alt="" width="320" height="240" /></p>
<p>Are you tired of the default Windows 7 Logon? Well I&#8217;m about to quickly show you how to change it like I did.</p>
<p>lets get stuck in:</p>
<p><strong><span style="font-size:small;">1.</span></strong> Download the <strong><a rel="nofollow" href="http://www.julien-manici.com/windows_7_logon_background_changer/" target="_blank"><span style="text-decoration:underline;">Windows 7 Logon Changer</span></a></strong>.</p>
<p><strong><span style="font-size:small;">2.</span></strong> Extract and run the <strong>Win7LogonBackgroundChanger.exe </strong>file (or install it from the setup folder contained inside) .</p>
<p><strong><span style="font-size:small;">3.</span></strong> Click on any of the available images in the preview bar at the top or click on <strong>Choose a folder</strong> to open and add images of your own to the preview bar to select from instead.</p>
<p><strong><span style="font-size:small;">4.</span></strong> When you have selected the image you want click on the <strong>Apply this background</strong> button.</p>
<p><strong><span style="font-size:small;">5.</span></strong> When it&#8217;s done, click on <strong>OK</strong>.<strong><span style="color:red;"><br />
</span></strong></p>
<p><strong><span style="font-size:small;">7.</span></strong> You&#8217;re log on screen is now changed. You can press <strong>Ctrl+Alt+Del</strong> to test it.</p>
<p><strong><span style="font-size:small;">8.</span></strong> When done, close the <strong>Windows 7 Logon Background Changer </strong>program.</p>
<p>If you cannot read the text there is also options to make the text brighter or darker, a little bid of fiddling might be required to get the best results.</p>
<p>And there you go, I know this is a small post but a handy one at least.</p>
<p><a href="http://versatile1.wordpress.com/files/2009/11/default.png"><img class="alignleft size-medium wp-image-3322" title="My new one" src="http://versatile1.wordpress.com/files/2009/11/default.png?w=300" alt="" width="320" height="240" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Change the Icon &amp; Permissions of a Specific File, &amp; the Default Program for a File Extension in Ubuntu]]></title>
<link>http://ubuntugenius.wordpress.com/2009/11/19/change-the-icon-permissions-of-a-specific-file-the-default-program-for-a-file-extension-in-ubuntu/</link>
<pubDate>Thu, 19 Nov 2009 08:28:52 +0000</pubDate>
<dc:creator>ubuntugenius</dc:creator>
<guid>http://ubuntugenius.wordpress.com/2009/11/19/change-the-icon-permissions-of-a-specific-file-the-default-program-for-a-file-extension-in-ubuntu/</guid>
<description><![CDATA[When you right-click a file, there is a wealth of options available in the context menu that appears]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>When you right-click a file, there is a wealth of options available in the <strong><em>context menu</em></strong> that appears. At the bottom, you&#8217;ll notice <strong><span style="color:#800000;">Properties</span></strong>, and clicking it will let you change all sorts of things, and give you lots of info about the file (depending on the file-type).</p>
<p>In the first tab, <strong><em>Basic</em></strong>, you&#8217;ll see you can rename the file, and if you click on the icon on the left, you can change it to whatever you want. Note that this will change the icon only for the file specified, not all others of the same extension. If you want to change the icon for a whole file-type, <strong><a href="http://ubuntugenius.wordpress.com/2009/11/19/create-your-own-file-types-in-ubuntu-with-assogiate/">read about creating your own mimetypes in Ubuntu</a></strong>.</p>
<p style="text-align:center;"><a href="http://ubuntugenius.wordpress.com/files/2009/11/fileproperties3.png"><img class="alignnone size-full wp-image-487" title="File Properties dialogue box" src="http://ubuntugenius.wordpress.com/files/2009/11/fileproperties3.png" alt="" width="414" height="452" /></a></p>
<p>If you&#8217;re ever having permissions trouble with a file, go to the <strong><em>Permissions</em></strong> tab and make sure you have full <em>&#8220;<strong>Read and write</strong>&#8220;</em> access. Also, if files of a specific extension are not opening in anything (and a default program has been specified), or if scripts aren&#8217;t being executed, or certain text files not opening, then you may need to tick<em> &#8220;<strong>Allow executing file as program</strong>&#8220;</em>.</p>
<p style="text-align:center;"><a href="http://ubuntugenius.wordpress.com/files/2009/11/permissions.png"><img class="size-full wp-image-488 aligncenter" title="Change your File Permissions if you have limited rights" src="http://ubuntugenius.wordpress.com/files/2009/11/permissions.png" alt="" width="414" height="452" /></a></p>
<p>The last thing you can do is <strong><span style="color:#008000;">change the default application</span></strong> for the whole file-type under <strong><em>Open With</em></strong>, and all you need to do is select another from the list. You can <strong><em>+Add</em></strong> more, and if the app you want isn&#8217;t in the list that is presented to you, you can create your own custom command instead. In this example of <strong>.txt</strong> documents, if the desired program, <strong><span style="color:#800000;">Leafpad</span></strong>, isn&#8217;t in the <strong><em>Open With</em></strong> list, and isn&#8217;t presented after clicking <strong><em>+Add</em></strong>, you could type <strong><span style="color:#3366ff;">leafpad</span></strong> as the custom command.</p>
<p style="text-align:center;"><a href="http://ubuntugenius.wordpress.com/files/2009/11/openwith2.png"><img class="alignnone size-full wp-image-489" title="Properties &#62; Open With dialogue box for Changing Default Applications" src="http://ubuntugenius.wordpress.com/files/2009/11/openwith2.png" alt="" width="414" height="452" /></a></p>
<p><a href="http://ubuntugenius.wordpress.com/files/2009/11/customicon.png"><img class="size-full wp-image-490 alignright" title="You can Define Custom Icons for Individual Files in Ubuntu" src="http://ubuntugenius.wordpress.com/files/2009/11/customicon.png" alt="" width="177" height="123" /></a></p>
<p>So there you have a few ways to get greater control over your files. As you can see, changing the default program a file-type opens in is a quick and easy task, and you can customise your most important files to have their own unique icons.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Trik untuk komputer lemot]]></title>
<link>http://alumnistmikbuddhi.wordpress.com/2009/11/19/trik-untuk-komputer-lemot/</link>
<pubDate>Thu, 19 Nov 2009 03:49:29 +0000</pubDate>
<dc:creator>Alumni STMIK Buddhi</dc:creator>
<guid>http://alumnistmikbuddhi.wordpress.com/2009/11/19/trik-untuk-komputer-lemot/</guid>
<description><![CDATA[Beberapa artikel tweaking Windows, ataupun tweaking browser pernah ditampilkan. Berikut satu lagi da]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Beberapa artikel <a title="Tweaking Windows" href="http://alumnistmikbuddhi.wordpress.com/2009/03/12/percepat-waktu-shutdown-dengan-tweaking-windows-xp/" target="_self">tweaking Windows</a>, ataupun <a title="Tweak FireFox" href="http://alumnistmikbuddhi.wordpress.com/2009/02/28/tweaking-penggunaan-ram-untuk-firefox/" target="_self">tweaking browser</a> pernah ditampilkan. Berikut satu lagi dari <a title="Evan Code" href="http://www.evancode.com/" target="_blank">Evan Code</a> seputar trik untuk system yang lemot:</p>
<p>Trik lama utk mengatasi sistem yg berjalan lambat karena memory yg penuh terpakai:</p>
<p>Buka notepad lalu ketik</p>
<p>MYSTRING = (80000000)</p>
<p>simpan dengan nama &#8220;apaaja.vbe&#8221;</p>
<p>dan jalankan disaat komputer anda terasa sangat lemot.</p>
<p>catatan :<br />
bila anda memiliki memory ram diatas 128MB tuliskan ini:<br />
MYSTRING = (80000000)</p>
<p>tapi bila memorynya kurang dari 128MB tuliskan ini:<br />
MYSTRING = (16000000)</p>
<p><strong>Do with your own risk&#8230;.</strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Introducing Video Landing Page Templates ...]]></title>
<link>http://marketingmaterial.wordpress.com/2009/11/18/introducing-video-landing-page-templates/</link>
<pubDate>Wed, 18 Nov 2009 01:53:58 +0000</pubDate>
<dc:creator>marketingmaterial</dc:creator>
<guid>http://marketingmaterial.wordpress.com/2009/11/18/introducing-video-landing-page-templates/</guid>
<description><![CDATA[This is a brand new template package &#8211; and ALL the work has been done for you &#8211; all you ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignnone" src="http://www.videolandingpagetemplates.com/images/screenshot_4.jpg" alt="" width="497" height="390" /></p>
<p>This is a brand new template package &#8211; and ALL the work has been done for you &#8211; all you do is insert YOUR own copy, and add YOUR autoresponder info.</p>
<p>Grab 5, brand new professionally designed video landing page templates, in seven Web 2.0 colors that will have your visitors thinking out loud, &#8220;Wow!&#8221; They&#8217;ll be impressed &#8211; and they&#8217;ll want to watch your video and opt-in to your list!</p>
<p>These templates are professionally designed, sliced and already html optimized, and there&#8217;s no graphic editing required!  						All you need is an autoresponder account like <a href="http://www.aweber.com/?203678" target="_blank">Aweber</a> or <a href="http://www.getresponse.com/index/13999" target="_blank">GetResponse</a>, and a video for your opt-in page. YouTube videos are the easiest to insert, or you can use your own custom videos!</p>
<p>It&#8217;s as easy as 1-2-3!</p>
<p>Just open up the templates in your favorite webpage editor and &#8230;</p>
<p>1. Edit the text<br />
2. Insert your video code<br />
3. Tweak the autoresponder code</p>
<p>That&#8217;s it!</p>
<p>Now you have a stunning landing page, professionally designed to showcase your opt-in video and reel in new subscribers!</p>
<p>But that&#8217;s not all &#8230;  <a href="http://www.videolandingpagetemplates.com/a75505"><em><strong>Continue reading&#8230;</strong></em></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Afinal, é fácil ou não instalar programas e drivers no Linux? E remover?]]></title>
<link>http://educarrega.wordpress.com/2009/11/14/afinal-e-facil-ou-nao-instalar-programas-e-drivers-no-linux-e-remover/</link>
<pubDate>Sat, 14 Nov 2009 22:48:20 +0000</pubDate>
<dc:creator>Eduardo Carrega</dc:creator>
<guid>http://educarrega.wordpress.com/2009/11/14/afinal-e-facil-ou-nao-instalar-programas-e-drivers-no-linux-e-remover/</guid>
<description><![CDATA[Mais um assunto que dá &#8220;pano-prá-manga&#8221;  quando dois técnicos resolvem conversar sobre t]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div><img class="size-full wp-image-204 alignleft" title="gnome-app-install" src="http://educarrega.wordpress.com/files/2009/11/1258497161_gnome-app-install.png" alt="" width="128" height="128" /></div>
<p>Mais um assunto que dá &#8220;pano-prá-manga&#8221;  quando dois técnicos resolvem conversar sobre tecnologia:</p>
<p><strong>1) É ou não é afinal fácil adicionar e remover programas no Linux?</strong><br />
<strong>2) É ou não é mais fácil que no Windows?<br />
3) E os drivers, qual dos dois se saem melhor na escolha e instalação?</strong></p>
<p>Bom, minha missão neste blog é ser coerente, e não fundamentalista, procuro apresentar as coisas da forma mais fácil e clara possível, e tentarei não arrastar a asa para lado nenhum, e ser justo com as partes envolvidas, Linux, Windows e Você!</p>
<p>Sendo assim, desenvolvi uma simples tabela comparativa que pode ser muito útil para você visualizar e tirar suas próprias conclusões, apresentando os recursos disponíveis, similares ou não entre os dois sistemas operacionais.</p>
<table cellspacing="0" width="595" rules="NONE">
<tbody>
<tr>
<td style="text-align:center;" valign="TOP" bgcolor="#000000">
<h2><span style="color:#ffffff;"><br />
Recurso</span></h2>
</td>
<td style="text-align:center;" valign="TOP" bgcolor="#280099"><a title="windows icon" href="http://www.iconfinder.net/icondetails/32703/128/?q=windows"> <img class="alignnone size-full wp-image-205" title="Windows" src="http://educarrega.wordpress.com/files/2009/11/1258497081_windows.png" alt="" width="128" height="128" /></a><a title="windows icon" href="http://www.iconfinder.net/icondetails/32703/128/?q=windows"> </a></td>
<td style="text-align:center;" valign="TOP" bgcolor="#663300"><a title="here, start, ubuntuoriginal icon" href="http://www.iconfinder.net/icondetails/25272/128/?q=ubuntu"> <img class="alignnone size-full wp-image-206" title="ubuntuoriginal" src="http://educarrega.wordpress.com/files/2009/11/1258497096_start-here-ubuntuoriginal.png" alt="" width="128" height="128" /></a><a title="here, start, ubuntuoriginal icon" href="http://www.iconfinder.net/icondetails/25272/128/?q=ubuntu"> </a></td>
</tr>
<tr>
<td align="LEFT" valign="TOP" bgcolor="#cccccc">
<h2><strong>Adicionar e Remover Programas/Pacotes</strong></h2>
</td>
<td align="LEFT" valign="TOP">
<div><img class="alignnone size-full wp-image-207" title="1258497179_button_ok" src="http://educarrega.wordpress.com/files/2009/11/1258497179_button_ok.png" alt="" width="30" height="30" /></div>
<p>Adicionar Remover Programas no Painel de Controle</td>
<td align="LEFT" valign="TOP">
<div>
<div><img title="1258497179_button_ok" src="../files/2009/11/1258497179_button_ok.png" alt="" width="30" height="30" /></div>
</div>
<p>Central de Programas Ubuntu<br />
Synaptic<br />
Ubuntu Tweak<br />
Scripts (como Ubuntu Perfeito)</td>
</tr>
<tr>
<td align="LEFT" valign="TOP" bgcolor="#cccccc">
<h2><strong>Adiciona programas à partir de um repositório remoto</strong></h2>
</td>
<td align="LEFT" valign="TOP">
<div>
<div><img title="1258497179_button_ok" src="../files/2009/11/1258497179_button_ok.png" alt="" width="30" height="30" /></div>
</div>
<p>Somente Drivers de Dispositivos</td>
<td align="LEFT" valign="TOP">
<div>
<div><img title="1258497179_button_ok" src="../files/2009/11/1258497179_button_ok.png" alt="" width="30" height="30" /></div>
</div>
<p>Todos os tipos de aplicativos numa base com milhares à escolher nos modos acima descritos.</p>
<p>Linha de comando &#8220;sudo apt-get install nome_do_pacote&#8221;<br />
Linha de comando &#8220;sudo aptitude install nome_do_pacote&#8221;</td>
</tr>
<tr>
<td align="LEFT" valign="TOP" bgcolor="#cccccc">
<h2><strong>Adiciona programas à partir de fontes locais (Hd, Cd, DVD, Usb)</strong></h2>
</td>
<td align="LEFT" valign="TOP">
<div>
<div><img title="1258497179_button_ok" src="../files/2009/11/1258497179_button_ok.png" alt="" width="30" height="30" /></div>
</div>
<p>Auto-execução<br />
Seleção Manual</td>
<td align="LEFT" valign="TOP">
<div>
<div><img title="1258497179_button_ok" src="../files/2009/11/1258497179_button_ok.png" alt="" width="30" height="30" /></div>
</div>
<p>Auto-execução<br />
Adição de Repositório Local<br />
Seleção Manual</td>
</tr>
<tr>
<td align="LEFT" valign="TOP" bgcolor="#cccccc">
<h2><strong>Adiciona programas à partir auto-executáveis/extratores baixados</strong></h2>
</td>
<td align="LEFT" valign="TOP">
<div>
<div><img title="1258497179_button_ok" src="../files/2009/11/1258497179_button_ok.png" alt="" width="30" height="30" /></div>
</div>
<p>.exe (padrão Windows)<br />
.msi (idem)<br />
.zip (Winamp por exemplo)</td>
<td align="LEFT" valign="TOP">
<div>
<div><img title="1258497179_button_ok" src="../files/2009/11/1258497179_button_ok.png" alt="" width="30" height="30" /></div>
</div>
<p>.deb (padrão debian/ubuntu)<br />
.bin (Google Earth, Picasa)<br />
.run<br />
.sh<br />
.exe (utilizando wine)<br />
.rpm (com alien)<br />
.py (python)</td>
</tr>
<tr>
<td align="LEFT" valign="TOP" bgcolor="#cccccc">
<h2><strong>Adiciona programas com compilação específica</strong></h2>
</td>
<td align="LEFT" valign="TOP"><img class="alignnone size-full wp-image-208" title="button_cancel" src="http://educarrega.wordpress.com/files/2009/11/1258497193_button_cancel.png" alt="" width="30" height="30" /><a title="button, cancel icon" href="http://www.iconfinder.net/icondetails/7976/64/?q=no"> </a></td>
<td align="LEFT" valign="TOP">
<div>
<div><img title="1258497179_button_ok" src="../files/2009/11/1258497179_button_ok.png" alt="" width="30" height="30" /></div>
</div>
<p>Make, Make install à partir de pacotes devel</td>
</tr>
<tr>
<td align="LEFT" valign="TOP" bgcolor="#cccccc">
<h2><strong>Remove programas por algum tipo de central</strong></h2>
</td>
<td align="LEFT" valign="TOP">
<div>
<div><img title="1258497179_button_ok" src="../files/2009/11/1258497179_button_ok.png" alt="" width="30" height="30" /></div>
</div>
<p>Adicionar Remover Programas no Painel de Controle</td>
<td align="LEFT" valign="TOP">
<div>
<div><img title="1258497179_button_ok" src="../files/2009/11/1258497179_button_ok.png" alt="" width="30" height="30" /></div>
</div>
<p>Central de Programas Ubuntu, Synaptic<br />
Ubuntu Tweak<br />
Scripts</td>
</tr>
<tr>
<td align="LEFT" valign="TOP" bgcolor="#cccccc">
<h2><strong>Remove programas por locais fora de uma central</strong></h2>
</td>
<td align="LEFT" valign="TOP">
<div>
<div><img title="1258497179_button_ok" src="../files/2009/11/1258497179_button_ok.png" alt="" width="30" height="30" /></div>
</div>
<p>Iniciar &#62; Programas &#62; Programa &#62; Desinstalar<br />
Clicar sobre o programa baixado e solicitar sua remoção</td>
<td align="LEFT" valign="TOP">
<div>
<div><img title="1258497179_button_ok" src="../files/2009/11/1258497179_button_ok.png" alt="" width="30" height="30" /></div>
</div>
<p>Linha de comando no terminal:<br />
“sudo dpkg &#8211;remove nome_do_programa.deb”<br />
Linha de comando &#8220;sudo apt-get remove nome_do_pacote&#8221;<br />
Linha de comando &#8220;sudo aptitude remove nome_do_pacote&#8221;<br />
Clicar sobre o programa baixado e solicitar sua remoção</td>
</tr>
</tbody>
</table>
<p>Diante dos comparativos apresentados acima, tecnicamente conferimos um empate técnico às nossas questões, todos tem sistemas muito eficientes de instalação e remoção de programas, desde os mais simples e triviais aos mais técnicos.<!--more--></p>
<p>Mas há algumas ressalvas:<br />
- Creio que o Windows possui uma leve vantagem no fato de possuir o &#8220;Desinstalar&#8221; dentro do menu do próprio programa.<br />
- A ausência disso no Linux acaba sendo superada pelos seus outros meios.<br />
- O Linux possui o fantástico recurso de Repositório unificado de programas, permitindo a instalação segura e tranquila de dentro do próprio Ubuntu, sem a necessidade de recorrer à fontes externas como sites, cds e dvds, o que já não ocorre em sua totalidade no Windows, que reserva este fantástico recursos apenas às suas atualizações automáticas de segurança e algumas outras raras exceções.</p>
<p>Para mim, os Repositórios colocam o Linux na vantagem.</p>
<p><strong>Mas e os Drivers?</strong></p>
<p>Em suma, a esmagadora maioria dos drivers para periféricos são reconhecidos automaticamente pelo Linux, devidamente compilados em seu Kernel e Módulos, mesmo assim, em alguns casos os principais fabricantes disponibilizam em seus sites, os drivers para serem baixados, assim como para qualquer outro sistema operacional.<br />
O impeditivo ocorre quando é apenas disponibilizado fontes para compilação, eleminando a possibilidade de muitos poderem gozar dos drivers nativos para os seus perifericos, já que muitos não possuem conhecimento técnico suficiente para resolver dependências de bibliotecas para ter sua multifuncional 100% operante.</p>
<p>No Windows, por outro lado, reconhece quase nada de drivers (toda regra possui exceções) , mas é baixar, dar dois cliques e pronto, dispositivo reconhecido.<br />
O problema é achar os drivers corretos entre milhares de sites fakes repletos de armadilhas!</p>
<p><strong>Conclusão?</strong></p>
<blockquote><p>Tem de tudo para todos, e todos para tudo.</p></blockquote>
<p>Dêem suas opiniões, colaborem, polemizem!</p>
<p><strong>Algumas telas de instalação de software no Linux:</strong></p>
<div style="border:1px solid #cccccc;float:left;width:140px;height:140px;display:block;background-color:#eaeaea;text-align:center;margin:0 2px 2px 0;padding:3px;"><a href="http://picasaweb.google.com.br/educarrega/UbuntuInstaladores#5404081483127759394"><img src="http://lh6.ggpht.com/_LsXcKcMdjAU/Sv8nehMYoiI/AAAAAAAAEK4/wn6AT2UJuhc/s128/Ubuntu_9.10-Ubuntu%20Tweak%20software%20terceiros.jpg" alt="" /></a><br />
Programas de terceiros no Ubuntu Tweak</div>
<div style="border:1px solid #cccccc;float:left;width:140px;height:140px;display:block;background-color:#eaeaea;text-align:center;margin:0 2px 2px 0;padding:3px;"><a href="http://picasaweb.google.com.br/educarrega/UbuntuInstaladores#5404081536714649298"><img src="http://lh5.ggpht.com/_LsXcKcMdjAU/Sv8nho0frtI/AAAAAAAAEK8/KdNm5gzzpoo/s128/Ubuntu_9.10_instalador_gdeb_dependencias.jpg" alt="" /></a><br />
Gdebi instalando as dependências</div>
<div style="border:1px solid #cccccc;float:left;width:140px;height:140px;display:block;background-color:#eaeaea;text-align:center;margin:0 2px 2px 0;padding:3px;"><a href="http://picasaweb.google.com.br/educarrega/UbuntuInstaladores#5404081588344318850"><img src="http://lh3.ggpht.com/_LsXcKcMdjAU/Sv8nkpJ964I/AAAAAAAAELA/Gkrl1cCvdRk/s128/Ubuntu_9.10_instalador_gdeb_baixando.jpg" alt="" /></a><br />
Gdebi baixando pacotes</div>
<div style="border:1px solid #cccccc;float:left;width:140px;height:140px;display:block;background-color:#eaeaea;text-align:center;margin:0 2px 2px 0;padding:3px;"><a href="http://picasaweb.google.com.br/educarrega/UbuntuInstaladores#5404081646155931922"><img src="http://lh5.ggpht.com/_LsXcKcMdjAU/Sv8noAhVIRI/AAAAAAAAENQ/WPBdOVl7hPg/s128/ubuntu_9.10_instalar_gdeb.jpg" alt="" /></a><br />
Instalar um .deb via GDebi</div>
<div style="border:1px solid #cccccc;float:left;width:140px;height:140px;display:block;background-color:#eaeaea;text-align:center;margin:0 2px 2px 0;padding:3px;"><a href="http://picasaweb.google.com.br/educarrega/UbuntuInstaladores#5404081701864390466"><img src="http://lh5.ggpht.com/_LsXcKcMdjAU/Sv8nrQDQv0I/AAAAAAAAELI/6uyqxz66Xgg/s128/Ubuntu_9.10-Ubuntu%20Tweak%20Limpar%20Cache%20Programas.jpg" alt="" /></a><br />
Limpeza de pacotes no Ubuntu Tweak</div>
<div style="border:1px solid #cccccc;float:left;width:140px;height:140px;display:block;background-color:#eaeaea;text-align:center;margin:0 2px 2px 0;padding:3px;"><a href="http://picasaweb.google.com.br/educarrega/UbuntuInstaladores#5404081761483991506"><img src="http://lh5.ggpht.com/_LsXcKcMdjAU/Sv8nuuJrqdI/AAAAAAAAELM/YGmM7BvBuqk/s128/Ubuntu_9.10-Ubuntu%20Tweak%20instalador.jpg" alt="" /></a><br />
Adicionar e Remover Programas no Ubuntu Tweak</div>
<div style="border:1px solid #cccccc;float:left;width:140px;height:140px;display:block;background-color:#eaeaea;text-align:center;margin:0 2px 2px 0;padding:3px;"><a href="http://picasaweb.google.com.br/educarrega/UbuntuInstaladores#5404081811851302050"><img src="http://lh5.ggpht.com/_LsXcKcMdjAU/Sv8nxpyL1KI/AAAAAAAAELQ/p9NQbmC1OK0/s128/Ubuntu_9.10-Dpkg_install_terminal.jpg" alt="" /></a><br />
Instalar um pacote via dpkg no terminal</div>
<div style="border:1px solid #cccccc;float:left;width:140px;height:140px;display:block;background-color:#eaeaea;text-align:center;margin:0 2px 2px 0;padding:3px;"><a href="http://picasaweb.google.com.br/educarrega/UbuntuInstaladores#5404081865011507602"><img src="http://lh6.ggpht.com/_LsXcKcMdjAU/Sv8n0v0kMZI/AAAAAAAAELU/OKN5LJEGGz4/s128/Ubuntu_9.10-Central%20de%20Programas%20do%20Ubuntu%202.jpg" alt="" /></a><br />
Obter Software na Central de Programas do Ubuntu</div>
<div style="border:1px solid #cccccc;float:left;width:140px;height:140px;display:block;background-color:#eaeaea;text-align:center;margin:0 2px 2px 0;padding:3px;"><a href="http://picasaweb.google.com.br/educarrega/UbuntuInstaladores#5404081915558666562"><img src="http://lh6.ggpht.com/_LsXcKcMdjAU/Sv8n3sH8oUI/AAAAAAAAELY/Dwqs4Ddx3k8/s128/Ubuntu_9.10-Central%20de%20Programas%20do%20Ubuntu%201.jpg" alt="" /></a><br />
Categorias de softwares na Central de Programas do Ubuntu</div>
<div style="border:1px solid #cccccc;float:left;width:140px;height:140px;display:block;background-color:#eaeaea;text-align:center;margin:0 2px 2px 0;padding:3px;"><a href="http://picasaweb.google.com.br/educarrega/UbuntuInstaladores#5404081971538510690"><img src="http://lh4.ggpht.com/_LsXcKcMdjAU/Sv8n68qlQ2I/AAAAAAAAELc/izXAkbFckhs/s128/Ubuntu_9.10-Canais%20de%20software.jpg" alt="" /></a><br />
Canais de Software / Repositórios</div>
<div style="border:1px solid #cccccc;float:left;width:140px;height:140px;display:block;background-color:#eaeaea;text-align:center;margin:0 2px 2px 0;padding:3px;"><a href="http://picasaweb.google.com.br/educarrega/UbuntuInstaladores#5404082021073198386"><img src="http://lh3.ggpht.com/_LsXcKcMdjAU/Sv8n91MknTI/AAAAAAAAELg/wnrIcKzKRhA/s128/Ubuntu_9.10-Central%20de%20Programas%20do%20Ubuntu%203.jpg" alt="" /></a><br />
Instalar um Software na Central de Programas do Ubuntu</div>
<div style="border:1px solid #cccccc;float:left;width:140px;height:140px;display:block;background-color:#eaeaea;text-align:center;margin:0 2px 2px 0;padding:3px;"><a href="http://picasaweb.google.com.br/educarrega/UbuntuInstaladores#5404082085097855954"><img src="http://lh5.ggpht.com/_LsXcKcMdjAU/Sv8oBjtPW9I/AAAAAAAAELk/gYKvtUqHZfY/s128/Ubuntu_9.10-Gerenciador%20de%20pacotes%20Synaptic%20.jpg" alt="" /></a><br />
Adicionar um Programa pelo Synaptic</div>
<div style="border:1px solid #cccccc;float:left;width:140px;height:140px;display:block;background-color:#eaeaea;text-align:center;margin:0 2px 2px 0;padding:3px;"><a href="http://picasaweb.google.com.br/educarrega/UbuntuInstaladores#5404088718809690242"><img src="http://lh6.ggpht.com/_LsXcKcMdjAU/Sv8uDsNY8II/AAAAAAAAENI/A8otuDklyCM/s128/Ubuntu_9.10-Ubuntu%20Perfeito.jpg" alt="" /></a><br />
Script Ubuntu Perfeito</div>
<div style="border:1px solid #cccccc;float:left;width:140px;height:140px;display:block;background-color:#eaeaea;text-align:center;margin:0 2px 2px 0;padding:3px;"><a href="http://picasaweb.google.com.br/educarrega/UbuntuInstaladores#5404088767631987282"><img src="http://lh4.ggpht.com/_LsXcKcMdjAU/Sv8uGiFiElI/AAAAAAAAENM/GiByuIv9lz0/s128/Ubuntu_9.10-Firefox%3AAbrir%20ubuntuperfeito-9.10.1rc2_all.deb.jpg" alt="" /></a><br />
Abrir Script Ubuntu Perfeito pelo Firefox e Gdebi</div>
<div style="clear:left;">
<p>.</p>
<p><strong>Leitura recomendada:</strong></p>
<p>Para quem ainda não tem o Ubuntu Tweak instalado, não faz idéia do que está perdendo, acesse e instale: <a href="http://ubuntu-tweak.com/downloads">http://ubuntu-tweak.com/downloads</a></p>
<p><a href="http://andregondim.eti.br/?p=1061">Ubuntu Software Center por André Gondim</a></p>
<p><a href="http://softwarelivre.org/portal/comunidade/teste-mostra-que-novo-ubuntu-esta-simples-para-a-maioria-dos-usuarios">Teste mostra que Ubuntu está simples para a maioria dos usuários</a></p>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[fUnlockedPrefs]]></title>
<link>http://farhanito.wordpress.com/2009/11/12/funlockedprefs/</link>
<pubDate>Thu, 12 Nov 2009 01:56:33 +0000</pubDate>
<dc:creator>farhanito</dc:creator>
<guid>http://farhanito.wordpress.com/2009/11/12/funlockedprefs/</guid>
<description><![CDATA[adds few menu item in settings&#8211;general]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>adds few menu item in settings&#8211;general </p>
<p><a href="http://farhanito.files.wordpress.com/2009/11/p_480_320_e7841a9a-1b8d-49a9-a2dc-b19a06a77512.jpeg"><img src="http://farhanito.files.wordpress.com/2009/11/p_480_320_e7841a9a-1b8d-49a9-a2dc-b19a06a77512.jpeg?w=200&#038;h=300" alt="" width="200" height="300" class="alignnone size-full wp-image-364" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[tweak windows 7]]></title>
<link>http://aldingeblog.wordpress.com/2009/11/11/tweak-windows-7/</link>
<pubDate>Wed, 11 Nov 2009 09:29:53 +0000</pubDate>
<dc:creator>aLdi LLa Yonda Perdana</dc:creator>
<guid>http://aldingeblog.wordpress.com/2009/11/11/tweak-windows-7/</guid>
<description><![CDATA[EnhanceMySe7en adalah sebuah program gratis yang dapat digunakan untuk tweak Windows 7 sehingga bisa]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>EnhanceMySe7en adalah sebuah program gratis yang dapat digunakan untuk tweak</strong><strong> Windows 7 sehingga bisa membuat Windows 7 lebih cepat dan respon. Enhance My Se7en membantu para pengguna untuk mengontrol banyak aspek dari sistem dengan kenyamanan maksimal.  Program yang bersifat freeware ini menawarkan banyak feature, antaranya dapat menjaga registri, defragmenter, disk cleaner, mengatur startup items. Dengan software ini kita juga dapat mengetahui berbagai info hardware yang digunakan pada computer ataupun notebook yang kita pakai.  Tidak hanya itu, dengan program ini kita juga dapat membatasi berbagai settingan dan fungsi yang terdapat pada windows yang kita gunakan seperti ; Disable Registry Editor, Disable Task Manager, Disable Folder Options, Disable Windows Sidebar, Disable CD/DVD Burn Feature dan masih banyak lagi lainnya.  Dari segi tampilan EnhanceMySe7en bisa dibilang sangat baik. Apalagi sebagai sebuah tweaker yang bersifat Freeware dan mudah untuk digunakan siapa saja.  Features of EnhanceMySe7en :      * Process Identification &#8211; Identify unrecognized software     * Start-Up Management &#8211; Disable unnecessary software increasing performance     * Registry Cleaner &#8211; Can easily checks your registry and repair incorrectly linked registry entries, automatically remove invalid entries     * Disk Cleaner &#8211; Find out which files or folders engross your disk space and shown with chart     * Registry Defragmenter &#8211; Rebuilds and re-indexs your registry to reduce application response time and registry access time     * Disk Defragmenter &#8211; Reduces the amount of fragmentation in file systems     * Hard Drive Monitor &#8211; Gives the current values of various hard disk parameters such as Temperature, Head Flying Height, Spin-Up Time etc.     * System Tools, File, Network and Security Tools     * Security &#8211; EnhanceMySe7en has easy to configure security settings for managing the new security features of Windows Vista     * Optimization &#8211; Optimize settings for maximum speed and stability     * Customization &#8211; customize system desktop, menus, toolbar and notifications settings     * Network &#8211; Optimize your Internet connection speed  Menurut saya program ini adalah salah satu Freeware yang bagus untuk dicoba. Bagi anda pengguna Windows 7 dan ingin mencoba Program ini bisa download pada link download dibawah ini.  http://d60pc.com/redirectdownload/EnhanceMySeven.html Version</strong><strong></strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Speed up your pc with a usb flashdrive]]></title>
<link>http://mperrigo.wordpress.com/2009/11/09/speed-up-your-pc-with-a-usb-flashdrive/</link>
<pubDate>Mon, 09 Nov 2009 17:28:44 +0000</pubDate>
<dc:creator>mperrigo</dc:creator>
<guid>http://mperrigo.wordpress.com/2009/11/09/speed-up-your-pc-with-a-usb-flashdrive/</guid>
<description><![CDATA[Ever wanted to add a little extra kick to your computer, with an inexpensive method? Follow me: Plug]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ever wanted to add a little extra kick to your computer, with an inexpensive method? Follow me:</p>
<p>Plug your flashdrive into your usb port, and wait for it to come up as ready to use.</p>
<p>Go to &#8220;My Computer&#8221;</p>
<p>Right click on your Removable Drive.</p>
<p>Click &#8220;Properties&#8221;</p>
<p>Click the &#8220;ReadyBoost&#8221; tab.</p>
<p>Allow the flashdrive to use the &#8220;unused&#8221; space towards the system&#8217;s speed.</p>
<p>Click Apply and Okay</p>
<p>There you go! It&#8217;s not much, but it&#8217;s something! You may even notice a difference&#8230;..maybe.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[my push problems..]]></title>
<link>http://patheticallypoetic.wordpress.com/2009/11/07/my-push-problems/</link>
<pubDate>Sat, 07 Nov 2009 11:34:57 +0000</pubDate>
<dc:creator>blackwhale69</dc:creator>
<guid>http://patheticallypoetic.wordpress.com/2009/11/07/my-push-problems/</guid>
<description><![CDATA[ok so moving a bit away from my previous post topics, heres something that ive come to notice concer]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>ok so moving a bit away from my previous post topics, heres something that ive come to notice concerning my <strong>iphone 3G</strong>..</p>
<p>as many of you know, i have an iphone, and i have jailbroken it on the iphone 3.1 software.. this, while allowing me access to several hacks like different sms tones and themes, has also allowed me to tweak my phone to my hearts content.. ive installed many promising programs and these have helped me get maximum workflow from my ageing iphone 3G. ive managed to install a swap file tweak to help with the 1 year old handsets low ram problems (compared to my 3gs, my iphone 3g is one laggy monster), and sbsettings drop down menu has given me access to controls that would take me a vital moments digging into a menu to change. the ability to free memory and quit processes, also backgrounder has allowed me to play some games while surfing the web.. its gotten to the point where even information from my calendar appointments, emails and even the weather can be made avaliable on my lockscreen. or even send an sms message while running a game or video, now how cool is that. (note these aren&#8217;t my phone images but theyre basically the same)</p>
<p style="text-align:center;"><img class="size-medium wp-image-163 aligncenter" title="JPhone" src="http://patheticallypoetic.wordpress.com/files/2009/07/jphone.jpg?w=200" alt="JPhone" width="200" height="300" /></p>
<p style="text-align:center;"><img class="size-medium wp-image-201 aligncenter" title="p-480-320-37c08438-a9fa-469b-93ff-9ac5dfc815b0.jpeg.jpg" src="http://patheticallypoetic.wordpress.com/files/2009/11/p-480-320-37c08438-a9fa-469b-93ff-9ac5dfc815b0-jpg.jpeg?w=200" alt="p-480-320-37c08438-a9fa-469b-93ff-9ac5dfc815b0.jpeg.jpg" width="200" height="300" /></p>
<p style="text-align:center;"><img class="aligncenter size-medium wp-image-200" title="IMG_0043.png image by IMDarkAura17" src="http://patheticallypoetic.wordpress.com/files/2009/11/img_0043-image-by-imdarkaura17.png?w=200" alt="IMG_0043.png image by IMDarkAura17" width="200" height="300" /></p>
<p>so now these tweaks are essential to my phones usage and i certainly hope apple implements atleast some of them in the new iphone 4.0. this software, we all know will be released alongside a new handset next year (basing this from the history of a new iphone and software bundle every year). but one shortcoming that apple definately needs to fix is the push notification system.</p>
<p>basic push notifications are great, and do help me get various pieces of information from say my favourite sports results, everyday (one tip, i subscribed to some news channels on twitter, so i just get one twitter push notification everytime a new headline pops up, much easier than having to see thru every app what the new headlines are). but once you get a whole load of them.. now thats where the problems arise. now heres where ive started to try and alleviate this problem.</p>
<p>I&#8217;ve managed to download this handy little thing (app or extension.. something) called <strong>GriP </strong>(only for jb iphone guys). though it is still in what i believe to be BETA (it was avaliable on an iphone source i had through cydia), it is awesome and will hopefully be replaced soon with an even better version (apparently called <strong>inotifyex</strong> &#8211; which im eagerly awaiting, hopefuly it fixes what im whining about hehe).</p>
<p>it is basically like the mac application <strong>Growl</strong> but for the iphone (much like the paid app store app prowl), and allows me to change and customise that annoying large push popup in the middle of the screen. it notifies me with a little popup instead of the push message, and it can also be set to notify me of new emails aswell. i can change the colour, size and position of the popup and even choose if it is collapsible or not. while it does give me this the customisable option for the popup, the ability to control what it notifies me of and the ability to be non-obtrusive and use very little resources, it still suffers from the iphone push problem as i like to call it. (below &#8211; elert &#8211; a similar program but only for email, &#38; GriP in action)</p>
<p style="text-align:center;"><img class="size-medium wp-image-202 aligncenter" title="photo.jpg" src="http://patheticallypoetic.wordpress.com/files/2009/11/photo-jpg.jpeg?w=200" alt="photo.jpg" width="200" height="300" /></p>
<p style="text-align:center;"><img title="Click the image to open in full size." src="http://patheticallypoetic.wordpress.com/files/2009/11/click-the-image-to-open-in-full-size.png?w=201" alt="Click the image to open in full size." width="201" height="300" /></p>
<p>with a large number of push notifications being pushed to the iphone, push messages that were previously on the phone get overwritten with another incomming alert. now say you have 4 pushes coming from say, facebook (hopefully push will be implemented in facebook 3.1) . you&#8217;d only see one notification while your facebook app would have 4 badges on it. now this isnt that bad if say some of the push apps were on the app page you were currently in but what if they weren&#8217;t?</p>
<p>how would you know the had an alert if say another alert came through and overwrote the notification on your screen?</p>
<p>now i&#8217;ve discovered a tweak on the net (with some digging) and now it has been packaged by someone and released through cydia, the GriP notification sbsettings toggle. This toggle lets you go through your GriP (push) notifications, even the previous ones that were ignored or overwritten, and access them. i use this alot to access my notifications (yes i get alot as i have push twitter) but another inherent problem with GriP is <span style="text-decoration:line-through;">when you are notified, your alert fades away after a maximum of 10 seconds.. ( i kno theres the &#8217;sticky&#8217; turned on option, but i dont want ALL my notifications up on my screen&#8230;)</span> that it piles up the notifications on your screen and after alot of them they make your screen look ugly and you have to dismiss them one by one..</p>
<p>If you miss the alert and it dissapears or say you have more notifications that can fit on the screen, how would you know you got that particular one in the first place?</p>
<p>What we need is atleast an icon on the statusbar that notifies us of a push message or a whole load of them, much like notifier icons for jailbroken iphones. this could possibly also include a counter or something similar? would this be possible?</p>
<p>This would be great, and if an iphone jailbreak developer saw this, id gladly ask you make one. but what most of us that have noticed this problem (including some blogs that helped me become aware of it aswell) will want is for Apple to implement an elegant solution (maybe attach it as drop down like sbsettings), much like Androids window shade or the palm pres notification area&#8230;</p>
<p>(and alot of people will definately see this when facebook push is introduced)</p>
<p><img class="aligncenter size-medium wp-image-203" title="statusnotes-screenshot.jpg" src="http://patheticallypoetic.wordpress.com/files/2009/11/statusnotes-screenshot-jpg.jpeg?w=200" alt="statusnotes-screenshot.jpg" width="200" height="300" /></p>
<p>after that, with a little visual tweaking, hopefully it doesnt look toyish like androids interface&#8230; and a couple of crazy new features that apple may probably throw in, then the phone would be perfect in my opinion=)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Tweaking Ubuntu: Vital Additions &amp; Customisations to Your New System ]]></title>
<link>http://ubuntugenius.wordpress.com/2009/11/06/tweaking-ubuntu-vital-additions-customisations-to-your-new-system/</link>
<pubDate>Thu, 05 Nov 2009 22:32:43 +0000</pubDate>
<dc:creator>ubuntugenius</dc:creator>
<guid>http://ubuntugenius.wordpress.com/2009/11/06/tweaking-ubuntu-vital-additions-customisations-to-your-new-system/</guid>
<description><![CDATA[Here is a checklist of some cool ways to make your system even more useful, from little tweaks and s]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="color:#000000;">Here is a checklist of some cool ways to <strong>make your system even more useful</strong>, from little tweaks and system tricks, to programs you shouldn&#8217;t be without. Some tips will deal with things like how to change certain default settings to more useful ones, while others will show you how to get around certain issues that may be bugging you (like how to get full support for DVDs and multimedia).</span></p>
<p><span style="color:#000000;">Basically, these are most of the things I would do for new systems I set up for others (and myself). So, if you&#8217;re fairly new to <strong><span style="color:#993300;">Ubuntu</span></strong>, this list could help you quickly and easily transform your <em>vanilla</em> installation into a seriously useful computing environment, far better than what you ever had with Windows or Mac OS.</span></p>
<p style="text-align:center;"><span style="color:#000000;"><strong><span style="color:#3366ff;">*****</span></strong></span></p>
<p><span style="color:#000000;"><strong><span style="color:#0000ff;">♦ </span></strong></span><span style="color:#000000;"><strong><a href="http://ubuntugenius.wordpress.com/2009/11/04/synaptic-cant-find-it-add-more-software-sources-in-ubuntu/"><span style="color:#993300;">Enable &#8220;universe&#8221; and &#8220;multiverse&#8221; software sources</span></a></strong> so Synaptic can find Wine and other <strong>packages not in the official repositories</strong>.</span></p>
<p><span style="color:#000000;"><strong><span style="color:#0000ff;">♦ </span></strong></span><span style="color:#000000;"><a href="http://ubuntugenius.wordpress.com/2009/08/29/play-dvds-all-media-types-with-ubuntu-restricted-extras/"><strong><span style="color:#993300;">Install ubuntu-restricted-extras</span></strong></a> to get instant <strong>support for most audio and video types</strong>, as well as (non-encrypted) <strong>video DVDs</strong>.</span></p>
<p><span style="color:#000000;"><strong><span style="color:#0000ff;">♦ </span></strong></span><span style="color:#000000;"><strong><a href="http://ubuntugenius.wordpress.com/2009/11/04/medibuntuget-heaps-more-ubuntu-software-play-encrypted-dvds/"><span style="color:#993300;">Add the Medibuntu repositories</span></a></strong> to find <strong>heaps more software</strong>, and get access to<strong> codecs for restricted multimedia formats</strong>, including encrypted DVDs. Make sure you read the bit about</span><span style="color:#000000;"> installing <strong><span style="color:#3366ff;">libdvdcss2</span></strong> for <strong>playing encrypted DVDs</strong>, as well as the other &#8220;non-free&#8221; codecs.</span></p>
<p><span style="color:#000000;"> </span></p>
<p><span style="color:#000000;"><strong><span style="color:#0000ff;">♦ </span></strong></span><span style="color:#000000;"><strong><a href="http://ubuntugenius.wordpress.com/2009/11/06/wine-running-windows-programs-games-in-ubuntu/"><span style="color:#993300;">Install Wine</span></a></strong> to run some of your <strong>Windows software or games</strong>.</span></p>
<p><span style="color:#0000ff;"><strong><strong>♦</strong></strong></span><strong><span style="color:#993300;"> </span></strong><strong><a href="http://ubuntugenius.wordpress.com/2009/11/21/install-flash-support-for-firefox-in-ubuntu/"><span style="color:#993300;">Install Flash Support for Firefox &#38; Other Web Browsers in Ubuntu</span></a></strong><span style="color:#000000;"></span></p>
<p><span style="color:#000000;"><strong><span style="color:#0000ff;">♦ </span></strong></span><span style="color:#000000;"><strong>Install Opera</strong><strong> web browser</strong> or the <strong><a href="http://ubuntugenius.wordpress.com/2009/09/24/firefox-how-to-add-mht-archive-support/"><span style="color:#993300;">unMHT plugin for Firefox</span></a></strong> to be able to save complete web pages as single<strong> MHT &#8220;web archives&#8221;</strong> like you can do in Internet Explorer.</span></p>
<p><span style="color:#000000;"><strong><span style="color:#0000ff;">♦ </span></strong></span><span style="color:#000000;">Add some <strong><a href="http://ubuntugenius.wordpress.com/2009/08/30/recommended-internet-programs-for-ubuntu-newbies/"><span style="color:#993300;">more Internet programs</span></a></strong> to your arsenal. </span></p>
<p><span style="color:#000000;"><strong><span style="color:#0000ff;"> </span></strong></span><span style="color:#000000;"><strong><span style="color:#0000ff;">♦ </span></strong></span><span style="color:#000000;">Get <strong>greater control</strong> over your <strong><a href="http://ubuntugenius.wordpress.com/2009/11/05/customise-your-compiz-fusion-desktop-effects-in-ubuntu/"><span style="color:#993300;">Compiz-Fusion desktop effects</span></a></strong>. </span></p>
<p><span style="color:#000000;"><strong><span style="color:#0000ff;">♦ </span></strong></span><span style="color:#000000;">Install <strong><a title="Parcellite can store up to 100 copies for pasting" href="http://ubuntugenius.wordpress.com/2009/08/31/parcellite-a-handy-clipboard-manager-for-ubuntu/"><span style="color:#993300;">Parcellite clipboard manager</span></a></strong>. </span></p>
<p><span style="color:#000000;"><strong><span style="color:#0000ff;">♦ </span></strong></span><span style="color:#000000;"><strong>Make some Launchers</strong> for your <strong><a href="http://ubuntugenius.wordpress.com/2009/08/29/how-to-make-a-command-launcher-for-your-gnome-panel/"><span style="color:#993300;">panel</span></a></strong> and <strong><a href="http://ubuntugenius.wordpress.com/2009/08/29/how-to-make-a-desktop-launcher-for-a-command/"><span style="color:#993300;">desktop</span></a></strong>.</span></p>
<p><span style="color:#000000;"><strong><span style="color:#0000ff;">♦ </span></strong></span><span style="color:#000000;">Add <strong><a href="http://ubuntugenius.wordpress.com/2009/08/29/make-an-eject-button-for-your-ubuntu-panel/"><span style="color:#993300;">Eject Disc</span></a></strong> &#38; <strong><a href="http://ubuntugenius.wordpress.com/2009/08/29/add-a-disc-tray-close-button-to-your-ubuntu-panel/"><span style="color:#993300;">Close Tray</span></a></strong> buttons to your <strong>top panel</strong>.</span></p>
<p><span style="color:#000000;"><strong><span style="color:#0000ff;">♦ </span></strong></span><span style="color:#000000;"><strong><a title="Frozen-Bubble: a Game the whole family can enjoy" href="http://ubuntugenius.wordpress.com/2009/08/30/frozen-bubble-addictive-fun-for-all-the-family/"><span style="color:#993300;">Install a fun game</span></a></strong> for when you need a rest from tweaking your system! </span></p>
<p><span style="color:#000000;"><strong><span style="color:#0000ff;">♦ </span></strong></span><span style="color:#000000;"><strong><a title="Makes the terminal less scary and way more fun!" href="http://ubuntugenius.wordpress.com/2009/08/31/custom-terminal-shortcuts-via-bash-aliases/"><span style="color:#993300;">Create a Bash Aliases file</span></a></strong> for <strong>terminal command shortcuts</strong>.</span></p>
<p><span style="color:#000000;"> </span><span style="color:#000000;"><strong><span style="color:#0000ff;">♦ </span></strong></span><span style="color:#000000;"><a href="http://ubuntugenius.wordpress.com/2009/11/17/how-to-assign-ctrlaltdelete-to-open-the-system-monitor/"><strong><span style="color:#993300;">Assign Ctrl+Alt+Delete to Open the System Monitor</span></strong></a>.</span></p>
<p><span style="color:#000000;"><strong><span style="color:#0000ff;">♦ </span></strong></span><span style="color:#000000;"><strong><a title="You can skip back and forward with the scroll wheel, and more!" href="http://ubuntugenius.wordpress.com/2009/09/14/smplayer-a-multimedia-player-worth-installing/"><span style="color:#993300;">Install SMPlayer</span></a></strong> and change your video types to open with it.</span></p>
<p><span style="color:#000000;"><strong><span style="color:#0000ff;">♦ </span></strong></span><span style="color:#000000;">Get some </span><strong><a href="http://ubuntugenius.wordpress.com/2009/11/05/add-some-really-slick-screensavers-to-ubuntu/"><span style="color:#993300;">really cool Screensavers</span></a></strong><span style="color:#000000;">.</span></p>
<p style="text-align:center;"><span style="color:#000000;"><strong><span style="color:#3366ff;">*****</span></strong> </span></p>
<p><span style="color:#000000;"> </span></p>
<p style="text-align:center;"><span style="color:#ff0000;"><strong>Please note: This post will be updated occasionally as I find<br />
</strong></span><span style="color:#ff0000;"><strong>more invaluable tweaks and programs, so check back later!</strong></span></p>
<p><span style="color:#000000;"> </span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Install Every Program You Could Ever Want in a New Ubuntu System with One Command!]]></title>
<link>http://ubuntugenius.wordpress.com/?p=362</link>
<pubDate>Thu, 05 Nov 2009 22:30:45 +0000</pubDate>
<dc:creator>ubuntugenius</dc:creator>
<guid>http://ubuntugenius.wordpress.com/?p=362</guid>
<description><![CDATA[Package management makes finding, installing and updating software in Ubuntu an extremely simple aff]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Package management</strong> makes finding, installing and updating software in <strong><span style="color:#993300;">Ubuntu</span></strong> an extremely simple affair. But if you already know the names of the packages you&#8217;re after, then a much simpler and infinitely quicker method of getting them than using <strong><span style="color:#800000;">Synaptic</span></strong> is to do it <strong><span style="text-decoration:underline;"><span style="color:#800000;">via the terminal</span></span></strong>. So the following is a command you can copy then paste into a terminal, and your new system will be transformed into a true thing of beauty.</p>
<p>It won&#8217;t have everything you&#8217;re after perhaps &#8211; like if you&#8217;re into RSS feeds or need an AAC+ encoder, I&#8217;m afraid I haven&#8217;t included those &#8211; but you can get them easily enough through looking around Synaptic (don&#8217;t forget you can use its search feature). It&#8217;s basically what most people need, from multimedia codecs to internet software, and as for any programs you don&#8217;t want, just delete them (and a space before or after) from the command.</p>
<p>Packages that already have a post on them will be links within the command, while the others will be explained below. Once you&#8217;ve had a look, either copy the command and paste it into a terminal, or into your text editor for adding and deleting packages before proceeding. In the case of multiple apps for a given task, either choose one and delete the other(s), or just install them all and then choose which one you want to keep once you&#8217;ve tried them (or do as I do, and have a couple of apps for some tasks, just in case).</p>
<p><strong>sudo apt-get install <a href="http://ubuntugenius.wordpress.com/2009/11/06/wine-running-windows-programs-games-in-ubuntu/">wine</a> <a href="http://ubuntugenius.wordpress.com/2009/08/29/play-dvds-all-media-types-with-ubuntu-restricted-extras/">ubuntu-restricted-extras</a> startup-manager virtualbox firestarter thunderbird opera amsn d4x kget filezilla azureus ktorrent <a href="http://ubuntugenius.wordpress.com/2009/08/31/parcellite-a-handy-clipboard-manager-for-ubuntu/">parcellite</a> <a href="http://ubuntugenius.wordpress.com/2009/08/30/catalogue-your-discs-foldersdrives-with-cd-cat/">cdcat</a> k3b gnomebaker catfish <a href="http://ubuntugenius.wordpress.com/2009/09/14/smplayer-a-multimedia-player-worth-installing/">smplayer</a> kaffeine tovidgui amarok <a href="http://ubuntugenius.wordpress.com/2009/08/26/filelight-graphical-disk-usage-analysis-for-ubuntu/">filelight</a> <a href="http://ubuntugenius.wordpress.com/2009/08/30/frozen-bubble-addictive-fun-for-all-the-family/">frozen-bubble</a> <a href="http://ubuntugenius.wordpress.com/2009/08/29/download-youtube-videos-in-ubuntu-with-qttube/">qttube</a> audacity devede coverfinder easymp3gain vlc soundconverter convertall notecase assogiate kalarm unison leafpad easytag k9copy xsane cairo-dock awn drapes nautilus-actions nautilus-wallpaper nautilus-gksu nautilus-open-terminal nautilus-script-manager nautilus-image-converter thunar thunar-media-tags-plugin thunar-volman thunar-thumbnailers thunar-archive-plugin</strong></p>
<p><strong><span style="color:#3366ff;">amsn</span></strong>: aMSN is a great open-source alternative to Windows Messenger</p>
<p><strong><span style="color:#3366ff;">d4x</span></strong>: Downloader for X is a nice file download manager for Gnome</p>
<p><strong><span style="color:#3366ff;">kget</span></strong>: <strong><span style="color:#800000;">KGet</span></strong> is another download manager you can try; for KDE, but any dependencies will be installed, so will work fine in Gnome</p>
<p><strong><span style="color:#3366ff;">filezilla</span></strong>: <strong><span style="color:#800000;">FileZilla</span></strong> is a popular open-source FTP client for file transfers</p>
<p><strong><span style="color:#3366ff;">azureus</span></strong>: <strong><span style="color:#800000;">Azureus/Vuze</span></strong> is one of the most popular multi-platform Bittorent file-sharing clients around</p>
<p><strong><span style="color:#3366ff;">ktorrent</span></strong>: <strong><span style="color:#800000;">KTorrent</span></strong> is another bittorrent client that is less bulky than Vuze, but still feature-rich;  for KDE, but any dependencies will be installed, so will work fine in Gnome</p>
<p><strong><span style="color:#3366ff;">gnomebaker</span></strong></p>
<p><span style="color:#3366ff;"> </span></p>
<p><strong><span style="color:#3366ff;">catfish</span></strong></p>
<p><span style="color:#3366ff;"> </span></p>
<p><strong><strong><span style="color:#3366ff;">kaffeine</span></strong></strong></p>
<p><span style="color:#3366ff;"> </span></p>
<p><strong><span style="color:#3366ff;">audacity</span></strong></p>
<p><span style="color:#3366ff;"> </span></p>
<p><strong><span style="color:#3366ff;">devede</span></strong></p>
<p><span style="color:#3366ff;"> </span></p>
<p><strong><strong><span style="color:#3366ff;">vlc</span></strong></strong></p>
<p><span style="color:#3366ff;"> </span></p>
<p><strong><strong><span style="color:#3366ff;">soundconverter</span></strong></strong></p>
<p><span style="color:#3366ff;"> </span></p>
<p><strong><strong><span style="color:#3366ff;">convertall</span></strong></strong></p>
<p><span style="color:#3366ff;"> </span></p>
<p><strong><strong><strong><span style="color:#3366ff;">k9copy</span></strong></strong></strong></p>
<p><span style="color:#3366ff;"> </span></p>
<p><strong><strong><strong><span style="color:#3366ff;">xsane</span></strong></strong></strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How TO: Clear Skype 4.1x IM Chat and Call History?]]></title>
<link>http://bhavtosh.wordpress.com/2009/11/05/how-to-clear-skype-4-1x-im-chat-and-call-history/</link>
<pubDate>Thu, 05 Nov 2009 08:45:05 +0000</pubDate>
<dc:creator>bhavtosh</dc:creator>
<guid>http://bhavtosh.wordpress.com/2009/11/05/how-to-clear-skype-4-1x-im-chat-and-call-history/</guid>
<description><![CDATA[All you need to do is choose Tools &gt; Options, go to the Privacy tab then Privacy Settings and hit]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>All you need to do is choose Tools &#62; Options, go to the Privacy tab then Privacy Settings and hit the ‘Clear History’ button.</p>
<p><a href="http://bhavtosh.wordpress.com/files/2009/11/deleteskypehistory.png"><img class="aligncenter size-medium wp-image-228" title="clear skype history" src="http://bhavtosh.wordpress.com/files/2009/11/deleteskypehistory.png?w=300" alt="clear skype history" width="300" height="168" /></a></p>
<p>A dialog box will popup asking you for confirmation regarding deleting all previous text chats, voicemail, calls, file transfers and SMS messages. Hit Delete and you’re done. The Skype call and chat history has been deleted.</p>
<p>Also, If you want to disable or turn off Skype history, just use the ‘No History’ option under ‘Keep History for’ in the Privacy tab.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Medibuntu:Get HEAPS More Ubuntu Software &amp; Play Encrypted DVDs]]></title>
<link>http://ubuntugenius.wordpress.com/2009/11/04/medibuntuget-heaps-more-ubuntu-software-play-encrypted-dvds/</link>
<pubDate>Wed, 04 Nov 2009 01:08:31 +0000</pubDate>
<dc:creator>ubuntugenius</dc:creator>
<guid>http://ubuntugenius.wordpress.com/2009/11/04/medibuntuget-heaps-more-ubuntu-software-play-encrypted-dvds/</guid>
<description><![CDATA[By far the best method of getting your package manager Synaptic to be able to find lots more useful ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>By far the best method of getting your package manager <strong><span style="color:#800000;">Synaptic</span></strong> to be able to find <span style="text-decoration:underline;">lots</span> more useful software is to add the <strong><span style="color:#800000;">Medibuntu</span></strong> (<strong>M</strong>ultimedia, <strong>E</strong>ntertainment &#38; <strong>D</strong>istractions <strong>I</strong>n U<strong>buntu</strong>) <strong><span style="color:#800000;">repository</span></strong>. By adding it, you in fact get access to a whole lot more repos, and you could end up finding packages in a Synaptic search that you couldn&#8217;t even find via Google when hoping to download them from the developers&#8217; sites.</p>
<p>Besides finally being able to install those programs you&#8217;ve seen recommended but could never locate, <strong><span style="color:#800000;">Medibuntu</span></strong> makes it painless to get a whole bunch of <strong>&#8220;non-free&#8221; packages</strong> (proprietary, copyrighted, or other legal issues). This can range from popular software you usually need to download (and often register for first), like <strong>Skype </strong>and<strong> Google Earth</strong>, to even more <strong>multimedia codecs</strong> that you didn&#8217;t get with <strong><a href="http://ubuntugenius.wordpress.com/2009/08/29/play-dvds-all-media-types-with-ubuntu-restricted-extras/">ubuntu-restricted-extras</a></strong>.</p>
<p>Codec packs and multimedia extras<strong> </strong>to install once <strong><span style="color:#800000;">Medibuntu</span></strong> has been added are <strong><span style="color:#3366ff;">libdvdcss2</span></strong> (for <strong>playing encrypted retail DVDs</strong>), <strong><span style="color:#3366ff;">non-free-codecs</span></strong>, and<strong> &#8220;Win32&#8243; codec binaries</strong> (required for the decompression of video formats that have no open-source alternative)<strong><span style="color:#3366ff;"> w32codecs</span></strong> (for <strong>32-bit &#8220;i386&#8243;</strong> systems; for <strong>64-bit</strong> systems, install <strong><span style="color:#3366ff;">w64codecs</span></strong>, and <strong>PowerPC Mac</strong> users install <strong><span style="color:#3366ff;">ppc-codecs</span></strong>).</p>
<p>For those who just want <strong><span style="color:#3366ff;">libdvdcss2</span></strong>, you can download the <strong><a href="http://packages.medibuntu.org/pool/free/libd/libdvdcss/libdvdcss2_1.2.9-2medibuntu4_i386.deb">32-bit</a></strong>, <strong><a href="http://packages.medibuntu.org/pool/free/libd/libdvdcss/libdvdcss2_1.2.9-2medibuntu4_amd64.deb">64-bit</a></strong> and <strong><a href="http://packages.medibuntu.org/pool/free/libd/libdvdcss/libdvdcss2_1.2.9-2medibuntu2_powerpc.deb">PowerPC</a></strong> versions (37Kb .DEB installers).</p>
<p><strong><a href="https://help.ubuntu.com/community/Medibuntu" target="_blank">Go to the Medibuntu documentation page</a></strong> for more info, or just enter the following command in a terminal, and it&#8217;s all done for you! You can then open Synaptic and see all the extra software available to you, and install those invaluable codecs. Note that all of the below is one command, so copy and paste the lot:</p>
<p><strong>sudo wget http://www.medibuntu.org/sources.list.d/$(lsb_release -cs).list \<br />
&#8211;output-document=/etc/apt/sources.list.d/medibuntu.list &#38;&#38;<br />
sudo apt-get -q update &#38;&#38;<br />
sudo apt-get &#8211;yes -q &#8211;allow-unauthenticated install medibuntu-keyring &#38;&#38;<br />
sudo apt-get -q update</strong></p>
<p><span style="color:#008000;">If this doesn&#8217;t work, you could be reading this when it&#8217;s outdated, so go to the site and check the command is still the same. </span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[10 دانلود ضروری برای Windows 7]]></title>
<link>http://tjs87.wordpress.com/2009/11/03/10-%d8%af%d8%a7%d9%86%d9%84%d9%88%d8%af-%d8%b6%d8%b1%d9%88%d8%b1%db%8c/</link>
<pubDate>Tue, 03 Nov 2009 15:41:09 +0000</pubDate>
<dc:creator>سی شارپ</dc:creator>
<guid>http://tjs87.wordpress.com/2009/11/03/10-%d8%af%d8%a7%d9%86%d9%84%d9%88%d8%af-%d8%b6%d8%b1%d9%88%d8%b1%db%8c/</guid>
<description><![CDATA[ترجمه و باز نویسی:بابک فخریلو گرچه Windows 7 سیستم عاملی جدید است،اما این بدان معنا نیست که نمی توان]]></description>
<content:encoded><![CDATA[ترجمه و باز نویسی:بابک فخریلو گرچه Windows 7 سیستم عاملی جدید است،اما این بدان معنا نیست که نمی توان]]></content:encoded>
</item>
<item>
<title><![CDATA[TuneUp Utilities 2010 - Is It Worth The Money?]]></title>
<link>http://billmullins.wordpress.com/2009/10/31/tuneup-utilities-2010-is-it-worth-the-money/</link>
<pubDate>Sat, 31 Oct 2009 16:24:18 +0000</pubDate>
<dc:creator>Bill Mullins</dc:creator>
<guid>http://billmullins.wordpress.com/2009/10/31/tuneup-utilities-2010-is-it-worth-the-money/</guid>
<description><![CDATA[Generally you can tweak the blazes out of your operating system; you just need to know where to go w]]></description>
<content:encoded><![CDATA[Generally you can tweak the blazes out of your operating system; you just need to know where to go w]]></content:encoded>
</item>
<item>
<title><![CDATA[Tweak the Firefox performance with Firefox Ultimate Optimizer]]></title>
<link>http://technewsntips.wordpress.com/2009/10/31/tweak-the-firefox-performance-with-firefox-ultimate-optimizer-2/</link>
<pubDate>Sat, 31 Oct 2009 14:05:24 +0000</pubDate>
<dc:creator>rakeshb03</dc:creator>
<guid>http://technewsntips.wordpress.com/2009/10/31/tweak-the-firefox-performance-with-firefox-ultimate-optimizer-2/</guid>
<description><![CDATA[These days there is no doubt that Firefox is among the best software to browse the Internet. And als]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignright size-full wp-image-19" title="Tweak the Firefox performance with Firefox Ultimate Optimizer" src="http://technewsntips.wordpress.com/files/2009/07/firefoxoptimzer.jpg" alt="Tweak the Firefox performance with Firefox Ultimate Optimizer" width="229" height="306" />These days there is no doubt that Firefox is among the best software to browse the Internet. And also it is utilizing its popularity as recently it has launched its latest<a href="http://advancetechnology.today.com/2009/06/30/mozilla-firefox-35-hitting-today-download-links-provided/"> open source browser version 3.5</a>. Though it has lots of feature and have a very impressive layout, there is only one issue for which i criticize it, the memory it consumes in comparison to Internet Explorer. But while searching on the Internet how it can be tweaked for better performance I came across a software which reduce it memory usage to only 100-200 Kilobytes as i have confirmed it from the task manger while earlier without this tweaked application it uses up to 40 MB of Ram.</p>
<p>So now you must be wondering is there really a software as I am saying the answer is Yes! It&#8217;s there Firefox Ultimate Optimizer, and this does not require any skills simply install and it will automatically sits in the system tray. Thus managing all the Firefox system processes.</p>
<p>So if you want to download this amazing software visit the Below link</p>
<p><a href="http://firefox-ultimate-optimizer.en.softonic.com/">Download and Know more about Firefox Ultimate Optimizer</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Как я сделал Windows Sidebar полезным для себя]]></title>
<link>http://radjik.wordpress.com/2009/10/30/%d0%ba%d0%b0%d0%ba-%d1%8f-%d1%81%d0%b4%d0%b5%d0%bb%d0%b0%d0%bb-windows-sidebar-%d0%bf%d0%be%d0%bb%d0%b5%d0%b7%d0%bd%d1%8b%d0%bc-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b5%d0%b1%d1%8f/</link>
<pubDate>Fri, 30 Oct 2009 15:54:00 +0000</pubDate>
<dc:creator>Раджа</dc:creator>
<guid>http://radjik.wordpress.com/2009/10/30/%d0%ba%d0%b0%d0%ba-%d1%8f-%d1%81%d0%b4%d0%b5%d0%bb%d0%b0%d0%bb-windows-sidebar-%d0%bf%d0%be%d0%bb%d0%b5%d0%b7%d0%bd%d1%8b%d0%bc-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b5%d0%b1%d1%8f/</guid>
<description><![CDATA[Сначала эта панелька в Vista была просто украшением, потому что кроме часов на ней ничего полезного ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Сначала эта панелька в Vista была просто украшением, потому что кроме часов на ней ничего полезного не было. Если на обычном мониторе 3:4 она мешается, то на широкоформатном как раз таки нет.</p>
<p><a name='more'></a>Удалив с нее все кроме часов, я полез в <a href="http://gallery.live.com/results.aspx?bt=1&#38;pl=1&#38;ds=2&#38;la=ru&#38;tier=0&#38;st=1&#38;p=1&#38;c=0">галерею</a>.<br />Для себя я выбрал:
<ul>
<li><span id="ctl00_ContentPlaceHolder1_LiveItemContactInfo1_ltTitle"><a href="http://gallery.live.com/liveItemDetail.aspx?li=2fd1718c-5222-4e27-ab17-f5dde2ed6976">Мониторинг ЦП</a>;</span></li>
<li><span id="ctl00_ContentPlaceHolder1_LiveItemContactInfo1_ltTitle"><a href="http://gallery.live.com/liveItemDetail.aspx?li=e5a02d97-b955-4916-98dd-28c870deed16&#38;bt=1&#38;pl=1">Мониторинг сети</a>;</span><span id="ctl00_ContentPlaceHolder1_LiveItemContactInfo1_ltTitle"> </span>&#160;</li>
<li><a href="http://gallery.live.com/liveItemDetail.aspx?li=7873de84-58f6-4842-a8f9-466461a2040e&#38;bt=1&#38;pl=1"><span id="ctl00_ContentPlaceHolder1_LiveItemContactInfo1_ltTitle">Прогноз погоды от Gismeteo Black skin</span></a> (вместо него можно использовать стандартный) </li>
</ul>
<p>А &#8220;со стороны&#8221; взял гаджет для отображения состояния батареи ноутбука <a href="http://www.gadgetsforvista.net/Gadgets/Tools-and-utilities/iStat-battery.html">iStat batter</a>, занимает места мало, а отображает всё, что надо.<br />Можно было бы добавить гаджет для быстрого поиска в Google, но с постоянно запущенным браузером это не актуально.</p>
<p>Получилось простенько, но информативно.</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://radjik.wordpress.com/files/2009/10/sb.png" style="margin-left:1em;margin-right:1em;"><img border="0" src="http://radjik.wordpress.com/files/2009/10/sb.png?w=72" /></a></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Minor interface tweak: The default Wave avatar for new users (and bots) has been slightly updated with a bit of shading around the edges.

Not a very big deal at all. Just interesting to see what things the team are tweaking.]]></title>
<link>http://thefirstwaves.wordpress.com/2009/10/28/minor-interface-tweak-the-default-wave-avatar-for-new-users-and-bots-has-been-slightly-updated-with-a-bit-of-shading-around-the-edgesnot-a-very-big-deal-at-all-just-interesting-to-see-what-things-the/</link>
<pubDate>Wed, 28 Oct 2009 09:52:57 +0000</pubDate>
<dc:creator>joshnunn</dc:creator>
<guid>http://thefirstwaves.wordpress.com/2009/10/28/minor-interface-tweak-the-default-wave-avatar-for-new-users-and-bots-has-been-slightly-updated-with-a-bit-of-shading-around-the-edgesnot-a-very-big-deal-at-all-just-interesting-to-see-what-things-the/</guid>
<description><![CDATA[Minor interface tweak: The default Wave avatar for new users (and bots) has been slightly updated wi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img src="http://22.media.tumblr.com/tumblr_ks7y4aRXhy1qzeh8ao1_100.png"></p>
<p>Minor interface tweak: The default Wave avatar for new users (and bots) has been slightly updated with a bit of shading around the edges.</p>
<p>Not a very big deal at all. Just interesting to see what things the team are tweaking.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Tweak and Optimize Windows Settings with Free Fresh UI]]></title>
<link>http://billmullins.wordpress.com/2009/10/27/tweak-and-optimize-windows-settings-with-free-fresh-ui/</link>
<pubDate>Tue, 27 Oct 2009 14:57:37 +0000</pubDate>
<dc:creator>Bill Mullins</dc:creator>
<guid>http://billmullins.wordpress.com/2009/10/27/tweak-and-optimize-windows-settings-with-free-fresh-ui/</guid>
<description><![CDATA[Freshdevices’ Fresh UI is a powerful tool that allows you to configure and optimize your version of ]]></description>
<content:encoded><![CDATA[Freshdevices’ Fresh UI is a powerful tool that allows you to configure and optimize your version of ]]></content:encoded>
</item>
<item>
<title><![CDATA[Скрипт для оптимизации sqlite-баз в профиле Firefox]]></title>
<link>http://radjik.wordpress.com/2009/10/26/%d1%81%d0%ba%d1%80%d0%b8%d0%bf%d1%82-%d0%b4%d0%bb%d1%8f-%d0%be%d0%bf%d1%82%d0%b8%d0%bc%d0%b8%d0%b7%d0%b0%d1%86%d0%b8%d0%b8-sqlite-%d0%b1%d0%b0%d0%b7-%d0%b2-%d0%bf%d1%80%d0%be%d1%84%d0%b8%d0%bb%d0%b5-f/</link>
<pubDate>Mon, 26 Oct 2009 12:48:00 +0000</pubDate>
<dc:creator>Раджа</dc:creator>
<guid>http://radjik.wordpress.com/2009/10/26/%d1%81%d0%ba%d1%80%d0%b8%d0%bf%d1%82-%d0%b4%d0%bb%d1%8f-%d0%be%d0%bf%d1%82%d0%b8%d0%bc%d0%b8%d0%b7%d0%b0%d1%86%d0%b8%d0%b8-sqlite-%d0%b1%d0%b0%d0%b7-%d0%b2-%d0%bf%d1%80%d0%be%d1%84%d0%b8%d0%bb%d0%b5-f/</guid>
<description><![CDATA[С переходом на третью версию браузер Mozilla Firefox стал сохранять всякую важную и не очень информа]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>С переходом на третью версию браузер <a href="http://www.mozilla-europe.org/ru/firefox/">Mozilla Firefox</a> стал сохранять всякую важную и не очень информацию из профиля не в XML, а в базах <a href="http://www.sqlite.org/">SQLite</a>. При долгой работе в файлах баз данных скапливается приличное количество мусора. В интернете давали совет по ручной оптимизации баз.<br /><a name='more'></a>Чтобы не заниматься этим неблагодарным делом самому, я накалякал простенький скрипт:<br />
<blockquote>
<div class="highlight">
<pre><span class="c">#! /bin/bash</span><span class="nv">tot</span><span class="o">=</span><span class="sb">`</span>ls *.sqlite&#124;wc -l<span class="sb">`</span><span class="nv">c</span><span class="o">=</span>1<span class="k">for </span>i in *.sqlite   <span class="k">do</span>      <span class="nb">echo</span> <span class="o">[</span><span class="nv">$c</span> /<span class="nv">$tot</span><span class="o">]</span> <span class="nv">$i</span>      sqlite3 <span class="nv">$i</span> VACUUM      sqlite3 <span class="nv">$i</span> REINDEX      <span class="nb">let</span> <span class="s2">&#34;c=c+1&#34;</span>   <span class="k">done</span>;</pre>
</div>
</blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Life's]]></title>
<link>http://t8l9r.wordpress.com/2009/10/24/life/</link>
<pubDate>Sat, 24 Oct 2009 16:52:06 +0000</pubDate>
<dc:creator>Li Ren</dc:creator>
<guid>http://t8l9r.wordpress.com/2009/10/24/life/</guid>
<description><![CDATA[Meet Bobby. 1330: Met up with Ming Tai and Jack at Causeway Point. Was going to Ming Tai&#8217;s hou]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-medium wp-image-41" title="bobbydoorway" src="http://t8l9r.wordpress.com/files/2009/10/bobbydoorwall.jpg?w=300" alt="bobbydoorway" width="300" height="275" />Meet Bobby.</p>
<p>1330:<br />
Met up with Ming Tai and Jack at Causeway Point. Was going to Ming Tai&#8217;s house to grab some files and also pass him some files. Planned to have a lunch together.</p>
<p>While I was on the train, Ming Tai called.</p>
<p>Ming Tai: Ay, do you mind Seoul Garden?<br />
Me: HUH?  Why Seoul Garden?<br />
Ming Tai: Jack&#8217;s hungry and wants to eat buffet.<br />
Me: Okay lor. I don&#8217;t mind.</p>
<p>Actually, I wasn&#8217;t planning for a heavy lunch. Zzz, Jack and I just exercised the day before and we are putting our effort to waste.</p>
<p>IT WAS CRAZY. At Seoul Garden. We were spamming meat. Heaps and heaps of it. Apparently, Jack is quite the cook.</p>
<p>Jack: Beef, no need to cook too long.<br />
*Picks up the beef*<br />
Jack: WHOO. SHIOK. Medium rare.</p>
<p>Maybe for chicken and beef, he&#8217;s a great cook. But for fish, he gave me a semi-cooked one. For the whole meal, I didn&#8217;t dare to touch any of the fish.</p>
<p>I wore a white pants so I refused to go get the meat. HAHA. In addition, I took Jack&#8217;s bag and shielded my pants. Refusing to bulge to avoid staining my pants.</p>
<p>It reminds me how long I&#8217;ve not been to Seoul Garden. It has employed a suction system to reduce the smoke from grilling at the side. It&#8217;s pretty good. Although we still have stench on our clothes, it was much better than it used to be.</p>
<p>After much struggle, (I was called weak by them) we finally got to the dessert. I went for the normal flavours. Ming Tai made himself a Seoul Garden Earthquake. Jack made a wierd raisin-sprinkled ice-cream and complained that the ice-creams didn&#8217;t taste their flavours. LOL.</p>
<p>1500:</p>
<p>Ming Tai&#8217;s house. Did a lot of files exchange. The highlight was probably Resident Evil 5. Amazingly, the game worked on his computer but his mouse sucked with an impaired right-click lol.</p>
<p>Yes, by the way, to RE5 gamers, there&#8217;s a way to tweak your game to be processed faster. Open up window&#8217;s search and type CAPCOM. CAPCOM&#62;RESIDENT EVIL 5&#62;config.ini, open it in WordPad and change the JobThread=1 to JobThread=2. For quad cores, JobThread=4. Instead of using only the original 1 segment of your processor, it is forced to fully ultilise all. Cheers.</p>
<p>1940:</p>
<p>Went to Alvin&#8217;s house.</p>
<p>Da jiu planted some really interesting plants along the corridor. He had cotton plant and yes, we harvested real cotton from the plant. There&#8217;s also custard apple plant, cute little (really little) apples hanging on the plant.</p>
<p>Played Fifa &#8216;09 on his PS3 slim, on a 42&#8243; Sony Bravia. It rocks. We had a lot of funny moments in the game.</p>
<p>Winning Eleven used to be better than Fifa. But with the recent advance in Fifa&#8217;s gameplay, it has surpassed than of the Winning Eleven. The tricks function was amazing and added a lot of soccer elements to the experience.</p>
<p>Weijie came at a later time and refused to play Fifa &#8216; 09. We switched to Street Fighter 4. HAHA, I got owned. Alvin&#8217;s got this nice arcade button pad, it totally feels like the arcade&#8217;s. Played till 2245 before I went home.</p>
<p>Gymming tommorrow with Jack at EnergyOne.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
