Skip to content

Instantly share code, notes, and snippets.

View code-of-kpp's full-sized avatar

Konstantin code-of-kpp

  • SentinelOne
  • Prague
View GitHub Profile
@code-of-kpp
code-of-kpp / koib-image-filename.cs
Last active December 22, 2015 19:49
Насколько я понял, КОИБы сохраняют изображение опущенного бюллетеня. Имя файла при этом содержит текущее время. Таким образом, имея видеозапись и флешку (контрольный носитель информации), можно узнать кто как проголосовал
/// <summary>
/// Получить имя файла для сохранения изображения
/// </summary>
/// <param name="filePrefix">префикс имени файла</param>
/// <returns>StringBuilder, в который уже записано имя файла</returns>
private StringBuilder GetImageFileName(string filePrefix)
{
Logger.LogVerbose(Message.DebugVerbose, "call");
var fileName = new StringBuilder();
@code-of-kpp
code-of-kpp / gist:6664408
Created September 22, 2013 22:17
Из исходников gov.pravo.ru
//==== Козарь 26.06.2007 списки из клиента подглючивают в showModalDialog
//==== Miguel 05.07.2007 можно подумать, они хоть где-то хоть как-то не подглючивают
@code-of-kpp
code-of-kpp / script.js
Created September 22, 2013 22:23
pravo.gov.ru/proxy/ips/?script.js
//в 6м кодексе нет возможности работать с кукисами,
//все хранится в базе
function DoSearch() {
// без этого костыля поиск по сборникам в клиенте не работает
if (null != window.getSearchFormLength) {
var len = window.getSearchFormLength();
if (len > 400) {
alert('Для выполнения поиска, пожалуйста, конкретизируйте запрос путем уменьшения поисковых условий.');
return false;
@code-of-kpp
code-of-kpp / quicksort.py
Last active August 29, 2015 13:56
Short quicksort in python
import random; import operator; from six.moves import range, reduce
def swap(arr, iv, ip, dir):
if iv == ip + dir: arr[iv], arr[ip] = arr[ip], arr[iv]
else: arr[iv], arr[ip + dir], arr[ip] = arr[ip + dir], arr[ip], arr[iv]
shift = lambda (cmp, dir, arr, ip), iv: (cmp, dir, arr, ip) if cmp(arr[iv], arr[ip]) else (swap(arr, iv, ip, dir) or (cmp, dir, arr, ip + dir))
def qs(arr, bgn=0, end=None):
if end is None: end = len(arr) - 1 - bgn
if end - bgn < 1: return arr
ip = bgn if end - bgn == 1 else random.randint(bgn + 1, end - 1)
_, _, _, ipl = reduce(shift, range(ip - 1, bgn - 1, -1), (operator.le, -1, arr, ip))
#include <utility>
#include <unordered_set>
#include <vector>
#include <stack>
using std::pair;
using std::make_pair;
using std::unordered_set;
using std::vector;
using std::stack;
#include <iostream>
#include <numeric>
#include <algorithm>
#include <tuple>
#include <iterator>
#include <functional>
#include <string>
#include <random>
#include <list>
#include <iostream>
#include <vector>
#include <queue>
#include <memory>
#include <atomic>
#include <chrono>
#include <thread>
#include <mutex>
#include <condition_variable>
@code-of-kpp
code-of-kpp / plot_roc.py
Created August 11, 2014 02:43
Python pyplot receiver operating characteristic (ROC) curve with colorbar
import numbers
import six
import numpy
import matplotlib.collections
from matplotlib import pyplot
# using example from
# http://nbviewer.ipython.org/github/dpsanders/matplotlib-examples/blob/master/colorline.ipynb
@code-of-kpp
code-of-kpp / yandex_passwords_sorted.csv
Created September 8, 2014 13:34
Leaked yandex passwords w/o logins sorted by popularity
We can't make this file beautiful and searchable because it's too large.
password count
123456 39177
123456789 13892
111111 9826
qwerty 7926
1234567890 5853
1234567 4668
7777777 4606
123321 4324
000000 3304
@code-of-kpp
code-of-kpp / mail_passwords_sorted.csv
Created September 8, 2014 17:36
Leaked mail.ru passwords w/o logins sorted by popularity
We can't make this file beautiful and searchable because it's too large.
password count
qwertyuiop 24105
qwe123 19975
qwerty 14266
qweqwe 6084
123456 4541
1q2w3e4r 3245
1qaz2wsx 3122
1q2w3e 2383
111111 2075