<?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>Linux-Girl.com</title>
	<atom:link href="http://www.linux-girl.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linux-girl.com</link>
	<description>The web according to girl.</description>
	<lastBuildDate>Thu, 09 Jul 2009 19:30:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Bing Will Never Be King. Just another Microsoft Product.</title>
		<link>http://www.linux-girl.com/bing-will-never-be-king-just-another-microsoft-product/</link>
		<comments>http://www.linux-girl.com/bing-will-never-be-king-just-another-microsoft-product/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 19:30:44 +0000</pubDate>
		<dc:creator>Asia</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.linux-girl.com/?p=120</guid>
		<description><![CDATA[I&#8217;m a bit suspicious of any article such as the one on the New York Times &#8211; where they state that Bing is Better than Google. First off, Google did not become popular because it ran a great online campaign. On the contrary. Google aimed its focus at those of us who were not happy [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a bit suspicious of any article such as the one on the <a href="http://www.nytimes.com/">New York Times</a> &#8211; where they state that Bing is Better than Google. First off, Google did not become popular because it ran a great online campaign. On the contrary. Google aimed its focus at those of us who were not happy with bloated software, the Open Source Community to be exact. Every person world-wide who invested time in open source were fans of Google, critical mass was instantaneous, the average nerd or geek who invested large amounts of time, building online communities and online friends, grew to substantial numbers. This very same marketing strategy is now categorized as &#8220;Social Marketing&#8221; which is an essential part of &#8220;Viral Marketing&#8221; campaigns &#8211; a community which continuos to drive the strongest of these campaigns, such as President Obama&#8217;s Election Campaign. </p>
<p>The one key element that many of us share, is the dislike for bloated software. Bloated software is synonymous for Microsoft. Apple has always locked on to this very same philosophy &#8211; simple is better &#8211; and has managed to edge into the PC market by large percentages. Yet still, the PC giants continue to &#8220;candy color&#8221; their wares and hope the new world would buy their products. When will they learn?</p>
<p>So Bing came into the market, due to it&#8217;s marketing efforts, it earns some users and now the world is crying Google is Dead. Bing&#8217;s pretty &#8211; I&#8217;ll hand that to them, but like all Microsoft Products, this one will end up bloated and broken. In the end, this girl will stay with Google. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-girl.com/bing-will-never-be-king-just-another-microsoft-product/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sed sed bash &#8211; Writing Simple Bash Scripts</title>
		<link>http://www.linux-girl.com/sed-sed-bash-writing-simple-bash-scripts/</link>
		<comments>http://www.linux-girl.com/sed-sed-bash-writing-simple-bash-scripts/#comments</comments>
		<pubDate>Fri, 29 May 2009 21:09:32 +0000</pubDate>
		<dc:creator>Asia</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://www.linux-girl.com/?p=116</guid>
		<description><![CDATA[I manage a lot of websites and servers, and there&#8217;s nothing more time consuming than fulfilling the request of a random client who wants to make changes to their website or add a new web page. Thankfully I happen to be a Linux Network Administrator and have access to every delicious part of many Linux [...]]]></description>
			<content:encoded><![CDATA[<p>I manage a lot of websites and servers, and there&#8217;s nothing more time consuming than fulfilling the request of a random client who wants to make changes to their website or add a new web page. Thankfully I happen to be a Linux Network Administrator and have access to every delicious part of many Linux servers to assist me in making this process easy and stress free. </p>
<p>Sure! I can hire some guy out of India to manage these menial tasks. But why? With some simple bash scripting and a little bit of Sed knowledge &#8211; I can create multiple web pages within a minute. Here&#8217;s my little secret:</p>
<p>With some simple bash scripting, I create a simple template copied from a content page on the website. Replace content with specific tags (i.e. Change the page title to _TITLE_) this way I can determine parts of that page I want to overwrite with my bash script. Once I have every part of the template tagged, I write my bash script.</p>
<p>#/bin/bash<br />
echo Page Title<br />
read TITLE<br />
echo File Name<br />
read FILENAME</p>
<p>#copy over the template<br />
cp template.php $FILENAME<br />
echo Writing $FILENAME Done.</p>
<p>#replace those tags<br />
sed -i &#8220;s/_TITLE_/$TITLE&#8221; $FILENAME<br />
echo Writing new title to $FILENAME done</p>
<p>echo New Web Page $FILENAME created<br />
echo Done.</p>
<p>save the file<br />
chmod +x your script<br />
./run your script</p>
<p>That&#8217;s it&#8230; You can see how easy it is to utilize the above script to create new web pages quick and easy. It saves me a ton of time with older websites. Hope you like it!</p>
<p><a href="http://www.amazon.com/Canonical-890655001213-Ubuntu-8-10/dp/3937514775%3FSubscriptionId%3D02E5W5871AJF7PMMMS82%26tag%3Dlancas0d-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D3937514775"><img src="http://ecx.images-amazon.com/images/I/41F7FsVEUuL._SL160_.jpg" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-girl.com/sed-sed-bash-writing-simple-bash-scripts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iPhone Pwned and Powered by T-Mobile</title>
		<link>http://www.linux-girl.com/iphone-pwned-and-powered-by-t-mobile/</link>
		<comments>http://www.linux-girl.com/iphone-pwned-and-powered-by-t-mobile/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 16:38:07 +0000</pubDate>
		<dc:creator>Asia</dc:creator>
				<category><![CDATA[Mac / Apple]]></category>

		<guid isPermaLink="false">http://www.linux-girl.com/iphone-pwned-and-powered-by-t-mobile/</guid>
		<description><![CDATA[The Dev-Team has done it again. With the release of the new PwnageTool 2.1, I was able to upgrade my first gen iPhone to 2.0 within minutes.
Here are the simple steps to Pwning your First Gen iPhone:

Download PwnageTool 2.0.1 here
Download the required Bootloader files here
Start up iTunes and Restore Update your iPhone to 2.0
Unzip the [...]]]></description>
			<content:encoded><![CDATA[<p>The Dev-Team has done it again. With the release of the new <a href="http://blog.iphone-dev.org/post/42931306/pwnagetool-2-0-1">PwnageTool 2.1</a>, I was able to upgrade my first gen iPhone to 2.0 within minutes.</p>
<p>Here are the simple steps to Pwning your First Gen iPhone:</p>
<ol>
<li><a href="http://xs1.iphwn.org/video_assets/PwnageTool_2.0.1.zip">Download PwnageTool 2.0.1 here</a></li>
<li><a href="http://rapidshare.com/files/131008012/boot_loader.zip">Download the required Bootloader files here</a></li>
<li>Start up iTunes and Restore Update your iPhone to 2.0</li>
<li>Unzip the PwnageTool 2.0.1 and Bootloader to your Desktop. You will need to unzip the Boot Loader files within the new Boot Loader folder. Do this now.</li>
<li>Once your iPhone has been updated (in Emergency Mode) start up PwnageTool</li>
<li>Choose the iPhone and click the Next Arrow.</li>
<li>Pwnage should recognize the new 2.0 ipsw, click Next.</li>
<li>Pwnage will now ask you for the new Boot Loader files. Click &#8220;No&#8221; when prompted to search the internet. This will give you the option to search for the Boot Loader 39 file. Locate this in the Boot Loader folder on your desktop. (Do this once again for BL 46.).</li>
<li>9. Click Next. Sit back and allow Pwnage to build you a fresh 2.0 ipsw.</li>
<li>10. Once the new ipsw file has been written to your desktop. Place your iPhone in DFU mode. You can follow the PwnageTool&#8217;s interface or simply do the following:
<ol>
<li>Click and Hold both the &#8220;Power Button&#8221; and &#8220;Home&#8221; Buttons on your iPhone.</li>
<li>Wait 10 Seconds. Release the &#8220;Power Button&#8221;.</li>
<li>Continue holding the &#8220;home&#8221; button for another 5 seconds</li>
<li>iTunes alerts you that the phone is in DFU mode, and asks if you want to Restore your phone. Click Cancel!</li>
<li>Hold down the &#8220;ALT&#8221;, &#8220;Option&#8221; key on your Keyboard at the same time click the &#8220;Restore&#8221; button on iTunes &#8211; You can now search for the new ipsw created by Pwnage.</li>
<li>Sit back, relax and get ready for 2.0 Goodness!</li>
</ol>
</li>
</ol>
<p>I love the Open Source Community!</p>
<p><a name="evtst|a|1430216263" href="http://www.amazon.com/Beginning-iPhone-Development-Exploring-SDK/dp/1430216263%3FSubscriptionId%3D02E5W5871AJF7PMMMS82%26tag%3Dlancas0d-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1430216263">Beginning iPhone Development: Exploring the iPhone SDK</a> | <a name="evtst|a|B001KX1442" href="http://www.amazon.com/CaseCrown-iPhone-Soft-Polycarbonate-Slim/dp/B001KX1442%3FSubscriptionId%3D02E5W5871AJF7PMMMS82%26tag%3Dlancas0d-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB001KX1442">CaseCrown iPhone 3G Soft Polycarbonate Slim Fit Case &#8211; Red</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-girl.com/iphone-pwned-and-powered-by-t-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Track Website Visitors With Clicky For Higher Conversions</title>
		<link>http://www.linux-girl.com/track-website-visitors-with-clicky-for-higher-conversions/</link>
		<comments>http://www.linux-girl.com/track-website-visitors-with-clicky-for-higher-conversions/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 15:14:02 +0000</pubDate>
		<dc:creator>Asia</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.linux-girl.com/track-website-visitors-with-clicky-for-higher-conversions/</guid>
		<description><![CDATA[For those of you looking for an easy way to track your website visitors, I highly recommend Clicky. Clicky is an alternative analytics software, which tracks exactly where your users came from, the exact keywords they used to find your website, the pages they visited within your website, and the page they exited from.
The Juicy [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you looking for an easy way to track your website visitors, I highly recommend <a href="http://getclicky.com/">Clicky</a>. Clicky is an alternative analytics software, which tracks exactly where your users came from, the exact keywords they used to find your website, the pages they visited within your website, and the page they exited from.</p>
<p><strong>The Juicy Clicky<br />
</strong></p>
<p>Clicky offers an API system for more advance users, but can be used quite simply by adding a bit of code to the bottom of your web pages. The beauty of Clicky is the individual visitor tracking system, that allows me to determine where, when and how the visitor reached any of my websites. Clicky offers a very simple interface where I can sort my users by date, page etc. but the one predominant reason I utilize Clicky for my websites, is to get detailed information on any and all conversions, immediately. To be much clearer, the moment I receive a conversion, I simply click a link and immediately get the precise pathing of the user that lead to the conversion.</p>
<p>Clicky Image #1: Web Logs on Steroids</p>
<p style="text-align: center"><img src="http://www.linux-girl.com/wp-content/uploads/clicky1.jpg" alt="clicky1.jpg" /></p>
<p style="text-align: center">
<p>The image above shows one of the conversions we received just this morning. The visitor details give me precise information about the individual who has completed a conversion, below this, is the information on the users actions while on the website, along with the search engine or referring page, and the keywords utilized to find our website, this is the information that I want and need to help me determine the value of those keywords if I wish to purchase them via one of our PPC campaigns.</p>
<p>Actions, help me determine how the user got to the conversion page. In this case, the user traveled through 4 pages within the website prior to converting, by clicking the Action link, I can see these individual pages. I can get further information on the individual keyword or phrases as well as look at the referring page quickly and easily.</p>
<p><strong>Why Tracking User Information is Important to Marketing Efforts</strong></p>
<p>We recently launched three additional landing pages to a clients website. At the end of the day or week, I determine whether the landing page was a success or whether it required some changes. What funnels appear predominantly with the landing page will help me decide on changes needed to avoid any unnecessary click-aways.</p>
<p>Why the user left and where they went, are all fundamental to determining what changes need to be made.Â  Because you get this information much quicker than alternative sources, you can make the changes necessary to improve performance immediately, verses waiting continuously and losing money.</p>
<p><strong>Better Control over User Funnels Equate to Higher Conversions</strong></p>
<p>It&#8217;s not uncommon for clients to get trapped into the &#8220;more visitors equal more conversions&#8221; way of thinking. But what if you could show them that it&#8217;s just as important to funnel current visitors onto your landing page, to increase conversions? Clicky is perhaps the most powerful tool to utilize in your quest to funnel users onto landing pages.</p>
<p>Funneling users is often overlooked by many, with most webmasters concerned about higher visitor numbers. It&#8217;s not uncommon for websites to see a notable number of visitors to their front page verses other pages within the website, but where the user goes from there, is much more important than the number of visits.</p>
<p>We&#8217;ve utilized countless tests on Google Analytics and Google Website Optimizer to try and perform quick visitor funnel changes, but due to the 24 hour wait on results, we decided to utilize Clicky. Within minutes we can easily determine what users are doing and why, this gives us a better understanding of how to place marketing material on our leading web pages so the user can quickly find what they need faster. Giving the users what they want is the ultimate goal of any website &#8211; take this advice straight from Google.</p>
<p>With the power of tracking user visits with Clicky, we dropped our bounce rate by 30% as reported by Google Analytics. We saw a significant increase in sales and leads at the beginning of the 2008 quarter and currently out sell any of our clients competitors by a large margin &#8211; all during a down economy.</p>
<p><strong>How to Use Clicky to Track Your Website Visitors</strong></p>
<p>First, sign up for an account at <a href="http://getclicky.com" target="_blank">Clicky</a> and add the tracking code to your website. Once done, edit your conversion alerts to include a link to the following URL. Conversion alerts, meaning the final sale alert you are sent after a conversion is made.Â  <strong>Make sure you do this just for your Conversion Alert, and not the response sent to the customer:</strong></p>
<p>http://www.getclicky.com/stats/visitors?site_id=[Your_Clicky_SITE_ID_Number]&amp;ip_address=[IP_ADDRESS_OF_THE_USER&amp;referer=&amp;search=&amp;order=newest&amp;x=Apply+Filters+'</p>
<p>Replace the following:</p>
<p><strong>Your_Clicky_SITE_ID_Number:</strong>Â  The Unique Site ID Number assigned by Clicky<br />
<strong>IP Address of the User:</strong> With PHP you can easily use the global variable $_SERVER["REMOTE_ADDR"]</p>
<p>That&#8217;s it! Wait for your conversions, click the link on the alert you are sent and you gain more knowledge about that user quickly and easily.</p>
<p>NOTE: I just read the Clicky blog, and they are offering a referral based on a review of their product. Please note that I (Linux-Girl) am not an affiliate of Clicky. I utilize the tool and this review is honest and based on actual utilization of Clicky on our clients websites. This is not paid nor was it instigated by the creators of Clicky or their <a href="http://getclicky.com/blog/127/100-free-premium-accounts-50-affiliate-commissions">blog post</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-girl.com/track-website-visitors-with-clicky-for-higher-conversions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Power of Vim and Fast Search Friendly HTML and Code</title>
		<link>http://www.linux-girl.com/the-power-of-vim-and-fast-search-friendly-html-and-code/</link>
		<comments>http://www.linux-girl.com/the-power-of-vim-and-fast-search-friendly-html-and-code/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 18:50:03 +0000</pubDate>
		<dc:creator>Asia</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://www.linux-girl.com/the-power-of-vim-and-fast-search-friendly-html-and-code/</guid>
		<description><![CDATA[I&#8217;ve been a fan of Vim since the mid 90&#8217;s, it all started out of pure frustration with PERL and CGI Scripts. I knew HTML &#8211; but who didn&#8217;t? It was the easiest thing to learn, but ugh PERL and CGI Scripting was just a nightmare. I gained my first client, and had it not [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been a fan of Vim since the mid 90&#8217;s, it all started out of pure frustration with PERL and CGI Scripts. I knew HTML &#8211; but who didn&#8217;t? It was the easiest thing to learn, but ugh PERL and CGI Scripting was just a nightmare. I gained my first client, and had it not been for pre-scripted CGI&#8217;s by other developers and some patience, I would never have made it through to today. CGI Scripting was a whole different language, one that required a lot of patience and logical thinking &#8211; but the downloads, text edits on notepad, upload, change permissions, log reviews, notepad to make changes, FTP again &#8211; recycle, rinse, repeat. It drove me insane and much worse, it took forever to debug anything.</p>
<p>After moving to Hawaii back in 2000, I was just learning the basics of Linux Server Management and had very little knowledge of Vim or it&#8217;s existence. But I could certainly find my way &#8220;somewhat&#8221; around a Linux Box &#8211; go me! I landed a web developers job at a travel company &#8211; <a href="http://travel-hawaii.com/">Travel Hawaii </a>, my job was to assist the owner and lead programmer with web graphics and design &#8211; mostly HTML and basic CGI installations. I started working alongside Chris Bopp, the lead programmer, Bopp (as I call him) is perhaps one of the most sane creatures there are in this world. Here&#8217;s a guy who exerts the geek persona to the nth degree. The man could solve any programming issue that was directed to him, you name it &#8211; he had the answer &#8211; or would find it within minutes.</p>
<p>Chris taught me everything I didn&#8217;t know about Linux, I still occasionally run back to Chris for assistance, mostly because, he&#8217;s just that smart! During this time, Dreamweaver had entered the market, <a href="http://www.daggle.com">Danny Sullivan</a> had begun his first or second SEO conference back in the old days when <a href="http://www.searchenginewatch.com">Search Engine Watch</a> was king. I remember the day John, the owner at Travel Hawaii handed me a big white binder he had gotten from one of Danny&#8217;s conferences &#8211; It was my bible I was told. Every secret there was to landing #1 listings on search engines was found in that binder &#8211; ah the good old days. I utilized Dreamweaver for everything &#8211; basic HTML the WYSIWYG interface was phenomenal. But again the delays of FTP, change permissions, errors in code with no real way to determine what line in the code was producing the actual errors. It reported line 26 but if you utilized SSI or PHP includes, there just wasn&#8217;t a way to really find the errors, so frustration continued.</p>
<p>Then Bopp introduced me to Vim and even today I wonder, how the hell did I get through the past without it. For those of you who still utilize basic notepad and other fancy doohickies to mark up your code &#8211; I pity you!! Vim is the answer to every coders dream. What used to take me 4 hours, now takes me 30 minutes. The simple find and replace commands, easy access to the shell itself, full utilization of primary keyboard keys and the best darn WYSIWYG  &#8220;your browser&#8221; makes it unbeatable for developers. With my little experience using &#8220;less&#8221; and &#8220;more&#8221; and with the power of &#8220;grep&#8221; and &#8220;fgrep&#8221; learning Vim was easy.</p>
<p>PHP Code became easier to manage, with the ability to quickly find beginning and ending brackets of code ( { and } ). CGI Scripts were similarly easier to debug, a simple refresh of the browser would help me determine where the errors were in the code. Whether I needed to delve further into the server such as permissions or was I missing a simple quotation mark. Regardless of the problem it took mere seconds to fix and I was well on my way to my next project.</p>
<p>The best thing about Vim is the formatting, I&#8217;m able to format code and HTML with simple commands and eventually these commands came as easy to me as typing &#8220;ASDF JKL;&#8221;. CSS Stylesheets are easier to compose and HTML became less of a hindrance with my Vim skills &#8211; anything code, even the new AJAX and JavaScript libraries are easy to debug through Vim. Scriptkiddies &#8211; can stick to dreamweaver and frontpage, I&#8217;m going to keep my old school Vim and produce more work in less time. That way I can do what I enjoy doing most, shop to my hearts content.</p>
<p>To give you an idea of how fast I work with Vim and SSH &#8211; last week I redid a entire website of 100,000+ webpages with new CSS and some additional code. I had the entire site completely upgraded and redone with fresh CSS stylesheets, new Google Sitemaps, new code to render MySQL queries faster and all under 4  work hours.</p>
<p>My design team sends me a brand new PSD file, and I am able to write up the CSS, HTML and supporting PHP scripts, as well as JavaScript all within minutes. Now, Dreamweaver can do this as well &#8211; but you will still have to clean out that code to make it search friendly. My way, is simple and easy and the changes are made directly to the server and web host environment with no hiccups to stop the progress. I can minimize mark up to work with different browsers on the fly and never miss a beat. I don&#8217;t work on test directories, everything is done and pushed live within seconds. Can you say the same with your current style of code? I never trust software that promises to make Search Friendly Websites, I do however trust the simplicity of basic text editing through Vim. Happy Coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-girl.com/the-power-of-vim-and-fast-search-friendly-html-and-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
