LeWiki/ tags/ software

This feed contains pages in the "software" category.

LeShaper ListOfSkills TestingHtml TestingStuff 2007-07-22---phpfspot 2007-11-25---some-backports
2007-11-25---some-backports

i have created debian backports to etch of current versions of mpd, rtorrent and mt-daapd and the dependencies needed to build / install them.

add

deb http://lefant.net/debian/ etch-backports main

to your /etc/apt/sources.list in case you are interested.

mt-daapd and rhythmbox are a great pair to store music on one computer and play on another, with little configuration on the server and none on the client, by the magic of zeroconf! highly recommended. should also work with itunes and other stuff from apple.

Posted Sun 25 Nov 2007 06:27:43 PM CET Tags: debienna hacking software
2007-07-22---phpfspot

2007-07-22

for some time now i have been using f-spot (website: http://f-spot.org/, which is a nice photo organization software for gnome. above all f-spot has great support for tagging, which in my opinion is a very important feature. you can also automatically create a static html thumbnail gallery for your website or export to flickr or gallery (the php thing many people seem to be using). however this way either you loose your tags (static html, gallery) or you handover your pictures and control over the url to flickr (which limits you to 200 pictures in their free plan anyway).

phpfspot (website: http://oss.netshadow.at/oss/phpfspot/Project, freshmeat: http://freshmeat.net/projects/phpfspot/) to the rescue!

after some whining on my part at work my colleague at work andreas unterkircher started looking for a better webfrontend solution (foremost including good support for the tags) himself and, finding none, started coding. for reference there is pennave with a similar goal (website: http://pennave.sourceforge.net/), however speed was really lacking and development very slow).

i am now happily running phpfspot myself (link: http://gallery.lefant.net/). i also use the thumbnail export feature to create thumbnail galleries for use in the debienna wiki (link: http://debienna.at/). the thumbnails on the starting page are created dynamically for each page visit (try reloading, see http://debienna.at/?action=raw for the page source and the RandomQuote hack) which uses the FotoFortunes wiki page as its source (warning, huge page). using phpfspots export feature i can now create the content of the FotoFortunes page automatically after selecting all pictures with the debienna tag.

the same works with literal html for blog entries like this one. find a thumbnail gallery of all my images tagged with "screens" below:

i am happy, thanks unki!

Posted Sun 22 Jul 2007 01:06:26 PM CEST Tags: debienna software
TestingHtml just testing Posted Wed 18 Jul 2007 09:30:05 PM CEST Tags: software
ListOfSkills

programming languages:

solid

python, POSIX compatible shell

some skill

scheme, sql, erlang

basic skill

C, common lisp, php, perl

operating systems:

gnu/linux

others

network related:

traditional unix services and daemons:

authorization and access control

web applications

applied mathematics

understanding of cryptographic protocols and algorithms

favourite productivity tools ;)

emacs (recently lots of it, actually), screen, ratpoison, ion3, gnus, zsh, unison, darcs (more every week as well), gnupg, gimp...

Posted Sat 19 May 2007 12:38:59 PM CEST Tags: personal software
LeShaper

welcome to the home of LeShaper script...

since wondershaper only almost did what i wanted and sometimes pings were slow when they shouldn't have been and i couldn't figure out why. i thus followed the "keep it simple stupid" principle, use tbf and prio and created my own version of a "slow down the uplink so the queue is local, always prioritise ssh/dns/fill-in-your-favourite-kind-of-nework-traffic, but give all idle bandwith to whatever can make use of it"-bandwith shaper.

i hope it may also save someone else some trouble. darcs based version control is easy, so why not use it. questions and comments welcome.

darcs repository: darcs repository of leshaper

via darcsweb webfrontend: darcsweb view of darcs repository of leshaper

version of may 2007 inline:

#!/bin/sh

. /etc/rc.conf


# leshaper, based on the fabulous wondershaper:


# Set the following values to somewhat less than your actual download
# and uplink speed. In kilobits. Also set the device that is to be shaped.

DOWNLINK=4000
UPLINK=500
DEV=ppp0

case $1 in
autostart)
    test x"${leshaper:-NO}" = x"NO" && exit 0
    exec $0 start
    ;;
start)
        ########## uplink ###############

        # shape the root at UPLINK speed to keep the queue local no matter what
        tc qdisc add dev $DEV root handle 1: tbf rate ${UPLINK}kbit burst 5k latency 50ms mpu 64b
        # prio band on top of that (automagically prioritises interactive traffic according to TOS bits)
        tc qdisc add dev $DEV parent 1: handle 11 prio

        tc qdisc add dev $DEV parent 11:1 handle 111: sfq perturb 10
        tc qdisc add dev $DEV parent 11:2 handle 112: sfq perturb 10
        tc qdisc add dev $DEV parent 11:3 handle 113: sfq perturb 10

        # prioritize small packets (<64 bytes) into first class
        tc filter add dev $DEV parent 11:0 protocol ip prio 1 u32 \
            match ip protocol 6 0xff \
            match u8 0x05 0x0f at 0 \
            match u16 0x0000 0xffc0 at 2 \
            flowid 11:1

    # higher prio for voip
        tc filter add dev $DEV parent 11:0 protocol ip prio 2 u32 match ip src 172.23.1.29/32 flowid 11:1 
        tc filter add dev $DEV parent 11:0 protocol ip prio 2 u32 match ip dport 4569 0xffff flowid 11:1 
        tc filter add dev $DEV parent 11:0 protocol ip prio 2 u32 match ip sport 4569 0xffff flowid 11:1 
        tc filter add dev $DEV parent 11:0 protocol ip prio 2 u32 match ip sport 5004 0xffff flowid 11:1 

        ########## downlink #############

        # slow downloads down to somewhat less than the real speed  to prevent 
        # queuing at our ISP. Tune to see how high you can set it.
        # ISPs tend to have *huge* queues to make sure big downloads are fast
        #
        # attach ingress policer:

        tc qdisc add dev $DEV handle ffff: ingress

        # filter *everything* (0.0.0.0/0), drop everything that's
        # coming in too fast:
        tc filter add dev $DEV parent ffff: protocol ip prio 50 u32 match ip src \
        0.0.0.0/0 police rate ${DOWNLINK}kbit burst 10k drop flowid :1

    ;;
stop)
        # clean existing down- and uplink qdiscs, hide errors
        #tc qdisc del dev $DEV root    2> /dev/null > /dev/null
        #tc qdisc del dev $DEV ingress 2> /dev/null > /dev/null
        tc qdisc del dev $DEV root
        tc qdisc del dev $DEV ingress
    ;;
restart)
    $0 stop
    $0 start
    ;;
status)
        tc -s qdisc ls dev $DEV
        tc -s class ls dev $DEV
        ;;
*)
    echo "Usage: $0 {start | stop | restart}"
    ;;
esac
exit $?
Posted Sat 19 May 2007 10:45:34 AM CEST Tags: software
TestingStuff
A kingfisher flying
near the village. A pike
swimming in the dam.

orphans

brokenlinks

pagecount

186

linkmap and pagestats

LeShaper Lefant CurriculumVitae ListOfSkills TestingHtml TestingStuff 1408, Chuck & Larry, Lissi 2007-07-22---phpfspot 2007-07-26---debienna 2007-07-26---on-another-note 2007-08-23---debienna 2007-10-11---ipv6 at debienna 20070504-011604.jpg 20070504-011617.jpg 20070504-013017.jpg 20070504-020611.jpg 20070504-022411.jpg 20070727-015441.jpg 20070823-192535.jpg 20070823-202747.jpg 20070823-202756.jpg 20070823-202805.jpg Agriculture Andreas Fleckl Animal+Oil+AAAOE BadContent Beans+AAAOE Bourne Ultimatum ChangeLog DNS at measurement factory DanielKorbel DebiennaGroup DebiennaTreffThema/Market Die Simpsons - der Film Distel: Distributed Emacs Lisp Doxpara: Paketto Keiretsu 1.10: Advanced TCP/IP Toolkit Housing+renovation Huawei E220 HSDPA usb modem IE7 security Im Spiegel ... Infrastructures.Org: Best Practices in Automated Systems Administration and Infrastructure Architecture: Home Kerberos and LDAP LPI LUKS - Linux Unified Key Setup LiLA - Lisp Lab Austria LittleMailserver NetzwerkenConnectYourDevices One Laptop per Child PackagingWithDarcsAndTailor - Debian Wiki Rene Mayrhofer Encrypted home directories Rootless Root ScmailCoolFilterRules SebastianBachmann Setting up an apache2 reverse proxy (updated) StartSeite Strange ... SuperGenPass at labs.zarate.org Texta - Hediwari The TCP/IP Guide - The TCP/IP Guide Top 100 Network Security Tools Using HP ProLiant Systems With Debian Welcome to EasyUbuntu Wir sind Helden, Grossstadtgefluester - Teil 2 YAPC::Europe 2007 Yate - Main - SIPNAT a-list-of-interesting-erlang-links apache reverse proxy apache versus yaws benchmark demonstrating the power of erlang concurrency banks broken mailers cheap voip at voipcheap cimg1986.jpg cimg1987.jpg cimg1988.jpg cimg1992.jpg cimg1993.jpg cimg2210.jpg cimg2212.jpg cimg2219.jpg cimg2224.jpg cimg2225.jpg cimg2525.jpg cimg2527.jpg cimg2529.jpg cimg2530.jpg cimg2533.jpg cimg2536.jpg cimg2540.jpg cimg2544.jpg cimg2545.jpg cimg2546.jpg defmacro - Functional Programming For The Rest of Us ext3 online resize fabian linzbergers personal website fairytel - Voraussetzungen firefox extensions happy git usage hello!everyone~ how to easily configure umts based internet access using a1.net (austria) as provider on linux lenny must haves linux-2.6 bugs cleanup part 2 migration to ikiwiki msgmerge --previous und poedit mytest1161 mytest1226 mytest1371 mytest1400 mytest1571 netra d-i bootparam perlretut - Perl regular expressions tutorial - search.cpan.org playlist nov. 2007 pyxor.com - Social photo bookmarking: browse, tag and share images screencast about drscheme and plt-scheme the dvorak zine - webcomic on learning to touch type using the dvorak layout tips for efficiently using gnu screen, one of the best programs ever! toute.ca -- home of Termite and other random stuff ubahn-wien.jpg angramm map unofficial Ubuntu dapper guide voip-info.org - voip-info.org why blackberry sucks xen routed setup zhengxingmeirongfengxiong 不怕找不到,就怕想不到+jingkewang 国产减速机 圣诞节送什么礼物? 家具直销 红酒养生之道+jingkewang 迷糊娃娃购买,女孩最爱 WlanLefantNet blog bookmarks supergenpass debienna 2007-06-14 helponformatting index log archive 2007-07-22---phpfspot 2007-07-26---debienna 2007-07-26---on-another-note 2007-08-23---debienna 2007-10-11---ipv6 at debienna 2007-11-25---some-backports 2007-11-25---voip-hacking-at-deepsec cheap voip at voipcheap markdown pagespec fl.jpg preprocessordirective sandbox shortcuts smileys alert.png angry.png attention.png biggrin.png checkmark.png devil.png frown.png icon-error.png icon-info.png idea.png neutral.png ohwell.png prio1.png prio2.png prio3.png question.png redface.png sad.png smile.png smile2.png smile3.png smile4.png star off.png star on.png thumbs-up.png tired.png tongue.png soup subpage linkingrules tags templates wikilink

just testing

soup lefant: processed ok at Sun 25 Nov 2007 01:15:06 PM CET (158 posts)

Posted Sat 12 May 2007 04:48:55 PM CEST

Tags:

software