Here is what I do as soon as I install a new Ubuntu instance: I remove unity desktop and replace it with XFCE. And if you want to do the same it’s pretty straightforward. 😉
Perform all of these as root in a terminal window, or prepend with sudo. (Look elsewhere for GUI steps 🙂 )
- Update your repos:
apt-get update
- Uninstall Unity and ubuntu-desktop:
apt-get purge ubuntu-desktop unity-*
- Install XFCE Desktop environment:
apt-get install xubuntu-desktop
- Restart lightdm:
/etc/init.d/lightdm restart
Voilà! You’re using XFCE desktop! 😉
Türkçe karakterlerin sorunsalı olan ISO-8859-9 formatıyla UTF-8 arasındaki uyuşmazlığı çözen küçük bir python scripti yazdım. Program girdi olarak ISO-8859-9 formatlanmış bir yazı alıyor ve de UTF-8 ile formatlayıp dosyaya yazıyor.
Kullanımı:
python convertToUnicode.py --input /path/to/filename.srt --output /path/to/convertedfilename.srt
ya da
python convertToUnicode.py -i /path/to/filename.srt -o /path/to/convertedfilename.srt
Siz de kullanmak istiyorsanız: https://github.com/emresaglam/convertToUnicode
My Blog about my life and my thoughts…