Skip to content

Instantly share code, notes, and snippets.

View nngogol's full-sized avatar

nngogol

View GitHub Profile
@nngogol
nngogol / sounddd.py
Created May 5, 2018 12:42
Sound, generated by python.
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)
@nngogol
nngogol / gist:d81ad0769801580effa0a32f00758656
Created April 17, 2018 16:58
[win7] if language bar disapears
run this C:\Windows\system32\ctfmon.exe
@nngogol
nngogol / pdf_russian_reportlab.py
Created March 21, 2018 14:08
How to write russian text in reportlab in python. Also, download 'DejaVuSerif.ttf' from internet.
#!/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
python -c "import os; os.system('echo hello from sys'); print ('hello form python')"
@nngogol
nngogol / crud.snippet
Created December 15, 2017 09:31
crud for catel
<?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>
RUNDLL32.EXE user32.dll,SwapMouseButton *
@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)
@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 / 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 / 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