Feeds:
Posts
Comments

Archive for November, 2007

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 [...]

Read Full Post »

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 [...]

Read Full Post »

Resident Evil

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 [...]

Read Full Post »

Oracle Mix – released

Oracle announced Oracle Mix, which is another Oracle product built on JRuby On Rails – and it’s the first public and the largest of kind; as I know – that aims facilitating communications between Oracle customers with each other and Oracle itself.
Oracle Mix released in just 5 weeks of work. and it’s a [...]

Read Full Post »

Ruby and Yaml

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! [...]

Read Full Post »

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 [...]

Read Full Post »