8
How does the "which" command work?view story

http://unix.stackexchange.com – which -a ruby gives me /usr/ruby /usr/ruby /usr/ruby It gives the same path three times. Why does this happen? (HowTos)

8
Ideal Debian server partitions size under LVMview story

http://serverfault.com – First of all, I know about this answer, but it is not essentially about LVM and I feel many folks will find the following overall summarization useful: I have small 2-core server where I want to install Debian wheezy testing mainly for personal web (several domains) and mail hosting, specifically: Ruby/Rails (+gems), Redis, MySQL, nginx, PHP5, postfix, dovecot. (HowTos)

8
Ruby 2.0.0 Officially Released, Features DTrace Supportview story

http://news.softpedia.com – Ruby, an object-oriented language for quick and easy programming, has just reached version 2.0.0. Ruby 2.0.0 is the first stable release in this branch and comes with new features and improvements, in response to the increasingly diverse and expanding demands for Ruby. Highlights of Ruby 2.0.0: • Keyword arguments have been added, giving flexibility to the API design; • This version i (IT news)

7
Can't kill a process - stopping rails serverview story

http://stackoverflow.com – I am trying to stop rails server from my console (i am using ubuntu) so following the related questions on stack, I tried Ctrl + C pgrep -l ruby and then kill -9 $the_right_pids (and also ps aux | grep ...) but none of these worked. (HowTos)

7
Error Deploying Rails Applicationview story

http://stackoverflow.com – I have been using Heroku when deploying my rails server. But for my school project I was asked to deploy the app I have been working on to a linux instance so it can be deployed on the schools cloud. (HowTos)

8
RoR: $bundle install => /usr/bin/env: ruby: not a directoryview story

http://stackoverflow.com – I'm trying to install RoR with Mysql on Ubuntu and so far it has been a very painful and annoying experience. Everything has been done with RVM, and upon trying to invoke: $ rails new <some path> <some name> -d mysql I get an error that MySQL is not installed, so I follow the instructions and run: $ gem install bundler => Successfully installed bundler 1.2.3 From here the ins (HowTos)

8
Convert epoch time in Rubyview story

http://stackoverflow.com – Is there a simple way to convert Epoch time to standard format with Ruby? If so can I customize the way it is displayed? (HowTos)

7
Android : Click exits screen when selecting an item from an option listview story

http://stackoverflow.com – I'm looking at an option list on an android device The options code looks like this: <div class = "addMode"> <label for ="activityType">Activity Type</label> <div class="dataRow activityType"> <select id="activityType" class="valid"> <option value ="1" selected="selected">Appointment</option> <option value ="2">Call</option> <o (HowTos)

7
New Samsung Galaxy Note II colors introducedview story

http://www.talkandroid.com – Samsung has started advertising two new colors for their monster smartphone, the Samsung Galaxy Note II, in the South Korean market. Samsung seems to be fond of producing different color choices for their devices as the life cycle progresses. (IT news)

7
Quickest/best way to copy a portion of a large mongo database to another server?view story

http://serverfault.com – I have a dataset of 100m tweets stored in Mongo, unoptimized and unindexed. I need to copy all tweets from the last month onto another server, what is the best way to do this? My idea was to use a Ruby script to extract and copy the relevant tweets to a new database on the server, then run the mongo copyDatabase command to copy it over. (HowTos)