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); | |
} |
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
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
// | |
// 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
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
# 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 |
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
alf = { | |
"0": "-----", | |
"1": ".----", | |
"2": "..---", | |
"3": "...--", | |
"4": "....-", | |
"5": ".....", | |
"6": "-....", | |
"7": "--...", | |
"8": "---..", |
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
> One method is to remove all non-ffmpeg metadata: | |
> ffmpeg -i YA_input.file -c copy -map_metadata -1 output |
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
# 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) |
OlderNewer