Skip to content

Instantly share code, notes, and snippets.

View killthekitten's full-sized avatar
🇺🇦

Nikolay Shebanov killthekitten

🇺🇦
View GitHub Profile
@killthekitten
killthekitten / persistent_csrf_token_cookie.rb
Last active October 6, 2021 17:12
Persistent CSRF token cookie
@killthekitten
killthekitten / sgdregressor.py
Last active May 1, 2017 22:22
DIY SGDRegressor
class SGDRegressor(BaseEstimator):
def __init__(self, eta=10**-3, n_iter=10):
self.mse_ = []
self.weights_ = []
self.eta_ = eta
self.n_iter_ = n_iter
def fit(self, X, y):
X = self._prepend_ones(X)
current_w = np.zeros(X.shape[1], dtype=np.float64, order="C")
import fitz
import io
import requests
PDF_URL = "https://github.com/pymupdf/PyMuPDF/raw/master/examples/colordbHSV.pdf"
PNG_URL = "https://raw.githubusercontent.com/pymupdf/PyMuPDF/master/examples/hand.png"
def handle(_):
"""
@killthekitten
killthekitten / keep_proportion.py
Created April 3, 2019 07:29
Illustration of a bug (a feature?) in pyMuPDF
import fitz
import io
import requests
PDF_URL = "https://github.com/pymupdf/PyMuPDF/raw/master/examples/colordbHSV.pdf"
PNG_URL = "https://www.onlygfx.com/wp-content/uploads/2018/07/12-grunge-brush-stroke-banner-11.png"
def handle(_):
pdf = requests.get(PDF_URL).content
@killthekitten
killthekitten / keep_proportion.py
Created April 9, 2019 12:10
Illustrates Pixmap regression introduced in PyMuPDF 1.14.13
import fitz
import io
import requests
PDF_URL = "https://github.com/pymupdf/PyMuPDF/raw/master/examples/colordbHSV.pdf"
PNG_URL = "https://www.onlygfx.com/wp-content/uploads/2018/07/12-grunge-brush-stroke-banner-11.png"
def handle(_):
pdf = requests.get(PDF_URL).content
@killthekitten
killthekitten / main.py
Created June 9, 2019 12:18
flask run + DispatcherMiddleware demo
from flask import Flask
from werkzeug.middleware.dispatcher import DispatcherMiddleware
api = Flask("api")
admin = Flask("admin")
app = DispatcherMiddleware(api, {"/admin": admin})
@killthekitten
killthekitten / README.md
Last active November 18, 2019 14:54
Showcase of a Flask-Admin 1.5.4 regression

Showcase of a Flask-Admin 1.5.4 regression

The sample code throws an error in Flask-Admin 1.5.3 when creating a user through the UI, but doesn't throw it in 1.5.4

More details you can find in the issue.

Before running, prepare the environment:

python -m venv venv