<?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>Justin Merrill &#124; Spin not included</title>
	<atom:link href="http://www.justinmerrill.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.justinmerrill.com</link>
	<description>MBA, BSEE/T, Web Dev, GIS, Research, IT Consulting</description>
	<lastBuildDate>Mon, 23 May 2011 04:00:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>How to add Perl support for Adobe Dreamweaver CS5 and the .cgi extension with color coding and syntax highlighting</title>
		<link>http://www.justinmerrill.com/add-perl-dreamweaver/052011/</link>
		<comments>http://www.justinmerrill.com/add-perl-dreamweaver/052011/#comments</comments>
		<pubDate>Mon, 23 May 2011 02:15:02 +0000</pubDate>
		<dc:creator>kanidrive</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.justinmerrill.com/?p=44</guid>
		<description><![CDATA[I still run into .cgi files every now and then. In some instances, I actually prefer the simplicity of a .cgi script to other options. Since I use DreamWeaver extensively, what I needed was a way to open .cgi scripts &#8230; <a href="http://www.justinmerrill.com/add-perl-dreamweaver/052011/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I still run into .cgi files every now and then. In some instances, I actually prefer the simplicity of a .cgi script to other options. Since I use DreamWeaver extensively, what I needed was a way to open .cgi scripts in Dreamweaver. And I wanted to do it in a way that would support DreamWeaver&#8217;s color coding and syntax highlighting as well. I also wanted to be able to open files with a .cgi extension by double-clicking on the file rather than launching Dreamweaver, searching for the file, etc.</p>
<p>First, a little background for the youngsters: Before PHP and ASP became popular, Web developers used the Common Gateway Interface (CGI) to process forms and such. A URL was used to point to a CGI script on the server (usually in the cgi-bin folder) and the form could be processed. The CGI script could be built in any of several languages, the most common being Perl. And a great way to simplify everything was to name all CGI scripts with the .cgi extension. In this way you could configure your webserver to treat all files with a .cgi extension as CGI scripts.</p>
<p>The first step was to find out how DreamWeaver decides which file extensions are supported. I scoured the internet for information on how to add file extensions to the DreamWeaver program. After several hours of searching I finally came up with a way to achieve our goal!</p>
<p>You will need to edit two files to add the .cgi extension with the full capabilities of Dreamweaver CS3, 4, 5, and beyond. These two files are an .xml file and a .txt file. Remember that Windows hides known file extensions so you may have to change your settings to make sure you grab the right files. I did not try this on a Mac but I assume the files are named the same. There are lines in the files that allow for enabling these features on a Macintosh, so I think this will work for Mac, you will just have to find the files in the directory they install in the Mac OS.</p>
<p>And here are the steps to make it happen:</p>
<p>    Get the official Dreamweaver Extension for Perl Support (by ChrisBanks) from:<br />
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&#038;extid=1021086 Download, install, then restart Dreamweaver. You need to restart Dreamweaver anytime a new extension is added in order for it to work.</p>
<p>    Open Windows Explorer to the following directory:<br />
    C:\Users\{YOUR_USER_NAME_GOES_HERE}\AppData\Roaming\Adobe\Dreamweaver CS5\en_US\Configuration\DocumentTypes\<br />
    OR from the &#8220;Run&#8230;&#8221; prompt:<br />
    C:\Users\{YOUR_USER_NAME}\AppData\Roaming\Adobe\Dreamweaver CS5\en_US\Configuration\DocumentTypes\PerlDocumentType.xml )</p>
<p>    Find the file name PerlDocumentType.xml, and open it with a text editor.</p>
<p>NOTE: If you properly installed the Perl Support Extension above, you will see the file. If not, search for it by the name or try to reinstall the Perl extension.</p>
<p>    In the 3rd line of the file find the following:<br />
    <documenttype id="Perl" internaltype="Text" winfileextension="pl,pm" macfileextension="pl,pm" file="Default.pl" writebyteordermark="false"><br />
    And change it to:<br />
    <documenttype id="Perl" internaltype="Text" winfileextension="pl,pm,cgi" macfileextension="pl,pm,cgi" file="Default.pl" writebyteordermark="false"></p>
<p>    Finally, use the Windows Explorer and go to: C:\Users\{YOUR_USER_NAME}\AppData\Roaming\Adobe\Dreamweaver CS5\en_US\Configuration<br />
    To use the Run&#8230; prompt:<br />
    C:\Users\{YOUR_USER_NAME}\AppData\Roaming\Adobe\Dreamweaver CS5\en_US\Configuration\Extensions.txt</p>
<p>    Find the file with the name Extensions.txt there.</p>
<p>    If you properly install the DW Extension for Perl Support, the last line of the file will be:<br />
    PL,PM:Perl files<br />
    change it to:<br />
    PL,PM,CGI:Perl files</p>
<p>Save the file. Close Dreamweaver, and re-open it. Try it out!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.justinmerrill.com/add-perl-dreamweaver/052011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to set up your Windows 7 / Vista PC with a static IP address</title>
		<link>http://www.justinmerrill.com/windows-static-i/052011/</link>
		<comments>http://www.justinmerrill.com/windows-static-i/052011/#comments</comments>
		<pubDate>Mon, 23 May 2011 01:54:31 +0000</pubDate>
		<dc:creator>kanidrive</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.justinmerrill.com/?p=42</guid>
		<description><![CDATA[Have you ever set up your wireless router at home or in the office to find that you little pop-up bubble in the bottom right-hand corner of Windows read &#8220;IP Conflict &#8211; One of more computers on the network have &#8230; <a href="http://www.justinmerrill.com/windows-static-i/052011/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Have you ever set up your wireless router at home or in the office to find that you little pop-up bubble in the bottom right-hand corner of Windows read &#8220;IP Conflict &#8211; One of more computers on the network have been assigned the following IP address&#8221;? Well then&#8230; you have yourself an IP address conflict! So&#8230; what do you do to fix it? Sure, you could turn off one of the computers with the conflict so the other could use it&#8230; but that might suck for the person with a computer and a blank screen&#8230; chances are&#8230; that person is you&#8230; and that&#8217;s why you are here on EE. You need a fix for your problem. I&#8217;m here to help.</p>
<p>Every computer on the network needs a unique IP address to be identified by the other computers on the network. What happens sometimes, is Windows attempts to procure an IP address that is already in use on the network. More often than not, it usually starts using IP addresses that start with 192.168.11.x or 192.168.1.x where the &#8216;x&#8217; is a number between 2 and 100 that usually represents the number of computers using the router, plus one. If you have 5 computers on the same router, then your IP addresses could be 192.168.11.2, 3, 4, 5, or 6. You can set your IP addresses up as &#8220;static IP addresses&#8221; with this tutorial. You could set it to something like 192.168.11.9 so that when your cousin comes over to the house with his laptop, s/he doesn&#8217;t take up an IP address that is typically used by one of your computers in sleep or hibernate mode. Sound like something similar to what you have experienced? Well then, let me try and give you a hand.</p>
<p>DISCLAIMER: I apologize for being very detailed in advance. I am not sure of your level of skill and I write all my answers and suggestions in such a way an 8 year old can follow. I mean no insult or disrespect. I&#8217;m going to explain a little about what is happening with your router and network connections so that you can troubleshoot and tweak it to work right for you. No two networks are EVER the exact same, which makes it hard to explain exactly how to set one up without being the one clicking the mouse and typing on the keyboard.</p>
<p>WHAT YOU NEED FIRST!!!!!<br />
Aside from the obvious (computer, keyboard, mouse and internet connection), you need to know your Internet Service Providers DNS Server IP addresses (there should be AT LEAST TWO!!!) before you start!!!! You will also benefit from having the instructions or a manual for your router or switch. If you have a switch instead of a router, then the terms can be interchangeable for this particular explanation.</p>
<p>WHAT THE ROUTER IS DOING:<br />
The IP address you are assigned from your Internet Service Provider (ISP) is NOT the same as your INTERNAL network IP. The router is taking your IP Address that connects you to the REST OF THE WORLD and dividing up the internet traffic to your INTERNAL NETWORK so ALL your computers in your home or office can connect to the World Wide Web (WWW). I will assume that you are using IPv4 since IPv6 Addresses look like this: 3ffe:1900:4545:3:200:f8ff:fe21:67cf<br />
(About 99% of the USA is still using IPv4, so don&#8217;t sweat it.)</p>
<p>Chances are, you have a standard Internal IP address of something like 192.168.11.1 &#8211; MOST routers like Linksys and Netgear use 192.168.x.1 for the Gateway IP address., where x typically equals 0, 1, 2, 11, or 100. Every brand of router seems to choose a different number as the DEFAULT setting. If you have access to your router configuration page, you can ALMOST ALWAYS change the default Gateway IP address of the network.</p>
<p>FINDING YOUR ROUTER CONFIGURATION INFO:<br />
Whatever the gateway IP address is, you should be able to type that directly into the Address Bar of your web browser. I RECOMMEND THAT YOU ALWAYS USE INTERNET EXPLORER because the manufacturers of the routers almost ALWAYS expect that 99% of consumers will be using Internet Explorer. 90% of routers have TERRIBLE configuration software that is rather glitchy when you make changes to it. Often, you may need to reboot your computer, or rest your modem when you make a major change to the configuration. For this reason, I suggest you keep things as close to the factory defaults as possible to avoid connectivity issues. So to recap&#8230; if you have a router with an IP Address default of 192.168.11.1 then you will type ONLY 192.168.11.1 into the ADDRESS BAR of Internet Explorer. You SHOULD be prompted for a user name and a password if you have done this correctly.  Some routers will require you to be plugged in to a specific port number on the router, or will not grant you access to the configuration. If this is the case, and you cannot do anything in your power to connect to the router, then skip this point. While it&#8217;s easier if you DO have access to your router configuration page, it is not absolutely necessary.</p>
<p>WHAT TO DO IF YOU DON&#8217;T HAVE ACCESS TO YOUR ROUTER CONFIGURATION:<br />
Find the instruction manual for your EXACT router and find out what the default IP address of the router is. The Gateway IP address of basic-to-moderately complex networks is nearly always the same as the IP of the router device itself. You don&#8217;t NEED to access your router configuration page to make your Windows 7 computer have a static IP address, but it certainly makes finding out what IP Addresses you should use on your network MUCH more obvious and easy.</p>
<p>FINDING YOUR INTERNAL IP ADDRESS WITH WINDOWS 7:<br />
You can figure out your internal IP address in Windows 7 by going to the START button and typing in &#8220;IP ADDRESS&#8221; (without the quotes) in the bottom right hand corner where the textbox is. The textbox will read &#8220;search programs and files&#8221;, type &#8220;ip address&#8221; where you see that.</p>
<p> <img alt="Windows XP Start menu one" src="http://filedb.experts-exchange.com/incoming/2011/02_w07/art408677/start-menu-one.jpg" title="Windows XP Start menu one" class="alignnone" width="409" height="285" /></p>
<p>You should now see &#8220;View Network Connections&#8221;. Click that.</p>
<p><img alt="Windows XP Start" src="http://filedb.experts-exchange.com/incoming/2011/02_w07/art408678/start-menu-two.jpg" title="Windows XP Start" class="alignnone" width="409" height="673" /></p>
<p>Now, you will see your Local Area Connection. If there are multiple devices listed, YOU MUST FIGURE OUT WHICH ONE OF THESE DEVICES IS THE ONE THAT IS CONNECTED TO THE ROUTER. If you are connected via a wireless connection, then you should look for a wireless device. If you are connected to the router directly with a network cable, then you should look for a device that does NOT have any indication that it is wireless. Windows 7 provides rather adequate icons to differentiate these types of connections.</p>
<p><img alt="configure windows xp for wireless network" src="http://filedb.experts-exchange.com/incoming/2011/02_w07/art408679/network-connections-one.jpg" title="Windows XP networking" class="alignnone" width="514" height="213" /></p>
<p>When you find the device that you are using to connect to the router with, right click on the icon with your mouse pointer, and select &#8220;Status&#8221;. It&#8217;s usually the second option from the top on the list when you right click the icon.</p>
<p><img alt="wireless router setup for windows xp" src="http://filedb.experts-exchange.com/incoming/2011/02_w07/art408680/network-connections-two.jpg" title="Windows XP Networking configuration for wireless" class="alignnone" width="522" height="424" /></p>
<p>Next, Click on the &#8220;Details&#8230;&#8221; button in the middle left portion of the window, usually under &#8220;Speed:&#8221;. This will give you a breakdown of all the connection details that you need for your computer.</p>
<p><img alt="Configure a Wireless Networking set up with wireless windows xp" src="http://filedb.experts-exchange.com/incoming/2011/02_w07/art408681/network-connections-three.jpg" title="Xp Wireless networking configuration with a router" class="alignnone" width="550" height="393" />	</p>
<p>The most important details to figuring out a good static IP address for your machine is IPv4 Address, which is the IP address CURRENTLY configured on your computer, and IPv4 Default Gateway which is the IP address of the router you are using. My router uses the Default Gateway IP of 192.168.11.1 so I use 192.168.11.2 for my computer that I am connecting to the router with a networking cable (Cat5/Cat5e/Cat6 cable wire with RJ-45 connectors that look like big fat phone line connectors).</p>
<p>HOW TO CHANGE YOUR INTERNAL IP ADDRESS FOR YOUR PC:<br />
You can type in &#8220;IP ADDRESS&#8221; (without the quotes) again, click &#8220;View Network Connections&#8221; again, and find your Local Area Connection device icon again, and right click it again, but this time go to &#8220;Properties&#8221;. It&#8217;s usually at the bottom of the list after you right click on the Local Area Connection device icon.</p>
<p><img alt="Router configuration with Windows XP Wireless configuration" src="http://filedb.experts-exchange.com/incoming/2011/02_w07/art408682/network-connections-four.jpg" title="Windows XP Wireless Networking Configuration" class="alignnone" width="550" height="422" />	 	</p>
<p>You should now see a list that starts with &#8220;This connection uses the following items:&#8221; and you will see options with checkboxes on the left side. DO NOT UNCHECK ANY OF THESE ITEMS UNLESS YOU KNOW EXACTLY WHAT YOU ARE DOING!!!!!!!!!!!!!!!!!!!!</p>
<p>Find the item &#8220;Internet Protocol Version 4 (TCP/IPv4)</p>
<p>You can either double-click on that item or single click the item to highlight it and choose &#8220;Properties&#8221; on the right hand side underneath the list of items.</p>
<p>Where the radio button options read:<br />
&#8220;Obtain an IP address automatically&#8221;<br />
OR<br />
&#8220;Use the following IP address&#8221;<br />
You will chose &#8220;Use the following IP address&#8221;</p>
<p>Enter the IP address that is only one digit different from the Default Gateway Address as mentioned above. For example if your router and Gateway IP Address is 192.168.11.1 then try to use 192.168.11.2 or 3 or 4 or 5 or 6&#8230; you get the idea?</p>
<p>In the Subnet mask section, this should default to 255.255.255.0 &#8211; if that is the case, then leave it be. there is about a 98% chance that this will be correct for your network. If you are messing around with the subnet mask settings in your router, then you probably aren&#8217;t in need of reading this rather long-winded explanation of how to set your PC to a static IP address&#8230; you probably know what your doing. This explanation is for those who DO NOT.</p>
<p>The Default gateway portion should be set to&#8230;. you guessed it&#8230; 192.168.x.1 where the x represents what ever your brand of router uses as the default gateway IP that you found earlier.</p>
<p>VERY IMPORTANT INFORMATION AND YOUR DNS SERVER SETTINGS!!!!<br />
You will need to set the DNS server address manually when setting an IP address manually. You will need to contact your ISP (Internet Service Provider &#8211; Cable Internet, DSL, FiOS, etc.) for the DNS Server IP addresses (at LEAST TWO DNS SERVER IP ADDRESSES SHOULD BE ENTERED WHEN CONFIGURING AN IP ADDRESS MANUALLY!). Fill in both fields: Preferred DNS Server IP AND Alternate DNS Server IP.</p>
<p>IT IS VERY IMPORTANT YOU GET THE DNS SERVER IP ADDRESSES EXACTLY RIGHT!</p>
<p>When you are finished, look over everything one last time to make sure its all entered correctly&#8230; and click OK. IF IT IS NOT ENTERED CORRECTLY, YOU WILL NOT HAVE INTERNET ACCESS!!!!</p>
<p>AGAIN, you MUST not have any other computer on your network using the same IP address that you are configuring as the Static IP address of your PC. If 2 computers have the same IP address, they will both compete for the same IP address and at least one if not BOTH computers will NOT have access to the internet or the internal network!!!!!!! I like to configure my static IP addresses in a higher range. Such as 192.168.11.10, 11, 12, 13, etc. so that way the router will not try to give an IP address out that is manually configured on the computer.</p>
<p>I hope this helps!</p>
<p><img alt="Networking with Windows XP using a router wirelessly" src="http://filedb.experts-exchange.com/incoming/2011/02_w07/art408684/network-connections-five.jpg" title="Networking Router Windows XP" class="alignnone" width="515" height="552" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.justinmerrill.com/windows-static-i/052011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connecting to the Internet using Windows XP with a Wireless Router</title>
		<link>http://www.justinmerrill.com/connecting-to-the-internet-using-windows-xp-with-a-wireless-router/052011/</link>
		<comments>http://www.justinmerrill.com/connecting-to-the-internet-using-windows-xp-with-a-wireless-router/052011/#comments</comments>
		<pubDate>Mon, 23 May 2011 01:23:32 +0000</pubDate>
		<dc:creator>kanidrive</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.justinmerrill.com/?p=40</guid>
		<description><![CDATA[There are 2 things you must have in order to connect to the internet behind a router, The &#8220;Gateway IP&#8221; of the router, which is usually something like 192.168.xxx.1, I&#8217;ve seen routers with default values of: 192.168.0.1, 192.168.1.1, 192.168.11.1, 192.168.100.1, &#8230; <a href="http://www.justinmerrill.com/connecting-to-the-internet-using-windows-xp-with-a-wireless-router/052011/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There are 2 things you must have in order to connect to the internet behind a router, The &#8220;Gateway IP&#8221; of the router, which is usually something like 192.168.xxx.1, I&#8217;ve seen routers with default values of: 192.168.0.1,<br />
192.168.1.1,<br />
192.168.11.1,<br />
192.168.100.1, and others.</p>
<p>While it is POSSIBLE to use other combinations with some routers, (i.e. 127.0.0.1, or 192.255.255.1) I highly recommend against it unless you are hiding military secrets from the President of the Universe (please see: Hitchhikers Guide to the Galaxy) and want to spend extra time researching complex arrays of network submasking and network security. using 192.168.XXX.1 will save you a lot of time, and make your network more available to more users, much much more easily.</p>
<p>Don&#8217;t be intimidated by the numbers, all its doing is using a certain &#8220;block&#8221; of IP addresses. I like to use 192.168.11.1, (I&#8217;m a fan of BUFFALO TECHNOLOGIES wireless products) so since I use that &#8220;11&#8243; in the 3rd place from the left as my Gateway IP, I will use:<br />
192.168.11.2 as my &#8220;Static IP Address Assignment&#8221; in my Network Properties.</p>
<p>So in Summary,</p>
<p>1) Log into your routers configuration page via your web browser. In the address bar, type in http://192.168.11.1 (or whatever your Gateway IP Address is, usually its written on the box the router came in, or in the documentation for the router itself.</p>
<p>NOTE: Many times, a router (even with wireless capabilities) will require a &#8220;wired&#8221; or &#8220;hardline&#8221; connection with a Cat5 cable. Usually your Internet Service provider will supply you with you, or one will come with your router. Your computer must have a Network Adapter installed to plug the one end of the cable into, and the other end gets plugged into a port of the router. Most wireless routers have 4 ports for connecting manually to the router. Most routers that require a wired connection for accessing the router configuration need to be plugged into the port labeled &#8220;port 1&#8243;.<br />
(I suggest using Internet Explorer for configuring your router[s] because its usually the web browser the developers test router configurations pages with.)</p>
<p>2) Once you are logged into the Router, make sure DHCP Server is turned ON if you want to be able to automatically connect to the internet through your router.</p>
<p>NOTE: If you are using a wireless client (i.e. Laptop with a built-in wireless network adapter, or a Desktop PC with a USB Wireless Network Adapter), be sure the router has the wireless function capability!!! (i.e. make sure your router IS wireless capable! Many of the older Linksys models that are NOT wireless capable look nearly identical to the wireless capable models. Check for antennas, if the router has antennas, and an LED on the display the says &#8220;Wireless&#8221;, it&#8217;s probably wireless!)<br />
Be sure the wireless &#8220;broadcast&#8221; setting is ON. This setting is sometimes called Wireless Broadcast, Wireless Transmitter, Wireless Transmission, Wireless Radio, or similar.</p>
<p>3) You should see a pop-up from the right bottom corner of your screen with a bubble reading something to the effect of &#8220;Windows has found a wireless network in the area, click here to connect&#8221;, but if you don&#8217;t click the START button, and find the &#8220;Network&#8221; icon, right-click, and go to Properties. If you scan around in these menus (WITHOUT CHANGING ANYTHING YOU DON&#8217;T UNDERSTAND!), you will find many settings and status updates of what your network is, or is capable of doing.<br />
NOTE: I suggest using the Windows Zero Wireless Configuration Utility for connecting to the router (and internet) via a wireless network adapter. While Microsoft does not know off all the spiffy features that Linksys/Cisco puts in the &#8220;Wireless Network Adapter Software&#8221;, chances are, you either want your internet always connected, or connected at your command. Windows has a built in feature that handles that just fine (for the most part&#8230;)</p>
<p>I&#8217;m interested in your feedback!!! Let me know you you have any questions or comments and I will be glad to help.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.justinmerrill.com/connecting-to-the-internet-using-windows-xp-with-a-wireless-router/052011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Justin Merrill For Hire</title>
		<link>http://www.justinmerrill.com/justin-merrill-for-hire/052011/</link>
		<comments>http://www.justinmerrill.com/justin-merrill-for-hire/052011/#comments</comments>
		<pubDate>Thu, 19 May 2011 01:39:03 +0000</pubDate>
		<dc:creator>kanidrive</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.justinmerrill.com/?p=37</guid>
		<description><![CDATA[Thanks for visiting, my name is Justin Merrill and this is my personal web site. I&#8217;m using this domain (www.justinmerrill.com) as both a personal blog, and a springboard to test new features and configurations for current and future web development &#8230; <a href="http://www.justinmerrill.com/justin-merrill-for-hire/052011/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Thanks for visiting, my name is <a class="linkedin-profileinsider-popup" href="http://www.linkedin.com/in/justinmerrill">Justin Merrill</a> and this is my personal web site. I&#8217;m using this domain (www.justinmerrill.com) as both a personal blog, and a springboard to test new features and configurations for current and future web development projects. My goal is eventual vanity where I create a tricked-out bio page for myself that shows of all the skills I have learned over the years. Plus, I think having an email address with my name is kind of a nice touch for a resume and a business card.</p>
<p><a title="Justin Merrill's Facebook" href="http://facebook.com/kanidrive" target="_blank">Facebook me</a>, <a title="Justin Merrill's Twitter" href="http://twitter.com/kanidrive" target="_blank">Twitter me</a>, <a title="Justin Merrill's LinkedIn" href="http://www.linkedin.com/in/justinmerrill" target="_blank">LinkedIn me</a>, or you can view my <a title="Justin Merrill's Resume" href="http://www.justinmerrill.com/JustinMerrill_05052011_resume_linkedin.pdf" target="_blank">resume</a> online. I administer 3 web servers, 2 are remote and use Apache 2+ on Linux, and an IIS Server in house Windows Server 2008 RC2. Each have SMTP, FTP, HTTP, SSL, and DNS capabilities that utilize Perl, PHP, Ruby, and ASP script with MSSQL and MySQL databases servers. I have all of this technology linked directly to BlackBerry via AIM, Yahoo, Hotmail, Gmail, Facebook, Twitter, and LinkedIn Apps with 3 additional custom email addresses. All this, and I&#8217;ve never worked for as a web developer or administrator for an organization larger than 20 people. So if I have never worked for a large organization, why should I use all this technology? It amazes me how busy Americans can be without ever setting foot inside an office building. I take some of the responsibility for that. I have set up methods for small organizations to communicate, access and exchange data, and market themselves as being organized, technologically current, and highly efficient to customers, clients, and potential employees and other stakeholders. I am currently looking for a position with a stable and ethical organization that is willing to give me an opportunity to become an asset to their organization. </p>
<p><a class="linkedin-profileinsider-popup" href="http://www.linkedin.com/in/justinmerrill"> Check out Justin Merrill and his resume on LinkedIn.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.justinmerrill.com/justin-merrill-for-hire/052011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Employment Blues</title>
		<link>http://www.justinmerrill.com/the-employment-blues/052011/</link>
		<comments>http://www.justinmerrill.com/the-employment-blues/052011/#comments</comments>
		<pubDate>Thu, 19 May 2011 01:37:41 +0000</pubDate>
		<dc:creator>kanidrive</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.justinmerrill.com/?p=35</guid>
		<description><![CDATA[I&#8217;m sure I&#8217;m just one in thousands of &#8220;geeks&#8221; looking for work in the Tampa Bay area, and one in a million looking for a good position across the United States, but I have to admit my discouragement. I spent &#8230; <a href="http://www.justinmerrill.com/the-employment-blues/052011/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure I&#8217;m just one in thousands of &#8220;geeks&#8221; looking for work in the Tampa Bay area, and one in a million looking for a good position across the United States, but I have to admit my discouragement. I spent many years of my life working in the service industry because it was actually more lucrative to make $100-$300 in 8 hours bar-tending or delivering pizza, than $12 an hour at a 9 to 5 job with no benefits. I managed to earn 2 degree and 18 credits of electives while freelancing and consulting in the hours I wasn&#8217;t providing some sort of service to the general public. In retrospect, perhaps I should have stuck it out making less money doing something I did not enjoy in order to get the work history for my resume, but if that were the best approach, what motivates success if not personal satisfaction and reward? I derive much personal satisfaction by a job well done, regardless if the accomplishment is from mental or physical labors. The satisfaction of writing a custom PHP script that stores the information of potential customers for clients in a MySQL database is rather similar to clearing the deliver dispatch screen of pizza shop on Super Bowl Sunday, or watching people drop $300+ in my tip jar while I&#8217;m behind the bar. </p>
<p>I would ALWAYS agree with the idea that there is no substitution for experience, but experience can only take you as far as you are willing to let it show you. I have driven literally hundreds of cars, trucks, and ATVs, with automatic, &#8220;Three-in-the-tree&#8221;, 4, 5, and 6-speed manual transmissions, hand-clutch, foot clutch, no clutch, bad-clutch, in every kind of weather conditions. I even know how to operate a forklift. With all my experience from working in an emissions testing facility in OHIO, various driving, delivery, and in-field jobs, and warehouse work in shipping and receiving roles, I&#8217;ve never driven a semi-truck barefoot in the snow before. Could I do it? Sure I could, just show me the clutch, shift pattern, and heater fan switches are. </p>
<p>I&#8217;ve installed every version of Microsoft Windows Operating Systems (with the exceptions of Server 2003 and all it&#8217;s flavors) from MS DOS, Windows 3.0/3.1, 95, (Have you ever had to FDISK a FAT16 partition?) 98/98SE, (remember having to reformat every 6 months because of degrading performance?) NT, 2000 (Including a variety of Server Editions), Me (Millennium was like the Vista of the 90&#8242;s), XP (about 1,000 times or so), Vista (I used it on 5 machines, they ALL crashed and were riddled with bugs and errors. I always reverted clients back to XP SP3 or XP 64-bit edition when I was asked for support), Server 2008 (R2, in Standard configuration), and Windows 7 32/64 SP1 Home/Pro/Ultimate. I know my Windows, but do I know how to issue an Authentication Certificate over a VPN for a remote user on a laptop with a ZoneAlarm firewall while eating a cheeseburger in the rain with gloves on? No, I don&#8217;t, actually. But give me an hour with Google, some help files, some BBQ sauce, and rubber gloves so I don&#8217;t get it any on the keyboard and I&#8217;m certain I&#8217;d have it figured out.</p>
<p>How does one gain experience without the need to do so? I mean, really&#8230; why do I need an Enterprise Solution like Windows Server 2008 at home when I have 2 remote servers running Apache on Linux and a Router that handles a 5 client VPN already? I have literally forced myself to learn new software and technology for the sake of learning something new. If my Bachelor of Science Degree doesn&#8217;t show that I am capable of learning something technical by understanding the basic and complex principles behind the technology, then what would? If my MBA degree doesn&#8217;t show employers that I&#8217;m knowledgeable and equipped to handle higher level tasks and management roles in an organization, then what will? It is truly ironic how many employers are looking for someone with a profound background in specific technologies and are overlooking the talents of a more educated demographic despite how much society imposes the idea that &#8220;higher education&#8221; will yield greater rewards. I find it bizarre that I could have so much education in a wide range of fields, yet I have never made more money in a shorter period of time than I have by tending a bar. Also, my formal education with regard to &#8220;computers&#8221; is rather limited. I have had 3 courses for web development: Photoshop/Illustrator, HTML/CSS, and Perl/CGI, I have picked up Flash, Fireworks, Dreamweaver, Javascript, and PHP before I ever thought about taking such courses. I had 2 courses for learning how to configure a computer: one was an introductory course that showed me how to pass the A+ certification, and the other was Visual C++ programming course. My technical background is electronics engineering: component level circuitry, TTL logic, AC/DC, physics, atomic / molecular / electron theory, frequency behavior, communications, process controls, and the purpose of Trig/Calculus for design application. What does it all mean? What good does it do me when I can&#8217;t seem to find a position with an organization that wants to take a chance on someone with very little &#8220;on paper&#8221; work experience with a large organization? I am very confident that I can perform just about any job function, with the exception of an underwater welder, and lead singer for a Heavy Metal band. Give me about three months with a scuba tank, a gas welder, and some black nail polish, and I&#8217;d be well on my way to being the first ever underwater heavy metal welder. I can do anything I put my mind to, and I&#8217;ve put my mind to becoming a &#8220;professional&#8221; Web Developer. I am still open to an engineering position, but also CRM Administration, IT Management, Field Tech Supervisor&#8230; if I don&#8217;t get a decent offer for a position soon, I&#8217;d even consider becoming a Carny so I can travel and meet new people. Hrm&#8230; What do you think my best carny trick would be? Installing Windows XP and Linux in a dual boot configuration from a flash drive with a laptop strapped to the handlebars of my dirt bike while I leap over a flaming semi-trailer that I parallel-parked between the ramps? Hey, if that&#8217;s what is required for the job&#8230; I&#8217;m down.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.justinmerrill.com/the-employment-blues/052011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

