Helsingør, Espergærde, Humlebæk, Nivå, Vedbæk, Østerport, Nørreport, København H
Jan Łukasiewicz, Wacław Sierpiński, Paul Erdős, Évariste Galois
Andrey Nikolaevich Kolmogorov (Russian: Андрей Николаевич Колмогоров)
Pafnuty Lvovich Chebyshev (Russian: Пафну́тий Льво́вич Чебышёв)
Aleksandr Mikhailovich Lyapunov (Russian: Алекса́ндр Миха́йлович Ляпуно́в)
Grigori Yakovlevich Perelman (Russian: Григо́рий Я́ковлевич Перельма́н)
Georgy Feodosevich Voronoy (Ukrainian: Георгій Феодосійович Вороний)
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
use magnus::{ | |
class, define_class, | |
encoding::{CType, RbEncoding}, | |
exception::runtime_error, | |
function, method, | |
prelude::*, | |
scan_args::get_kwargs, | |
value::Value, | |
IntoValue, KwArgs, RArray, RHash, RObject, RString, Ruby, | |
}; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
lockfileVersion: '6.1' | |
settings: | |
autoInstallPeers: true | |
excludeLinksFromLockfile: false | |
dependencies: | |
jsonwebtoken: | |
specifier: 8.5.1 | |
version: 8.5.1 |
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
{ | |
"$schema": "https://docs.oasis-open.org/sarif/sarif/v2.1.0/os/schemas/sarif-schema-2.1.0.json", | |
"runs": [ | |
{ | |
"results": [ | |
{ | |
"locations": [ | |
{ | |
"physicalLocation": { | |
"artifactLocation": {"uri": "package.json"}, |
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
sxlijin@sxlijin-debian:2023-06-10T19:21:16-0700:~/repos/blow-qmk (choc2) [0] | |
$ g lgn | |
++ 2023-06-10T19:21:21-0700 ++ git lgn | |
42f7458b04 (8 weeks ago) - (HEAD -> choc2, origin/choc2) Fix photo url of sofle choc | |
871e067678 (8 weeks ago) - Apply tri layer handling for sofle choc. | |
4217deafeb (8 weeks ago) - Add default encoder behaviour. | |
11a7c61569 (8 weeks ago) - Replace deprecated RGB_DI_PIN. | |
8ab84c008a (8 weeks ago) - Merge remote-tracking branch 'upstream/master' into choc2 | |
6d965d486c (8 weeks ago) - Add hardware information momokai keyboards (#20434) | |
ce417226b2 (8 weeks ago) - 4pplet/eagle_viper_rep/rev_a Layout Macro Conversion and Additions (#20414) |
Ocean Beach pickup ultimate in SF uses the below described setup for nighttime beach frisbee games.
Regulation fields are 150' x 90', ours is probably slightly smaller.
We get 90+ min (probably 2h+) of playtime out of this setup (batteries can be upgraded if you want more time).
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
#!/bin/bash | |
set -e | |
sfdisk /dev/sda <<EOF | |
/dev/sda1 : start=2048, size=2048, type= 4, bootable | |
/dev/sda2 : start=4096, type=20 | |
EOF | |
mkfs.ext4 /dev/sda2 |
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
#!/bin/bash | |
WATCH_DIR="app/" | |
REPEAT_ON_CHANGES="./node_modules/.bin/webpack --progress" | |
inotifywait -m --exclude '\..*.swp' -e MODIFY -r $WATCH_DIR | \ | |
while true | |
do | |
sleep 0.1 | |
(e=false; while read -t 0.1 d; do echo $d; export e=true ; done; $e) \ |
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 | |
from glob import glob as ls | |
import statistics | |
import itertools as it | |
import re | |
def expand(field): | |
field = ((index + 1, freq) | |
for (index, (_, freq)) |