Skip to content

Instantly share code, notes, and snippets.

View nngogol's full-sized avatar

nngogol

View GitHub Profile
@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>
python -c "import os; os.system('echo hello from sys'); print ('hello form python')"
@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
@nngogol
nngogol / gist:d81ad0769801580effa0a32f00758656
Created April 17, 2018 16:58
[win7] if language bar disapears
run this C:\Windows\system32\ctfmon.exe
@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 / ffmpeg magic.md
Last active June 1, 2019 09:40
for FAST media conveting

ffmpeg

reduce filesize

ffmpeg -i input.avi -vcodec libx264 -crf 24 output.avi

trim

trim start :

ffmpeg
@nngogol
nngogol / cmd trick.batch
Created September 2, 2018 14:26
open dir via cmd.exe
cmd /K "cd /d %path_to_directory%\"
Example 1: cmd.exe /K "cd /d D:\music\"
Example 2: cmd.exe /K "cd /d D:\hello world\some folder\music\"
Example 3: cmd.exe /K "cd /d D:\music" - WRONG (no '\' at the end)
s, sp, padd='*', 2, 45
for i in range(5):
[print(' '*(padd-i), s*i, s*i, ' '*(padd-i), ' '*(padd-i), s*i, s*i, ' '*(padd-i), sep='') for i in range(1, 20, sp)]
[print(' '*(padd-i), s*i, s*i, ' '*(padd-i), ' '*(padd-i), s*i, s*i, ' '*(padd-i), sep='') for i in reversed(range(1, 20, sp))]
print('\n')
@nngogol
nngogol / get_v.py
Created February 8, 2019 14:27
get_video
import os
import ffmpeg
import click
@click.command()
@click.argument('fname', type=click.Path(exists=True))
def cli(fname):
'''
Вытягивает видео дорожку из файла.
Использование:
@nngogol
nngogol / get_a.py
Created February 8, 2019 14:27
get audio
import os
import ffmpeg
import click
@click.command()
@click.option('-f', '--output_format', default='', help='format of output file')
@click.argument('fname', type=click.Path(exists=True))
def cli(output_format, fname):
'''
Вытягивает аудио дорожку из файла.