Skip to content

Instantly share code, notes, and snippets.

View tigran123's full-sized avatar
🏠
Working from home

Tigran Aivazian tigran123

🏠
Working from home
View GitHub Profile
@tigran123
tigran123 / fbdjview
Created December 29, 2017 21:42
View DjVu files on Linux framebuffer console using fbi and ddjvu
#!/bin/bash
#
# fbdjview --- View DjVu files on Linux framebuffer console
# By Tigran Aivazian, v1.0, 29 December 2017
# License: GPLv3
#
# Pre-requisites: fbi and ddjvu (Run "sudo apt install fbi djvulibre-bin" to install on Ubuntu)
#
@tigran123
tigran123 / cyrillic2latin_file_renamer.py
Last active February 6, 2018 09:27 — forked from ramanqul/cyrillic2latin_file_renamer.py
Cyrillic to Latin File Changer
#!/usr/bin/python
# -*- coding: utf-8 -*-
from os import walk, rename, mkdir
from os.path import isdir, exists
from sys import argv, exit, getfilesystemencoding
conversion = {
u'А': u'A',
u'Б': u'B',