Here is the PRS-T1 service manual with instructions on how to open the thing up. Basically it has (pretty tight) clips along the inside sides.
(Right click and save, or open in a new tab/window, if you want full resolution to zoom in on.)
gs -sDEVICE=pdfwrite -dPDFSETTINGS=/ebook -dNOPAUSE -dQUIET -dBATCH -sOutputFile=output.pdf input.pdfThe PDFSETTINGS presets equate to the following resolutions:
-Djava.net.preferIPv4Stack=trueIt's come in handy a few times. Sadly.
Control Panel -> Hardware and Sound -> Manage Audio Devices -> [Playback tab] Speakers -> Properties -> Enhancements [tab] -> check Loudness Equalization -> OK.And suddenly I have all the loudness I could want. Why? How!
DBERROR: skiplist recovery /home/cyrus/user/u/username.seen: ADD at 4C48 existsThe recommended way to fix this is to truncate the file at the location the problem is detected. In the case above, at the hex byte 4C48.
#!/bin/sh if [ $# != 2 ]; then echo "USAGE: $0 login hex" exit fi TRUNC=`python -c "print int('$2', 16)"` DATE=`date +%Y%m%dT%H%M` DBPATH=/home/cyrus/user/$1 if [ -d $DBPATH ]; then dd if=$DBPATH/$1.seen of=$DBPATH/$1.seen.fixed bs=1 count=$TRUNC chown cyrus:mail $DBPATH/$1.seen.fixed chmod 600 $DBPATH/$1.seen.fixed mv $DBPATH/$1.seen $DBPATH/$1.seen.$DATE.corrupt.at.$TRUNC mv $DBPATH/$1.seen.fixed $DBPATH/$1.seen else echo "No such directory: $DBPATH" fi