Skip to content

Instantly share code, notes, and snippets.

View nngogol's full-sized avatar

nngogol

View GitHub Profile
@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
//
// 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>
import numpy as np
from PIL import Image
import os
# РАБОТАЕТ !!!!!!!!!
os.chdir(r'path to ya folder')
@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
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);
}