- mouse preferences
- terminal colors - gruvbox-dark-edited
- vim config
#!/bin/sh | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Paint</title> | |
<style id="jsbin-css"> | |
#container { position: relative; } | |
#imageView { border: 1px solid #000; } | |
#imageTemp { position: absolute; top: 1px; left: 1px; } | |
</style> |
# funkcia na nacitanie dvoch cisiel | |
def nacitaj_cislo(sprava = nil) | |
print sprava ? sprava : "Zadaj cislo: " | |
gets.chomp.to_i | |
end | |
def nacitaj_znak(sprava = nil) | |
print sprava ? sprava : "Zadaj znak: " | |
get.chomp[0] | |
end |