<?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"
	>

<channel>
	<title>SF-Zone.net</title>
	<atom:link href="http://sf-zone.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://sf-zone.net</link>
	<description>Programming, Design, Internet Marketing</description>
	<pubDate>Fri, 15 Aug 2008 13:45:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Team Coding - short guide to SVN</title>
		<link>http://sf-zone.net/team-coding-short-guide-to-svn/101/</link>
		<comments>http://sf-zone.net/team-coding-short-guide-to-svn/101/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 13:39:49 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Programing]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Coding Standards]]></category>

		<category><![CDATA[CS]]></category>

		<category><![CDATA[Subversion]]></category>

		<category><![CDATA[SVN]]></category>

		<category><![CDATA[team coding]]></category>

		<guid isPermaLink="false">http://sf-zone.net/?p=101</guid>
		<description><![CDATA[Programming projects have become very complicated. Most of the programs that we use have been build by many programmers in a long period of time. It is almost impossible to make a good and useful program all by yourself. So that is why many programmers gather in a team and focus on one project. Here, [...]]]></description>
			<content:encoded><![CDATA[<p>Programming projects have become very complicated. Most of the programs that we use have been build by many programmers in a long period of time. It is almost impossible to make a good and useful program all by yourself. So that is why many programmers gather in a team and focus on one project. Here, it is very important that each programmer has all the changes the other ones made.<span id="more-101"></span></p>
<p><div style="float:left; padding: 0px; margin: 0px; border-width: 5px 10px 0px 0px; border-style: solid; border-color: #FFFFFF; background-color: white">
<script type="text/javascript"><!--
google_ad_client = "pub-2028859646179750";
/* WP2 Square */
google_ad_slot = "8920111575";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div><strong>Team comunication</strong></p>
<p>It is very important in a project that: <span style="text-decoration: underline;">You are understood by the other programmers</span> and <span style="text-decoration: underline;">You understand the other programmers</span>. That is why in evey programming language there are <strong>Coding Standards</strong> (CS). These CS make the source code be easy read and easy modified by any coder in the team. Here are a few CS that should be applicable in most projects:</p>
<ul>
<li>one instruction per line</li>
<li>local variables should only have small letters and &#8220;_&#8221; should be the word separator</li>
<li>Global variables should be all CAPITALIZED</li>
<li>Variables and functions should have names that clearly say what it is/does. Ex: Don&#8217;t have variable named &#8220;var1&#8243; or functions called &#8220;doSomething()&#8221;</li>
<li>Don&#8217;t make long and tweaked commands , except it is absolutely necessary, in witch case they should be well documented with //comments</li>
<li>No bugs in the programming</li>
</ul>
<p>The <strong>Coding Standards</strong> are very usefull when working in a team. In a big project there are some problems that need to be very well know. For example what happens in two people work on the same file in the very same time? Each does modifications and after they upload it to the server ONLY ONE will be visible (the other one will be over-written). Also, if someone finds a problem/bug, how does he report it fast to the entire team? Also, it is very important to be a <strong>Revision Control</strong>. In case a bad change is made to the project, there always is the posibilitty to roll-back to a previous version.</p>
<p><div style="float:left; padding: 0px; margin: 0px; border-width: 5px 10px 0px 0px; border-style: solid; border-color: #FFFFFF; background-color: white">
<script type="text/javascript"><!--
google_ad_client = "pub-2028859646179750";
/* WP2 Square */
google_ad_slot = "8920111575";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>Here, Subversion (SVN for short) comes into action. It holds bothe the new and the old versions of the project, it shows what files are in work by other coders (so there won&#8217;t be two coders working on the same file), it has a &#8220;BUG Report&#8221; feature where each coder can post problems he found. It runs on a server so it does not ocuppy the workstations resources.</p>
<p>Also, SVN can work on more branches at the same time. There is a main branche (the projects itself) and other auxiliar branches (modules, other features and stuff like that). At the end, all these branches can be merged into one full and working project.</p>
<p>SVN is really easy to work with. All changes are made locally on the work computer and after that the modifications are uploaded onto the server. The users sees these as a clasic directry/file structure (as in Windows Explorer).</p>
<p>Here are a couple of usefull resources:</p>
<p>1. C++ Coding Standard – <a href="http://www.possibility.com/Cpp/CppCodingStandard.html">http://www.possibility.com/Cpp/CppCodingStandard.html</a><br />
2. Indent – <a href="http://www.gnu.org/software/indent/">http://www.gnu.org/software/indent/</a><br />
3. CodeCheck – <a href="http://www.abxsoft.com/codchk.htm">http://www.abxsoft.com/codchk.htm</a><br />
4. Subversion - <a href="http://subversion.tigris.org/">http://subversion.tigris.org/</a><br />
5. TortoiseSVN - <a href="http://tortoisesvn.tigris.org/">http://tortoisesvn.tigris.org/</a><br />
6. Trac - <a href="http://trac.edgewall.org/">http://trac.edgewall.org/</a></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-2028859646179750";
/* WP */
google_ad_slot = "0413439189";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
Article inspired by Valentin Stanciu</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fsf-zone.net%2Fteam-coding-short-guide-to-svn%2F101%2F';
  addthis_title  = 'Team+Coding+-+short+guide+to+SVN';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://sf-zone.net/team-coding-short-guide-to-svn/101/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What about Cuil?</title>
		<link>http://sf-zone.net/what-about-cuil/99/</link>
		<comments>http://sf-zone.net/what-about-cuil/99/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 20:53:08 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Sites]]></category>

		<category><![CDATA[Cuil]]></category>

		<category><![CDATA[cuil review]]></category>

		<category><![CDATA[Search engine]]></category>

		<guid isPermaLink="false">http://sf-zone.net/?p=99</guid>
		<description><![CDATA[One website made a lot of fuss in the past month. The website cuil.com is a new search engine actually. Is it any good? I have put it to the test.
Like I said, this is a new search engine. Many say that this will replace Google some day in the future. We can&#8217;t be sure [...]]]></description>
			<content:encoded><![CDATA[<p>One website made a lot of fuss in the past month. The website <a href="http://cuil.com" target="_blank">cuil.com</a> is a new search engine actually. Is it any good? I have put it to the test.<span id="more-99"></span></p>
<p><!--adsense#ad2-->Like I said, this is a new search engine. Many say that this will replace Google some day in the future. We can&#8217;t be sure of this now because it is only at the begining. Others say that it is just another website that will fail very soon. The desing of the main page is simple. A black page with a search box and a search button on it. Also the Cuil logo is visible. Nothing very spectacular stands out. But, as we already learned, in a search engine, not the design is important, but the search results. Well, when you search, the first unique feature of Cuil is visible. The search results aren&#8217;t shown in a list like Google&#8217;s, yahoo&#8217;s or any other search engine. They are grouped in three columns. Also, the text right under the title is a litle longer than the one from Google.</p>
<p>OK! So until now just a fancy, but not very important, arangement. But is it any good? I have put cuil to the test. The first thing I have searched was SF-Zone.net (this website&#8217;s URL). It did have my website as it&#8217;s first result, but as the text result was just: &#8220;Copyright 2008 - SF-Zone.net&#8221;. I expected the last article I wrote (like in other search engines) but I asked for too much. Other results (2490) are from different directories or forums that link to this website.  Next I did a search for &#8220;SF-Zone&#8221;. Strangely, my website&#8217;s title was in the first result, but it was from a directorie my website was posted in. My website was just the 9 result.</p>
<p><!--adsense#ad2-->Next search: &#8220;google&#8221;. Here another unique feature was visible. At the top there of the results there is a menu with a few tabs: &#8220;Google Search&#8221;, &#8220;Google Earth&#8221;, &#8220;Google Groups&#8221; and &#8220;more&#8221;. these tabs take you to the search result for that term. Another unique feature is that a widget is visible on the page that gives you the posibility to explroe the results by category.</p>
<p>Next I decided to really put it to the test. So I searched for &#8220;Image Hosting script&#8221;. this really messed the search results. All the results contained &#8220;image Hosting&#8221; and linked to image hosting website (similar to imageshack) no one actually gave me an Image hosting script (similar to the one on my website).</p>
<p>As a conclusion. It does offer some interesting features, but most of the search results are bad and not relevant. It has potential, but right now I will stick to google. They still have a lot of work to do until they can compete with Ask, MSN, Yahoo and finally Google. Will they succed? We will just have to wait and see.<br />
<center><!--adsense#ad1--></center></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fsf-zone.net%2Fwhat-about-cuil%2F99%2F';
  addthis_title  = 'What+about+Cuil%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://sf-zone.net/what-about-cuil/99/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Back Home &#038; Happy</title>
		<link>http://sf-zone.net/back-home-happy/96/</link>
		<comments>http://sf-zone.net/back-home-happy/96/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 09:04:37 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[2nd place]]></category>

		<category><![CDATA[contest]]></category>

		<category><![CDATA[infoeducatie]]></category>

		<category><![CDATA[infoeducation]]></category>

		<category><![CDATA[prize]]></category>

		<guid isPermaLink="false">http://sf-zone.net/?p=96</guid>
		<description><![CDATA[Many of you know me as a small internet marketer that has a few computer knowledge and can program small scripts or programs. But only a few people know that I am more than that. Few know that I have (had) a few bigger projects.
On Sunday 11:23PM my train came back. I was at a [...]]]></description>
			<content:encoded><![CDATA[<p>Many of you know me as a small internet marketer that has a few computer knowledge and can program small scripts or programs. But only a few people know that I am more than that. Few know that I have (had) a few bigger projects.<span id="more-96"></span></p>
<p><!--adsense#ad2-->On Sunday 11:23PM my train came back. I was at a very important contest for youg programmers (like me). The contest, called Infoeducation, has a long tradition and is held for 14 years. This was my first time there and I was very pleased with what I did. I had a really big eLearning project for phisics. The project took my team one year to make it. The team was composed of me as both designer and programmer, Timo as the programmer and Laura for the phisics part.</p>
<p>I was the only one from the team that went there. I presented the project and waited for the results. The best 5 projects go into &#8220;Open&#8221; where one member of the team has to make a completly new project in just 24 hours. No Internet conection, no telephone, just our knowledge and software that we need. I was in the first 5. In those 24 hours I had to do an eLearning software for children to learn 2nd, 3rd and 4th grade math.<br />
<center><!--adsense#ad1--></center><br />
I got 2nd place there <img src='http://sf-zone.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> This is the most important contest I have been too and I am very pleased with what I did there. I also learned many new things from al the seminaries there were hold there. My next few articles will covered a few of those seminaries that I think are interesting. So come back again.<br />
<center><!--adsense#ad1--></center></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fsf-zone.net%2Fback-home-happy%2F96%2F';
  addthis_title  = 'Back+Home+%26%23038%3B+Happy';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://sf-zone.net/back-home-happy/96/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Spreadsheet escape - Game</title>
		<link>http://sf-zone.net/spreadsheet-escape-game/91/</link>
		<comments>http://sf-zone.net/spreadsheet-escape-game/91/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 18:36:53 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sf-zone.net/?p=91</guid>
		<description><![CDATA[I have decided to make a small game. Hope you like it. It is called spreadsheet escape. You can play it at GamesJacket.com
If you want the game for your website you can download it here: Spreadsheet escape

  addthis_url    = 'http%3A%2F%2Fsf-zone.net%2Fspreadsheet-escape-game%2F91%2F';
  addthis_title  = 'Spreadsheet+escape+-+Game';
  addthis_pub    = [...]]]></description>
			<content:encoded><![CDATA[<p>I have decided to make a small game. Hope you like it. It is called spreadsheet escape. You can play it at <a href="http://www.gamejacket.com/gamejacket.asp?gjid=00542" target="_blank">GamesJacket.com</a></p>
<p>If you want the game for your website you can download it here: <a href="http://www.mediafire.com/?gm7yzgudjg0" target="_blank">Spreadsheet escape</a></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fsf-zone.net%2Fspreadsheet-escape-game%2F91%2F';
  addthis_title  = 'Spreadsheet+escape+-+Game';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://sf-zone.net/spreadsheet-escape-game/91/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Promote my eBook - CONTEST</title>
		<link>http://sf-zone.net/promote-my-ebook-contest/86/</link>
		<comments>http://sf-zone.net/promote-my-ebook-contest/86/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 06:00:30 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Internet Marketing]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[contest]]></category>

		<category><![CDATA[contests]]></category>

		<category><![CDATA[ebook]]></category>

		<category><![CDATA[marketing ebook]]></category>

		<guid isPermaLink="false">http://sf-zone.net/?p=86</guid>
		<description><![CDATA[As you may know I have written my second eBook and I started to sell it. As every internet marketer I will need a as many visitors as I can to my landing pages. That is why I decided to host a contest. 
Contents had proven to bee a really good marketting solution. The contest [...]]]></description>
			<content:encoded><![CDATA[<p>As you may know I have written my second eBook and I started to sell it. As every internet marketer I will need a as many visitors as I can to my landing pages. That is why I decided to host a contest. <span id="more-86"></span></p>
<p><!--adsense#ad2-->Contents had proven to bee a really good marketting solution. The contest will help me promote my eBook and in the same time can give you one nice domain name: <strong>diggexchange.net</strong>. The domain is registered at <a href="http://domainrightnow.com/" target="_blank">domainrightnow.com</a> and still hase a few month left. It is an undeveloped domain name but I am sure it has a lot of potential. The winner will also get a copy of the ebook.</p>
<p>So, What must you do? I have made two landing pages for my eBook. All you have to do is make a small article on your website/blog about this ebook and post a link to one of these landing pages. After that post a comment with the link to the article so I can approve it. If you have more websites/blogs you can post on each one and this will give you more chances to win.</p>
<p>Also, if you post an article about this contest you get another chance to win.</p>
<p>The landing pages are:</p>
<p><a href="http://marketing-ebook.blinkweb.com/" target="_blank">marketing-ebook.blinkweb.com/</a> and <a href="http://marketing-ebook.weebly.com/" target="_blank">marketing-ebook.weebly.com/</a> You will find there all the information you need about the ebook.</p>
<p>So happy posting <img src='http://sf-zone.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fsf-zone.net%2Fpromote-my-ebook-contest%2F86%2F';
  addthis_title  = 'Promote+my+eBook+-+CONTEST';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://sf-zone.net/promote-my-ebook-contest/86/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to start your first website</title>
		<link>http://sf-zone.net/how-to-start-your-first-website/76/</link>
		<comments>http://sf-zone.net/how-to-start-your-first-website/76/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 09:25:21 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Ebooks]]></category>

		<category><![CDATA[ebook]]></category>

		<category><![CDATA[how to makrte website]]></category>

		<category><![CDATA[marketing ebook]]></category>

		<category><![CDATA[website marketing]]></category>

		<guid isPermaLink="false">http://sf-zone.net/?p=76</guid>
		<description><![CDATA[Ever wanted to start your own website? Many say that making a successful website is impossible nowadays.  Well, they are wrong. I did not say it is a peace of cake, but with the right tools, knowledge and off course patience,  you too can start an online business that will bring you money and a [...]]]></description>
			<content:encoded><![CDATA[<div>Ever wanted to start your own website? Many say that making a successful website is impossible nowadays.  Well, they are wrong. I did not say it is a peace of cake, but with the right tools, knowledge and off course patience,  you too can start an online business that will bring you money and a lot of visitors.</p>
<p>In this ebook I have written all you need to know in order to start your first successful website. Here you will find many useful links, marketing tips and how to earn money after you have build your website.<br />
The ebook has 8 chapters:<br />
- Website idea and targeted visitors<br />
- Website design and coding<br />
- Domain name and hosting<br />
- Website content<br />
- Website SEO<br />
- Staying in touch with your visitors<br />
- Promoting your website<br />
- Earning from your website</p>
<p>As you can see it covers everything there is on making a successful website.<span id="more-76"></span></div>
<div class="main_paraTitle"><span><span style="font-weight: bold; font-size: 18px;">Full Range of Benefits</span></span></div>
<div style="background: transparent url(i_2/checkmark.gif) no-repeat scroll 0px center; padding-left: 40px; min-height: 34px;">
<div>Learn how to make your website to be appealing for visitors</div>
</div>
<div style="background: transparent url(i_2/checkmark.gif) no-repeat scroll 0px center; padding-left: 40px; min-height: 34px;">
<div>Learn what tools you need and what are the best free CMSs you can use to build the site as fast as possible without any programming skills.</div>
</div>
<div style="background: transparent url(i_2/checkmark.gif) no-repeat scroll 0px center; padding-left: 40px; min-height: 34px;">
<div>Learn how to market your website and attract users and customers to your online business</div>
</div>
<div style="background: transparent url(i_2/checkmark.gif) no-repeat scroll 0px center; padding-left: 40px; min-height: 34px;">
<div>Learn what are the best Advertising Networks to successfully earn money from your website.</div>
</div>
<div class="main_paraTitle"><span style="font-weight: bold; font-size: 18px;">Testimonials</span></div>
<div>Not sure if this is the right ebook for you? Why don&#8217;t you read what other happy users have to say about it. Read about there success after downloading this wonderful ebook. Go now to the Testimonials below and see for yourself.</div>
<div class="main_paraTitle"><span style="font-weight: bold; font-size: 18px;">Pricing</span></div>
<div style="text-align: center;">Many charge 50$ or more for such an ebook. But not me. You get instant download and can start building your website right away fur just:</p>
<p><big style="font-weight: bold;"><big><big><big><big><span style="color: #ff0000;">14.99$</span></big></big></big></big></big></div>
<div class="main_paraTitle"><span><span style="font-weight: bold; font-size: 18px;">Special Offer</span></span></div>
<div>Buy now and you will receive a very useful marketing too:</div>
<div style="text-align: center;"><span><span style="font-weight: bold; font-size: 14px;">Article Analyzer</span></span></div>
<div style="background: transparent url(i_2/checkmark.gif) no-repeat scroll 0px center; padding-left: 40px; min-height: 34px;">
<div><span style="font-family: default;"><strong>Quickly &#8220;test&#8221; all your articles prior to publishing  					them on the web to make sure you don&#8217;t waste all of your  					effort!</strong> Relax knowing all of the time spent on  					each article is likely to pay off!</span></div>
</div>
<div style="background: transparent url(i_2/checkmark.gif) no-repeat scroll 0px center; padding-left: 40px; min-height: 34px;">
<div><span style="font-family: default;"><strong><span style="font-family: default;">Ensure</span></strong><span style="font-family: default;"><strong> your  					keyword density is accurate for easy search engine approval.</strong> Never miss-judge whether an article is going to hit the  					bullseye, costing you a prized profitable search engine  					ranking you could&#8217;ve easily had!</span></span></div>
</div>
<div style="background: transparent url(i_2/checkmark.gif) no-repeat scroll 0px center; padding-left: 40px; min-height: 34px;">
<div><span style="font-family: default;"><span style="font-family: default;"><strong>Quick catch and correct any spelling errors  	that might exist with built-in spell-checker. </strong> Nothing&#8217;s worse than  	working for hours over an article and having an overlooked spelling error  	limit its success!</span></span></div>
</div>
<div style="background: transparent url(i_2/checkmark.gif) no-repeat scroll 0px center; padding-left: 40px; min-height: 34px;">
<div><span style="font-family: default;"><span style="font-family: default;"><strong>Get  	the word count, the number of times a chosen word or phrase occurs throughout the  	content, and the density percentage.</strong> All of the data to make smart  	decisions so your articles pay handsomely are here!</span></span></div>
</div>
<div style="background: transparent url(i_2/checkmark.gif) no-repeat scroll 0px center; padding-left: 40px; min-height: 34px;">
<div><span style="font-family: default;"><span style="font-family: default;"><strong>Save each article in either .txt or HTML format for full flexibility and  	saved time! </strong> Your content is ready for you to submit to  	directories, online newswires, or publish on your website!</span></span></div>
</div>
<div style="background: transparent url(i_2/checkmark.gif) no-repeat scroll 0px center; padding-left: 40px; min-height: 34px;">
<div><span style="font-family: default;"><span style="font-family: default;"><strong>Quickly spot your keywords inside your article  	with built-in highlighting feature!</strong> This is a huge time saver when  	you&#8217;re trying to edit your articles!</span></span></div>
</div>
<div style="background: transparent url(i_2/checkmark.gif) no-repeat scroll 0px center; padding-left: 40px; min-height: 34px;">
<div><span style="font-family: default;"><span style="font-family: default;"><strong>Plus, more features to save you time and give the  	information you need to succeed with your content!</strong></span></span></div>
</div>
<div style="text-align: center;">That is right. All these for just:</div>
<div style="text-align: center;"><span><span style="font-weight: bold; font-size: 40px; color: #f90404;">14.99$</span></span></div>
<div style="text-align: center;"><a href="https://www.payloadz.com/go/sip?id=488618"><img class="alignnone size-full wp-image-83" title="buy-now" src="http://sf-zone.net/wp-content/uploads/2008/07/buy-now.jpg" alt="" width="200" height="70" /></a></div>
<div style="text-align: left;"><em>* if you did not receive the ebook contact me with your paypal address u used for purchasing the item.</em></div>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fsf-zone.net%2Fhow-to-start-your-first-website%2F76%2F';
  addthis_title  = 'How+to+start+your+first+website';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://sf-zone.net/how-to-start-your-first-website/76/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Squidoo poll results</title>
		<link>http://sf-zone.net/squidoo-poll-results/74/</link>
		<comments>http://sf-zone.net/squidoo-poll-results/74/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 09:21:26 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Internet Marketing]]></category>

		<category><![CDATA[Sites]]></category>

		<category><![CDATA[squidoo]]></category>

		<category><![CDATA[squidoo experiment]]></category>

		<category><![CDATA[squidoo lenses]]></category>

		<guid isPermaLink="false">http://sf-zone.net/?p=74</guid>
		<description><![CDATA[As youmay know about 10 days ago I made a poll to see what others are doing with squidoo.com Here you can find the result of the poll. Hope this will inspire you and help you on your journey to makeing money on the itnernet.
Sadly not to many peopl had participated in the pool, but [...]]]></description>
			<content:encoded><![CDATA[<p>As youmay know about 10 days ago I made a poll to see what others are doing with squidoo.com Here you can find the result of the poll. Hope this will inspire you and help you on your journey to makeing money on the itnernet.<span id="more-74"></span></p>
<p><!--adsense#ad2-->Sadly not to many peopl had participated in the pool, but the ones that participated where both newbyes and proffesionals on internet marketing. Some have only a few squidoo lense, while others have mroe than 100. Of course, the more you have, the more you will earn. Also, not many people share the earning with squidoo so they can give to charity.  The categories they have lenses are very variate, but one thing is for sure: The lenses help to bring more traffic to the owner&#8217;s website.</p>
<p>Here you can view the pool results: <a href="http://spreadsheets.google.com/ccc?key=pJ-DTVaT1_OqjIGrKDYgsAQ&amp;hl=en" target="_blank">Pool Results Spreadsheet</a></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fsf-zone.net%2Fsquidoo-poll-results%2F74%2F';
  addthis_title  = 'Squidoo+poll+results';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://sf-zone.net/squidoo-poll-results/74/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Get Started Freelancing</title>
		<link>http://sf-zone.net/how-to-get-started-freelancing/73/</link>
		<comments>http://sf-zone.net/how-to-get-started-freelancing/73/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 20:09:34 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Useful&amp;Interesting Discusions]]></category>

		<category><![CDATA[freelancing]]></category>

		<category><![CDATA[making money]]></category>

		<guid isPermaLink="false">http://sf-zone.net/?p=73</guid>
		<description><![CDATA[I’ve been lurking in these forums for a few months and have posted a couple of one-liners, but I feel like Digital Point and its members have taught me so much that I owe this community something more substantial than trite comments and zingers.

I’ve noticed that a lot of people ask questions about where they [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve been lurking in these forums for a few months and have posted a couple of one-liners, but I feel like Digital Point and its members have taught me so much that I owe this community something more substantial than trite comments and zingers.<br />
<span id="more-73"></span><br />
<!--adsense#ad2-->I’ve noticed that a lot of people ask questions about where they can get jobs and what they should charge. I haven’t been freelancing long so I’m not an expert, but I have built an income of around $1,000 per month working part-time and it only took me a few months to do it. If nothing else, I hope this post will help people who are just starting out.</p>
<p>Here are a couple of tips that helped me get started.  Hopefully some of you will find it useful.</p>
<p><strong>Join Elance</strong></p>
<p>I expect a couple of hate posts for this suggestion. I’ve read multiple posts that bash this site for charging a monthly fee and a percentage of earnings. However, I found that this site gives better quality jobs than other freelance sites and I can make 10 times my monthly fee easily.</p>
<p>You can open a free account if you don’t want to spend the $10/month in the beginning, but you only get three connects which are basically three chances to bid on a job. I find that my bid is chosen for around 20% of the projects I bid on. I can influence this percentage somewhat by altering my bidding price for jobs- bringing me to my next point.</p>
<p><!--adsense#ad2--><strong>Alter Your Pay Rate</strong></p>
<p>I got this idea when I read about a program that changes the price of event tickets based on demand. If there are a lot of people buying the tickets, the program automatically raises the price. When people stop buying, the price falls until the buying picks up again. I thought that formula would apply well to freelance writing.</p>
<p>Since my profile doesn’t have a lot of completed jobs, I tend to bid very competitively. Once I start getting work, I up my bids. The busier I get, the higher I bid. This system seems to work well because it allows you to raise your rates naturally until you find equilibrium.</p>
<p>The system works because as you get busier you’re bidding higher and taking on higher paying clients. When those clients become regulars, your minimum bid goes up because you’re backed up with higher paying work. The unfortunate end is that you may have to drop some of your lower paying clients. However, you might be surprised at how many won’t mind paying you a higher rate.</p>
<p>Conventional wisdom says to charge what you’re worth and stick with it. However, newbies like us don’t have the luxury of turning away work. By raising your rates to match your workload, you can work on getting higher paying clients without going through long stretches without work (and money).</p>
<p><!--adsense#ad2--><strong>Run It Like A Business</strong></p>
<p>The people who use you consistently are people who need professionals who deliver high-quality content on time. In my mind, the only reason to miss a deadline is if the client is not ready to take delivery. You can find good writers and good business people, but it’s much more difficult to find people who are both. If you write well and conduct yourself professionally, you shouldn’t have any problems finding work.</p>
<p style="text-align: right;"><em>Article by <strong><a href="http://theaveragejoe.elance.com" target="_blank">Randy Laboy</a></strong></em></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fsf-zone.net%2Fhow-to-get-started-freelancing%2F73%2F';
  addthis_title  = 'How+To+Get+Started+Freelancing';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://sf-zone.net/how-to-get-started-freelancing/73/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Start your own proxy empire - Free eBook</title>
		<link>http://sf-zone.net/start-your-own-proxy-empire-free-ebook/71/</link>
		<comments>http://sf-zone.net/start-your-own-proxy-empire-free-ebook/71/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 20:39:05 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Ebooks]]></category>

		<category><![CDATA[ebook]]></category>

		<category><![CDATA[free ebook]]></category>

		<category><![CDATA[free proxy ebook]]></category>

		<category><![CDATA[proxy ebook]]></category>

		<category><![CDATA[start proxy]]></category>

		<guid isPermaLink="false">http://sf-zone.net/?p=71</guid>
		<description><![CDATA[I have made this short ebook that will cover the steps you need to learn in roder to make your own proxy websites. It covers everything: from hosting to monetizing the proxy.
You are free to download this wonderfull ebook. I know it is a short one (less than 4 pages) but it covers all the [...]]]></description>
			<content:encoded><![CDATA[<p>I have made this short ebook that will cover the steps you need to learn in roder to make your own proxy websites. It covers everything: from hosting to monetizing the proxy.<span id="more-71"></span></p>
<p><!--adsense#ad2-->You are free to download this wonderfull ebook. I know it is a short one (less than 4 pages) but it covers all the important steps you need to make to make a succesfull proxy website. It has examples of proxy scripts, it teaches you how to promote your proxy and also how to start the proxy with no costs.</p>
<p>The eBook is free so please do not sell it, redistribute it or modify it. Please do not claime it as your own. I know my english is not the best but I am sure you will understand what I am trying to say with no problem.</p>
<p style="text-align: center;"><a href="http://sf-zone.net/wp-content/uploads/2008/06/start-your-proxy-empire.pdf"><img class="alignnone size-full wp-image-14" title="Download" src="http://sf-zone.net/wp-content/uploads/2008/03/download.png" alt="" width="150" height="52" /></a></p>
<p style="text-align: center;">
<p style="text-align: center;">Also pelase subscribe to our feed for future news and ebooks. <a title="Subscribe to my feed" rel="alternate" type="application/rss+xml" href="http://feeds.feedburner.com/Sf-zone">Subscribe in a reader</a></p>
<p style="text-align: center;">
<p><!--adsense#ad1--></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fsf-zone.net%2Fstart-your-own-proxy-empire-free-ebook%2F71%2F';
  addthis_title  = 'Start+your+own+proxy+empire+-+Free+eBook';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://sf-zone.net/start-your-own-proxy-empire-free-ebook/71/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Squidoo.com - Is it worth it?</title>
		<link>http://sf-zone.net/squidoo-is-it-worth-it/68/</link>
		<comments>http://sf-zone.net/squidoo-is-it-worth-it/68/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 20:14:35 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Internet Marketing]]></category>

		<category><![CDATA[Sites]]></category>

		<category><![CDATA[squidoo]]></category>

		<category><![CDATA[squidoo experiment]]></category>

		<category><![CDATA[squidoo help]]></category>

		<category><![CDATA[squidoo lenses]]></category>

		<guid isPermaLink="false">http://sf-zone.net/?p=68</guid>
		<description><![CDATA[I have heard about Squidoo for some time now but never really used it. Two days ago I decided to give it a try. I made three lenses with on three different topics with content from this site. I published them and now I want to see if they earn any money or, at least, [...]]]></description>
			<content:encoded><![CDATA[<p>I have heard about Squidoo for some time now but never really used it. Two days ago I decided to give it a try. I made three lenses with on three different topics with content from this site. I published them and now I want to see if they earn any money or, at least, give me some traffic to this blog.<span id="more-68"></span><br />
<!--adsense#ad2-->The content isn&#8217;t very much but it is very well written. actually it is an article from this blog. Actually three articles because I build three lenses. A lense is actually a squidoo page made by you. You have many widgets that you can easy add on your page, modify the content and everything. You can also choose to receive money from these pages or give the earnings to charitty&#8230;or both. I did non build the pages for money (I did not knew before registering that I can chose to receive money from the ads desplayed). I build those pages because I wanted to see if they can bring me more traffic to my blog. the pages I have are:</p>
<p><a href="http://www.squidoo.com/design-programming" target="_blank">http://www.squidoo.com/design-programming</a></p>
<p><a href="http://www.squidoo.com/proxy-money" target="_blank">http://www.squidoo.com/proxy-money</a></p>
<p><a href="http://www.squidoo.com/touch-screen-phones" target="_blank">http://www.squidoo.com/touch-screen-phones</a></p>
<p>As you can clearly see the content is the same as a post or two from this blog. I have also added the RSS feed from this blog in hope of users reading my blog after reading those lenses. Also every text content has a link back to this blog. Makeing the page was easy with the tools they gave so anyone an start there very own page now.</p>
<p><!--adsense#ad1--><br />
I will monitor these pages for a week (at least) and give you any info over them. Also, I wanted to see other users oppinion on this topic so I made a quick pool. If you have experience with Squidoo please take this very quick <a href="http://spreadsheets.google.com/viewform?key=pJ-DTVaT1_OqjIGrKDYgsAQ" target="_blank">survey</a>. It will help all of us in understanding Squidoo more. I will run this pool for about a week and post the results after that.<br />
<!--adsense#ad1--><br />
So, please take a look at the lenses I have built, post here any tips that you have and please, take the survey from here: <a href="http://spreadsheets.google.com/viewform?key=pJ-DTVaT1_OqjIGrKDYgsAQ" target="_blank">Squidoo Pool</a></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fsf-zone.net%2Fsquidoo-is-it-worth-it%2F68%2F';
  addthis_title  = 'Squidoo.com+-+Is+it+worth+it%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://sf-zone.net/squidoo-is-it-worth-it/68/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
