how would you like your morning coffee?
well, that is not about Coffee itself, but about things you do everyday, esp.Programmer – it means – for those who did not got it yet: how many websites, email, bug tracking systems, …. etc you open up every morning? yeah, I know: Much!
you [...]
Archive for November, 2007
Morning Coffee – By FireFox
Posted in entertainment, tagged browser, developers morning routine, Firefox, Firefox addon, morning coffee, Mozilla, Mozilla Addon, plugin on November 28, 2007 | Comments Off
reset root password for Mysql on linux Box
Posted in System Administration, linux, troubleshooting, tagged linux, mysql, password, recover password, root, root password on November 26, 2007 | Comments Off
If you missed your mysql root user password, then here are the steps to reset it:
stop mysql server
service mysqld stop
make sure all mysql process are dead
ps -A | grep mysql
start mysqld in safe mode
mysqld_safe –skip-grant-tables
open a new shell window and start mysqld
service mysqld start
access mysql database
mysql -u root mysql
reset password [...]
Resident Evil
Posted in News, Personal, entertainment, tagged extinction, Milla Jovovich, movie, resident evil on November 21, 2007 | Comments Off
I saw people watch what ever movie they got in hand, why the hell is that?
I believe that everyone of us (human beings) should have a schema for everything, the way he talk, wear, etc .. and things he/she eat, drink, watch, .. etc …. people he likes and dislikes …. in short: have your [...]
Ruby and Yaml
Posted in Ruby and Ruby On Rails, tagged ruby, yaml, yaml4r on November 12, 2007 | Comments Off
Yaml (Yet Another markup language) allows developers to serialize and deserialize Object to files and still human readable and editable. in short!
I will explain how to load, save, update yaml file using ruby (Yaml4r). a sample source code can be found at the end of this article
As always: busy developer walk through:
Installation
gem install RbYAML
Usage
Tip! [...]
Installing Ruby On Rails – howto
Posted in Ruby and Ruby On Rails, tagged howto, install, linux, rails, ruby, Ruby and Ruby On Rails on November 12, 2007 | Comments Off
This is a busy developer tutorial that walk through installing ruby on rails on Linux Machine.
get Downloads ready
type yum install ruby rdoc irb
Rubygems from http://www.rubyonrails.com/down
unzip the package.
type ruby setup.rb
type gem update
type gem install rails –include-dependencies
choose your lovely database: we will be using mysql for this tutorial; so, that requires us to install mysql
type yum [...]