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 winsound | |
notes = {'C':0, 'D':2, 'E':4, 'F':5, 'G':7, 'A':9, 'B':11} | |
def play_note(note, duration=500): | |
winsound.Beep(int(256*(2**(notes[note]/12))), duration) | |
song = "E E F G G F E D C C D E E D D".split() | |
for note in song: | |
play_note(note) |
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 this C:\Windows\system32\ctfmon.exe |
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 | |
#-*- coding: UTF-8 -*- | |
from reportlab.lib import colors | |
from reportlab.platypus import Paragraph, SimpleDocTemplate, Table, TableStyle | |
from reportlab.lib.styles import getSampleStyleSheet | |
from reportlab.lib.pagesizes import A4 | |
from reportlab.pdfbase import pdfmetrics | |
from reportlab.pdfbase.ttfonts import TTFont |
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
python -c "import os; os.system('echo hello from sys'); print ('hello form python')" |
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
<?xml version="1.0" encoding="utf-8" ?> | |
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
<CodeSnippet Format="1.0.0"> | |
<Header> | |
<Title>Define a curd structure</Title> | |
<Shortcut>crudVM</Shortcut> | |
<Description>Final Code snippet for a crud structure with C# + XAML code</Description> | |
<Author>NNGogol</Author> | |
<SnippetTypes> | |
<SnippetType>Expansion</SnippetType> |
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) |
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
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
# 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 |