<?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>Matt Slay, PhC</title>
	<atom:link href="http://mattslay.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mattslay.com</link>
	<description>Doctor of Code</description>
	<lastBuildDate>Mon, 14 May 2012 19:08:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Installing RubyMine 4 on Ubuntu 12.04</title>
		<link>http://mattslay.com/installing-rubymine-4-on-ubuntu-12-04/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=installing-rubymine-4-on-ubuntu-12-04</link>
		<comments>http://mattslay.com/installing-rubymine-4-on-ubuntu-12-04/#comments</comments>
		<pubDate>Tue, 01 May 2012 19:40:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ruby / Rails]]></category>

		<guid isPermaLink="false">http://mattslay.com/?p=496</guid>
		<description><![CDATA[I recently set up a new Ubuntu 12.04 machine in a VirtualBox VM. After installing the basic RVM, Rails, and Ruby stuff, I was then ready to install RubyMine. (By the way, see this post where I explain how to &#8230; <a class="more-link" href="http://mattslay.com/installing-rubymine-4-on-ubuntu-12-04/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently set up a new Ubuntu 12.04 machine in a VirtualBox VM. After installing the basic RVM, Rails, and Ruby stuff, I was then ready to install RubyMine. (By the way, see this post where I explain how to setup the Rails goodness on a new Ubuntu 12.04 machine: <a title="http://mattslay.com/installing-rails-on-ubuntu-12-04-with-rvm-support/" href="http://mattslay.com/installing-rails-on-ubuntu-12-04-with-rvm-support/">http://mattslay.com/installing-rails-on-ubuntu-12-04-with-rvm-support/</a> )</p>
<h2>Installing RubyMine</h2>
<p>There is no actual “installer” for RubyMine on Linux. You just extract it to a folder of your choice. (I put mine in /home/matt/apps/RunyMine-4.0.3/). If you try to place it in one of the more locked-down system folder, you could run into permissions problems, which always drives me nuts. So I just create and “apps” folder in my Home folder, and drop all my non-Ubuntu-Software-Center packages in separate folders there.</p>
<p>You can read the RubyMine Installation Instructions in the file named “Install-Linux-tar.txt” file which is located in the archive file for RubyMine that you will download from JetBrains. (<a title="http://www.jetbrains.com/ruby/download/" href="http://www.jetbrains.com/ruby/download/">http://www.jetbrains.com/ruby/download/</a>).  It will tell you where to unzip the files, and how to launch RubyMine after you’ve extracted it from the archive. (Note to Windows users… All this talk about “tar” and “archive” is basically what us Windows folks call a “zip” file.) After you download the archive from the JetBrains site, right click on it and open it with the Archive Manager. From there you can extract it to a folder of your choice. After that, it’s ready to run RubyMine (well, after you follow the next step…)</p>
<h2>Sun Java JDK</h2>
<p>RubyMine requires the Sun Java JDK environment to make its fancy GUI stuff work (note: RubyMine does not work well with OpenJDK, so don’t use this one by mistake!). Unfortunately, the Ubuntu Software Center does not have a click-easy installer for this, so you’ve got to do it in a terminal window, but trust me, it’s not hard. I followed this guide (from a Question/Answer on StackOverflow) to install the Sun Java JDK 1.7.0 in my new Ubuntu machine:</p>
<blockquote><p><a title="http://stackoverflow.com/questions/10178601/rubymine-on-linux" href="http://stackoverflow.com/questions/10178601/rubymine-on-linux">http://stackoverflow.com/questions/10178601/rubymine-on-linux</a></p></blockquote>
<blockquote><p>Note: This step can be done before or after you extract RubyMine from the .tar download. It’s just that RubyMine will give you an error if you try to run it without having the Sun Java JDK installed.</p></blockquote>
<h2>Done!</h2>
<p>With Rails and Ruby installed (see link at the top of this page) and RubyMine extracted, and Sun Java JDK installed, you are ready to ride on the Rails train.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattslay.com/installing-rubymine-4-on-ubuntu-12-04/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Installing Rails on Ubuntu 12.04 with RVM support</title>
		<link>http://mattslay.com/installing-rails-on-ubuntu-12-04-with-rvm-support/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=installing-rails-on-ubuntu-12-04-with-rvm-support</link>
		<comments>http://mattslay.com/installing-rails-on-ubuntu-12-04-with-rvm-support/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 20:18:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ruby / Rails]]></category>

		<guid isPermaLink="false">http://mattslay.com/?p=472</guid>
		<description><![CDATA[I just setup a fresh VM with Ubuntu 12.04, and I wanted to setup Ruby on Rails on the machine right off the bat (Duh!). I couldn’t find any specific setup instructions for Ubuntu 12.04 on the web, so I &#8230; <a class="more-link" href="http://mattslay.com/installing-rails-on-ubuntu-12-04-with-rvm-support/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just setup a fresh VM with Ubuntu 12.04, and I wanted to setup Ruby on Rails on the machine right off the bat (Duh!).</p>
<p>I couldn’t find any specific setup instructions for Ubuntu 12.04 on the web, so I took a chance and followed this Ubuntu 11.10 guide, which worked very well, <strong><em>except I had to make a couple of changes in the instructions</em></strong>, which you can see in my notes following this link:</p>
<h2>Here’s the guide I followed :</h2>
<blockquote><h3>(However, go ahead and read my change notes below before proceeding…)</h3>
</blockquote>
<blockquote><p><a title="http://www.the-tech-tutorial.com/?p=1868" href="http://www.the-tech-tutorial.com/?p=1868">http://www.the-tech-tutorial.com/?p=1868</a></p>
</blockquote>
<h2>First change:</h2>
<blockquote><p>On the second line of the instructions in the above link, I got an error when apt-get tried to install “libmysqlclient16-dev”.</p>
<p>The correct line should be:</p>
<pre>sudo apt-get install build-essential git-core curl libmysqlclient-dev nodejs</pre>
<p>Note: You may not even want the git-core, libmysqlclient-dev, and nodejs items if your development style doesn’t use these items. They can always be added later, at any time, using the same command.</p>
<p>I’m pretty sure, however, that everyone will need the build-essential and curl items. In fact, you may notice that these two are repeated in the RVM Requirements step, but that doesn’t hurt anything.</p>
</blockquote>
<h2>Second change:</h2>
<blockquote>
<p>In the second step, following the curl command, I had to use this in the terminal window to make RVM work:</p>
<pre>source ~/.rvm/scripts/rvm</pre>
<p>Instead of the code in the guide:</p>
<pre>umask g+w
source /etc/profile.d/rvm.sh</pre>
<p>So, I added this to the last line of the existing .bashrc file in my home folder (located at ~/.bashrc) so that I wouldn’t have to enter it every time I open a terminal window. Now, each time I rock a new terminal window, the RVM magic is ready!</p>
</blockquote>
<h2>Finally,</h2>
<blockquote>
<p>I found no use for this command in the guide:</p>
<pre>sudo chown -R [user]:[user] /usr/local/rvm</pre>
</blockquote>
<h2>Oh, yeah, one more final point about (not) installing gem docs…</h2>
<blockquote>
<p>I always like to turn off the documentation downloads (rdoc and ri) when installing new gems (I never read the docs locally this way, I always use the web). You can make a permanent change on your system to *not* install gem documentation when installing new gems. Run this line in the terminal window:</p>
<pre>echo "gem: --no-rdoc --no-ri" &gt; ~/.gemrc</pre>
<p>This will create a .gemrc file in your home folder telling the gem installer not to download the docs when you install new gems. You only need to do this once.</p>
<p>Do this before you run any “gem install” commands, or use Bundler, so that it won’t waste time and space pulling down docs for the gems.</p>
</blockquote>
<h2>Other guides to help you install Rails on Ubuntu 12.04</h2>
<blockquote>
<p>This looks like a good guide also, but I have no tested it. It can be run as a shell script to do all the work which you can download from github, but he also shows you each step if you want to do it manually :<br clear="all"><br clear="all"><a title="http://blog.sudobits.com/2012/05/02/how-to-install-ruby-on-rails-in-ubuntu-12-04-lts/" href="http://blog.sudobits.com/2012/05/02/how-to-install-ruby-on-rails-in-ubuntu-12-04-lts/">http://blog.sudobits.com/2012/05/02/how-to-install-ruby-on-rails-in-ubuntu-12-04-lts/</a></p>
</blockquote>
<h2>Setting up RubyMine…</h2>
<blockquote>
<p>If you want to install RubyMine for your Rails development, you can follow my instructions here: <a title="http://mattslay.com/installing-rubymine-4-on-ubuntu-12-04/" href="http://mattslay.com/installing-rubymine-4-on-ubuntu-12-04/">http://mattslay.com/installing-rubymine-4-on-ubuntu-12-04/</a></p>
</blockquote>
<h2>Other goodies I installed on my new Ubuntu machine:</h2>
<blockquote>
<p>I installed these personal favorites right from the Ubuntu Software Center&nbsp; (I’ve listed links so you can learn more about these tools, but I recommend installing them through the Ubuntu Software Center right inside of Ubuntu):</p>
<ul>
<li>Krusader (A better File manager than the standard Ubuntu one) <br clear="all"><a title="http://www.krusader.org/" href="http://www.krusader.org/">http://www.krusader.org/</a>
<li>Konsole (A better Console/Terminal window that then the standard Ubuntu one)<br clear="all"><a title="http://kde.org/applications/system/konsole/" href="http://kde.org/applications/system/konsole/">http://kde.org/applications/system/konsole/</a>
<li>Tortoise HG Workbench (for Mercurial version control)<br clear="all"><a title="http://tortoisehg.bitbucket.org/" href="http://tortoisehg.bitbucket.org/">http://tortoisehg.bitbucket.org/</a></li>
</ul>
</blockquote>
<blockquote><p>If you’ve got favorite Linux/Ubuntu tools that you think are helpful to Rails developers, please add them in the comments.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://mattslay.com/installing-rails-on-ubuntu-12-04-with-rvm-support/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Table based definition of Parent-Child relationships in wwBusinessPro</title>
		<link>http://mattslay.com/table-based-definition-of-parent-child-relationships-in-wwbusinesspro/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=table-based-definition-of-parent-child-relationships-in-wwbusinesspro</link>
		<comments>http://mattslay.com/table-based-definition-of-parent-child-relationships-in-wwbusinesspro/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 14:27:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Foxpro]]></category>
		<category><![CDATA[West Wind]]></category>

		<guid isPermaLink="false">http://mattslay.com/?p=453</guid>
		<description><![CDATA[The wwBusinessPro data access library supports table-based definitions of the Business Objects used in an application. This also allows you to define Parent-Child relationships between the records and tables in your app. You can download wwBusinessPro from the project hosted &#8230; <a class="more-link" href="http://mattslay.com/table-based-definition-of-parent-child-relationships-in-wwbusinesspro/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The wwBusinessPro data access library supports table-based definitions of the Business Objects used in an application. This also allows you to define Parent-Child relationships between the records and tables in your app.</p>
<p>You can <a href="https://bitbucket.org/mattslay/wwbusinesspro/wiki/Home">download wwBusinessPro</a> from the project hosted on BitBucket.org.</p>
<p>The default table name for the Business Object definition table is “wwBusinessObjects&#8221;.dbf”. Just make sure the Path includes the location of this table, and run the form “wwDictionary.scx” to open and edit the rows in this maintenance form.</p>
<p>Here is a screenshot of the Business Object Dictionary form included in wwBusinessPro: </p>
<p><a href="http://mattslay.com/wp-content/uploads/2012/04/SNAGHTML201d0768.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="SNAGHTML201d0768" border="0" alt="SNAGHTML201d0768" src="http://mattslay.com/wp-content/uploads/2012/04/SNAGHTML201d0768_thumb.png" width="1023" height="641"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mattslay.com/table-based-definition-of-parent-child-relationships-in-wwbusinesspro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manual setup steps for Devise gem in Rails</title>
		<link>http://mattslay.com/manual-setup-steps-for-devise-gem-in-rails/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=manual-setup-steps-for-devise-gem-in-rails</link>
		<comments>http://mattslay.com/manual-setup-steps-for-devise-gem-in-rails/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 10:54:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ruby / Rails]]></category>

		<guid isPermaLink="false">http://mattslay.com/?p=448</guid>
		<description><![CDATA[Here is the text displayed from running the configuration command line for the Devise authentication gem in rails. Running this command: rails generate devise:install Generates this text: Some setup you must do manually if you haven&#8217;t yet: 1. Ensure you &#8230; <a class="more-link" href="http://mattslay.com/manual-setup-steps-for-devise-gem-in-rails/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here is the text displayed from running the configuration command line for the Devise authentication gem in rails.</p>
<p><span style="text-decoration: underline;"><em>Running this command:</em></span></p>
<pre>rails generate devise:install</pre>
<p><span style="text-decoration: underline;"><em>Generates this text:</em></span></p>
<p>Some setup you must do manually if you haven&#8217;t yet:</p>
<p>1. Ensure you have defined default url options in your environments files. Here<br />
is an example of default_url_options appropriate for a development environment<br />
in config/environments/development.rb:</p>
<p>config.action_mailer.default_url_options = { :host =&gt; &#8216;localhost:3000&#8242; }</p>
<p>In production, :host should be set to the actual host of your application.</p>
<p>2. Ensure you have defined root_url to *something* in your config/routes.rb.<br />
For example:</p>
<p>root :to =&gt; &#8220;home#index&#8221;</p>
<p>3. Ensure you have flash messages in app/views/layouts/application.html.erb.<br />
For example:</p>
<p>&lt;p class=&#8221;notice&#8221;&gt;&lt;%= notice %&gt;&lt;/p&gt;<br />
&lt;p class=&#8221;alert&#8221;&gt;&lt;%= alert %&gt;&lt;/p&gt;</p>
<p>4. If you are deploying Rails 3.1 on Heroku, you may want to set:</p>
<p>config.assets.initialize_on_precompile = false</p>
<p>On config/application.rb forcing your application to not access the DB<br />
or load models when precompiling your assets.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://mattslay.com/manual-setup-steps-for-devise-gem-in-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing COMCTL32.OCX and MSCOMCTL.OCX on a Windows XP Machine</title>
		<link>http://mattslay.com/installing-comctl32-ocx-and-mscomctl-ocx-on-a-windows-xp-machine/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=installing-comctl32-ocx-and-mscomctl-ocx-on-a-windows-xp-machine</link>
		<comments>http://mattslay.com/installing-comctl32-ocx-and-mscomctl-ocx-on-a-windows-xp-machine/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 20:34:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://mattslay.com/?p=432</guid>
		<description><![CDATA[I recently had to install the Microsoft Common Controls on an XP machine that had never had this stuff installed before… Probably these files were missing because this machine had never had Microsoft Office, or VB, or Visual Studio, or &#8230; <a class="more-link" href="http://mattslay.com/installing-comctl32-ocx-and-mscomctl-ocx-on-a-windows-xp-machine/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently had to install the Microsoft Common Controls on an XP machine that had never had this stuff installed before… Probably these files were missing because this machine had never had Microsoft Office, or VB, or Visual Studio, or whatever suite installs these items.</p>
<p>I needed these files to run a FoxPro app that I had written which used the TreeView control from the VB6/MSCOMCTL.OCX library.</p>
<p>Here is what I learned and how I got it working:</p>
<h1>Getting started</h1>
<p><strong></strong>&nbsp;<strong>Note: There are TWO Common Control libraries out there. You must figure out which one you need.</strong></p>
<blockquote><p>1. The older VB 5 Common Controls (COMTL32.OCX)</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp; and</p>
</blockquote>
<blockquote><p>2. The newer VB6 Common Controls (MSCOMCTL.OCX):</p>
<p>Regarding the older COMCTL32.OCX (VB5 era) versus the newer MSCOMCTL.OCX from VB6 era, one user on StackOverflow had this to say:</p>
</blockquote>
<blockquote><p>“The earlier Common Controls 5.0 (comctl32.ocx) has better compatibility with XP/Vista than the Common Controls 6.0 (mscomctl.ocx). I suggest using it instead” – rpetrich Aug 13 &#8217;09 at 0:44</p>
</blockquote>
<p><strong>Step 0: Before installing either of the Microsoft Common Controls you must have the following versions of the Automation system files on your system: <br /></strong></p>
<blockquote><p>OLEAUT32.DLL&nbsp;&nbsp;&nbsp;&nbsp; 2.20.4054 or greater<br />COMCAT.DLL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4.71 or greater<br />OLEPRO32.DLL&nbsp;&nbsp;&nbsp; 5.00.4055 or greater<br />ASYCFILT.DLL&nbsp;&nbsp;&nbsp; 2.20.4056 or greater<br />STDOLE2.TLB&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2.20.4054 or greater</p>
</blockquote>
<blockquote><p>You may or may not have these files on your system already. I really don’t know how these files generally get installed on a new system; if they are part of the main OS install, or if they get installed with other common Microsoft suites. My guess is that if you have Office 97, Visual Basic 5.0, Visual Studio, Internet Explorer, or Visual C++, etc, you should already have these Automation system files. </p>
<p>Either way, if you do not have these files on your system, you must first download and install them as documented in the following Microsoft Knowledge Base article: </p>
<p>Download here: <a href="http://support.microsoft.com/kb/180071/EN-US">http://support.microsoft.com/kb/180071/EN-US</a><br />(Default download filename will be named Msvbvm50.exe)</p>
</blockquote>
<p><strong>1. For the older VB 5 Common Controls (COMTL32.OCX):</strong></p>
<blockquote><p>Follow Step 0 above.<br />&nbsp;&nbsp;&nbsp; <br />Once you are sure you have the correct Automation system files on your computer, you can install COMCTL32.OCX by executing COMCTL32.EXE. This will install the following files: </p>
<p>COMCTL32.OCX&nbsp;&nbsp;&nbsp; 5.00.3828&nbsp;&nbsp;&nbsp; Updated ActiveX control<br />COMCTL32.DEP&nbsp;&nbsp;&nbsp; 5.00.3828&nbsp;&nbsp;&nbsp; Dependency info for Visual Basic 5.0 Setup Wizard <br />MSSTKPRP.DL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5.00.3714&nbsp;&nbsp;&nbsp; Design-Time Stock Property Pages</p>
<p>The setup program does not install a *<strong>license*</strong> to use COMCTL32.OCX for development. You must already have a license installed on your system by one of the products listed in the applies to section above in order to COMCTL32.OCX for development.</p>
<p>Download the COMCTL32 install package here:<br clear="all"><a href="http://download.microsoft.com/download/win95upg/update/1/w97/en-us/comctlzp.exe">http://download.microsoft.com/download/win95upg/update/1/w97/en-us/comctlzp.exe</a><br /><br clear="all">The default download filename will be comctlzp.exe. <br />Note: You must then unzip this exe to get the actual installable exe file.<br />&nbsp;&nbsp; </p>
</blockquote>
<p><strong>2. For the newer VB6 Common Controls (MSCOMCTL.OCX):</strong></p>
<blockquote><p>Follow Step 0 above.</p>
<p>As far I could determine, there is no official download link from Microsoft for MSCOMCTL.OCX. You can find tons of free download links all over the internet, but those sites always scare me as they might contain viruses or malware.</p>
<p>I learned a lot about the issues around getting the files downloaded and installed here:<br /><a href="http://stackoverflow.com/questions/1226319/whats-the-proper-source-for-windows-common-controls-6-0-component-mscomctl-ocx">http://stackoverflow.com/questions/1226319/whats-the-proper-source-for-windows-common-controls-6-0-component-mscomctl-ocx</a><br />&nbsp;&nbsp;&nbsp; <br />So, based on the info on the above post, here is what I did:</p>
</blockquote>
<blockquote><ol>
<li>Locate this file (MSCOMCTL.OCX) on some other XP machine that already has the file. Path is C:\Windows\System 32.
<li>Copy this file to the same path C:\WINDOWS\SYSTEM32 on the new machine.
<li>Register the file by running &#8216;regsvr32 C:\WINDOWS\SYSTEM32\MSCOMCTL.OCX&#8217; at the command window. (Admin right are probably required.)
<li>Reboot.</li>
</ol>
<p>&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; </p>
</blockquote>
<h2>If you have any corrections or additional instructions to share, please add a comment so we can get this reference as correct as possible.</h2>
]]></content:encoded>
			<wfw:commentRss>http://mattslay.com/installing-comctl32-ocx-and-mscomctl-ocx-on-a-windows-xp-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Machinist wanted Birmingham, AL</title>
		<link>http://mattslay.com/machinist-wanted-birmingham-al/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=machinist-wanted-birmingham-al</link>
		<comments>http://mattslay.com/machinist-wanted-birmingham-al/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 16:14:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Manufacturing]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mattslay.com/?p=428</guid>
		<description><![CDATA[Jordan Machine Company, Birmingham, AL is hiring machinists and skilled shop workers. Even those who need training for a machining career will be considered. This recent job posting will give you a general idea of the skills we seek when hiring for our shop: MACHINISTS &#8230; <a class="more-link" href="http://mattslay.com/machinist-wanted-birmingham-al/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Jordan Machine Company, Birmingham, AL is hiring machinists and skilled shop workers. Even those who need training for a machining career will be considered.</p>
<p>This recent job posting will give you a general idea of the skills we seek when hiring for our shop:</p>
<blockquote><p><strong><em>MACHINISTS needed &#8211; Major job shop in Birmingham area needs machinists and skilled shop workers. Will train if you have suitable experience in related manufacturing workflow. Desired skills include milling, lathe turning, blueprint reading, forklift experience, overhaed crane experience, mechanical maintenance, assembly experience, millwright skills. Call 205-849-5050, or fax resume to 205-849-5075.</em></strong></p>
<p><strong>Visit us on the web at <a href="http://www.JordanMachine.com">http://www.JordanMachine.com</a></strong></p>
<p>&nbsp;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://mattslay.com/machinist-wanted-birmingham-al/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I love me some Instapaper, but want better searching&#8230;</title>
		<link>http://mattslay.com/i-love-me-some-instapaper-but-want-better-searching/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=i-love-me-some-instapaper-but-want-better-searching</link>
		<comments>http://mattslay.com/i-love-me-some-instapaper-but-want-better-searching/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 05:02:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mattslay.com/?p=420</guid>
		<description><![CDATA[I really like being able to archive links for later review, and Instaper is a new toy I’ve found to handle that nicely. I really feel like there’s a lot of cool stuff that I can accomplish with it in &#8230; <a class="more-link" href="http://mattslay.com/i-love-me-some-instapaper-but-want-better-searching/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I really like being able to archive links for later review, and Instaper is a new toy I’ve found to handle that nicely. I really feel like there’s a lot of cool stuff that I can accomplish with it in the future.</p>
<p>Tonight (Feb 9, 2012), I joined Instapaper as a paying customer so I could use the Search capabilities (searching your links on the web site is only available to those customer who sign up for the $1 per month subscriber account). But, after signing up and finally getting to use Search, it does not appear to be searching the way I was expecting&#8230; In fact, I couldn’t get the Search feature to return anything. Evar!</p>
<p>“<strong>No results</strong>.” it said… (which is not true, in that I have links with HTML5 in the title, url, summary, etc.)</p>
<p><a href="http://mattslay.com/wp-content/uploads/2012/02/image2.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="image" src="http://mattslay.com/wp-content/uploads/2012/02/image_thumb2.png" alt="image" width="557" height="357" border="0" /></a></p>
<p>&#8220;No Results&#8221; ?!?!?!  What the heck is going on here? I know there are some links in my account that have this text in the URL, Title, and/or Description. Why won&#8217;t the Instapaper web site find any results?</p>
<p>I want to be able to do a search on the URL, Title, and Summary of the bookmarks, (not the actual contents of the link pages, which I don’t expect it to search anyway). I think most of us usually remember some keyword or tags as we save the links, so I expected to be able to search my links on the Instapaper site and search for “CSS&#8217;” or “HTML” or “GIT” or something like that to find links that I&#8217;ve stored.</p>
<p>So, I’m going to try to do something about this…. I&#8217;ve applied for an oAuth application token to see if I can build a better searching and filtering interface than the one they have now.</p>
<p>This will be a good exercise to sharpen my Ruby on Rails skills.</p>
<p>Boy, I sure hope they approve me…</p>
<p><strong>Update 2012-02-10:</strong></p>
<p>Instapaper sent me my app tokens later on in the same day. (Man, that was fast). And I found a gem on github (<a href="https://github.com/spagalloco/instapaper">https://github.com/spagalloco/instapaper</a>) that provides a nice wrapper around the Instapaper API, and I&#8217;ve already banged out a few lines of Ruby code which use the gem to connect to my Instapper account and post a few dummy links. Now I can move on the real work of pulling down all the bookmarks from an account, and providing a search/filter interface for searching through them for keywords or tags in the URL, Title, or Description.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattslay.com/i-love-me-some-instapaper-but-want-better-searching/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>GoFish 4 Original Screen Layout</title>
		<link>http://mattslay.com/gofish-4-original-screen-layout/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=gofish-4-original-screen-layout</link>
		<comments>http://mattslay.com/gofish-4-original-screen-layout/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 04:41:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mattslay.com/?p=415</guid>
		<description><![CDATA[I thought it would be fun to record this old screenshot of GoFish 4 as it appeared at the time of it’s original release on VFPx in April 2011. And, here is a screenshot of 4.2.059:]]></description>
			<content:encoded><![CDATA[<p>I thought it would be fun to record this old screenshot of GoFish 4 as it appeared at the time of it’s original release on VFPx in April 2011.</p>
<p><a href="http://mattslay.com/wp-content/uploads/2012/02/image.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://mattslay.com/wp-content/uploads/2012/02/image_thumb.png" width="883" height="846"></a></p>
<p>And, here is a screenshot of 4.2.059:</p>
<p><a href="http://mattslay.com/wp-content/uploads/2012/02/image1.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://mattslay.com/wp-content/uploads/2012/02/image_thumb1.png" width="922" height="819"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mattslay.com/gofish-4-original-screen-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Number Tease Brain Game</title>
		<link>http://mattslay.com/number-tease-brain-game/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=number-tease-brain-game</link>
		<comments>http://mattslay.com/number-tease-brain-game/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 04:31:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mattslay.com/?p=403</guid>
		<description><![CDATA[In this modern day of iEverything, I wanted to go old-school on you with this fun and simple brain teasing number challenge. So turn off the T.V., print this page, grab a pencil and let&#8217;s see what you can do &#8230; <a class="more-link" href="http://mattslay.com/number-tease-brain-game/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In this modern day of iEverything, I wanted to go old-school on you with this fun and simple brain teasing number challenge. So turn off the T.V., print this page, grab a pencil and let&#8217;s see what you can do here. I&#8217;ve had this in a simple TXT file for over 20 years. This beauty has made its way from one hard drive to another as I&#8217;ve upgraded computers over those years; it&#8217;s too good to let go. I wish I could remember where I got this.</p>
<p>If you can&#8217;t get them all, get in touch with me and I&#8217;ll help you out. And, if you can add any to the list, please send them to me and I&#8217;ll update the post.</p>
<p><strong>INSTRUCTIONS:</strong><br />
Each question below contains the initials of a word that will make it correct.</p>
<p><strong>EXAMPLE:</strong> 16 = O. in a P. Ounces in a Pound</p>
<p>1.    26 = L. of the A. ______________________________________________________</p>
<p>2.    7 = W. of the A.W. ____________________________________________________</p>
<p>3.    1001 = A.N. ___________________________________________________________</p>
<p>4.    12 = S. of the Z. ______________________________________________________</p>
<p>5.    54 = C. in a D. (with the J.) __________________________________________</p>
<p>6.    9 = P. in the S.S. _____________________________________________________</p>
<p>7.    88 = P.K. ______________________________________________________________</p>
<p>8.    13 = S. on the A. F. ___________________________________________________</p>
<p>9.    32 = D. F. at which W. F. ______________________________________________</p>
<p>10.    18 = H. on a G.C. ______________________________________________________</p>
<p>11.    90 = D. in a R. A. _____________________________________________________</p>
<p>12.    200 = D. for P. G. in M. _______________________________________________</p>
<p>13.    8 = S. on a S. S. ______________________________________________________</p>
<p>14.    3 = B. M. ( S. H. T. R.) _______________________________________________</p>
<p>15.    4 = Q. in a G. _________________________________________________________</p>
<p>16.    24 = H. in a D. ________________________________________________________</p>
<p>17.    1 = W. on a U. _________________________________________________________</p>
<p>18.    5 = D. in a Z. C. ______________________________________________________</p>
<p>19.    57 = H. V. _____________________________________________________________</p>
<p>20.    11 = P. on a F. T. _____________________________________________________</p>
<p>21.    1000 = W. that a P. is W. ______________________________________________</p>
<p>22.    29 = D. in F. in a L. Y. _______________________________________________</p>
<p>23.    64 = S. on a C. ________________________________________________________</p>
<p>24.    40 = D. and N. of the G. F. ____________________________________________</p>
<p>Good luck.</p>
<p>Want more brain fun? Check out <a href="http://www.brainbashers.com/games.asp">http://www.brainbashers.com/games.asp</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mattslay.com/number-tease-brain-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hardness Conversion Chart</title>
		<link>http://mattslay.com/hardness-conversion-chart/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hardness-conversion-chart</link>
		<comments>http://mattslay.com/hardness-conversion-chart/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 22:11:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Manufacturing]]></category>

		<guid isPermaLink="false">http://mattslay.com/?p=400</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://mattslay.com/wp-content/uploads/2012/01/image.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://mattslay.com/wp-content/uploads/2012/01/image_thumb.png" width="681" height="666"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mattslay.com/hardness-conversion-chart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

