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