<?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>KnowTeBook - Webworkers Daily Milk &#187; ruby</title>
	<atom:link href="http://www.knowtebook.com/tag/ruby/feed" rel="self" type="application/rss+xml" />
	<link>http://www.knowtebook.com</link>
	<description>A community blog about design, ideas, trends, wordpress &#38; more.</description>
	<pubDate>Tue, 27 Jul 2010 08:46:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=9</generator>
	<language>en</language>
			<item>
		<title>CSS Less: Extend CSS By Adding Variables, Mixins, Operations and Nested Rules</title>
		<link>http://www.knowtebook.com/css-less-extend-css-by-adding-variables-mixins-operations-and-nested-rules-1670.htm</link>
		<comments>http://www.knowtebook.com/css-less-extend-css-by-adding-variables-mixins-operations-and-nested-rules-1670.htm#comments</comments>
		<pubDate>Mon, 22 Jun 2009 18:33:31 +0000</pubDate>
		<dc:creator>Knowtebook</dc:creator>
		
		<category><![CDATA[css]]></category>

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

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

		<guid isPermaLink="false">http://www.knowtebook.com/?p=1670</guid>
		<description><![CDATA[LESS is an extension to CSS. Less uses existing css syntax. This means you can migrate your current .css files to .less in seconds and there is virtually no learning curve.
The best way to explain Less is to show you (...)]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://lesscss.org/index.html" target="_blank">LESS</a> is an extension to CSS. Less uses existing css syntax. This means you can migrate your current .css files to .less in seconds and there is virtually no learning curve.</p>
<p>The best way to explain Less is to show you some code, so please go ahead and check out the examples below.</p>
<p><span id="more-1670"></span></p>
<h2>Variables</h2>
<p>Variables allow you to specify widely used values in a single place, and then re-use them throughout the style sheet, making global changes as easy as changing one line of code.</p>
<h3>Regular CSS</h3>
<pre>#header {

color: #4D926F;

}

h2 {

color: #4D926F;

}</pre>
<h3>LESS CSS</h3>
<pre>@brand_color: #4D926F;
#header {

color: @brand_color;

}
h2 {

color: @brand_color;

}</pre>]]></content:encoded>
			<wfw:commentRss>http://www.knowtebook.com/css-less-extend-css-by-adding-variables-mixins-operations-and-nested-rules-1670.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>What&#8217;s better? Ruby on Rails vs. PHP</title>
		<link>http://www.knowtebook.com/whats-better-ruby-on-rails-vs-php-979.htm</link>
		<comments>http://www.knowtebook.com/whats-better-ruby-on-rails-vs-php-979.htm#comments</comments>
		<pubDate>Thu, 15 May 2008 18:58:55 +0000</pubDate>
		<dc:creator>Knowtebook</dc:creator>
		
		<category><![CDATA[coding]]></category>

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

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

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

		<guid isPermaLink="false">http://www.knowtebook.com/?p=979</guid>
		<description><![CDATA[A friend of mine has a project where he wants to make a social community and was unsure which way to go. He asked me to ask you guys of help. It is the question which is discussed everywhere - (...)]]></description>
			<content:encoded><![CDATA[<p>A friend of mine has a project where he wants to make a social community and was unsure which way to go. He asked me to ask you guys of help. It is the question which is discussed everywhere - Ruby on Rails vs. PHP - but most of them are not very neutral. Many of them are <a target="_blank" href="http://www.railsenvy.com/2007/8/24/rails-vs-php" target="_blank">too pro for Ruby on Rails</a> or too pro for PHP.</p>
<p><a href="http://www.knowtebook.com/uploaded/2008/05/ruby-vs-php.jpg"><img class="alignnone size-full wp-image-980" title="ruby-vs-php" src="http://www.knowtebook.com/uploaded/2008/05/ruby-vs-php.jpg" alt="ruby-vs-php Whats better? Ruby on Rails vs. PHP" width="479" height="475" /></a></p>
<p>Ruby on Rails is a relatively new and young programming language. By doing a research for advantages and disadvantages. PHP is easy to learn and many people have experience with it. In our mind are some more important questions.</p>
<h2>What&#8217;s about:</h2>
<ol>
<li>Performance?</li>
<li>Security?</li>
<li>Scalability?</li>
</ol>
<p>This is an invitation for all of you to make your point of view clear, so that this question will be asked the last time!</p>
<h3>It&#8217;s your turn: What&#8217;s the best- Ruby on Rails or PHP?</h3>]]></content:encoded>
			<wfw:commentRss>http://www.knowtebook.com/whats-better-ruby-on-rails-vs-php-979.htm/feed</wfw:commentRss>
	<enclosure url='http://www.knowtebook.com/uploaded/2008/05/ruby-vs-php-150x150.jpg' length ='1'  type='image/jpeg' />	</item>
		<item>
		<title>CMS the way it was meant to be with SilverStripe</title>
		<link>http://www.knowtebook.com/cms-the-way-it-was-meant-to-be-with-silverstripe-858.htm</link>
		<comments>http://www.knowtebook.com/cms-the-way-it-was-meant-to-be-with-silverstripe-858.htm#comments</comments>
		<pubDate>Fri, 14 Mar 2008 11:12:43 +0000</pubDate>
		<dc:creator>Knowtebook</dc:creator>
		
		<category><![CDATA[coding]]></category>

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

		<category><![CDATA[open source]]></category>

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

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

		<guid isPermaLink="false">http://www.4webworking.com/cms-the-way-it-was-meant-to-be-with-silverstripe-880.htm</guid>
		<description><![CDATA[Powerful enough for any website or intranet design and simple enough for anyone to use. Its community still lacks in user and exstensions, but the intuitive design of the admin control panel convinces.



Simple. Intuitive and user-friendly
Flexible coding framework (MVC)
Scalable. From (...)]]></description>
			<content:encoded><![CDATA[<p><strong>Powerful</strong> enough for any <a target="_blank" title="Click here to view examples of Websites we've made" href="http://www.silverstripe.com/websites/">website</a> or <a target="_blank" title="Click here to view examples of Intranets we've made" href="http://www.silverstripe.com/intranets/">intranet</a> design and <strong>simple</strong> enough for anyone to use. Its community still lacks in user and exstensions, but the intuitive design of the admin control panel convinces.</p>
<p class="featureImage"><img src="http://www.silverstripe.com/assets/Uploads/_resampled/FeatureImage-ResizedImage650536-SilverStripe-2.2.0-Screenshot.PNG" alt="Feature image" width="378" height="191" title=" CMS the way it was meant to be with SilverStripe   coding" /></p>
<p class="featureList typography"><span id="more-858"></span></p>
<ul>
<li><strong>Simple.</strong> Intuitive and user-friendly</li>
<li><strong>Flexible</strong> coding framework (<a target="_blank" href="http://en.wikipedia.org/wiki/Model-view-controller">MVC</a>)</li>
<li><strong>Scalable.</strong> From 1 page to a million</li>
<li><strong>Standards Compliant.</strong> Fully XHTML compliant</li>
<li><strong>Modular.</strong> Easy to <a target="_blank" href="http://www.silverstripe.com/modules/">extend</a></li>
<li><strong>Template Freedom.</strong> No restrictions on the look and feel of your site</li>
<li><strong>Open source.</strong> It’s free <a target="_blank" href="http://www.silverstripe.com/licensing/">(BSD)</a> and you can <a target="_blank" href="http://www.silverstripe.com/how-to-contribute/">contribute to the project</a>.</li>
<li><strong>Cross platform</strong>. (Windows/Linux/Mac) and <strong>easy to install</strong> (PHP based)</li>
<li><strong>Supported. </strong><a target="_blank" href="http://www.silverstripe.com/what-we-do/">Professionally backed</a> by the developers</li>
<li><em><a target="_blank" href="http://www.silverstripe.com/overview/">Read overview online</a> or as a</em><em> PDF </em><em>for the <a target="_blank" href="http://www.silverstripe.com/assets/downloads/2008/sitebuilderbrochure.pdf" target="_blank">website builder</a> and <a target="_blank" href="http://www.silverstripe.com/assets/downloads/2008/user-brochure.pdf" target="_blank">the website owner</a></em></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.knowtebook.com/cms-the-way-it-was-meant-to-be-with-silverstripe-858.htm/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
