Just a tip about the bloat removal, you had this, for example:

mv /system/app/HtcTwitter.apk /system/app.disabled/
mv /system/app/HtcTwitter.odex /system/app.disabled/
mv /system/app/com.htc.TwitterWidget.apk /system/app.disabled/
mv /system/app/com.htc.TwitterWidget.odex /system/app.disabled/
HTC Peep

Where you could do it in just two steps like this:

mv /system/app/HtcTwitter.* /system/app.disabled/
mv /system/app/com.htc.TwitterWidget.* /system/app.disabled/
HTC Peep

Just to make the typing in this step less tedious.