<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TXLANS.com &#187; Products</title>
	<atom:link href="http://www.txlans.com/category/reviews/productreviews/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.txlans.com</link>
	<description>Quit Playing with Yourself! - San Antonio, TX</description>
	<lastBuildDate>Fri, 14 Jan 2011 00:23:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Enable Wireless Tethering on Rooted HTC Aria for AT&amp;T Using Ubuntu</title>
		<link>http://www.txlans.com/2010/10/enable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu/</link>
		<comments>http://www.txlans.com/2010/10/enable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu/#comments</comments>
		<pubDate>Sun, 31 Oct 2010 03:48:34 +0000</pubDate>
		<dc:creator>amp</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Pro Tips]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Resources]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[do it yourself]]></category>
		<category><![CDATA[htc aria]]></category>
		<category><![CDATA[tethering]]></category>

		<guid isPermaLink="false">http://www.txlans.com/?p=583</guid>
		<description><![CDATA[Don&#8217;t want to buy one of those little wireless cards that Carriers are selling for $100?  Me neither so I got wireless tethering on my HTC Aria that I use with AT&#38;T. Now what needs to be made clear is that this was not done on Windows but instead using Ubuntu.  I actually found this [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.txlans.com/wp-content/uploads/2010/10/tether.jpg" rel="lightbox[583]"><img class="alignright size-thumbnail wp-image-588" title="tether" src="http://www.txlans.com/wp-content/uploads/2010/10/tether-150x150.jpg" alt="" width="150" height="150" /></a>Don&#8217;t want to buy one of those little wireless cards that Carriers are selling for $100?  Me neither so I got wireless tethering on my HTC Aria that I use with AT&amp;T.</p>
<p>Now what needs to be made clear is that this was not done on Windows but instead using Ubuntu.  I actually found this easier to do on Linux and had trouble with Windows (big surprise?). Unfortunately the article was written while I was on a Windows Machine so some files may be RAR&#8217;d or ZIP&#8217;d as opposed to being tar&#8217;d'd&#8217;d'd.</p>
<p>Files you will need that should be downloaded right now and placed in your home folder.  For ease of use, I suggest making a directory and putting them all there for example: <strong>/home/&lt;<em>user</em>&gt;/tetherfiles</strong></p>
<ul>
<li><a href="http://www.txlans.com/wp-content/uploads/2010/10/fw_bcm4329_bin.zip">fw_bcm4329_bin.zip</a></li>
<li><a href="http://www.txlans.com/wp-content/uploads/2010/10/wireless_tether_2_0_5-pre3_apk.zip">wireless_tether_2_0_5-pre3_apk.zip</a></li>
<li><a href="http://www.txlans.com/wp-content/uploads/2010/10/android-sdk_r07-linux_x86.tar">android-sdk_r07-linux_x86.tar</a></li>
</ul>
<p>Download all of these and store in an easy-to-remember location.</p>
<p>The first file we are going to use is the <strong>Android-SDK </strong>(software developers kit).  You will need this to install applications manually that are not from the marketplace (since AT&amp;T are the only ones that got rid of it..).</p>
<p><strong>Step 1.  </strong>Extract the contents of the android sdk kit</p>
<blockquote>
<pre style="text-align: left;">$ tar -zxvf android-sdk_r07-linux_x86.tar</pre>
</blockquote>
<p style="text-align: left;"><strong>Step 2.</strong>  Copy the <strong>adb</strong> application from the tools folder to the <strong>/usr/bin</strong> folder (requires root).</p>
<blockquote>
<pre style="text-align: left;"># cp android-sdk_r07-linux_x86/tools/adb /usr/bin/</pre>
</blockquote>
<p style="text-align: left;"><strong>Step 3.  </strong>Setup the rules file under <strong>/etc/udev/rules.d/</strong> and name it <strong>&#8220;51-android.rules&#8221;</strong>.  The file must contain the following (1 line) :<strong>  *** Note : You must be ROOT!</strong></p>
<blockquote>
<pre style="text-align: left;">SUBSYSTEM=="usb", SYSFS{idVendor}=="00b4", MODE="0666"</pre>
</blockquote>
<p style="text-align: left;">Alternatively, you can just copy paste this line in and it should take care of it.</p>
<blockquote>
<pre style="text-align: left;">echo "SUBSYSTEM==\"usb\", SYSFS{idVendor}==\"00b4\", MODE=\"0666\"" &gt; /etc/udev/rules.d/51-android.rules</pre>
</blockquote>
<p style="text-align: left;"><strong>Step 4.</strong>  Restart udev.</p>
<blockquote>
<pre style="text-align: left;">$ sudo restart udev</pre>
</blockquote>
<p style="text-align: left;"><strong>Step 5.</strong>  Make sure USB Debugging is enabled by going to <strong>Settings &gt; Applications &gt; Developer &gt; USB Debugging</strong> (make sure there is a checkmark next to it) and plug it into your ubuntu laptop or desktop.  Now use adb to get a list of devices.  The result should look similar to this..</p>
<blockquote>
<pre style="text-align: left;">$ adb devices
List of connected devices
HT07YR002154</pre>
</blockquote>
<p style="text-align: left;"><strong>Step 5.</strong>  Unzip <strong>wireless_tether_2_0_5-pre3.apk</strong> from it&#8217;s respective ZIP archive and install it to the HTC Aria using adb.  Make sure you have your device ID written down.  My devices ID in the previous step is <strong>HT07YR002154</strong>.  I expect yours to be different.  Correct syntax should be <em>&#8220;adb install &lt;apk file&gt; &lt;device ID&gt;&#8221;</em>.</p>
<blockquote>
<pre style="text-align: left;">$ adb install wireless_tether_2_0_5-pre3.apk &lt;device ID&gt;</pre>
</blockquote>
<p style="text-align: left;"><strong>Step 6.</strong>  Now that we have the actual Wireless Tether application installed, we need to copy over the binary file it will use.  Unzip fw_bcm4329_bin.zip and you should have the <strong>fw_bcm4329.bin</strong> file.  This file will need to be in the &#8220;<strong>android.tether</strong>&#8221; folder located in root of the SD Card.  If you have your phone plugged in feel free to switch it from Charge only to Disk Drive, then you can simply copy it over that way.</p>
<blockquote>
<pre style="text-align: left;">$ mkdir /media/&lt;device&gt;/android.tether
$ cp fw_bcm4329.bin /media/&lt;device&gt;/android.tether/</pre>
</blockquote>
<p>That&#8217;s it.  Feel free to now launch the Wireless Tethering applicaton.  You can add this to your Aria&#8217;s *slides* as a program (you know, the thing under &#8220;widgets&#8221; in the add menu).  Upon opening it will find the configuration BIN and should work like magic.</p>
<p>As always, comments are appreciated as well as tweets and the retweets.  Also, if there are any questions I will try to answer them as quick as I can.</p>
<p>Good luck!</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d583').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Want to share this post with others?</em></strong></a>
<br />
<div class="d583" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Fenable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu%2F&amp;title=Enable+Wireless+Tethering+on+Rooted+HTC+Aria+for+AT%26%23038%3BT+Using+Ubuntu" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Fenable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu%2F&amp;title=Enable+Wireless+Tethering+on+Rooted+HTC+Aria+for+AT%26%23038%3BT+Using+Ubuntu" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Fenable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Fenable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu%2F&amp;title=Enable+Wireless+Tethering+on+Rooted+HTC+Aria+for+AT%26%23038%3BT+Using+Ubuntu" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Fenable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu%2F&amp;title=Enable+Wireless+Tethering+on+Rooted+HTC+Aria+for+AT%26%23038%3BT+Using+Ubuntu" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Enable+Wireless+Tethering+on+Rooted+HTC+Aria+for+AT%26%23038%3BT+Using+Ubuntu+@+http%3A%2F%2Fwww.txlans.com%2F2010%2F10%2Fenable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d583').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d583').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.txlans.com/2010/10/enable-wireless-tethering-on-rooted-htc-aria-for-att-using-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Use SuseStudio to Create Customized OpenSUSE Linux Distributions</title>
		<link>http://www.txlans.com/2010/07/use-susestudio-to-create-customized-opensuse-linux-distributions/</link>
		<comments>http://www.txlans.com/2010/07/use-susestudio-to-create-customized-opensuse-linux-distributions/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 18:12:49 +0000</pubDate>
		<dc:creator>amp</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[PC Maintenance]]></category>
		<category><![CDATA[Pro Tips]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Reviews & Previews]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Resources]]></category>
		<category><![CDATA[do it yourself]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.txlans.com/?p=547</guid>
		<description><![CDATA[In our previous post about customized Linux Distros we got you to a web app for creating customized linux distros based on ubuntu. Maybe you&#8217;re not an ubuntu fan but an OpenSUSE fan..Well we still have another one for you. Make your way to SuseStudio. It&#8217;s my personal favorite. You get a nice intuitive ajax/jquery [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.txlans.com/wp-content/uploads/2010/07/suse2.png" rel="lightbox[547]"><img class="size-full wp-image-555 alignright" title="OpenSUSE" src="http://www.txlans.com/wp-content/uploads/2010/07/suse2.png" alt="" width="163" height="148" /></a></p>
<p>In our <a href="http://www.txlans.com/2010/07/use-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd/#axzz0uEpWtZ4x" target="_blank">previous post about customized Linux Distros</a> we got you to a web app for <a href="http://www.txlans.com/2010/07/use-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd/#axzz0uEpWtZ4x" target="_blank">creating customized linux distros</a> based on ubuntu.</p>
<p>Maybe you&#8217;re not an ubuntu fan but an OpenSUSE fan..Well we still have another one for you.</p>
<p><a href="http://susestudio.com/" target="_blank">Make your way to SuseStudio.</a> It&#8217;s my personal favorite.</p>
<p>You get a nice intuitive ajax/jquery powered GUI and interface specifically designed to help you customize your very own openSuse distro.</p>
<p>Although at this moment they are constantly reaching their capacity and the only way you can gain access is by requesting an invitation from them.  As far as I remember it did not take very long (maybe a week or two at most?) to get my invitation.  From then on you can sign in using your google account and others.</p>
<div id="attachment_549" class="wp-caption alignright" style="width: 110px"><a href="http://www.txlans.com/wp-content/uploads/2010/07/pickOS-1.png" rel="lightbox[547]"><img class="size-thumbnail wp-image-549 " title="Picking Your Purpose" src="http://www.txlans.com/wp-content/uploads/2010/07/pickOS-1-150x150.png" alt="" width="100" height="100" /></a><p class="wp-caption-text">Picking Your Purpose</p></div>
<p>The first part is where you decide what the purpose of your build will be.  Will it be a server?  Will it be a desktop GUI environment?  What are you going to use it for?</p>
<p>These are all the thoughts I had going through my head when I first started customizing my version of OpenSUSE.</p>
<p>You get to pick between Server, GNOME Desktop, KDE Desktop, Just Enough OS or Minimal (for the most part).  Again, this is just a baseline of what your disc will contain.</p>
<p>The rest of the software configuration is up to you later on in the setup of your custom OpenSuse LiveCD or install disc.</p>
<p>You will get to start out on the general configuration tab where you get to choose network settings and have it set as static, DHCP client, and whether or not you want the firewall on by default. as well as default language, keyboard, and time zone.  You will also have a chance to edit the default users.</p>
<p>Root will of course be there by default with a default password of &#8220;linux&#8221; which should be changed.  You can also add and delete extra users, set their passwords and home directories as well as their groups.</p>
<div id="attachment_550" class="wp-caption alignleft" style="width: 110px"><a href="http://www.txlans.com/wp-content/uploads/2010/07/customizelook-2.png" rel="lightbox[547]"><img class="size-thumbnail wp-image-550  " title="Customize Look" src="http://www.txlans.com/wp-content/uploads/2010/07/customizelook-2-150x150.png" alt="" width="100" height="100" /></a><p class="wp-caption-text">Customize Look</p></div>
<p>One of the phases that may come next (or later if you don&#8217;t care for it much) is to customize the look and feel.</p>
<p>This basically amounts to setting a custom logo and setting a custom wallpaper for it to use by default.</p>
<p>Unfortunately in terms of customization of looks this is pretty much as far as it goes since there is no *desktop theme* customization feature (for now anyways).</p>
<p>Either way the customization is one of the more exciting aspects because you know someone, even if it&#8217;s just you, will see it each time it&#8217;s booted up.</p>
<div id="attachment_551" class="wp-caption alignright" style="width: 110px"><a href="http://www.txlans.com/wp-content/uploads/2010/07/appliance.png" rel="lightbox[547]"><img class="size-thumbnail wp-image-551 " title="Appliance Settings" src="http://www.txlans.com/wp-content/uploads/2010/07/appliance-150x150.png" alt="" width="100" height="100" /></a><p class="wp-caption-text">Appliance Settings</p></div>
<p>At the appliance tab of the configuration menu you can customize settings as if you were going to run it as a virtual machine.</p>
<p>Select memory size and amounts, add Live installers, VMWare support as well as Xen support.</p>
<div id="attachment_552" class="wp-caption alignleft" style="width: 110px"><a href="http://www.txlans.com/wp-content/uploads/2010/07/startup.png" rel="lightbox[547]"><img class="size-thumbnail wp-image-552 " title="Startup" src="http://www.txlans.com/wp-content/uploads/2010/07/startup-150x150.png" alt="" width="100" height="100" /></a><p class="wp-caption-text">Startup</p></div>
<p>Startup configuration is&#8230;well, startup configuration.  Although it sounds promising it only allows the configuration of the user modes and whether or not you want it to show a customized EULA.</p>
<p>The EULA part I like as well as choosing which run-level it starts in but I still think it needs some more customization to startup.</p>
<p>The run levels you have to choose from&#8230; Single User (1), Multi user / No Network (2), Normal Console (3), and Graphical (5).</p>
<p>The software customization tab is obviously the most useful piece of this entire &#8220;distro-generator&#8221;.  Add software packages, add programs, add repositories, etc.  It&#8217;s all there and it&#8217;s all for the adding (or removing).</p>
<div id="attachment_553" class="wp-caption alignright" style="width: 110px"><a href="http://www.txlans.com/wp-content/uploads/2010/07/software.png" rel="lightbox[547]"><img class="size-thumbnail wp-image-553 " title="Software" src="http://www.txlans.com/wp-content/uploads/2010/07/software-150x150.png" alt="" width="100" height="100" /></a><p class="wp-caption-text">Software</p></div>
<p>This of course is the main feature of any distribution authoring/editing/remixing web-app or third party software.</p>
<p>..and alas, the easiest part is building the distro because of course all you have to do now is wait.</p>
<p>You can have it built a few different ways.  ISO format for easy burning, VMDK for virtual machine disk images as a quick loading type (also a good way to test it), a Xen guest or a USB thumb flash drive.</p>
<p>Since there&#8217;s a few different ways to have it built it really cuts back on the whole *oh great I have to convert it 4 times* factor.</p>
<div id="attachment_554" class="wp-caption alignleft" style="width: 110px"><a href="http://www.txlans.com/wp-content/uploads/2010/07/build-1.png" rel="lightbox[547]"><img class="size-thumbnail wp-image-554 " title="Building the Image" src="http://www.txlans.com/wp-content/uploads/2010/07/build-1-150x150.png" alt="" width="100" height="100" /></a><p class="wp-caption-text">Building the Image</p></div>
<p>Also, after it is done being built, you can have susestudio open it in a virtual machine-esque web app for up to an hour.  You can then SSH to it and use the desktop GUI (if required) to check it out and make sure everything is A-OK before you download it.</p>
<p>Plenty of tools out there but OpenSUSE Studio is by far my favorite.</p>
<p><a href="http://susestudio.com/login" target="_blank">Go sign up for OpenSUSE Studio invites.</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d547').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Want to share this post with others?</em></strong></a>
<br />
<div class="d547" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-susestudio-to-create-customized-opensuse-linux-distributions%2F&amp;title=Use+SuseStudio+to+Create+Customized+OpenSUSE+Linux+Distributions" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-susestudio-to-create-customized-opensuse-linux-distributions%2F&amp;title=Use+SuseStudio+to+Create+Customized+OpenSUSE+Linux+Distributions" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-susestudio-to-create-customized-opensuse-linux-distributions%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-susestudio-to-create-customized-opensuse-linux-distributions%2F&amp;title=Use+SuseStudio+to+Create+Customized+OpenSUSE+Linux+Distributions" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-susestudio-to-create-customized-opensuse-linux-distributions%2F&amp;title=Use+SuseStudio+to+Create+Customized+OpenSUSE+Linux+Distributions" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Use+SuseStudio+to+Create+Customized+OpenSUSE+Linux+Distributions+@+http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-susestudio-to-create-customized-opensuse-linux-distributions%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d547').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d547').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.txlans.com/2010/07/use-susestudio-to-create-customized-opensuse-linux-distributions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Use Reconstructor to Create Your Own Customized Ubuntu Live Linux CD/DVD</title>
		<link>http://www.txlans.com/2010/07/use-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd/</link>
		<comments>http://www.txlans.com/2010/07/use-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 15:45:26 +0000</pubDate>
		<dc:creator>amp</dc:creator>
				<category><![CDATA[File System]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PC Maintenance]]></category>
		<category><![CDATA[Pro Tips]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Reviews & Previews]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Resources]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.txlans.com/?p=544</guid>
		<description><![CDATA[Once again another free (up to a point) web application for use for customizing a Linux distribution for whatever you want. Reconstructor isn&#8217;t as pretty as some of the other Linux distro customization services I&#8217;ve seen but it gets the job done.  You still have the ability to customize the way it looks, operations, modules, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">
<div id="attachment_546" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.txlans.com/wp-content/uploads/2010/07/500x_sshot110.jpg" rel="lightbox[544]"><img class="size-full wp-image-546" title="Reconstructor" src="http://www.txlans.com/wp-content/uploads/2010/07/500x_sshot110.jpg" alt="" width="500" height="274" /></a><p class="wp-caption-text">Reconstructor</p></div>
<p style="text-align: left;">Once again another free (up to a point) web application for use for customizing a Linux distribution for whatever you want.</p>
<p>Reconstructor isn&#8217;t as pretty as some of the other Linux distro customization services I&#8217;ve seen but it gets the job done.  You still have the ability to customize the way it looks, operations, modules, addons, etc.</p>
<p>For the amount you can do it is certainly useful.  Not to mention it has been around since before 2007.</p>
<blockquote><p>Reconstructor is a GNU/Linux distribution customization and creation toolkit. It allows for the customization of the <a href="http://www.ubuntu.com/">Ubuntu</a> and<a href="http://www.debian.org/">Debian</a> GNU/Linux distributions. Customizations include boot logo image and text color, wallpaper, themes, icons, applications, and more.</p>
<p>To start using Reconstructor <em>(it&#8217;s free)</em> go to <a href="https://build.reconstructor.org/">https://build.reconstructor.org</a> and signup.</p></blockquote>
<p>The reason I said it is free up to a point is that they <strong>do charge</strong> for the service but they give each account a $5 limit per month (for free).  Anything over that will have you paying up front for it.</p>
<p>Here is an overlook of their &#8220;Fees&#8221; page&#8230;</p>
<blockquote>
<h1 id="Fees">Fees</h1>
<p>The following are the fees for using the Reconstructor services. Please note: each account balance will get up to a <strong>$5</strong> credit each month <em>(ending balance after credit will be no more than $5)</em>. Each transaction will deduct from your account credit. To add more funds, click the &#8220;Add Credit&#8221; button in your account details window (accessed by clicking your username in the upper right after you login).</p>
<ul>
<li>Upload and store a project file: <strong>$0.02</strong> per MB per month</li>
<li>Build a project: <strong>$0.30</strong></li>
<li>Download a built project: <strong>$0.45</strong> per GB</li>
<li>Priority build service: <strong>$5.00</strong> (enabled for one month) <em>Note: This charge is prorated based upon the remaining days in the month.</em></li>
</ul>
<p>Project Hosting</p>
<ul>
<li>File storage: <strong>$0.45</strong> per GB per month</li>
<li>Download: <strong>$0.35</strong></li>
</ul>
</blockquote>
<p>So yes for a one or two time use I would say the service isn&#8217;t that bad.  There&#8217;s still a lot of customization you can do and a lot you can get out of it.  However, the entire fee thing isn&#8217;t really the best but you have to understand the kind of loads you can put on servers when doing these kinds of operations.</p>
<p><a href="https://www.reconstructor.org/projects/reconstructor" target="_blank">Reconstructor</a></p>
<p><a href="https://www.reconstructor.org/projects/reconstructor" target="_blank"> </a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d544').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Want to share this post with others?</em></strong></a>
<br />
<div class="d544" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd%2F&amp;title=Use+Reconstructor+to+Create+Your+Own+Customized+Ubuntu+Live+Linux+CD%2FDVD" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd%2F&amp;title=Use+Reconstructor+to+Create+Your+Own+Customized+Ubuntu+Live+Linux+CD%2FDVD" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd%2F&amp;title=Use+Reconstructor+to+Create+Your+Own+Customized+Ubuntu+Live+Linux+CD%2FDVD" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd%2F&amp;title=Use+Reconstructor+to+Create+Your+Own+Customized+Ubuntu+Live+Linux+CD%2FDVD" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Use+Reconstructor+to+Create+Your+Own+Customized+Ubuntu+Live+Linux+CD%2FDVD+@+http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Fuse-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d544').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d544').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.txlans.com/2010/07/use-reconstructor-to-create-your-own-customized-ubuntu-live-linux-cddvd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>UNetbootin &#8211; Create bootable flash drives for almost anything.</title>
		<link>http://www.txlans.com/2010/07/unetbootin-create-bootable-flash-drives-for-almost-anything/</link>
		<comments>http://www.txlans.com/2010/07/unetbootin-create-bootable-flash-drives-for-almost-anything/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 16:52:42 +0000</pubDate>
		<dc:creator>amp</dc:creator>
				<category><![CDATA[File System]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[PC Maintenance]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Reviews & Previews]]></category>
		<category><![CDATA[Web Resources]]></category>
		<category><![CDATA[file system]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Pro Tips]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.txlans.com/?p=511</guid>
		<description><![CDATA[UNetbootin is free software aimed at anyone looking to create USB-Bootable installs for Linux distributions. &#8220;UNetbootin allows you to create bootable Live USB drives for Ubuntu, Fedora, and other Linux distributions without burning a CD. It runs on both Windows and Linux. You can either let UNetbootin download one of the many distributions supported out-of-the-box for [...]]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p>UNetbootin is free software aimed at anyone looking to create USB-Bootable installs for Linux distributions.</p>
<blockquote><p>&#8220;UNetbootin allows you to create bootable Live USB drives for Ubuntu, Fedora, and other Linux distributions without burning a CD. It runs on both Windows and Linux. You can either let UNetbootin download one of the many <a href="http://unetbootin.sourceforge.net/#features">distributions supported out-of-the-box</a> for you, or <a href="http://unetbootin.sourceforge.net/#other">supply your own Linux .iso file</a> if you&#8217;ve already downloaded one or your preferred distribution isn&#8217;t on the list.&#8221;</p>
<p><a href="http://unetbootin.sourceforge.net/">http://unetbootin.sourceforge.net/</a></p></blockquote>
<p>The wonderful thing about UNetbootin is the fact that this does not <strong>just work for linux distributions</strong> that I have found but it also works for any other boot-cd you might find.  As long as you have an ISO of a disk that is supposed to boot on startup, it can make it so.</p>
<p>Therefore, you are not limited to just ISO&#8217;s of Fedora, Ubuntu, etc.  I have created USB bootable flash drives with MultiBoot, Hirens, and others as well as Windows XP, Windows 7, etc.  Why you need to do this?  Want to install Windows XP on your netbook?  Need to remove a windows password?</p>
<p><a title="UNetBootin" href="http://unetbootin.sourceforge.net/" target="_blank">Download it Here.</a></p>
<p>If you have already used it before, leave a comment about what you have done with it.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d511').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Want to share this post with others?</em></strong></a>
<br />
<div class="d511" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Funetbootin-create-bootable-flash-drives-for-almost-anything%2F&amp;title=UNetbootin+%26%238211%3B+Create+bootable+flash+drives+for+almost+anything." rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Funetbootin-create-bootable-flash-drives-for-almost-anything%2F&amp;title=UNetbootin+%26%238211%3B+Create+bootable+flash+drives+for+almost+anything." rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Funetbootin-create-bootable-flash-drives-for-almost-anything%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Funetbootin-create-bootable-flash-drives-for-almost-anything%2F&amp;title=UNetbootin+%26%238211%3B+Create+bootable+flash+drives+for+almost+anything." rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Funetbootin-create-bootable-flash-drives-for-almost-anything%2F&amp;title=UNetbootin+%26%238211%3B+Create+bootable+flash+drives+for+almost+anything." rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+UNetbootin+%26%238211%3B+Create+bootable+flash+drives+for+almost+anything.+@+http%3A%2F%2Fwww.txlans.com%2F2010%2F07%2Funetbootin-create-bootable-flash-drives-for-almost-anything%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d511').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d511').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.txlans.com/2010/07/unetbootin-create-bootable-flash-drives-for-almost-anything/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Screesavers from Flash</title>
		<link>http://www.txlans.com/2009/09/create-screesavers-from-flash/</link>
		<comments>http://www.txlans.com/2009/09/create-screesavers-from-flash/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 07:27:31 +0000</pubDate>
		<dc:creator>amp</dc:creator>
				<category><![CDATA[Pro Tips]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Reviews & Previews]]></category>
		<category><![CDATA[Web Resources]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[do it yourself]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.txlans.com/?p=274</guid>
		<description><![CDATA[&#8230;using InstantStorm. I&#8217;ve actually known about this program for quite a while and I enjoy using it.  Usually when I do it&#8217;s from creating some kind of looping motion in Cinema 4d, exporting the 90-frame render to flash, and then creating the screensaver from it. InstantStorm is software that you can use to transform a [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230;using <a href="http://www.instantstorm.com/" target="_blank">InstantStorm</a>.</p>
<p>I&#8217;ve actually known about this program for quite a while and I enjoy using it.  Usually when I do it&#8217;s from creating some kind of looping motion in Cinema 4d, exporting the 90-frame render to flash, and then creating the screensaver from it.</p>
<p><a href="http://www.instantstorm.com/" target="_blank">InstantStorm</a> is software that you can use to transform a *.swf file into a screensaver with an installer and it&#8217;s extremely simple to use.  Just tell it what files it needs and viola.</p>
<p><a href="http://www.txlans.com/wp-content/uploads/2009/09/Welcome-To-InstantStorm.jpg" rel="lightbox[274]"><img class="size-thumbnail wp-image-275 alignright" title="Welcome-To-InstantStorm" src="http://www.txlans.com/wp-content/uploads/2009/09/Welcome-To-InstantStorm-150x150.jpg" alt="Welcome-To-InstantStorm" width="100" height="100" /></a></p>
<p>Some features include&#8230;</p>
<ul>
<li>Setting options for screensaver settings including Exit events and Changing Resolution.</li>
<li>Override all &#8220;Stop&#8221; Actions</li>
<li>Password Protected Installer</li>
<li>Settings Dialog Designer</li>
<li>Custom Icon</li>
<li><strong>Screensaver Preview</strong></li>
</ul>
<p><a href="http://www.txlans.com/wp-content/uploads/2009/09/settings.jpg" rel="lightbox[274]"><img class="alignleft size-thumbnail wp-image-279" title="SS Settings" src="http://www.txlans.com/wp-content/uploads/2009/09/settings-150x150.jpg" alt="SS Settings" width="100" height="100" /></a>All-in-all, this is in my opinion one of the best applications out for creating your own screensaver.  One of the best things : It&#8217;s free; although we always encourage donating.</p>
<p>The only downside : Knowing how to use flash; that&#8217;s another story.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d274').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Want to share this post with others?</em></strong></a>
<br />
<div class="d274" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.txlans.com%2F2009%2F09%2Fcreate-screesavers-from-flash%2F&amp;title=Create+Screesavers+from+Flash" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.txlans.com%2F2009%2F09%2Fcreate-screesavers-from-flash%2F&amp;title=Create+Screesavers+from+Flash" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.txlans.com%2F2009%2F09%2Fcreate-screesavers-from-flash%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2009%2F09%2Fcreate-screesavers-from-flash%2F&amp;title=Create+Screesavers+from+Flash" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.txlans.com%2F2009%2F09%2Fcreate-screesavers-from-flash%2F&amp;title=Create+Screesavers+from+Flash" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Create+Screesavers+from+Flash+@+http%3A%2F%2Fwww.txlans.com%2F2009%2F09%2Fcreate-screesavers-from-flash%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.txlans.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d274').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d274').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.txlans.com/2009/09/create-screesavers-from-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

