Performance Edition Windows XP je uprošćena verzija XP-a koja ima poizbacivane gomile drajvera i nepotrebnih gluposti, ali nažalost izbačena je i podrška za srpski keyboard layout, ćirilični i latinični. Kako ispraviti? Lako.
1. Prekopirati sa regularnog XP-a (možda bi i w2k poslužio?) fajlove kbdycc.dll i kbdycl.dll iz C:\WINDOWS\system32 foldera
2. Uneti u registry:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layouts\0000081a]
“Layout Text”=”Serbian (Latin)”
“Layout Display Name”=”@%SystemRoot%\\system32\\input.dll,-5038″
“Layout File”=”KBDYCL.DLL”
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layouts\00000c1a]
“Layout Text”=”Serbian (Cyrillic)”
“Layout Display Name”=”@%SystemRoot%\\system32\\input.dll,-5057″
“Layout File”=”KBDYCC.DLL”
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Nls\Locale]
“0000081a”=”2″
“00000c1a”=”5″
Disclaimer: ovo radite na sopstvenu odgovornost. Javite ako i kod vas radi.
ls -1 *.wav | while read FILE; do sox "$FILE" -r 22050 "NOVO/$FILE" compand 0.001,0.15 -28,-inf,-24,-24 -0.3 0 0 resample -qs; done
sed -e 's/#.*//' -e 's/[ ^I]*$//' -e '/^$/ d'
…so I don’t have to think of it again.
Simply wonderful.
I don’t have to get it from testing and “break” my stable box with mixed trees!
Add to /etc/apt/sources.list:
deb http://www.backports.org/debian etch-backports main contrib non-free
Add to /etc/apt/preferences:
Package: *
Pin: release a=etch-backports
Pin-Priority: 750
Package: *
Pin: release a=stable
Pin-Priority: 700
Add to /etc/apt/apt.conf.d/00Cache:
APT::Cache-Limit "33554432";
APT::Default-Release "etch-backports";
Do:
apt-get update
apt-get dist-upgrade
I’m just watching an Animal planet show about some dogs who are about to get adopted and one of the tests they do on them to see are they viable for adoption is to give them food and try to take it away from them, to see what’s the dog’s reaction. Of course, the dog reacts with barking, and the woman says “he reacts violently when you take his resources…” Damn, don’t take the food from the dog then?! And then she tags this dog as unsuitable for adoption… I’m so apalled at the criteria they push upon the dogs. It’s completely normal in my opinion that a dog reacts like that. Hey, even my perfectly calm and snuggly dog, Spikey, reacts like that when you try to take the food away from him, because he has character and it seems that that’s not a wanted feat in a dog?
htmldoc --size a4 --linkstyle plain --webpage --no-jpeg --tocheader ... --tocfooter ... --top 0 --bottom 20 --right 20 --left 20 -f book.pdf *.html
Just checked:
imp@extweb:~> uptime
2:34pm up 674 days 3:03, 1 user, load average: 0.02, 0.11, 0.09
Minimal sources.list configuration.
/etc/apt/sources.list:
deb http://security.debian.org/ etch/updates main contrib
deb-src http://security.debian.org/ etch/updates main contrib
deb http://ftp.de.debian.org/debian stable main non-free contrib
deb http://ftp.de.debian.org/debian testing main non-free contrib
deb http://ftp.de.debian.org/debian unstable main non-free contrib
When updgrading, stable versions of packages need to stay on stable. unstable versions are usually newer, so they overwrite stable versions if this is not properly handled with using Pin-Priority as stated below. If not explicitly requested, “apt-get install” installs stable version of a package.
/etc/apt/preferences:
Package: *
Pin: release a=stable
Pin-Priority: 700
Package: *
Pin: release a=testing
Pin-Priority: 650
Package: *
Pin: release a=unstable
Pin-Priority: 600
To install f.e. unstable version of a package with dependencies from unstable as well (preferred method, AFAIK), do the following:
apt-get install package -t unstable
To install the same package, but to resolve it’s deps from stable:
apt-get install package/unstable