Monday, December 17, 2012

Indijanca sta se vrnila

Spet nazaj v SloveNIJI. Najprej sva težko pričakovala potovanje v Indijo. Po petih mesecih pa kdaj bo dan poleta za nazaj :). Kaj se da videti v Indiji je možno pogledat slike: http://stirjevindiji.blogspot.com. Videti je še možno več lepega oz. več slabega odvisno kje se nahajas. Prva pesem ( na repeat ) ob vrnitvi domov:



:)

Thursday, May 3, 2012

First training - Conditional training before BIG trip to india

We are planning, to go to India this year. Now we want to improve our physical condition. We went on a trip listed below...

Monday, April 30, 2012

RTorrent and necessarily settings

RTorrent is text-based ( console ) torrent client, whose author's goal is a focus on high performance and good code. RTorrent uses small amount of memory and, it claims to be able to seed at 3 times the speed of the official Bittorrent client.

Lets try rtorrent.
  • Install rtorrent.
  • Edit your config file rtorrent.rc. It is enough, if it contains this lines:
rtorrent.rc example:
directory = ~/Downloads
session = ~/rtorrent/rtorrent.session
schedule = watch_directory,5,5,load_start=~/rtorrent/*.torrent
port_range = 45000-45100
  • Create 3 directories like you named them in rtorrent.rc file. For example:
creating directory names:
mkdir ~/Downloads
mkdir -p ~/rtorrent/rtorrent.session
  • Don't forget to open or forward ports in firewall or router.
  • Now put some torrents to ~/rtorrent/ directory and start the program like that:
starting rtorrent:
$ rtorrent -n -o import=rtorrent.rc


Highlighting code syntax on blogger

You can highlight syntax with Syntaxhighlighter. Steps you will need to folow can be found here.

When highlighter setup is finished you can highlight code that way:
<pre class="javascript" name="code">

alert("hello world!");   

</pre>

Python 2.7 " Hello world " example


#!/usr/bin/python2.7

TEST="hello world"
print TEST