Skip to content

Instantly share code, notes, and snippets.

View nngogol's full-sized avatar

nngogol

View GitHub Profile
function windowResized() {
// Triggered, when window Resized
let Xx = windowWidth - 280;
let Yy = windowHeight / 1.4;
MyShape.resizeMySelf(canvass.width, canvass.height, Xx, Yy);
resizeCanvas(Xx, Yy);
}
@nngogol
nngogol / gist:094e6b2035b58714475a9d966c35c7f6
Last active March 27, 2018 07:05
Консолька в "правой кнопке"
run cmd.exe and type:
1) for python http.server
reg add HKEY_CLASSES_ROOT\Directory\Background\shell\http.server\command /d "C:\Windows\System32\cmd.exe /k python -m http.server"
2) for cmd in ya menu
reg add HKEY_CLASSES_ROOT\Directory\Background\shell\CMD_\command /d C:\Windows\System32\cmd.exe
3) for explorer in ya menu
import numpy as np
from PIL import Image
import os
# РАБОТАЕТ !!!!!!!!!
os.chdir(r'path to ya folder')
//
// this are the regular expressions for all purposes...
//For checking opening and closing tab of specific HTML tags..
<tt class="regex"><TAG\b[^>]*>(.*?)</TAG></tt>
//for any HTML tags starting and ending..
<tt class="regex"><([A-Z][A-Z0-9]*)\b[^>]*>(.*?)</\1></tt>
//For deleting white spaces from text...
<tt class="regex">^[ \t]+|[ \t]+$</tt>
//For Checking IP address between 0..255...
<tt class="regex">\b(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.</tt><tt class="regex">(25[0-5]|2[0-4][0-9]|[01]?[0-9]</tt>
@nngogol
nngogol / counting number trick.py
Created May 28, 2017 08:11
counting number trick (made it, because of this -> https://youtu.be/1GKfEDvhWdY)
def count_nums(n):
result = dict()
result[0] = 0
result[1] = 0
result[2] = 0
result[3] = 0
result[4] = 0
result[5] = 0
@nngogol
nngogol / process_images_func.py
Last active June 24, 2017 16:56
resize and scale image(s)
# install PIL for this!
# or just google'it - 'pip install PIL'
def process_photos(folder='', scale=1.0, fileformat='.jpg'):
'''
Erase all exif data and reScale it by 'scale' parameter
folder - is path, where all images are stored
scale - scale factor
@nngogol
nngogol / morzeGogol.py
Created July 9, 2017 09:06
English to morze in 5 min!
alf = {
"0": "-----",
"1": ".----",
"2": "..---",
"3": "...--",
"4": "....-",
"5": ".....",
"6": "-....",
"7": "--...",
"8": "---..",
@nngogol
nngogol / gist:75b2b5f53f4e47c71e365ecfceee1ae5
Created July 12, 2017 16:40
DELETE metadata from video
> One method is to remove all non-ffmpeg metadata:
> ffmpeg -i YA_input.file -c copy -map_metadata -1 output
@nngogol
nngogol / VladimirConv.py
Created October 30, 2017 13:29
from text_with_newline to cmd_text
# one line, yay!
# print('\n'*30,'\t Awesome!\nNow paste this text to cmd, and be happy! :)\n |\n V\necho', input('enter your text, with \'\\n\' as separator for newline:\n').replace('\\n', ' & echo.'))
# multi-line code
data = input('enter your text, with \'\\n\' as separator for newline:\n');
ui = '\n'*30 + '\tHello! I\'m duck Vladimir. I\'ve just converted your text!\n\nNow paste this text to cmd, and be happy! :)\n |\n V\n\necho'
result = data.replace('\\n', ' & echo.')
print(ui, result)
RUNDLL32.EXE user32.dll,SwapMouseButton *