|
|
|
Wednesday, 30 June 2010 16:49 |
|
Install Linux Without Burning An ISO To CD/DVD - Use The ISO
Downloaded To Your Hard Drive
I am describing here a method to install Linux without using a DVD ROM
or CD Drive; I have checked it myself.
There are many ways to do so
you can install Linux by
1) booting from the network;
2) having an ISO image on your hard disk;
3) booting from USB;
4) installing a linux system from scratch by building your own.
Read more: |
|
|
Monday, 14 June 2010 09:46 |
The polyrex-object-methods gem is used to return an array of each class name, and method name.
*installation*
sudo gem1.9.1 install polyrex-object-methods
*example*
require 'polyrex-object-methods'
schema = 'entities/section[name]/entity[name,count]'
a = PolyrexObjectMethods.new(schema).to_a
#=> [["Section", ["name"]], ["Entity", ["name", "count"]]]
Resources:
- http://github.com/jrobertson/polyrex-object-methods Read more: |
|
Thursday, 03 June 2010 09:28 |
|
How To Install Ailurus 10.05 On Fedora
Ailurus is a small GPL application which helps install some nice
software, clean yum cache, backup yum, etc. Currently Ailurus is
available for Fedora 11, 12 and 13. This simple tutorial will explain how to install Ailurus, and how to
solve the problems. Read more: |
|
|
Monday, 24 May 2010 18:32 |
|
Using DPKG To Install OpenVZ On Debian
To use the DPKG package manager to install OpenVZ, all you need to do
is download the OpenVZ components, and let DPKG do the rest. Read more: |
|
Monday, 24 May 2010 10:51 |
Install Growl:
http://www.growlforwindows.com/gfw/about.aspx
Install following gems if you don't have them:
gem install autotest -v 4.2.10
gem install autotest-growl -v 0.2.4
gem install autotest-rails -v 4.1.0
gem install rspec -v 1.3.0
gem install rspec-rails -v 1.3.2
gem install test-unit -v 1.2.3
gem install win32console -v 1.3.0
Create file ~/.autotest
require 'autotest/growl' # enable pop-up windows
require 'autotest/restart' # optional: forces autotest to pick the changes to this file
require 'autotest/timestamp' # optional: shows timestamps for test runs
# filter out VCS files and other garbage to reduce HDD usage
Autotest.add_hook :initialize do |autotest|
%w{.git .svn .hg .DS_Store ._* vendor tmp log doc}.each do |exception|
autotest.add_exception(exception)
end
end
# do not clear console before running tests
Autotest::Growl::clear_terminal = false
Start Crowl (it also has option to automatically start at login).
Start autotest:
autotest
Or for rspec integration:
autospec
Just reminder how to run your specs manually in rails folder:
spec spec
Things that I failed to use successfully:
redgreen gem (uses PLATFORM contant from unknown source)
snarl + ruby-snarl gem + test_notifier gem (it just does not shows pop-up windows)
fsevent gem (MAC only)
More reading:
http://www.railstutorial.org/chapters/static-pages#sec:first_tests
http://github.com/svoop/autotest-growl
 Read more: |
|
|
|
|
|
|
Page 2 of 2 |