\usepackage[super,sort&compress,numbers]{natbib}
This results in reference numbers as shown below

i.e. some stuff and junk about Python, Perl, Matlab, Ruby, Mac X, Linux, Solaris, ...
\usepackage[super,sort&compress,numbers]{natbib}
This results in reference numbers as shown below
#!/opt/local/bin/ruby
(0..5).each {|x|
puts x/2
}
0
0
1
1
2
2
#!/opt/local/bin/ruby
(0..5).each {|x|
puts x.to_f/2
}
0.0
0.5
1.0
1.5
2.0
2.5
for f in *.tiff; do convert -median 2 $f ../outDir/$f; echo $f; done
PS1="\h:\w \u"
This was very annoying as the prompt contained all the path to the current directory, which was especially bed if I went dip into the directory tree. In such a case it is better to use '\W' option instead of '\w', as this option shows only current directory name, and not full path to it. To change bash prompt use:export PS1="\h:\W \u$ "
To make it permanent just add this line to ~/.bashrc.
UT2004.ini
file in: \UT2004\System
and change the value of variable GameSpeed
Originally: GameSpeed=1.000000
GameSpeed=0.650000
My computer is not fast enough to render the game in its original speed. Moreover, with slower action, it is easier to observe all those special effects that game has - you can observer, e.g., rocked heading your way, which is pretty nice.\documentclass[onecolumn,12pt,draft]{article}
function S = getargs(defaultS, varglist);
if mod(length(varglist),2) ~=0
error('Odd number of variable parameters');
end
S = defaultS;
i=1;
while i <= length(varglist)
if isfield(S, varglist{i})
S.(varglist{i}) = varglist{i+1};
else
warning_wrap('getargs:unknown_param', ...
['Unknown parameter "' varglist{i} '"']);
end
i = i+2;
end
sudo vim /etc/vsftpd.conf
write_enable=YES
local_enable=YES
and comment line: #anonymous_enable=YES
sudo /etc/init.d/vsftpd restart