March 17th, 2009 | Tags: , , , , , ,

I’m using my old Palm TX to navigate during my travels. I don’t have GPS, but I usually get some maps from the web, store them as jpg and view on Palm as a picture.

I had problems to get big maps from Google to jpg, because all screen snapshot programs can only get actual “screen” (usually just 1440×900).

My palm and other devices can handle much bigger images and it’s possible to scroll them. My laptop screen resolution was quite limiting… :-(


I found solution in KDE:

  1. Install Firefox add-on called Abduction!. It will allow you to save pages or part of the page as image (File -> Save Page As Image…)
  2. Run Firefox and chose your place in the map.
  3. Press ALT + F3 -> Advanced -> Special Windows Settings…
  4. Advanced Windows Settings - KDE

    Advanced Windows Settings - KDE


  5. Select Geometry tab and modify “Size” parameters:
  6. Edit Window Specific Settings Kwin

    Edit Window Specific Settings Kwin

Then your Firefox should be much bigger (above screen borders) and you should be able to save “one big” page as image…

VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
0 comments (107 views)
March 5th, 2009 | Tags: , , , , , ,

I found nice page http://www.hd-trailers.net/ accessing HD trailers from Yahoo or Apple through downloadable mov files. It’s quite useful to have mov files instead of using flash player especially if you have slower Internet connection.

Here is short wget command which download mov files from Apple site into directories:

#!/bin/bash

#480, 720, 1080
RESOLUTION=480

wget --recursive --level=2  --accept *${RESOLUTION}p.mov \
--span-hosts --domains=movies.apple.com,www.hd-trailers.net \
--no-host-directories --cut-dirs=2 --exclude-directories=/blog \
http://www.hd-trailers.net/

Enjoy ;-)

VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
0 comments (247 views)
February 20th, 2009 | Tags: , , , ,

I installed BOINC to my server to help world with scientific problems. It’s really easy to install it through from repositories of various distributions, but it’s not so easy to configure it.

Usually you can use BOINC manager to configure BOINC. Unfortunately it is graphical application and it uses port 31416 to connect to local/remote BOINC installations.

For obvious reasons you don’t wan to install GUI applications on servers and you also don’t want to enable ports on firewall.

That’s time for boinc_cmd and here are few tips how to use it.

  • Set http proxy 10.226.56.40:3128:
  • boinc_cmd --passwd my_password --set_proxy_settings 10.226.56.40 3128 "" "" "" "" "" "" ""
  • Count all the time:
  • boinc_cmd --passwd my_password --set_run_mode always
  • Don’t get more work:
  • boinc_cmd --passwd my_password --project http://abcathome.com/ nomorework
  • Attach to the project:
  • boinc_cmd --passwd my_password --project_attach http://abcathome.com/  project_id
  • Update project preferencies:
  • boinc_cmd --passwd my_password --project http://abcathome.com/ update
VN:F [1.9.20_1166]
Rating: 5.0/10 (1 vote cast)
0 comments (1,005 views)