Skip to content

Instantly share code, notes, and snippets.

View eigenein's full-sized avatar
🐌
I may be slow to respond.

Pavel Perestoronin eigenein

🐌
I may be slow to respond.
  • Vijfhuizen, Netherlands
  • 03:36 (UTC +02:00)
View GitHub Profile
@eigenein
eigenein / heartbeat.plist
Last active March 21, 2025 14:57
Launch daemons for streaming a UniFi camera to YouTube
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>...</string>
<key>StartInterval</key>
<integer>30</integer>
@eigenein
eigenein / model_selection.py
Created August 26, 2018 12:29
TTestSearchCV
class TTestSearchCV:
def __init__(self, estimator, param_grid, *, cv, scoring, alpha=0.95):
self.estimator = estimator
self.param_grid: Dict[str, Any] = param_grid
self.cv = cv
self.scoring = scoring
self.alpha = alpha
self.p = 1.0 - alpha
self.best_params_: Optional[Dict[str, Any]] = None
@eigenein
eigenein / strategy.py
Created April 26, 2016 18:33
CodeRunner 2015
#!/usr/bin/env python3
# coding: utf-8
from collections import deque, namedtuple
from math import pi, copysign, cos, sin
from typing import Tuple
from model.Car import Car
from model.CarType import CarType
from model.Game import Game
#
# blowfish.py
# Copyright (C) 2002 Michael Gilfix <[email protected]>
#
# This module is open source; you can redistribute it and/or
# modify it under the terms of the GPL or Artistic License.
# These licenses are available at http://www.opensource.org
#
# This software must be used and distributed in accordance
# with the law. The author claims no liability for its
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
The Snowball stemmer.
Pavel Perestoronin © 2013
"""
import re
import unittest
@eigenein
eigenein / pyDes.py
Created October 10, 2011 11:33
A pure python implementation of the DES and TRIPLE DES encryption algorithms
#############################################################################
# Documentation #
#############################################################################
# Author: Todd Whiteman
# Date: 16th March, 2009
# Verion: 2.0.0
# License: Public Domain - free to do as you wish
# Homepage: http://twhiteman.netfirms.com/des.html
#