This file contains 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/env python | |
def main(): | |
print "+-----------------------+" | |
for i in xrange(256): | |
print " | ", i, " | ", chr(i), " | " | |
print "+-----------------------+" | |
if __name__ == '__main__': |
This file contains 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
jmp lib_end | |
; ######################### | |
cnsn: | |
push AX | |
push CX | |
push DX | |
push BX | |
mov AH,6; clean screen | |
mov AL,0 | |
mov CX,0 |
This file contains 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
org 100h | |
use16 | |
include 'dec_proc32.asm' | |
include 'lab4lib.asm' | |
mov CL,1 | |
mov BL,1 | |
mov dx,0 |
This file contains 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
;сортировка | |
lea bx,arr ; аддрес массива | |
mov cx,N-1 ; кол-во элементов-1 | |
cyc1: | |
push cx | |
xor si,si ; обнуляем индекс текущего элемента | |
mov di,2 | |
mov cx,N-1 | |
cyc2: |
This file contains 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
Show hidden characters
{ | |
"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" | |
} |
This file contains 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
" 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 |
This file contains 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
#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 |
This file contains 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 | |
# | |
# Local Ruby with rbenv and ruby-build | |
## Update apt | |
sudo apt-get -y update | |
## Install git and curl | |
echo " ### INSTALLING GIT AND CURL ###" | |
sudo apt-get install -y git curl |
This file contains 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
{ | |
"selector": "source.ruby", | |
"path": "$HOME/.rbenv/shims:$PATH", | |
"file_regex": "^(.*):([\\d]+):(.*) (.*)$", | |
"variants": [ | |
{ | |
"cmd": ["ruby", "-wv", "$file"], | |
"name": "Run" | |
}, | |
{ |
OlderNewer