# HG changeset patch # User viric@mandarina # Date 1210870838 -7200 # Node ID 840aebd2e31e8964b0a4c079bb997c9bbd7654da # Parent c66307cca740df93be30e19e4eed0ee297996b0a New pages diff -r c66307cca740 -r 840aebd2e31e fontconfig.1.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fontconfig.1.txt Thu May 15 19:00:38 2008 +0200 @@ -0,0 +1,4 @@ +Executar programes amb FC_DEBUG=1 (eleccions de font), o FC_DEBUG=4 (regles +'edit' de la configuració). +Amb gentoo, "eselect fontconfig" permet activar i desactivar fitxers de +configuració del fontconfig. Paquet eslect-fontconfig. diff -r c66307cca740 -r 840aebd2e31e gmail.1.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gmail.1.txt Thu May 15 19:00:38 2008 +0200 @@ -0,0 +1,18 @@ +imaps://viriketo@gmail.com@imap.gmail.com:993/ + +Action on mobile device/client (e.g. iPhone/Outlook) Result in Gmail on the +web +Open a message Mark a message as read +Flag a message Apply a star to the message +Move a message to a folder Apply a label to the message +Move a message to a folder within a folder* Apply a label showing folder +hierarchy ('MainFolder/SubFolder')* +Create a folder Create a label +Move a message to [Gmail]/Spam Report a message as spam +Move a message to [Gmail]/Trash Move a message to Trash +Send a message Store message in Sent Mail +Delete a message in inbox** Remove the message from inbox** +Delete a message from a folder** Remove that label from the message** +Delete a message from [Gmail]/Spam or [Gmail]/Trash Delete the message +permanently + diff -r c66307cca740 -r 840aebd2e31e jbig2.1.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/jbig2.1.txt Thu May 15 19:00:38 2008 +0200 @@ -0,0 +1,7 @@ +Encoder: + jbig2 -p + +Pdf-maker: + pdf.py basename + + the basename is created when using -p -s in jbig diff -r c66307cca740 -r 840aebd2e31e ke.1.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ke.1.txt Thu May 15 19:00:38 2008 +0200 @@ -0,0 +1,13 @@ +Hektor: +3 articles. +1: introducció, d'en Joan Inglada, 2 pàgines +2: article corregit per en Jep del paŝtun, 1,5 pàgines, 1100 paraules +3: Creació i evolució de l'esperanto, 7 pàgines, de l'Hèctor. +4: celoj de la asocio + +Total, segurament 12 pàgines: mitja + +Relació: 650 o 700 paraules per pàgina. + +Por ramon, artikolo iĝu de 900 al 1400 vortoj? Pli detaligu. + diff -r c66307cca740 -r 840aebd2e31e tc.1.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tc.1.txt Thu May 15 19:00:38 2008 +0200 @@ -0,0 +1,44 @@ +Traffic control + +Classless pfifo_fast +------------- +3 bands. This means three fifos. 0 prioritized over 1, 1 over 2. +The kernel puts the packets into the fifos according to TOS. +classless + +Classless Tocken Bucket Filter (tbf) +-------------- +limit: max number of bytes waiting for tokens + +latency: max time the bytes may wait for tokens (sets limit) + +burst/buffer/maxburst: size of the bucket in bytes. + +mpu: minimal token usage for a packet + +rate: speedknob? + +peakrate: The peakrate can be used to specify how quickly the bucket is +allowed to be depleted. If doing everything by the book, this is achieved by +releasing a packet, and then wait just long enough, and release the next. We +calculated our waits so we send just at peakrate. + +mtu/minburst: A higher peakrate is possible by sending out more packets per +timertick, which effectively means that we create a second bucket!. To calculate the maximum possible peakrate, multiply the configured mtu by 100 +(or more correctly, HZ, which is 100 on Intel, 1024 on Alpha). + +Classless Stochastic Fairness Queueing +------------------------------- +perturb: Reconfigure hashing once this many seconds. + + +HTB (Hierarchic Token Bucket) +------------------------------- +All packets go to the class 1:1 +tc qdisc add dev eth1 root handle 1: htb default 1 + +The class: +tc class add dev eth1 parent 1: classid 1:1 htb rate 20kbps ceil 20kbps + +A SFQ qdisc for that rate limited class, so all connections get fair traffic +tc qdisc add dev eth0 parent 1:1 handle 40: sfq perturb 10