Rails Web development that doesn't hurt
Rails is a web application development framework written in the Ruby language. It is designed to make programming web applications easier by making assumptions about what every developer needs to get started. It allows you to write less code while accomplishing more than many other languages and frameworks. Experienced Rails developers also report that it makes web application development more fun.
Rails is opinionated software. It makes the assumption that there is a “best” way to do things, and it’s designed to encourage that way – and in some cases to discourage alternatives. If you learn “The Rails Way” you’ll probably discover a tremendous increase in productivity. If you persist in bringing old habits from other languages to your Rails development, and trying to use patterns you learned elsewhere, you may have a less happy experience.
The Rails philosophy includes several guiding principles:
* DRY – “Don’t Repeat Yourself” – suggests that writing the same code over and over again is a bad thing.
* Convention Over Configuration – means that Rails makes assumptions about what you want to do and how you’re going to do it, rather than requiring you to specify every little thing through endless configuration files.
* REST is the best pattern for web applications – organizing your application around resources and standard HTTP verbs is the fastest way to go.
Vineeth's Pure Blogs
this is my personal blog which will render anything under the sun...
Wednesday, March 9, 2011
Monday, February 14, 2011
Hi all every body
Hi plse cross check my blog and twitter for the latest etchnology updates ..
PHP , MYSQL, AJAX, RUBY
MY WEBSITE WILL UPDATE SOON
Tweet
PHP , MYSQL, AJAX, RUBY
MY WEBSITE WILL UPDATE SOON
Tweet
Thursday, May 20, 2010
The Letter “Z” Will Be Removed from the English Alphabet
Surprising as it sounds, it looks like the English alphabet will be losing one of its letters on June 1st. The announcement came from the English Language Central Commission (ELCC).
Here is a quote from the press release:
After carefully considering and debating the matter for over two years, the ELCC came to the conclusion that the letter “Z” should be removed from the English alphabet. The main objective of this change is to simplify the phonetic aspect of the language, and to unify the American and British spellings.
What will happen to the words that have the letter “z” in them? It depends on the word. According to the ELCC, words that started with a “z” will now start with an “x”. Examples include:
* zero becomes xero
* zoo becomes xoo
* zone becomes xone
* zodiac becomes xodiac
Words that featured a “z” with the “s” sound, on the other hand, will now be officially written with the “s” (i.e., unifying the American and British spelling). Examples include:
* visualize becomes visualise
* analyze becomes analyse
* materialize becomes materialise
What do you think about this change? Will it really simplify the English language, or will it make things more confusing?
courtesy : http://www.dailywritingtips.com/the-letter-z-will-be-removed-from-the-english-alphabet/
Here is a quote from the press release:
After carefully considering and debating the matter for over two years, the ELCC came to the conclusion that the letter “Z” should be removed from the English alphabet. The main objective of this change is to simplify the phonetic aspect of the language, and to unify the American and British spellings.
What will happen to the words that have the letter “z” in them? It depends on the word. According to the ELCC, words that started with a “z” will now start with an “x”. Examples include:
* zero becomes xero
* zoo becomes xoo
* zone becomes xone
* zodiac becomes xodiac
Words that featured a “z” with the “s” sound, on the other hand, will now be officially written with the “s” (i.e., unifying the American and British spelling). Examples include:
* visualize becomes visualise
* analyze becomes analyse
* materialize becomes materialise
What do you think about this change? Will it really simplify the English language, or will it make things more confusing?
courtesy : http://www.dailywritingtips.com/the-letter-z-will-be-removed-from-the-english-alphabet/
Tuesday, November 3, 2009
TWITTER SLOWDOWNS BIG BLOGS
It seems a tendency that all bloggers transfered their destination to tweets rather than their blogsites.
Twitter like web sites reduces the outcomes of blog poets and blog writers.
All are ends on 140ss
Twitter like web sites reduces the outcomes of blog poets and blog writers.
All are ends on 140ss
Saturday, July 11, 2009
Interesting Code with replication
// add new browsers in lower case here, separated
// by spaces - order is important: from left to
// right browser family becomes more precise
$browsers = "mozilla msie gecko firefox ";
$browsers.= "konqueror safari netscape navigator ";
$browsers.= "opera mosaic lynx amaya omniweb";
$browsers = split(" ", $browsers);
$nua = strtolower($_SERVER['HTTP_USER_AGENT']);
$l = strlen($nua);
for ($i=0; $i<count($browsers); $i++)
{
$browser = $browsers[$i];
$n = stristr($nua, $browser);
if(strlen($n)>0){
$GLOBALS["ver"] = "";
$GLOBALS["nav"] = $browser;
$j=strpos($nua, $GLOBALS["nav"])+$n+strlen($GLOBALS["nav"])+1;
for (; $j<=$l; $j++)
{
$s = substr ($nua, $j, 1);
if(is_numeric($GLOBALS["ver"].$s) )
$GLOBALS["ver"] .= $s;
else
break;
}
}
}
// by spaces - order is important: from left to
// right browser family becomes more precise
$browsers = "mozilla msie gecko firefox ";
$browsers.= "konqueror safari netscape navigator ";
$browsers.= "opera mosaic lynx amaya omniweb";
$browsers = split(" ", $browsers);
$nua = strtolower($_SERVER['HTTP_USER_AGENT']);
$l = strlen($nua);
for ($i=0; $i<count($browsers); $i++)
{
$browser = $browsers[$i];
$n = stristr($nua, $browser);
if(strlen($n)>0){
$GLOBALS["ver"] = "";
$GLOBALS["nav"] = $browser;
$j=strpos($nua, $GLOBALS["nav"])+$n+strlen($GLOBALS["nav"])+1;
for (; $j<=$l; $j++)
{
$s = substr ($nua, $j, 1);
if(is_numeric($GLOBALS["ver"].$s) )
$GLOBALS["ver"] .= $s;
else
break;
}
}
}
Subscribe to:
Posts (Atom)