- Web
- Console
- GitHub - BurntSushi/ripgrep: ripgrep recursively searches directories for a regex pattern
- GitHub - imsnif/bandwhich: Terminal bandwidth utilization tool
- GitHub - sharkdp/fd: A simple, fast and user-friendly alternative to ‘find’
- GitHub - ogham/exa: A modern version of ‘ls’.
- GitHub - sharkdp/bat: A cat(1) clone with wings.
- GitHub - sharkdp/hyperfine: A command-line benchmarking tool
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
""" | |
The Snowball stemmer. | |
Pavel Perestoronin © 2013 | |
""" | |
import re | |
import unittest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################# | |
# 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 | |
# |