<?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>Mine the Harvest</title>
	<atom:link href="http://www.timelordz.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.timelordz.com/blog</link>
	<description>Linux, Life and Open Source</description>
	<lastBuildDate>Sun, 15 Jan 2012 20:12:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Harvest Time Tracking</title>
		<link>http://www.timelordz.com/blog/2012/01/harvest-time-tracking/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=harvest-time-tracking</link>
		<comments>http://www.timelordz.com/blog/2012/01/harvest-time-tracking/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 16:14:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://www.timelordz.com/blog/?p=736</guid>
		<description><![CDATA[Click above to get started with your 30 day trial account, which you can convert to a free forever account (limited to two projects.) I&#8217;ve been looking for a good method for tracking time on projects and tasks. My previous solution was GnoTime, which worked relatively well, but had a few points I was unsatisfied [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Harvest Time Tracking and Invoicing" href="http://www.getharvest.com?r=cc7832"><img src="http://affiliates.s3.getharvest.com/250x100_harvest-track-wisely.gif" alt="Harvest - Own Your Workday Track it Wisely" width="250" height="100" border="0" /></a></p>
<p><span style="font-size: x-small;">Click above to get started with your 30 day trial account, which you can convert to a free forever account (limited to two projects.)</span></p>
<p>I&#8217;ve been looking for a good method for tracking time on projects and tasks. My previous solution was GnoTime, which worked relatively well, but had a few points I was unsatisfied with. Deciding to try something new Google lead to this <a title="freelance post" href="http://freelanceswitch.com/productivity/6-cool-tools-to-track-your-time/" target="_blank">post</a> from which I discovered  <a title="Harvest" href="http://www.getharvest.com/" target="_blank">Harvest</a>, which is a hosted time management solution. Previously, I&#8217;ve only used desktop applications such as GnoTime, Ktimetracker, etc. though I liked the idea of a web tool, as easily accessing it from both work and home was appealing, as well as mobile support for Android.  Not having to sync files via Dropbox between systems was certainly appealing, and Harvest offers some very nice features including reporting and even invoicing capabilities.</p>
<p>Setting up a Harvest account takes about two minutes, and I had an initial project and tasks defined right away. The web interface is easy to navigate, and provides start / stop timers for each task, which is a feature I wanted. I should note this is a paid hosting service, however pricing is reasonable, there is a 30 day trial, and the website also is currently promoting &#8220;The Harvest FREE FOREVER Plan – 2 Projects, 4 Clients, &amp; 1 User, absolutely FREE&#8221; &#8211; perfect.  Update:  Once signed up, you can change simply convert your 30 day trial account to the free account under you account management, upgrade settings.</p>
<p>But it gets better. The first day I left a timer running at work, and the next morning received an email from Harvest informing of this. Nice. Also, over the course of the first week I received some helpful emails (non-spam) to get new users started using some of the features, a web cast invite for how to do invoicing, etc. I also sent them a ticket asking about converting to the free account, and if they had a referral program, and received a response the next day. The referral program credits you time for anyone you refer, though does not credit them &#8211; though they of anyone can join the referral program. The big orange button at the top of the article is an example of one of the referral buttons you can get.</p>
<p>You can also export your time to a csv file, which is quite handy, and the invoicing capabilities might be extremely helpful for those needing them (I do not currently use this feature, but it is very nice it is there.)</p>
<p>Now, the icing on the cake would be a Linux desktop widget. While the download site has widgets for OSX and Windows, none was listed for Linux &#8211; and, unsurprisingly, the OS X one does not work when installed in plasma. However, <a title="Havest Linux Tool" href="http://www.getharvest.com/blog/2009/07/harvest-on-the-command-line-hcl/" target="_blank">this post</a> pointed me to the Harvest Command Line Tool (hcl), a ruby tool designed by <a title="Zack on git hub" href="Zack%20Hobson" target="_blank">Zack Hobson</a> which provides a command line interface which uses the Harvest API to allow task management via the command line. Wow. The Harvest devs are also apparently looking at providing an actual widget in the future per this <a title="Havest Feature Request" href="http://forum.getharvest.com/forums/feature-requests/topics/linux-timer-widget" target="_blank">feature request</a>, but hcl is fine for me. The fact there is a useful API which is being used for tools like hcl is another huge benefit to Harvest.</p>
<p><span style="color: #00ff00;">Installing Harvest Command Line Tool</span></p>
<p>Installing hcl is extremely easy, as it is available as a Ruby gem. You may also install it from source via the hcl <a title="hcl git repo" href="https://github.com/zenhob/hcl" target="_blank">git repo</a>.</p>
<p>Installing with gem was simply a matter of installing rubygems for my distro and then the hcl gem:</p>
<p><span style="color: #3366ff;">#zypper install rubygems</span><br />
<span style="color: #3366ff;"> #gem install hcl</span></p>
<p>(For Ubuntu and Fedora users, this should simply be a matter of installing rubygems as well via yum or apt-get.)</p>
<p>Running hcl the first time prompts for your Harvest account credentials, and your Harvest subdomain  &#8211; this is the yourdomain part of you yourdomain.harvestapp.com account you created earlier. You may now list your project and start / stop tasks, etc. For example:</p>
<p><span style="color: #3366ff;">paracelsus@linux:~&gt; hcl tasks</span><br />
<span style="color: #3366ff;"> 1782588 1165030 Prime Enterprises &#8211; ORNL &#8211; ARM</span><br />
<span style="color: #3366ff;"> 1782588 1165024 Prime Enterprises &#8211; ORNL &#8211; Admin</span><br />
<span style="color: #3366ff;"> 1782588 1165031 Prime Enterprises &#8211; ORNL &#8211; BDS</span><br />
<span style="color: #3366ff;"> 1782588 1165029 Prime Enterprises &#8211; ORNL &#8211; DAAC</span><br />
<span style="color: #3366ff;"> 1782588 1165032 Prime Enterprises &#8211; ORNL &#8211; GPGPU</span><br />
<span style="color: #3366ff;"> 1782588 1165034 Prime Enterprises &#8211; ORNL &#8211; ITSD</span><br />
<span style="color: #3366ff;"> 1782588 1165025 Prime Enterprises &#8211; ORNL &#8211; Project Management</span></p>
<p>You can view the time for a specific day:</p>
<p><span style="color: #3366ff;">paracelsus@linux:~&gt; hcl show last friday</span><br />
<span style="color: #3366ff;"> 8:09 ORNL</span><br />
<span style="color: #3366ff;"> &#8212;&#8212;&#8212;&#8212;-</span><br />
<span style="color: #3366ff;"> 8:09 total (as of 10:12 am)</span></p>
<p>And of course start and stop the timer for a project / task and include a log message:</p>
<p><span style="color: #3366ff;">paracelsus@linux:~&gt; hcl start 1782588 1165032 Testing hcl</span><br />
<span style="color: #3366ff;"> Started timer for Prime Enterprises &#8211; ORNL &#8211; GPGPU (0:00) (at 10:21 am)</span></p>
<p>Additional options are available via hcl &#8211;help and further usage examples are available in the documentation at git hub, such as: <a title="git bub hcl docs" href="https://github.com/zenhob/hcl/blob/master/README.markdown" target="_blank">https://github.com/zenhob/hcl/blob/master/README.markdown</a></p>
<p><span style="color: #00ff00;">Summary</span></p>
<p>So far I am quite impressed with Harvest. It provides the features I needed, and the inclusion of an API and tools like hcl are all I needed. I&#8217;m looking forward to using it over the next few weeks on my projects.</p>
<p>The referral program is a nice bonus. I had very good success with the Dropbox referral program, so we will see how this one goes.</p>
<p>If you are looking for a time tracking tool, Harvest might well be worth test driving.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timelordz.com/blog/2012/01/harvest-time-tracking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>From Rocksmith to Free Guitar Effects and Home Studio Recording</title>
		<link>http://www.timelordz.com/blog/2011/12/from-rocksmith-to-free-guitar-effects-and-home-studio-recording/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=from-rocksmith-to-free-guitar-effects-and-home-studio-recording</link>
		<comments>http://www.timelordz.com/blog/2011/12/from-rocksmith-to-free-guitar-effects-and-home-studio-recording/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 03:24:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[My Life]]></category>
		<category><![CDATA[AVLinux]]></category>
		<category><![CDATA[Rocksmith]]></category>

		<guid isPermaLink="false">http://www.timelordz.com/blog/?p=684</guid>
		<description><![CDATA[If you have Rocksmith for PS3 or X-Box, a Realtone guitar cable, and have a PC or Intel-based Mac, you have everything you need to extend your playing from the game into a home studio and guitar effects processing and jamming session, not just for yourself but for friends as well. Want to add vocals? [...]]]></description>
			<content:encoded><![CDATA[Note: There is a poll embedded within this post, please visit the site to participate in this post's poll.
<p>If you have Rocksmith for PS3 or X-Box, a Realtone guitar cable, and have a PC or Intel-based Mac, you have everything you need to extend your playing from the game into a home studio and guitar effects processing and jamming session, not just for yourself but for friends as well. Want to add vocals? No problem, just plug in that Rockband or Guitar Hero USB microphone and you can record audio too. You have everything to extend your playing from Rocksmith into endless possibilities using your home computer &#8211; and it is utterly free. (Compare that to what you have to spend for something like ProTools.)</p>
<p>All you need to do is download a bootable Linux CD, such as <a title="AVLinux" href="http://www.bandshed.net/AVLinux.html" target="_blank">AVLinux</a>, boot your computer with it, plug in your guitar using the realtone cable, and run the software on the CD and you can unleash a vast array of guitar audio effects (pedals), as well as easily record yourself (with multiple tracks), add vocal tracks, etc. If you have a MIDI capable drum kit or keyboard (especially with an M-Audio MIDI adapter), you can very likely use them as well.</p>
<p>And the best part: it&#8217;s free. There is zero cost for the software as it is based on an Open Source operating system (Linux), and Open Source applications such as Rakarrack, Guitarix, Ardour, Soundgarden and others. AVLinux also comes with commercial software, and previews of other available tools, but everything on the CD is free to use.</p>
<p><span style="color: #3366ff;">Here is how it works:</span></p>
<p>The realtone guitar interface cable Rocksmith uses is really just a simple USB sound card which is seen as a USB microphone by a computer or console game system. This is actually identical to other 1/4&#8243; to USB adapters such as the Behringer UCG102 Guitar to USB interface. Linux has excellent support for USB audio devices, and the Rocksmith realtone cable uses a chipset which is support by the snd-usb-audio Linux drivers (and for Mac by  OS X 10.6). Support is built in to Linux, so you can simply connect the realtone cable to a Linux system and jam away. (However, you can not connect something like the Behringer UCG102 to your PS3 or XBox to use with Rocksmith. Although they perform the same function, the game will only work with the realtone cable. Yep, lame.)</p>
<p>The real magic is not the cable, but Linux. If you have never used Linux, don&#8217;t be afraid. If you can download and burn a CD you can get started using Linux. You will actually find Linux itself easy enough to navigate around in, but learning to control the vast number of audio application which are now at your fingertips may take a bit longer. (You can also very likely use Garage Band for OSX, but the wealth of audio tools on AVLinux is an order of magnitude beyond this and is more comparable to ProTools and more.)</p>
<p>The below steps are written assuming you know nothing whatsoever about Linux. If you get stuck you will find there are many online forums where help is available. NOTE: Please see the AVLinux user manual, found on the desktop &#8211; it is an excellent guide and will quickly get you started. Also, get help from a computer geek friend &#8211; especially if they know anything about Linux. (Make sure to provide the beer.) It might seem daunting at first, given the extent of software available, some of which is very full featured, and complex. However, you should be able to at least get up and running so you can hear your guitar and uses pedal like effects pretty easily. From there you can dive into the more complex tools, like Ardour for recording, etc.</p>
<p><span style="color: #3366ff;">Here is how to do it:</span></p>
<p>While there are many flavors of Linux other there, and several ways you can do this, I highly recommend downloading the LiveCD version of AVLinux from <a title="AVLinux Download" href="http://www.bandshed.net/DownloadInstall.html" target="_blank">here</a>.</p>
<p>(For more information on other Linux versions available, see the geek notes at the end on &#8220;Other Linux Environments&#8221;. Just use AVLinux for now though unless you have reason not to.)</p>
<p>Make sure you download the &#8220;live&#8221; version, and burn the .iso as an image, and don&#8217;t copy the .iso file itself to the blank CD. Then, restart your computer with this CD in it. It should start up and take you to the Linux Desktop. (NOTE: If it does not, you may need to configure you computer to boot to CD first. If you are using a Mac, hold down the alt or &#8216;c&#8217; key while powering on the system and until after you hear the chime.)</p>
<p>Be patient, it may take several minutes for the desktop to appear.</p>
<p>Now, simply plug in the Realtone audio cable. Next, you must configure the system to use the Realtone cable as the proper input, and the computer as the output. This is done using the Jack audio server, which can be controlled by running qjackctl. There is a little green icon on the system tray at the bottom of the screen which will start qjackctrl.</p>
<p>Configuring Jack is likely going to be one of the hardest parts to set up the first few times. The idea is you are patching together software audio tools, as though you were connecting them to each other using physical audio cables. You can then string together different tools. The first thing you need is to ensure the Realtone input is connected to the system output. The basic JACK configuration  should look something like this:</p>
<div id="attachment_692" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.timelordz.com/blog/./wp-content/uploads/2011/12/JACK-Inputs.png"><img class="size-medium wp-image-692" title="JACK-Inputs" src="http://www.timelordz.com/blog/./wp-content/uploads/2011/12/JACK-Inputs-300x201.png" alt="" width="300" height="201" /></a><p class="wp-caption-text">Click for full size.</p></div>
<p>&nbsp;</p>
<p><span style="color: #3366ff;">TOP TIP:</span> Click on the &gt; button in Jack next to the input device to see more descriptive names for the inputs and outputs. If you just try to use the drop down menu (hw0, etc.) it is easy to get them wrong. The Realtone cable will be list as a &#8220;Rocksmith USB Guitar Adapter&#8221; or &#8220;Hercules&#8221; or &#8220;Sony Entertainment&#8221;.</p>
<p><span id="more-684"></span></p>
<p>Now you can start other audio software and connect those applications to Jack as well. For example, we will now start Guitarix (a guitar effects processing tool) so we can jam with all those nifty effects, and make our own. Start Guitarix from the audio applications menu (Hint: Not all entries are alphabetical, it&#8217;s actually at the bottom of the list). The interface, with a couple mono plugins and tuner enabled might look something like this:</p>
<div id="attachment_714" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.timelordz.com/blog/./wp-content/uploads/2011/12/guitarix.png"><img class="size-medium wp-image-714" title="guitarix" src="http://www.timelordz.com/blog/./wp-content/uploads/2011/12/guitarix-300x268.png" alt="" width="300" height="268" /></a><p class="wp-caption-text">Click for full size.</p></div>
<p><span style="color: #3366ff;">TIP:</span> the red and green power lights on the left must each be powered on by clicking it for it to be active in your effects loop.</p>
<p>qjackctl should automatically now see Guitarix as another available application to &#8220;plug&#8221; into, and the connections should look something like this:</p>
<p><a href="http://www.timelordz.com/blog/./wp-content/uploads/2011/12/JACK-Guitarix-Connections.png"><img class="aligncenter size-full wp-image-693" title="JACK-Guitarix-Connections" src="http://www.timelordz.com/blog/./wp-content/uploads/2011/12/JACK-Guitarix-Connections.png" alt="" width="611" height="286" /></a></p>
<p><span style="color: #3366ff;">TOP TIP:</span> Many users find the default patch bay display in JACK very confusing. You can also try out Patchage, in the audio application menu, which I find displays the patch connections in a much more intuitive and manageable way. Also see this helpful diagram of how to connect guitarix to JACK at the <a title="Guitarix" href="http://guitarix.sourceforge.net/index.php?page=2&amp;p_type=one" target="_blank">Guitarix site</a>.</p>
<p>You can now jam away, and explore a huge number of guitar effects. Add more effects from the Options -&gt; Mono Plugins menu. Chain them together to get the exact sound you like.</p>
<p><span style="color: #3366ff;">NO SOUND:</span> Most likely you need to re-examine your JACK configuration. Also it helps to activate the tuner in guitarix (Options -&gt; Tuner), to verify the signal is getting to guitarix. If so, you are very, very close. Check your JACK configuration setting, both in the patch bay and the inputs and outputs under the &#8220;settings&#8221; tab. Its easy to get something wrong here. Also, make sure to turn up the pre-gain, drive and master gain knobs as needed. (This applies to other applications too: Effects often have power switches that must be clicked on to activate them, and volume levels may need adjusted &#8211; things may be working perfectly, but you just need to bump up the gain.)</p>
<p><span style="color: #3366ff;">Whats Next?</span></p>
<p>This is just the beginning. Using the same steps you can now also use other applications. Want more guitar fx? Try Rakarrack &#8211; the possible sounds you can create with it are endless. It has pre-configured banks of effects, and you can make your own custom sound. (Again, enure you active the fx power switch (top left) and adjust the volume sliders.)</p>
<p>Here is a screenshot of Rakarrack configured for JACK. This is an amazingly fun guitar fx tool with a stunning array of sounds:</p>
<div id="attachment_708" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.timelordz.com/blog/./wp-content/uploads/2011/12/JACK-Rakarrack-Connection.png"><img class="size-medium wp-image-708" title="JACK-Rakarrack-Connection" src="http://www.timelordz.com/blog/./wp-content/uploads/2011/12/JACK-Rakarrack-Connection-300x187.png" alt="" width="300" height="187" /></a><p class="wp-caption-text">Click for full size.</p></div>
<p>Want to record yourself? Try Ardour &#8211; also already installed and available in AVLinux. Plug in a USB microphone (Rockband and Guitar Hero ones work fine), configure it in Jack and you can record vocals in Ardour too. (Ardour has extensive features, and you will want to head over to the website to check out the tutorials.) For keyboards check out <a title="Rosegarden Keyboard Software" href="http://www.rosegardenmusic.com/" target="_blank">Rosegarden</a> and for Drums try <a title="Hydrogen Drum Synth" href="http://www.hydrogen-music.org/hcms/">Hydrogen</a>.</p>
<p>Record yourself with Ardour:</p>
<div class="mceTemp mceIEcenter">
<div id="attachment_712" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.timelordz.com/blog/./wp-content/uploads/2011/12/JACK-Ardour-Connections2.png"><img class="size-medium wp-image-712" title="JACK-Ardour-Connections2" src="http://www.timelordz.com/blog/./wp-content/uploads/2011/12/JACK-Ardour-Connections2-300x187.png" alt="" width="300" height="187" /></a><p class="wp-caption-text">Click for full size.</p></div>
</div>
<p><span style="color: #3366ff;">Next Steps</span></p>
<p>Running from the LiveCD is a great way to get started, but you most likely will eventually want to install AVLinux either to a USB stick, or to your computer. This will allow you to save changes, and improve performance. The AV Linux control panel on the system tray even includes an option to make a bootable USB stick, as well as many other very useful tools. This attention to providing a very user friendly environment, and the excellent user guide on the desktop are additional reasons why I recommend AVLinux.</p>
<p><span style="color: #3366ff;">Summary</span></p>
<p>Take your playing and skills to the next level using powerful and freely available open source tools. Linux is a fantastic platform for musicians, and the number and quality of tools available is impressive. If you run into trouble, you will likely find places like Linux forums, and forums for tools like AVLinux, Rakarrack, and Guitarix, to be quite helpful. It can get complicated, its true. But if you stick with it you will be well rewarded.</p>
<p>&nbsp;</p>
<p><span style="color: #ff0000;">Advanced and Troubleshooting Advice</span><br />
(Warning Nerd Stuff Coming &#8211; you can skip it unless you want more info)</p>
<p>First off &#8211; check out the user manual on the desktop (or from the AVLinux site). It has tons of good info, useful terminal commands, etc. Here are some basic tips for common issues:</p>
<p><span style="color: #3366ff;">No Audio</span><br />
Start a command shell and run:<br />
<span style="color: #00ff00;">$speaker-test</span><br />
<span style="color: #00ff00;"> $aplay -vv /usr/share/sounds/alsa/Front_Left.wav</span><br />
If you don&#8217;t hear anything, restart the sound server:<br />
<span style="color: #00ff00;"> $sudo /etc/init.d/alsa-utils restart</span><br />
Then re-try the speaker test. This must work before JACK or any other applications will.<br />
If it still does not work, make sure your sound card was detected (cat /proc/asound/cards )</p>
<p><span style="color: #3366ff;">Troubleshooting the realtone cable</span><br />
Prior to plugging in the cable, open a command terminal and run:<br />
<span style="color: #00ff00;">$sudo udevadm monitor</span><br />
Plug in the Realtone cable and see if udev correctly detects it and assign it as an audio device.<br />
Also, ensure it is visible when you run<br />
<span style="color: #00ff00;"> $sudo lsusb -v</span></p>
<p><span style="color: #3366ff;">Using VirtualBox</span><br />
Running for a LiveCD forever is not the way to go. Instead, you can install AVLinux as a virtual machine using VirtualBox. You will also need to VirtualBox USB extensions. Note there is going to be  increased latency this way for sure, in fact so far the latency has made it pretty unusable in my tests. You may well need to increase the &#8220;Frames/Period&#8221; in JACK settings to 1024 or even 2048. I did have trouble with the VM crashing in VirtualBox (4.1.6) running on my OpenSuse 11.4 system with VERR_NO_MEMORY errors, despite having plenty of memory allocated to it. It does seem to work okay when I briefly tested it with VirtualBox on a MacBook Pro, OS X 10.6.8 Audio was working okay &#8211; though getting the Realaudio cable recognized by the VM was a bit tricky, even when adding a USB filer for it. All in all, my experience shows that due to latency and timing demands, and overhead of the hypervisor may make this unrealistic except under ideal hardware and conditions. A better option would be running from a USB stick, which should run considerably faster than the LiveCD, or better yet of course actually installing Linux.</p>
<p><span style="color: #3366ff;">Other Linux Environments</span><br />
You can install any mainstream Linux distribution (OpenSuse, Ubuntu, Fedora, etc.) on your computer, and then install the needed audio applications for the repositories, or build them from source. However, I recommend using the <a title="AVLinux ISO" href="http://www.bandshed.net/iso/avlinux5.0.2-lxde-i386-en.iso" target="_blank">AVLinux LiveCD</a> to start users off without needing to install anything so they can just jam, have fun, and test drive things.</p>
<p><a title="SuseStudio" href="http://susestudio.com/a/OFknLD/opensuse-multimedia-studio" target="_blank">OpenSuse MultiMedia Studio </a><br />
(LiveCD and Installable)<br />
Based on Suse 11.4, this is both a LiveCD and installable Linux environment. It can also be customized using the OpenSuse Build Service, and built a an .iso, usb, or VirtualBox image, which is very cool. You can add guitarix and rakarrack to the build. I do want to test drive this fully, though it lacks the extensive collection of pre-installed audio specific applications that AVLinux offers.</p>
<p><a title="Studio64" href="http://www.64studio.com/" target="_blank">Studio64</a><br />
(Only 2.0 version available as Live CD, newer versions are install only.)<br />
Other LiveCD options include the 64Studio 2.0, but that is based on Debian 4.0, which is <em>very</em> old at this point. While 64Studio is available in newer versions, they are not available in as a LiveCD. If you wish to install a full Linux OS, I would certainly recommend looking in to it.</p>
<p><a title="UbuntuStudio" href="http://ubuntustudio.org/" target="_blank">Ubuntu Studio</a><br />
(Latest is Ubuntu 11.10 base. No LiveCD option)<br />
Developed for a mix of audio, video and graphics arts. Looks pretty good, but not music focused &#8211; and there is no LiveCD available.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timelordz.com/blog/2011/12/from-rocksmith-to-free-guitar-effects-and-home-studio-recording/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>VisIt with NeatX: GLX Issues</title>
		<link>http://www.timelordz.com/blog/2011/10/visit-with-neatx-glx-issues/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=visit-with-neatx-glx-issues</link>
		<comments>http://www.timelordz.com/blog/2011/10/visit-with-neatx-glx-issues/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 14:45:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ORNL]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[VisIt]]></category>

		<guid isPermaLink="false">http://www.timelordz.com/blog/?p=677</guid>
		<description><![CDATA[We provide users with a visualization system with IDL, MatLab, and Visit. X-Forwarding can be painfully slow, and we have found that using NXServer, or Googles open source NeatX equivalent, can provide much faster performance. However, VisIt would launch when X-Forwarded, but not when using NXClient &#38; NeatX. The only messages were: &#8230; Running: mdserver2.3.2 [...]]]></description>
			<content:encoded><![CDATA[<p>We provide users with a visualization system with IDL, MatLab, and Visit. X-Forwarding can be painfully slow, and we have found that using NXServer, or Googles open source NeatX equivalent, can provide much faster performance. <a href="htttp://code.google.com/p/neatx/" title="NeatX" target="_blank"></a></p>
<p>However, VisIt would launch when X-Forwarded, but not when using NXClient &amp; NeatX. The only messages were:<br />
&#8230;<br />
<code>Running: mdserver2.3.2 -host 127.0.0.1 -port 5601<br />
VisIt's viewer exited abnormally! Aborting the Graphical User Interface. VisIt's developers may be reached via the visit-users mailing list.  Please see:<br />
htttp://visit.llnl.gov/FAQ.html#1</code></p>
<p>I also found that glxinfo would return:</p>
<p><code>$ glxinfo<br />
name of display: :826.0<br />
Error: couldn't find RGB GLX visual or fbconfig</code></p>
<p><strong>Solution:</strong></p>
<p>First, I created an xorg.conf to ensure GLX was actually being loaded. (It turned out this was not required as X was autodetecting everything fine without an explicit xorg.conf, but I include it here as it may be helpful in some cases to have an explicit xorg.conf)</p>
<p>Xorg -configure<br />
(renamed xorg.conf and moved to /etc/X11. Ensured Section &#8220;Module&#8221; included Load &#8220;glx&#8221;, etc.)</p>
<p>glxinfo still would not work. I then set the following environmental variable:</p>
<p><code>export  LIBGL_ALWAYS_INDIRECT=yes</code></p>
<p>Which allowd glxinfo, glxgears, etc. to work. For more information on this environmental, see:</p>
<p><a href="http://unix.stackexchange.com/questions/1437/what-does-libgl-always-indirect-1-actually-do" title="http://unix.stackexchange.com/questions/1437/what-does-libgl-always-indirect-1-actually-do" target="_blank">http://unix.stackexchange.com/questions/1437/what-does-libgl-always-indirect-1-actually-do</a><br />
<a href="https://bugs.launchpad.net/xorg-server/+bug/384001" title="https://bugs.launchpad.net/xorg-server/+bug/384001" target="_blank">https://bugs.launchpad.net/xorg-server/+bug/384001</a></p>
<p>This could then be made into a Gnome Desktop Launcher:</p>
<p><code>cat VisIt.desktop<br />
[Desktop Entry]<br />
Version=1.0<br />
Type=Application<br />
Terminal=false<br />
Icon[C]=gnome-panel-launcher<br />
Name[C]=VisIt<br />
Exec=env LIBGL_ALWAYS_INDIRECT=yes /usr/local/visit/bin/visit<br />
Name=VisIt<br />
Icon=/usr/share/icons/visit.jpg<br />
Categories=GNOME;Application;Development;</code></p>
<p>Perhaps the above may be useful to other VisIt users.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timelordz.com/blog/2011/10/visit-with-neatx-glx-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Go Programming Language</title>
		<link>http://www.timelordz.com/blog/2011/05/go-programming-language/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=go-programming-language</link>
		<comments>http://www.timelordz.com/blog/2011/05/go-programming-language/#comments</comments>
		<pubDate>Sun, 22 May 2011 18:18:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IT Adventures]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Go Language]]></category>
		<category><![CDATA[Scientifc Computing]]></category>

		<guid isPermaLink="false">http://www.timelordz.com/blog/?p=666</guid>
		<description><![CDATA[&#160; &#160; The Google Go Programming Language, currently under development by Robert Griesemer, Rob Pike, and a fellow by the name of Ken Thompson looks to be quite interesting. Some of the merits include: Fast compile times. Wicked fast. Familiar C like syntax. Ease of programming &#8211; a pseudo marriage of C and Python. Built [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.timelordz.com/blog/./wp-content/uploads/2011/05/Golang.png"><img class="size-full wp-image-667 alignleft" title="Golang" src="http://www.timelordz.com/blog/./wp-content/uploads/2011/05/Golang.png" alt="" width="153" height="55" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The Google <a title="Go Language Official Site" href="http://golang.org/" target="_blank">Go Programming Language</a>, currently under development by Robert Griesemer, Rob Pike, and a fellow by the name of Ken Thompson looks to be quite interesting.</p>
<p>Some of the merits include:</p>
<ul> Fast compile times. Wicked fast.<br />
Familiar C like syntax.<br />
Ease of programming &#8211; a pseudo marriage of C and Python.<br />
Built in concurrent process execution and messaging.<br />
(MPI clustering and CUDA are under discussion.)<br />
Support for AMD64, x86 and ARM</ul>
<p>New languages come along all the time. So why should this one be any different?</p>
<p>Ken Thompson, and his experience with systems programming and languages, is one good reason. For another I can foresee that, for scientific computing in particular, there could be a very good future for Go. By providing an easy to learn and use programing environment, with a C and Python-like style, with easy to use messaging and concurrency and which compiles extremely fast and runs at near C speeds &#8211; there is a very good potential. If the future added to this MPI capabilities, and especially bindings for existing libraries (e.g. Thrust and SciPy ) and for CUDA &#8211; it could very well fill a perfect niche. This just might be the start of something grand.</p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/wwoWei-GAPo?start=50&#038;version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/wwoWei-GAPo?start=50&#038;version=3" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><span style="color: #3366ff;">Official Sites</span></p>
<p><a title="http://golang.org/" href="http://golang.org/" target="_blank">http://golang.org/</a></p>
<p>Install instructions, beginning tutorials, etc.</p>
<p>This site also provides a cool browser based write-compile-run environment where you can achieve instant gratification with Go.</p>
<p><a title="http://code.google.com/p/go/" href="http://code.google.com/p/go/" target="_blank">http://code.google.com/p/go/</a></p>
<p>The actual Google code site.</p>
<p><span style="color: #3366ff;">Getting Started</span></p>
<p>To get a feel for the language and start using it immediately, you might want to read the sample hello world in the <em>writing programs</em> section of the <a title="Go Language Install Instructions" href="http://golang.org/doc/install.html#writing">install instructions</a>.</p>
<p>You can execute Go programs using the above mentioned browser based compiler and run time tool.</p>
<p>Of course, you can also install the Go compiler and tools locally. You have two options for the compiler: the native Go compiler tool chain (6g, 6l, etc.) or gccgo, which uses gcc for the backed.</p>
<p>The official site has full instructions for setting up your environment. Requirements to build Go are minimal, and you can likely be up and running in minutes.</p>
<p>Nifty Cool Bonus: Note the following comment from the install instructions on how the Go linker works:</p>
<p><em>There is no need to list <code>hello.6</code>&#8216;s package dependencies (in this case, package <code>fmt</code>) on the <code>6l</code> command line. The linker learns about them by reading <code>hello.6</code>.</em></p>
<p><span style="color: #3366ff;">Other References to the language:</span></p>
<p>http://en.wikipedia.org/wiki/Go_%28programming_language%29</p>
<p>A reference for GO language bindings can be found at:</p>
<p>http://go-lang.cat-v.org/library-bindings</p>
<p><span style="color: #3366ff;">Scientific Computing</span></p>
<p>The suitability of Go for scientific computing is discussed in an interesting Google Groups thread <a title="Go and Scientific Computing" href="http://groups.google.com/group/golang-nuts/browse_thread/thread/fd5a197e78814d91/97bf58fea00d2297?q=cuda&amp;lnk=ol&amp;" target="_blank">here</a>.</p>
<p><span style="color: #3366ff;">Syntax Highlighting</span></p>
<p>Exploring the misc/ sub directory shows the source includes syntax highlight files for Vim, Kate and other editors as well as some other goodies.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timelordz.com/blog/2011/05/go-programming-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dropbox and EncFS &#8211; Encrypting Local Files</title>
		<link>http://www.timelordz.com/blog/2011/03/dropbox-and-encfs-encrypting-local-files/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dropbox-and-encfs-encrypting-local-files</link>
		<comments>http://www.timelordz.com/blog/2011/03/dropbox-and-encfs-encrypting-local-files/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 01:25:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[encFS]]></category>
		<category><![CDATA[encryption]]></category>

		<guid isPermaLink="false">http://www.timelordz.com/blog/?p=650</guid>
		<description><![CDATA[I have been using Dropbox for quite a while, and I&#8217;ve found it extremely helpful. Spideroak, a similar service, is also very interesting and something I am test driving now as well. Being able to share files so easily amongst numerous devices and via the web is handy in the extreme. You can even tie [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using Dropbox for quite a while, and I&#8217;ve found it extremely helpful. Spideroak, a similar service, is also very interesting and something I am test driving now as well. Being able to share files so easily amongst numerous devices and via the web is handy in the extreme. You can even tie in things like Nevernote into this and sync your notebooks yourself between your devices.</p>
<p>With any of these solutions, security is of course a concern. Regardless of if the data is encrypted in transit, or if the provider encrypts it on their server, I wanted to also encrypt it locally. This is where a combination of Dropbox + encFS comes into play very nicely.</p>
<p>There are many options when it comes to file encryption, but <a class="external text" rel="nofollow" href="http://en.wikipedia.org/wiki/EncFS">encFS</a> really shines in some areas. Encryption is per-file, and no dedicated space need be reserved before hand. Setup is very simple, and encFS is well supported on all major Linux distros.</p>
<p>Using this solution, encFS stores encrypted files in a Dropbox directory. This is then mounted via encfs to a local folder where the unencrypted files are made available. When I am done, I can simply unmount this directory, leaving only the encrypted files in my Dropbox folder on the local system, encrypted via encFS with AES or blowfish. The information is also thus encrypted in transit, and additionally encrypted by Dropbox/Spideroak on their side.</p>
<p>Setting this up is very simple and takes just a few minutes. More detailed howtos can be found in the reference section, but here is an encFS in 5 minutes quickstart guide:</p>
<p>Ensure you have fuse and encfs installed via your package manager and that the fuse module is loaded<br />
<code>lsmod | grep fuse</code></p>
<p>Create a directory in Dropbox which will hold the encrypted files, and a mount point outside of Dropbox where the unencrypted versions will be mounted. (For Spideroak simply create two directories in your home folder and add the encrypted directory in your list of folders to back up in Spideroak.)<br />
<code>mkdir ~/Dropbox/encrypted/ ~/unencrypted</code></p>
<p>Mount the filesystem:<br />
<code>encfs ~/Dropbox/encrypted/ ~/unencrypted/</code></p>
<p>Note: provide full paths or at least a ~ prefix to encfs.<br />
The first time you do this encfs will set up the encryption. You may choose your options, set the passwords, etc. A &#8220;paranoid&#8221; auto-config option is available, and full details for options are in the man page.</p>
<p>Using encFS</p>
<p>Now, simply create and use your files in ~/unencrypted. Normal filesystem permissions apply and the use of these should be completely transparent. Anything stored in this mount point is automatically encrypted, and you will see matching (encrypted) entities in ~/Dropbox/encrypted</p>
<p>When you are done, unmount with:<br />
<code>fusermount -u ~/unencrypted</code></p>
<p><strong>Cryptkeeper Applet</strong></p>
<p>Cryptkeeper is a systray applet for KDE and Gnome which provides a simple GUI for the creation, importing, and mounting of encFS folders. It is quite easy to use. For Suse 11.4, I simply used the rpm available for Fedora 13. Cryptkeeper is maintained by Tom Morton and the source code is available on his site <a class="external text" rel="nofollow" href="http://tom.noflag.org.uk/cryptkeeper.html">here</a></p>
<p>By default it uses Nautilus, though KDE users who prefer Dolphin or another file manager can simply change this in Cryptkeepers preferences.</p>
<p>Cryptkeeper also allows you to view information about an encrypted folder, or change the password. These option are available by right clicking on the folder name in the list of encrypted folders.</p>
<p><strong>References:</strong></p>
<p><a class="external free" rel="nofollow" href="http://en.wikipedia.org/wiki/EncFS">http://en.wikipedia.org/wiki/EncFS</a></p>
<p><strong>Setup Guides:</strong></p>
<p><a class="external free" rel="nofollow" href="http://movingtofreedom.org/2007/02/21/howto-encfs-encrypted-file-system-in-ubuntu-and-fedora-gnu-linux/">http://movingtofreedom.org/2007/02/21/howto-encfs-encrypted-file-system-in-ubuntu-and-fedora-gnu-linux/</a></p>
<p><a class="external free" rel="nofollow" href="http://www.net-tools.org/web/index.php?option=com_content&amp;view=article&amp;id=124:dropbox-automated-backup-with-encryption&amp;catid=20:scripts&amp;Itemid=40">http://www.net-tools.org/web/index.php?option=com_content&amp;view=article&amp;id=124:dropbox-automated-backup-with-encryption&amp;catid=20:scripts&amp;Itemid=40</a></p>
<p>The last link provides this suggestion on auto-mounting using the enfs extpass option and a compiled file containing your password. However, be aware this simply compiles your password into a binary which spits it out to std out when run. You are creating a program that will spit out your password, or if strings is run on it your password is visible. Man encfs suggests directing &#8211;extpass to ssh-askpass as another method, and there is also the option to use libpam-encfs.</p>
<p><strong>PAM Configuration:</strong></p>
<p>For a guide on setting up libpam-encfs see:</p>
<p><a class="external free" rel="nofollow" href="http://choffee.co.uk/ramble/2006/06/02/paranoia-at-home/">http://choffee.co.uk/ramble/2006/06/02/paranoia-at-home/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.timelordz.com/blog/2011/03/dropbox-and-encfs-encrypting-local-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.283 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-05-19 02:00:16 -->

