This is an old blog
Hello,
I will not write anything here anymore, I have another blog where I write in Romanian.
http://vitalie.webng.md
Another blog about ruby, rails, debian and system administration. Other useful staff for developers and system administrators.
Hello,
* Download development version of Chrome
sudo aptitude -t testing install ia32-libs-gtk lib32nss-mdns
dpkg -i google-chrome-unstable_current_amd64.deb
Yesterday while I tried once again to download photos from my camera with digikam, it gave me a SIGABRT crash, I'm using kde 4.1.3, so I tried to build new deb package for digikam 0.10.beta6 and I did not succeed, many kde dependencies and I could not want to break my installation.
rake ph:get # Get photos from camera to current folder
rake ph:delete # Delete all photos from camera
rake ph:arrange # Arrange photos in folders by date
rake ph:rotate # Rotate photos from exif info
rake ph:list # Show photos info
# Author: Vitalie Lazu | |
# Date: Mon, 01 Dec 2008 14:28:28 +0200 | |
# Rake tasks to help you with family photos: | |
# * Download photos from camera | |
# * Arrange photos in folders by date like digikam, | |
# * Rotate them according exif information | |
# | |
# Setup to use this tasks: | |
# apt-get install rubygems imagemagick gphoto2 rake | |
# gem install exifr | |
namespace :ph do | |
desc "Get photos from camera to current folder" | |
task :get do | |
sh "gphoto2 -R -P" | |
end | |
desc "Delete all photos from camera" | |
task :delete do | |
sh "gphoto2 -R -D" | |
end | |
desc "Rotate photos from exif info" | |
task :rotate => :init do | |
for_each_image do |fname, info| | |
p info.orientation | |
if info.orientation | |
x = FakeImg.new | |
info.orientation.transform_rmagick(x) | |
op = x.to_s | |
dest_file = "r-" << fname | |
if op.length > 0 | |
mv fname, dest_file | |
cmd = "convert '#{dest_file}' #{op} '#{fname}'" | |
puts cmd | |
sh cmd | |
end | |
end | |
end | |
end | |
desc "Arrange photos in folders by date" | |
task :arrange => :init do | |
for_each_image do |fname, info| | |
dir = info.date_time.strftime("%Y-%m-%d") | |
op = info.orientation.transform_rmagick(FakeImg.new).to_s | |
print "%s %s %s\n" % [fname, dir, op] | |
dest_file = File.join(dir, fname) | |
mkdir_p dir | |
if op.length > 0 | |
cmd = "convert '#{fname}' #{op} '#{dest_file}'" | |
puts cmd | |
sh cmd | |
else | |
if test ?f, dest_file | |
puts "File exits: #{dest_file}" | |
else | |
mv fname, dest_file | |
end | |
end | |
end | |
end | |
desc "Show photos info" | |
task :list => :init do | |
for_each_image do |fname, info| | |
print "%s %s %s\n" % [fname, info.date_time, info.orientation.transform_rmagick(FakeImg.new).to_s] | |
end | |
end | |
task :init do | |
require 'rubygems' | |
require 'exifr' | |
end | |
def for_each_image(&block) | |
for fname in Dir["*"] | |
next unless test(?f, fname) && fname =~ /\.jpe?g$/i | |
yield fname, EXIFR::JPEG.new(fname) | |
end | |
end | |
class FakeImg | |
def initialize | |
@cmd = [] | |
end | |
def flip | |
@cmd << "-flip" | |
self | |
end | |
def flop | |
@cmd << "-flop" | |
self | |
end | |
def rotate(degrees) | |
@cmd << "-rotate #{degrees.to_i}" if degrees.to_i != 0 | |
self | |
end | |
def to_s | |
@cmd * ' ' | |
end | |
end | |
end |
Today I released a new version of Assembla.
Today I had a task to setup continuous integration for grails on EC2 server. I asked Google for a solution and it returns no results, so I want to share my experience., maybe it will be helpful for other system administrators.
sv start grails
#!/bin/sh
#
apt-get install runit
sv_dir=/etc/sv/grails
mkdir -p $sv_dir/log
cat - > $sv_dir/run <<EOF
#!/bin/sh
export JAVA_HOME='/opt/jdk1.6.0_10'
export PATH=${JAVA_HOME}/bin:$PATH
export JIBX_HOME='/opt/jibx'
export PATH=${JIBX_HOME}/bin:$PATH
cd /opt/apps/my_project
exec grails -Dserver.port=80 run-app
EOF
cat - > $sv_dir/log/run <<EOF
#!/bin/sh
set -e
# use /mnt, because on EC2 a bigger disk is mounted to /mnt
LOG=/mnt/log/grails
test -d "$LOG" || mkdir -p -m2750 "$LOG" && chown nobody:adm "$LOG"
exec chpst -unobody svlogd -tt "$LOG"
EOF
chmod 755 $sv_dir/run $sv_dir/log/run
# add service
update-service --add $sv_dir
I have a heavy loaded website with 12req/second and I use apache 2.2.6 with mpm_event_module, because threaded and prefork modules suck already. Apache server with 5 mongrels in cluster: 3 on the same server and 2 remote. MYSQL is also remote. Memcached runs on the same server. NFSD also running. Below is apache tuning for mpm_event module:
Assembla offers FREE Trac and svn hosting for a long time, here is a quick way how to setup your project with tools provided by assembla.com services:
Assembla offers FREE Trac and svn hosting for a long time, here is a quick way how to setup your project with tools provided by assembla.com services:
Labels: assembla, hosting, subversion, svn
Today Assembla launched new tool: Trac&Mercurial. Every developer can create a mercurial repository for development with few clicks.
I use python 2.4 with trac, mod_python, but when i updated ports collection, it started to install new software with python2.5 as dependency.