- 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
[Unit] | |
Description = Wilck | |
BindsTo = network-online.target | |
After = network.target network-online.target | |
[Service] | |
WorkingDirectory = /home/pi | |
StandardOutput = journal | |
StandardError = journal | |
Restart = always |
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
$ sudo stdbuf -oL hcitool lescan | grep LYWSD02 | |
E7:2E:00:F0:20:8A LYWSD02 | |
$ sudo hcitool leinfo E7:2E:00:10:50:A2 | |
Requesting information ... | |
Handle: 65 (0x0041) | |
LMP Version: 4.2 (0x8) LMP Subversion: 0x10f | |
Manufacturer: Dialog Semiconductor B.V. (210) | |
Features: 0x1f 0x00 0x00 0x00 0x00 0x00 0x00 0x00 |
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 | |
# |