Skip to content

Instantly share code, notes, and snippets.

View yuriihabrusiev's full-sized avatar
🎯
Focusing

Yurii Habrusiev yuriihabrusiev

🎯
Focusing
View GitHub Profile
#!/usr/bin/env ruby
# Generate project ctags
system("find . -name '*.rb' | ctags -f .tags -L -")
# Generate gem ctags
if File.exist?('./Gemfile')
require 'bundler'
paths = Bundler.load.specs.map(&:full_gem_path).join(' ')
system("ctags -R -f .gemtags #{paths}")
#!/bin/bash
scrot /tmp/screen.png
convert /tmp/screen.png -scale 10% -scale 1000% /tmp/screen.png
[[ -f $HOME/Pictures/Icons/lock.png ]] && convert /tmp/screen.png $HOME/Pictures/Icons/lock.png -gravity center -composite -matte /tmp/screen.png
dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Stop
i3lock -u -i /tmp/screen.png
input = {
'key1a.key2a.key3a' => 'value1',
'key1a.key2b.key3b' => 'value2',
'key1a.key2c.key3c' => 'value3',
'key1a.key2c.key3d' => 'value4'
}
def flat_keys_to_nested(hash)
hash.each_with_object({}) do |(key,value), all|
key_parts = key.split('.')
@yuriihabrusiev
yuriihabrusiev / gist:1703282
Created January 30, 2012 08:10
ascii table
#!/usr/bin/env python
def main():
print "+-----------------------+"
for i in xrange(256):
print " | ", i, " | ", chr(i), " | "
print "+-----------------------+"
if __name__ == '__main__':
@yuriihabrusiev
yuriihabrusiev / screenlib.asm
Created March 5, 2012 07:14
Clean screen and move cursor
jmp lib_end
; #########################
cnsn:
push AX
push CX
push DX
push BX
mov AH,6; clean screen
mov AL,0
mov CX,0
@yuriihabrusiev
yuriihabrusiev / multab.asm
Created March 5, 2012 09:56
Multiplication table
org 100h
use16
include 'dec_proc32.asm'
include 'lab4lib.asm'
mov CL,1
mov BL,1
mov dx,0
;сортировка
lea bx,arr ; аддрес массива
mov cx,N-1 ; кол-во элементов-1
cyc1:
push cx
xor si,si ; обнуляем индекс текущего элемента
mov di,2
mov cx,N-1
cyc2:
@yuriihabrusiev
yuriihabrusiev / Flake8.sublime-build
Created July 17, 2013 07:17
Flake8 build system for Sublime Text 3
{
"shell_cmd": "flake8 $file; echo",
"file_regex": "^(.*):(\\d+):(\\d+): (.*)$",
"selector": "source.python",
"variants": [
{
"shell_cmd": "python -u $file",
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"name": "Run"
}
" VirtualEnv settings for Vim
" Copy this template to VIRTUAL_ENV as 'vimrc'
" And edit DJANGO_SETTINGS_MODULE
py << EOF
import os.path
import sys
import vim
# SET THIS MANUALLY
@yuriihabrusiev
yuriihabrusiev / .Xresources-gruvbox
Created August 1, 2013 13:29
Gruvbox Xresources
#define G_dark0 #282828
#define G_dark1 #3c3836
#define G_dark2 #504945
#define G_dark3 #665c54
#define G_dark4 #7c6f64
#define G_medium #928374
#define G_light0 #fdf4c1
#define G_light1 #ebdbb2