<?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>JC Web Concepts</title>
	<atom:link href="http://jcwebconcepts.net/oldblog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://jcwebconcepts.net/oldblog</link>
	<description>Custom Web Developments</description>
	<lastBuildDate>Fri, 02 Dec 2011 13:54:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Spotlight for Windows and Linux</title>
		<link>http://jcwebconcepts.net/oldblog/?p=608</link>
		<comments>http://jcwebconcepts.net/oldblog/?p=608#comments</comments>
		<pubDate>Fri, 02 Dec 2011 13:54:40 +0000</pubDate>
		<dc:creator>jrock2004</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux / BSD]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Launchy]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[Spotlight]]></category>

		<guid isPermaLink="false">http://jcwebconcepts.net/?p=608</guid>
		<description><![CDATA[One of the nice features in MacOSX is the use of Spotlight. I hardly use icons anymore and just hit command+space and type what I need. While I am in Gentoo or Windows XP, I sorely miss this functionality. Well today I started to look and found a nice tool called Launchy. This tool supports [...]]]></description>
			<content:encoded><![CDATA[<p>One of the nice features in MacOSX is the use of Spotlight. I hardly use icons anymore and just hit command+space and type what I need. While I am in Gentoo or Windows XP, I sorely miss this functionality. Well today I started to look and found a nice tool called <a href="http://www.launchy.net" target="_blank">Launchy</a>.</p>
<p><a href="http://jcwebconcepts.net/wp-content/uploads/2011/12/launchy.png"><img class="aligncenter size-medium wp-image-609" title="Launchy" src="http://jcwebconcepts.net/wp-content/uploads/2011/12/launchy-300x223.png" alt="" width="300" height="223" /></a></p>
<p>This tool supports skinning and plugins to enhance the already nice tool. What is nice is by default I can do math in it like I can do in spotlight. When I want to call the tool I hit alt+space and it comes up. I will continue to play with this tool but so far I love it.</p>
]]></content:encoded>
			<wfw:commentRss>http://jcwebconcepts.net/oldblog/?feed=rss2&#038;p=608</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Contact Form</title>
		<link>http://jcwebconcepts.net/oldblog/?p=594</link>
		<comments>http://jcwebconcepts.net/oldblog/?p=594#comments</comments>
		<pubDate>Thu, 20 Oct 2011 12:02:18 +0000</pubDate>
		<dc:creator>jrock2004</dc:creator>
				<category><![CDATA[HTML / XHTML]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Contact Form]]></category>

		<guid isPermaLink="false">http://jcwebconcepts.net/?p=594</guid>
		<description><![CDATA[I would like to take an opportunity to show you an example of how to developer a simple php contact page. I will not use css or anything like that for this tutorial. Just quick and dirty using the php mail function. Lets watch a video, explaining the process Here is the code]]></description>
			<content:encoded><![CDATA[<p>I would like to take an opportunity to show you an example of how to developer a simple php contact page. I will not use css or anything like that for this tutorial. Just quick and dirty using the php mail function. Lets watch a video, explaining the process</p>
<hr />
<iframe width="425" height="349" src="http://www.youtube.com/embed/EgNSbzY7_iU?hl=en&#038;fs=1" frameborder="0" allowfullscreen></iframe></p>
<hr />
<p>Here is the code</p>
<pre class="brush: php; title: ; notranslate">
&lt;html&gt;
    &lt;head&gt;
        &lt;title&gt;Contact Us&lt;/title&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;?php
            if($_SERVER['REQUEST_METHOD'] != 'POST') {
                $self = $_SERVER['PHP_SELF'];
        ?&gt;
            &lt;form method=&quot;post&quot; name=&quot;contactForm&quot; action=&quot;&lt;?php echo $self; ?&gt;&quot;&gt;
                &lt;table&gt;
                    &lt;tr&gt;
                        &lt;td&gt;Name: &lt;/td&gt;
                        &lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;cusName&quot; id=&quot;cusName&quot; /&gt;&lt;/td&gt;
                    &lt;/tr&gt;
                    &lt;tr&gt;
                        &lt;td&gt;Email: &lt;/td&gt;
                        &lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;cusEmail&quot; id=&quot;cusEmail&quot; /&gt;&lt;/td&gt;
                    &lt;/tr&gt;
                    &lt;tr&gt;
                        &lt;td&gt;What can I do for you? &lt;/td&gt;
                        &lt;td&gt;&lt;textarea id=&quot;reason&quot; name=&quot;reason&quot; rows=&quot;8&quot; cols=&quot;40&quot;&gt;&lt;/textarea&gt;&lt;/td&gt;
                    &lt;/tr&gt;
                    &lt;tr&gt;
                        &lt;td&gt;&lt;input type=&quot;submit&quot; value=&quot;Submit&quot; /&gt;&lt;/td&gt;
                        &lt;td&gt;&lt;input type=&quot;reset&quot; value=&quot;Reset&quot; /&gt;&lt;/td&gt;
                    &lt;/tr&gt;
                &lt;/table&gt;
            &lt;/form&gt;
        &lt;?php
            } else {
                $name = $_POST['cusName'];
                $emailFrom = $_POST['cusEmail'];
                $reason = $_POST['reason'];
                $emailTo = &quot;john@jcwebconcepts.net&quot;;
                $subject = &quot;Filled in form from website&quot;;

                $header = &quot;From: $name &lt;$emailFrom&gt;\r\nReply-To: $emailFrom\r\n&quot;;
                $header .= &quot;MIME-Version: 1.0\r\n&quot;;
                $header .= &quot;Content-type:text/html;charset=iso-8859-1\r\n&quot;;

                $message = &quot;From: #name, Email: $emailFrom&lt;br /&gt;&lt;hr /&gt;$reason&quot;;

                mail($emailTo, $subject, $message, $header);

                echo &quot;Thank you for contacting us. Someone will get back to you as soon as we can. Thank you.&quot;;
            }
        ?&gt;
    &lt;/body&gt;
&lt;/html&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://jcwebconcepts.net/oldblog/?feed=rss2&#038;p=594</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Passing of Steve Jobs</title>
		<link>http://jcwebconcepts.net/oldblog/?p=591</link>
		<comments>http://jcwebconcepts.net/oldblog/?p=591#comments</comments>
		<pubDate>Mon, 10 Oct 2011 12:24:15 +0000</pubDate>
		<dc:creator>jrock2004</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Steve Jobs]]></category>

		<guid isPermaLink="false">http://jcwebconcepts.net/?p=591</guid>
		<description><![CDATA[As many bloggers have already done, we have lost someone this past week that was dear to a lot of Mac fanboys. He will be missed but I am sure he was working on his successor for a long time. I wonder how many people added to their Netflix queue, &#8220;Pirates of Silicon Valley&#8221;? As [...]]]></description>
			<content:encoded><![CDATA[<p>As many bloggers have already done, we have lost someone this past week that was dear to a lot of Mac fanboys. He will be missed but I am sure he was working on his successor for a long time. I wonder how many people added to their Netflix queue, &#8220;Pirates of Silicon Valley&#8221;? As I am sure everything in that movie had some things that did not happen, Steve gained my respect. So good luck Steve to where ever the road takes you. Good bye.</p>
]]></content:encoded>
			<wfw:commentRss>http://jcwebconcepts.net/oldblog/?feed=rss2&#038;p=591</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up Blogofile</title>
		<link>http://jcwebconcepts.net/oldblog/?p=580</link>
		<comments>http://jcwebconcepts.net/oldblog/?p=580#comments</comments>
		<pubDate>Sun, 05 Jun 2011 03:40:41 +0000</pubDate>
		<dc:creator>jrock2004</dc:creator>
				<category><![CDATA[Linux / BSD]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design Ideas]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Blogofile]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Web Server]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://jcwebconcepts.net/?p=580</guid>
		<description><![CDATA[Blogofile is a simple blogging engine that brings something nice without the use of a database. I have been testing this out and I am starting to like this. I have even been thinking of replacing it with this. I am really enjoying this framework. Go ahead and watch this video below. After the video [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blogofile.com" target="_blank">Blogofile</a> is a simple blogging engine that brings something nice without the use of a database. I have been testing this out and I am starting to like this. I have even been thinking of replacing it with this. I am really enjoying this framework. Go ahead and watch this video below. After the video I will post the step by step instructions just in case you do not want to watch how to do it.</p>
<hr />
<iframe width="640" height="510" src="http://www.youtube.com/embed/EewaFKwnb_4" frameborder="0" allowfullscreen></iframe></p>
<hr />
<p>Here is the steps:</p>
<h3>On the server</h3>
<p>Install the python tool easy_install</p>
<pre class="brush: bash; title: ; notranslate">sudo apt-get install python-setuptools</pre>
<p>Install blogofile</p>
<pre class="brush: bash; title: ; notranslate">sudo easy_install blogofile</pre>
<p>If you do not have Git</p>
<pre class="brush: bash; title: ; notranslate">sudo apt-get install git</pre>
<p>Go to where you want the git repo to be installed and do the following</p>
<pre class="brush: bash; title: ; notranslate">
mkdir blogofile.git
cd blogofile.git
git --bare init
</pre>
<p>Now configure the post-receive file</p>
<pre class="brush: bash; title: ; notranslate">vim hooks/post-receive</pre>
<pre class="brush: bash; title: ; notranslate">
unset GIT_DIR
cd /path/to/where/clone/repo/is
git pull
blogofile build
cp -a _site/* /var/www
</pre>
<h3>Local computer</h3>
<p>Now lets go to your local computer to where you want the source files and do the following</p>
<pre class="brush: bash; title: ; notranslate">
mkdir blogofile
cd blogofile
blogofile init simple_blog
git init
git add .
git commit -m &quot;Some message&quot;
git remote add origin username@yourservername:/path/to/repo/somerepo.git
git push origin master
</pre>
<p>Now we need to setup our exclude file so we do not commit the _site folder.</p>
<pre class="brush: bash; title: ; notranslate">vim .git/info/exclude</pre>
<p>Now add this to the bottom of the file</p>
<pre class="brush: bash; title: ; notranslate">
_site/*
_site/
</pre>
<p>Now if you want to test out your blog you will do the following:</p>
<pre class="brush: bash; title: ; notranslate">
blogofile build
blogofile serve 8080
</pre>
<p>The 8080 can be any unused port you like. I hope this helped you as much as it has helped me.</p>
]]></content:encoded>
			<wfw:commentRss>http://jcwebconcepts.net/oldblog/?feed=rss2&#038;p=580</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dual boot MacBook 5,2 and Gentoo</title>
		<link>http://jcwebconcepts.net/oldblog/?p=553</link>
		<comments>http://jcwebconcepts.net/oldblog/?p=553#comments</comments>
		<pubDate>Wed, 27 Apr 2011 15:32:45 +0000</pubDate>
		<dc:creator>jrock2004</dc:creator>
				<category><![CDATA[Linux / BSD]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MacBook]]></category>
		<category><![CDATA[rEFIt]]></category>

		<guid isPermaLink="false">http://jcwebconcepts.net/?p=553</guid>
		<description><![CDATA[One thing that I have always wanted to do was dual boot my Mac computer so I could run Linux on real hardware instead of emulation. This tutorial is going to show you how to accomplish this. A thing to note is you can do this with any Linux distro. Also the Mac that was [...]]]></description>
			<content:encoded><![CDATA[<p>One thing that I have always wanted to do was dual boot my Mac computer so I could run Linux on real hardware instead of emulation. This tutorial is going to show you how to accomplish this. A thing to note is you can do this with any Linux distro. Also the Mac that was used in this tutorial was a 13 inch White MacBook 5,2 version.</p>
<h2>Things needed for this process:</h2>
<ul>
<li>Boot manager: <a href="http://refit.sourceforge.net" target="_blank">rEFIt</a></li>
<li>Gentoo minimal ISO: <a href="http://mirrors.kernel.org/gentoo/releases/x86/autobuilds/current-iso/" target="_blank">Gentoo x86</a></li>
<li>USB keyboard and mouse</li>
<li>Wired internet connection</li>
</ul>
<h2>Partition HD</h2>
<ul>
<li>
<h3>Mac Already installed</h3>
<ul>
<li>Open boot camp assistant</li>
<li>Set the partition size to the size you want</li>
<li>When this is done go ahead and click quit and install later</li>
<li>At this point you are done with partitioning your drive</li>
</ul>
</li>
<li>
<h3>Mac not installed</h3>
<ul>
<li>Turn on your Mac and hold option key down until the selector comes up</li>
<li>Insert your Mac CD in and wait for it to show. Click on it</li>
<li>When cd is loaded you will what to open disk utilities in the menu up top</li>
<li>Click on your hard drive and then on the right click the partition tab</li>
<li>Under volume scheme you want to select two partitions</li>
<li>!!!!!!!Need to work on it ending of this part</li>
</ul>
</li>
</ul>
<p>You are down with the drive partition now. We now need to move into the boot loader tool that is going to help us along the way</p>
<h2>rEFIt</h2>
<ul>
<li>Now go ahead and install the rEFIt appliacation</li>
<li>Note: There is nothing fancy with this install</li>
<li>Now reboot to verify that the boot loader app comes up. If it doesn&#8217;t, try rebooting again</li>
</ul>
<p>You are now done with the boot loader and we are now ready to install Gentoo</p>
<h2>Installing Gentoo</h2>
<p>After downloading and burning the ISO  file to a disc you are ready, you are ready to start. Plug in your USB keyboard for now, insert the gentoo disc you burnt and restart. Remember to hold option key down so you get the option to boot to your CD. Now I am not going to go thru all the steps to install because this is well documented on Gentoo&#8217;s website. This can be found <a href="http://www.gentoo.org/doc/en/handbook/handbook-x86.xml" target="_blank">here!</a></p>
<p>So lets highlight the sections that you need to make some adjustments since you are not doing a typical dual boot on a regular PC</p>
<h3>Boot parameters</h3>
<p>When you get to the book parameters, you will want to type the following:</p>
<pre class="brush: bash; title: ; notranslate">gentoo maxcpus=1 vga=791</pre>
<h3>Partition table</h3>
<p>Here is the partition setup I have and you are welcome to follow it. Now yours might be different but should be close. If you are a cfdisk fan like I you will need to open your sda parition in fdisk, to delete the partition created by apple. Also do not worry about the warnings about unsupported GPT table. Its ok, so here is what my partitions looks like after I am done setting up the partitions that the guide tells us too</p>
<ul>
<li>sda1 &#8211; GPT</li>
<li>sda2 &#8211; Mac HFS/HFS+</li>
<li>sda3 &#8211; Linux root</li>
<li>sda4 &#8211; Linux swap</li>
</ul>
<p>After you are done with this you will want to type the following:</p>
<p>modprobe hid-apple<br />
This is done so your drivers get loaded for the apple keyboard. At this point you can remove the USB keyboard.</p>
<p>When downloading the stage3, make sure you download the i686 one</p>
<p>Now I do not use the genkernel. If you follow the install guide you use ext2 for the boot partition. So for some reason the kernel does not have this enabled so that is the only thing at this time I enable, beyond what is already enabled. After you exit you will want to back up the .config file. I like to do this so I can keep my kernel config files backed up.</p>
<p>When you are setting up your grub or lilo, you want to make sure on the kernel line that you add the following:</p>
<pre class="brush: bash; title: ; notranslate">
maxcpus=1
</pre>
<h2>After Gentoo install</h2>
<p>After you are done installing and you reboot you will want to leave your reboot until you get to the rEFIt menu. It does take a little bit to get to it so do not be too concerned. When you get there select the partitioning tool. You will get an error but that is ok. Hit any key and shut off your Mac. Now turn it back on and when you hear the ding hold the option key. Select the hard drive that says Windows. you should boot into Gentoo. If so then clap your hands. Log in as root and restart your computer. Try going into your Mac OS. If you can then you can go to rEFIt site and get the uninstall directions.<br />
Congratulations, you have just installed and got Gentoo somewhat working on your MacBook.</p>
]]></content:encoded>
			<wfw:commentRss>http://jcwebconcepts.net/oldblog/?feed=rss2&#038;p=553</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Media and Linux</title>
		<link>http://jcwebconcepts.net/oldblog/?p=549</link>
		<comments>http://jcwebconcepts.net/oldblog/?p=549#comments</comments>
		<pubDate>Fri, 25 Mar 2011 13:12:34 +0000</pubDate>
		<dc:creator>jrock2004</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux / BSD]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[GIMP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://jcwebconcepts.net/?p=549</guid>
		<description><![CDATA[This is part 6 of my using Linux for everything blog posts. Some time ago, if you wanted to listen to music or watch videos, you ran into issues. Today&#8217;s Linux has changed all that. Honestly the only issues I have had is that my iTunes purchased content cannot be played. This is hugh since [...]]]></description>
			<content:encoded><![CDATA[<p>This is part 6 of my using Linux for everything blog posts. Some time ago, if you wanted to listen to music or watch videos, you ran into issues. Today&#8217;s Linux has changed all that. Honestly the only issues I have had is that my iTunes purchased content cannot be played. This is hugh since I do a lot of purchasing of music on iTunes. If you do not use iTunes then this is not an issue.<br />
    So with this being said I would say that I could not make the switch to Linux fully since I would lose the ability to watch my movies and listen to my music. Maybe someday this block will not be here.</p>
]]></content:encoded>
			<wfw:commentRss>http://jcwebconcepts.net/oldblog/?feed=rss2&#038;p=549</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up a Git Server</title>
		<link>http://jcwebconcepts.net/oldblog/?p=539</link>
		<comments>http://jcwebconcepts.net/oldblog/?p=539#comments</comments>
		<pubDate>Sat, 12 Mar 2011 17:17:47 +0000</pubDate>
		<dc:creator>jrock2004</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Linux / BSD]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[versioning]]></category>

		<guid isPermaLink="false">http://jcwebconcepts.net/?p=539</guid>
		<description><![CDATA[Version control is something that a lot of developers use. I have been using SVN for the longest time and ignoring Git. I found it confusing and I just left it alone. I did the same thing before I started to use SVN. I thought I would have learned by now. So take a look [...]]]></description>
			<content:encoded><![CDATA[<p>Version control is something that a lot of developers use. I have been using SVN for the longest time and ignoring Git. I found it confusing and I just left it alone. I did the same thing before I started to use SVN. I thought I would have learned by now. So take a look at the video below and I will also put the steps at the end of the post.</p>
<hr />
<iframe title="YouTube video player" width="640" height="390" src="http://www.youtube.com/embed/1gNFrPNF9-Y" frameborder="0" allowfullscreen></iframe></p>
<hr />
<p>
On where the master git server will be hosted
</p>
<pre class="brush: bash; title: ; notranslate">
mkdir /home/git/somerepo.git
cd /home/git/somerepo.git
git --bare init
</pre>
<p>
Now lets go to your computer
</p>
<pre class="brush: bash; title: ; notranslate">
mkdir somerepo.git
cd somerepo.git
git init
**Create a README file or you can type: touch README
git add .
git commit -m &quot;Some message&quot;
git remote add origin username@yourservername:somerepo.git
git push origin master
</pre>
<p>Now this setup is just using the users that are already on the server. You can setup that you do not need to type in password. You can create just a git user. I hope that this tutorial has helped.</p>
]]></content:encoded>
			<wfw:commentRss>http://jcwebconcepts.net/oldblog/?feed=rss2&#038;p=539</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Graphic design and Linux</title>
		<link>http://jcwebconcepts.net/oldblog/?p=534</link>
		<comments>http://jcwebconcepts.net/oldblog/?p=534#comments</comments>
		<pubDate>Sun, 27 Feb 2011 03:22:06 +0000</pubDate>
		<dc:creator>jrock2004</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux / BSD]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[GIMP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://jcwebconcepts.net/?p=534</guid>
		<description><![CDATA[This is part 5 of my using Linux for everything blog posts. As a web developer I started to use Photoshop. As I started to use Linux I realized that I could not use Photoshop to its fullest. So I then heard of GIMP. It is a nice tool and it can get the job [...]]]></description>
			<content:encoded><![CDATA[<p>This is part 5 of my using Linux for everything blog posts. As a web developer I started to use Photoshop. As I started to use Linux I realized that I could not use Photoshop to its fullest. So I then heard of GIMP. It is a nice tool and it can get the job done. I just did not like the interface that came with it. I also missed some features that were in photoshop.</p>
<p>As GIMP has grown it has started to become an app I could see myself using. So for this part I would feel comfortable switching to pure Linux.</p>
]]></content:encoded>
			<wfw:commentRss>http://jcwebconcepts.net/oldblog/?feed=rss2&#038;p=534</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web/Java/Selenium Development and Linux</title>
		<link>http://jcwebconcepts.net/oldblog/?p=532</link>
		<comments>http://jcwebconcepts.net/oldblog/?p=532#comments</comments>
		<pubDate>Sun, 30 Jan 2011 03:34:35 +0000</pubDate>
		<dc:creator>jrock2004</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux / BSD]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[VIM]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://jcwebconcepts.net/?p=532</guid>
		<description><![CDATA[This is part 4 of my using Linux for everything blog posts. As of right now my main job is writing Selenium automation using Java and my side job is web development. So could Linux handle all of this with no issues. The answer is no and I will tell you why. As a web [...]]]></description>
			<content:encoded><![CDATA[<p>This is part 4 of my using Linux for everything blog posts. As of right now my main job is writing Selenium automation using Java and my side job is web development. So could Linux handle all of this with no issues. The answer is no and I will tell you why. As a web developer selenium developer I need to test sometimes against Internet Explorer and or Safari. You can look in my previous post to read the reasons to why this is not possible for me to emulate. Other than that I can install Eclipse and Java in Linux with no issues. So writing my code I can be in Linux.</p>
<p>Web developing in Linux I again have no issues. I can pull up VIM and I will be just fine. Even though I might miss TextMate since I have recently fell in love with it.</p>
]]></content:encoded>
			<wfw:commentRss>http://jcwebconcepts.net/oldblog/?feed=rss2&#038;p=532</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browsing and Linux</title>
		<link>http://jcwebconcepts.net/oldblog/?p=530</link>
		<comments>http://jcwebconcepts.net/oldblog/?p=530#comments</comments>
		<pubDate>Wed, 26 Jan 2011 23:30:27 +0000</pubDate>
		<dc:creator>jrock2004</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux / BSD]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[wine]]></category>

		<guid isPermaLink="false">http://jcwebconcepts.net/?p=530</guid>
		<description><![CDATA[So this is part 3 of my replace Linux everywhere blog. In this part we will be discussing web browsing. So looking at browsers the only major browser that is not in Linux is Internet Explorer. Now yes I could install Wine or some other emulator to solve this. But this is not going to [...]]]></description>
			<content:encoded><![CDATA[<p>So this is part 3 of my replace Linux everywhere blog. In this part we will be discussing web browsing. So looking at browsers the only major browser that is not in Linux is Internet Explorer. Now yes I could install <a title="Winehq" href="http://www.winehq.org/" target="_blank">Wine</a> or some other emulator to solve this. But this is not going to solve this issue. Using Wine there is something in me that states are we really seeing Internet Explorer.  Now the only reason I need internet explorer is for work. With me at the time doing QA work I need to test the quality of a website in Internet Explorer. Now to be honest I have the same issue in Mac so Linux is not alone here.</p>
<p>So, is there something I am missing here? Is there an solid option that would allow me to get the real Internet Explorer experience? Look forward to hearing your comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://jcwebconcepts.net/oldblog/?feed=rss2&#038;p=530</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

