<?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>Sun, 28 Mar 2010 15:44:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Vim: Replacing ^M with a new line</title>
		<link>http://www.linux-girl.com/search-engine-optimization/vim-replacing-m-with-a-new-line/</link>
		<comments>http://www.linux-girl.com/search-engine-optimization/vim-replacing-m-with-a-new-line/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 17:11:00 +0000</pubDate>
		<dc:creator>Asia</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.linux-girl.com/?p=134</guid>
		<description><![CDATA[I recently uploaded some new software for a domain I utilize &#8211; and of course the dreaded newline replacements (^M) are all over the place. To fix this &#8211; I type one simple line: For Mac Users in VIM or VI: %s/\r//g For windows users in VIM or VI: %s/[cntrl+m]//g This will replace them throughout<a href="http://www.linux-girl.com/search-engine-optimization/vim-replacing-m-with-a-new-line/"><br/> read more..</a>]]></description>
			<content:encoded><![CDATA[<p>I recently uploaded some new software for a domain I utilize &#8211; and of course the dreaded newline replacements (^M) are all over the place. To fix this &#8211; I type one simple line: </p>
<p>For Mac Users in VIM or VI:<br />
%s/\r//g</p>
<p>For windows users in VIM or VI:<br />
%s/[cntrl+m]//g</p>
<p>This will replace them throughout the file. Happy Coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-girl.com/search-engine-optimization/vim-replacing-m-with-a-new-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bing Will Never Be King. Just another Microsoft Product.</title>
		<link>http://www.linux-girl.com/search-engine-optimization/bing-will-never-be-king-just-another-microsoft-product/</link>
		<comments>http://www.linux-girl.com/search-engine-optimization/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<a href="http://www.linux-girl.com/search-engine-optimization/bing-will-never-be-king-just-another-microsoft-product/"><br/> read more..</a>]]></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/search-engine-optimization/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/php-code/sed-sed-bash-writing-simple-bash-scripts/</link>
		<comments>http://www.linux-girl.com/php-code/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<a href="http://www.linux-girl.com/php-code/sed-sed-bash-writing-simple-bash-scripts/"><br/> read more..</a>]]></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/php-code/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/mac-apple/iphone-pwned-and-powered-by-t-mobile/</link>
		<comments>http://www.linux-girl.com/mac-apple/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<a href="http://www.linux-girl.com/mac-apple/iphone-pwned-and-powered-by-t-mobile/"><br/> read more..</a>]]></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/mac-apple/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/search-engine-optimization/track-website-visitors-with-clicky-for-higher-conversions/</link>
		<comments>http://www.linux-girl.com/search-engine-optimization/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<a href="http://www.linux-girl.com/search-engine-optimization/track-website-visitors-with-clicky-for-higher-conversions/"><br/> read more..</a>]]></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/search-engine-optimization/track-website-visitors-with-clicky-for-higher-conversions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
