<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0" xml:base="http://spacebug.com">
<channel>
 <title>Spacebug Open Source Initiative</title>
 <link>http://spacebug.com</link>
 <description>Spacebug Mission: Keeping Software Simple, Open and Pragmatic.</description>
 <language>en</language>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/spacebug" type="application/rss+xml" /><feedburner:emailServiceId>spacebug</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
 <title>AutoSnippet - automatically generate HTML and javascript code snippets</title>
 <link>http://feedproxy.google.com/~r/spacebug/~3/e5bLQx9avJA/AutoSnippet_automaticly_generate_HTML_and_javascript_code_snippets</link>
 <description>&lt;p&gt;
Code snippets posted online are a great source of knowledge and simple way to share experience and to reuse code. As developers we always look to see if there is a 'code example' which we can modify to our needs. As bloggers we find code snippets very useful to get our information out to the readers.&lt;/p&gt;&lt;p&gt;
The problem is that creating these code snippets is a complex and cumbersome task. You need you replace all the &amp;lt; with &lt;code&gt;&amp;alt&lt;/code&gt;, wrap the code in &amp;lt;pre&gt; and &amp;lt;code&gt; tags and then use a Syntax Highlighter to make our code look nice. Every time we change or fix the code you need to reiterate this process.&lt;/p&gt;&lt;p&gt;
&lt;a href="http://spacebug.com/AutoSnippet_automatic_snippet_generator"&gt;AutoSnippet&lt;/a&gt; solves this problem by automatically generating the code snippet from the source code (HTML, CSS and Javascript). No more cumbersome repetitive tasks and no more inconsistencies between example and real code.&lt;/p&gt;&lt;p&gt;
In this article I will show &lt;a href="http://spacebug.com/AutoSnippet_automaticly_generate_HTML_and_javascript_code_snippets#demo"&gt;how to generate automatic snippets&lt;/a&gt; for your blog and source/code websites.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://spacebug.com/AutoSnippet_automaticly_generate_HTML_and_javascript_code_snippets" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/spacebug/~4/e5bLQx9avJA" height="1" width="1"/&gt;</description>
 <comments>http://spacebug.com/AutoSnippet_automaticly_generate_HTML_and_javascript_code_snippets#comments</comments>
 <category domain="http://spacebug.com/taxonomy/term/12">JavaScript</category>
 <category domain="http://spacebug.com/taxonomy/term/44">jquery</category>
 <category domain="http://spacebug.com/taxonomy/term/2">Open source</category>
 <category domain="http://spacebug.com/taxonomy/term/18">Software development</category>
 <pubDate>Tue, 07 Jul 2009 08:33:24 +0000</pubDate>
 <dc:creator>Amir Shevat</dc:creator>
 <guid isPermaLink="false">70 at http://spacebug.com</guid>
<feedburner:origLink>http://spacebug.com/AutoSnippet_automaticly_generate_HTML_and_javascript_code_snippets</feedburner:origLink></item>
<item>
 <title>How to check where your site visitors come from using javascript </title>
 <link>http://feedproxy.google.com/~r/spacebug/~3/kKQ-B4kqICY/check_where_my_site_visitors_have_come_from_using_javascript</link>
 <description>&lt;p&gt;Where do my visitors come from? That is always a question bloggers, site owners and advertisers want to know. Knowing who has referred the visitor to my site tells you a lot about that visitor. This information might help you drive better, more finely tuned content to this user.&lt;/p&gt;
&lt;h2&gt;Demo&lt;/h2&gt;
&lt;div style="border:solid thin black;"&gt;
&lt;script type="text/javascript"&gt;
        if(document.referrer){
           document.write("&lt;h3&gt;Hello, Thank you for arriving from: " + document.referrer+"&lt;/h3&gt;");
         }else{
          document.write("&lt;h3&gt;Hello, Thank you for arriving directly to this page&lt;/h3&gt;");
}

    &lt;/script&gt;&lt;/div&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://spacebug.com/check_where_my_site_visitors_have_come_from_using_javascript" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/spacebug/~4/kKQ-B4kqICY" height="1" width="1"/&gt;</description>
 <comments>http://spacebug.com/check_where_my_site_visitors_have_come_from_using_javascript#comments</comments>
 <category domain="http://spacebug.com/taxonomy/term/12">JavaScript</category>
 <category domain="http://spacebug.com/taxonomy/term/2">Open source</category>
 <category domain="http://spacebug.com/taxonomy/term/18">Software development</category>
 <pubDate>Thu, 25 Jun 2009 08:35:48 +0000</pubDate>
 <dc:creator>Amir Shevat</dc:creator>
 <guid isPermaLink="false">69 at http://spacebug.com</guid>
<feedburner:origLink>http://spacebug.com/check_where_my_site_visitors_have_come_from_using_javascript</feedburner:origLink></item>
<item>
 <title>IPWEditor - In-Place WYSIWYG Editor with FCKeditor and JQuery Editable</title>
 <link>http://feedproxy.google.com/~r/spacebug/~3/oKvNetr6THk/In-Place_WYSIWYG_Editor_with_FCKeditor_and_JQuery_Editable</link>
 <description>&lt;p&gt;
An In-Place editor, such as &lt;a href="http://jquery.com/"&gt;jQuery&lt;/a&gt; &lt;a href="http://www.arashkarimzadeh.com/index.php/jquery/7-editable-jquery-plugin.html"&gt;Editable&lt;/a&gt; plug-in, lets you seamlessly replace texts on web pages with inputs, for on-the-spot editing (see &lt;a href="http://spacebug.com/In-Place_WYSIWYG_Editor_with_FCKeditor_and_JQuery_Editable#example1"&gt;example 1&lt;/a&gt;). WYSIWYG editors, such as &lt;a href="http://www.fckeditor.net/"&gt;FCKeditor&lt;/a&gt;, provide easy, word-like editor on the web (see &lt;a href="http://spacebug.com/In-Place_WYSIWYG_Editor_with_FCKeditor_and_JQuery_Editable#example2"&gt;example 2&lt;/a&gt;). Basically, the two are advanced User-Interface JavaScript tools that help users edit content on the web in an easy, intuitive and productive way.
&lt;/p&gt;
&lt;p&gt;Wouldn't it be great if we combine the two to create a really cool, web 2.0 user experience for editing content on the web? Unfortunately, FCKeditor and Editable are not fully compatible and some tweaking is required to make them interoperable.
&lt;/p&gt;
&lt;p&gt;In this article will demonstrate how, with little modification, FCKeditor can be integrated into Editable to create an In-Place WYSIWYG editor (see &lt;a href="http://spacebug.com/In-Place_WYSIWYG_Editor_with_FCKeditor_and_JQuery_Editable#example3"&gt;example3&lt;/a&gt;).
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://spacebug.com/In-Place_WYSIWYG_Editor_with_FCKeditor_and_JQuery_Editable" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/spacebug/~4/oKvNetr6THk" height="1" width="1"/&gt;</description>
 <comments>http://spacebug.com/In-Place_WYSIWYG_Editor_with_FCKeditor_and_JQuery_Editable#comments</comments>
 <category domain="http://spacebug.com/taxonomy/term/11">AJAX</category>
 <category domain="http://spacebug.com/taxonomy/term/2">Open source</category>
 <category domain="http://spacebug.com/taxonomy/term/18">Software development</category>
 <category domain="http://spacebug.com/taxonomy/term/28">web</category>
 <pubDate>Mon, 15 Jun 2009 05:35:07 +0000</pubDate>
 <dc:creator>admin</dc:creator>
 <guid isPermaLink="false">66 at http://spacebug.com</guid>
<feedburner:origLink>http://spacebug.com/In-Place_WYSIWYG_Editor_with_FCKeditor_and_JQuery_Editable</feedburner:origLink></item>
<item>
 <title>Real-life Relationships with Xbox</title>
 <link>http://feedproxy.google.com/~r/spacebug/~3/JHwBnO5QL4o/real-life_relationships_with_Xbox</link>
 <description>A human interaction system is made possible with &lt;a href="http://news.bbc.co.uk/2/hi/technology/8078322.stm"&gt;Natal&lt;/a&gt;, a system developed for the Xbox 360. &lt;p&gt;&lt;a href="http://spacebug.com/real-life_relationships_with_Xbox" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/spacebug/~4/JHwBnO5QL4o" height="1" width="1"/&gt;</description>
 <comments>http://spacebug.com/real-life_relationships_with_Xbox#comments</comments>
 <category domain="http://spacebug.com/taxonomy/term/41">fun</category>
 <category domain="http://spacebug.com/taxonomy/term/43">Xbox</category>
 <pubDate>Sat, 06 Jun 2009 07:05:22 +0000</pubDate>
 <dc:creator>Amir Shevat</dc:creator>
 <guid isPermaLink="false">65 at http://spacebug.com</guid>
<feedburner:origLink>http://spacebug.com/real-life_relationships_with_Xbox</feedburner:origLink></item>
<item>
 <title>Software As A Service Takes The “Free Beer” Out of Open Source</title>
 <link>http://feedproxy.google.com/~r/spacebug/~3/ng_l2d9KLBw/software_as_a%20service_takes_the_free_beer_out_of_open_source</link>
 <description>&lt;p&gt;Free software means that computer users have the freedom to cooperate with whom they choose, and to control the software they use. To summarize this into a remark distinguishing libre (freedom) software from gratis (zero price) software, Richard Stallman said: "Free software is a matter of liberty, not price. To understand the concept, you should think of 'free' as in 'free speech', not as in 'free beer'.&lt;sub&gt;&lt;a href="http://en.wikipedia.org/wiki/Free_software"&gt;1&lt;/a&gt; &lt;/sub&gt;&lt;/p&gt;
&lt;p&gt;The reality is quite different from this philosophy. Up until now open source software was, for most people, free beer rather than free speech.  Well, the beer party is over, and cooperate companies have a new business model strategy called SAAS.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://spacebug.com/software_as_a%20service_takes_the_free_beer_out_of_open_source" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/spacebug/~4/ng_l2d9KLBw" height="1" width="1"/&gt;</description>
 <comments>http://spacebug.com/software_as_a%20service_takes_the_free_beer_out_of_open_source#comments</comments>
 <category domain="http://spacebug.com/taxonomy/term/2">Open source</category>
 <category domain="http://spacebug.com/taxonomy/term/40">opinion</category>
 <category domain="http://spacebug.com/taxonomy/term/18">Software development</category>
 <pubDate>Wed, 03 Jun 2009 07:26:46 +0000</pubDate>
 <dc:creator>Amir Shevat</dc:creator>
 <guid isPermaLink="false">64 at http://spacebug.com</guid>
<feedburner:origLink>http://spacebug.com/software_as_a%20service_takes_the_free_beer_out_of_open_source</feedburner:origLink></item>
<item>
 <title>Most Useful / Best Drupal Modules</title>
 <link>http://feedproxy.google.com/~r/spacebug/~3/Il13tw7x8SQ/most_useful_best_drupal_modules</link>
 <description>&lt;img src="http://spacebug.com/img/drupalogo.png" align="right"&gt;I have recently upgraded my &lt;a href="http://catsidol.com"&gt;cats idol&lt;/a&gt; site to &lt;a href="http://www.drupal.org"&gt;Drupal&lt;/a&gt; 6 and enhanced its functionality. I have also created several other sites (including this site) using the following set of useful Drupal modules. &lt;br&gt;&lt;br&gt;
Here is my list of useful (AKA Best IMHO) Drupal modules:
&lt;p&gt;&lt;a href="http://spacebug.com/most_useful_best_drupal_modules" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/spacebug/~4/Il13tw7x8SQ" height="1" width="1"/&gt;</description>
 <category domain="http://spacebug.com/taxonomy/term/16">Drupal</category>
 <category domain="http://spacebug.com/taxonomy/term/3">PHP</category>
 <category domain="http://spacebug.com/taxonomy/term/18">Software development</category>
 <category domain="http://spacebug.com/taxonomy/term/10">Tips</category>
 <category domain="http://spacebug.com/taxonomy/term/28">web</category>
 <pubDate>Tue, 26 May 2009 07:00:39 +0000</pubDate>
 <dc:creator>Amir Shevat</dc:creator>
 <guid isPermaLink="false">62 at http://spacebug.com</guid>
<feedburner:origLink>http://spacebug.com/most_useful_best_drupal_modules</feedburner:origLink></item>
<item>
 <title>Apache Crashes on Windows – Check Your Ports</title>
 <link>http://feedproxy.google.com/~r/spacebug/~3/mkoeqqNsS_E/apache_crashes_on_windows%E2%80%93check_your_ports</link>
 <description>&lt;p&gt;&lt;img src="http://farm1.static.flickr.com/36/82522931_38a5a71869_m.jpg" align="right" /&gt;Apache is one of the most popular web servers in the market today. It usually runs on Linux-based machines but lately there are more and more deployments, for development as well as other reasons, of Apache on Windows. Nowadays, running Apache web server on Windows is very common for PHP developers. Many developers develop their PHP application on their home windows or Mac and deploy to a remote Linux server.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://spacebug.com/apache_crashes_on_windows%E2%80%93check_your_ports" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/spacebug/~4/mkoeqqNsS_E" height="1" width="1"/&gt;</description>
 <comments>http://spacebug.com/apache_crashes_on_windows%E2%80%93check_your_ports#comments</comments>
 <category domain="http://spacebug.com/taxonomy/term/3">PHP</category>
 <category domain="http://spacebug.com/taxonomy/term/18">Software development</category>
 <category domain="http://spacebug.com/taxonomy/term/10">Tips</category>
 <pubDate>Wed, 20 May 2009 00:20:01 +0000</pubDate>
 <dc:creator>Amir Shevat</dc:creator>
 <guid isPermaLink="false">61 at http://spacebug.com</guid>
<feedburner:origLink>http://spacebug.com/apache_crashes_on_windows%E2%80%93check_your_ports</feedburner:origLink></item>
<item>
 <title>How to Get Free Open Source Photos for Your Website and Presentations </title>
 <link>http://feedproxy.google.com/~r/spacebug/~3/fegKnpnu_50/how_to_get_free_open-source_photos_for_your_website_and_presentations%20</link>
 <description>&lt;img src="http://farm2.static.flickr.com/1363/711148097_cde72fc707.jpg?v=0" align="right"&gt;
&lt;br&gt;Visuals aids such as photos, are very important because they help you pass information and feelings, attract attention, maintain concentration, and help explain abstract concepts. Most professional presenters use photos and other images in their presentation. I personally find that the audience is better tuned when I present images than words. 
The problem is that most images cost money – most photographers want you to pay royalties for the images you use.  
Lucky enough, there are many images released under an open source license called creative commons
&lt;p&gt;&lt;a href="http://spacebug.com/how_to_get_free_open-source_photos_for_your_website_and_presentations%20" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/spacebug/~4/fegKnpnu_50" height="1" width="1"/&gt;</description>
 <comments>http://spacebug.com/how_to_get_free_open-source_photos_for_your_website_and_presentations%20#comments</comments>
 <category domain="http://spacebug.com/taxonomy/term/27">blogs</category>
 <category domain="http://spacebug.com/taxonomy/term/2">Open source</category>
 <category domain="http://spacebug.com/taxonomy/term/10">Tips</category>
 <pubDate>Tue, 12 May 2009 07:22:14 +0000</pubDate>
 <dc:creator>Amir Shevat</dc:creator>
 <guid isPermaLink="false">60 at http://spacebug.com</guid>
<feedburner:origLink>http://spacebug.com/how_to_get_free_open-source_photos_for_your_website_and_presentations%20</feedburner:origLink></item>
<item>
 <title>Save Money on Your Web Host with HostMate</title>
 <link>http://feedproxy.google.com/~r/spacebug/~3/DhwuuTT8hso/save_money_on_your_web_host_with_hostmate</link>
 <description>&lt;img align="right" src="http://farm3.static.flickr.com/2371/2294317199_6866163ab4_m.jpg"&gt;
&lt;p&gt;The cost of common shared hosting starts at 3$-10$ per month. While this is a cost many can afford, there are many out there that find it hard to spend 120$/year. Well, in the past 4 years I have used the idea of hostMates very successfully, saving money and learning from my mates.
&lt;br&gt;
&lt;b&gt;Please note:&lt;/b&gt; HostMate is an idea, best practice if you want. It is not a product or a service, although someone might want to provide this service. 
&lt;/p&gt;&lt;p&gt;&lt;a href="http://spacebug.com/save_money_on_your_web_host_with_hostmate" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/spacebug/~4/DhwuuTT8hso" height="1" width="1"/&gt;</description>
 <comments>http://spacebug.com/save_money_on_your_web_host_with_hostmate#comments</comments>
 <category domain="http://spacebug.com/taxonomy/term/39">Best practices</category>
 <category domain="http://spacebug.com/taxonomy/term/10">Tips</category>
 <category domain="http://spacebug.com/taxonomy/term/35">web hosting</category>
 <pubDate>Thu, 07 May 2009 03:20:53 +0000</pubDate>
 <dc:creator>Amir Shevat</dc:creator>
 <guid isPermaLink="false">59 at http://spacebug.com</guid>
<feedburner:origLink>http://spacebug.com/save_money_on_your_web_host_with_hostmate</feedburner:origLink></item>
<item>
 <title>Make money blogging by making blogging a part of your job description </title>
 <link>http://feedproxy.google.com/~r/spacebug/~3/-cOe0ms7VKI/Make_money_blogging_by_making_blogging_a_part_of_your_job_description%20</link>
 <description>&lt;p&gt;&lt;img src="http://farm4.static.flickr.com/3439/3258378233_46ac9b316d_m.jpg" align="right" /&gt;I have been making money blogging. A lot of money blogging. In the last 5 years I have calculated that I have earned above 70,000 USD in blogging alone. And I have managed to do so very easily and without marketing or any other related costs. The money was guaranteed every month and I got free editing and proofing services.&lt;/p&gt;
&lt;p&gt;Here is my simple secret.&lt;/p&gt;
&lt;p&gt;I have made Blogging a part of my job description. In the last 5 years I have been working for an open source company with only 20 employees, and for the one of the biggest and most profitable hi-tech companies in the world, with more than 80,000 employees worldwide. And they both paid me to blog as part of my job.&lt;/p&gt;
&lt;p&gt;And you can do it too:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://spacebug.com/Make_money_blogging_by_making_blogging_a_part_of_your_job_description%20" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/spacebug/~4/-cOe0ms7VKI" height="1" width="1"/&gt;</description>
 <comments>http://spacebug.com/Make_money_blogging_by_making_blogging_a_part_of_your_job_description%20#comments</comments>
 <category domain="http://spacebug.com/taxonomy/term/27">blogs</category>
 <category domain="http://spacebug.com/taxonomy/term/10">Tips</category>
 <pubDate>Sun, 26 Apr 2009 07:00:10 +0000</pubDate>
 <dc:creator>Amir Shevat</dc:creator>
 <guid isPermaLink="false">58 at http://spacebug.com</guid>
<feedburner:origLink>http://spacebug.com/Make_money_blogging_by_making_blogging_a_part_of_your_job_description%20</feedburner:origLink></item>
</channel>
</rss>
