This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% | |
% Compile with xelatex cv.tex | |
% | |
\documentclass[12pt,a4paper]{article} | |
\usepackage{xltxtra,polyglossia} | |
\usepackage[UKenglish]{datetime} | |
%\RequirePackage[dvips,headheight=21pt,headsep=6pt,vmargin={0.3in,0.2in},hmargin={0.2in},twoside=true,papersize={135.0mm,216mm}]{geometry} | |
\usepackage[dvips,headheight=21pt,headsep=6pt,vmargin={0.3in,0.2in},hmargin={0.2in},twoside=true,a4paper]{geometry} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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) | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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', |