IN PROGRESS
Fungibles are indivisible units of currency that may be useful for other purposes.
Fungibles can not be created or destroyed.
Sourcing python-remove-tests-dir-hook | |
Sourcing python-catch-conflicts-hook.sh | |
Sourcing python-remove-bin-bytecode-hook.sh | |
Sourcing pypa-build-hook | |
Using pypaBuildPhase | |
Sourcing python-runtime-deps-check-hook | |
Using pythonRuntimeDepsCheckHook | |
Sourcing pypa-install-hook | |
Using pypaInstallPhase | |
Sourcing python-imports-check-hook.sh |
{ | |
"nodes": { | |
"dns": { | |
"inputs": { | |
"flake-utils": "flake-utils", | |
"nixpkgs": [ | |
"nixpkgs" | |
] | |
}, | |
"locked": { |
diff --git a/homeassistant/scripts/check_config.py b/homeassistant/scripts/check_config.py | |
index d38e24a2..b3c9f59c 100644 | |
--- a/homeassistant/scripts/check_config.py | |
+++ b/homeassistant/scripts/check_config.py | |
@@ -28,8 +28,6 @@ import homeassistant.util.yaml.loader as yaml_loader | |
# mypy: allow-untyped-calls, allow-untyped-defs | |
-REQUIREMENTS = ("colorlog==6.8.2",) | |
- |
{ | |
"nodes": { | |
"jovian": { | |
"inputs": { | |
"nix-github-actions": "nix-github-actions", | |
"nixpkgs": [ | |
"nixpkgs" | |
] | |
}, | |
"locked": { |
for f in {1-000{00..23}-of-00024,2-{00000..00588}-of-00589,3-{00000..06880}-of-06881,4-{00000..06667}-of-06668,5-{00000..19422}-of-19423}.gz | |
do | |
if [ -f "$f" ] | |
then | |
echo "Skipping $f" | |
else | |
wget 'http://storage.googleapis.com/books/ngrams/books/20200217/eng/'$f || break | |
fi | |
done |
// diesel_composite_macro.rs - Simple macro for making types to interface with postgres composite types in diesel. | |
// Written in 2019 by Shelvacu <[email protected]> | |
// To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. | |
// You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>. | |
/// Columns **must** be in the same order as database | |
// based on https://github.com/diesel-rs/diesel/issues/1732 | |
macro_rules! composite_type { | |
( |
@last=1;END{(@last<6) ? puts(6): ''} | |
@last.nil? ? puts((@last=2)-1): @last=2 | |
(3-@last>1) ? puts((@last+=2)-1): @last=3 | |
(4-@last>1) ? puts((@last+=2)-1): @last=4 | |
(5-@last>1) ? puts((@last+=2)-1): @last=5 | |
(6-@last>1) ? puts((@last+=2)-1): @last=6 |
# CC0: To the extent possible under law, Shelvacu has waived all copyright and related or neighboring rights to Reddit Place Event Recorder. This work is published from: United States. | |
# A ugly but simple logger for every event (pixel placements, participation number updates) on www.reddit.com/place | |
# First you need to `gem install websocket-client-simple` | |
require 'websocket-client-simple' | |
require 'open-uri' | |
$logprefix = "pixel-placement" | |
$lines = 0 |
var list = document.getElementsByClassName('pl-video-time'); | |
var time = 0; | |
function toS(hms) { | |
var a = hms.split(':'); | |
while (a.length < 3) { | |
a.unshift(0); | |
} | |
var seconds = (+a[0]) * 60 * 60 + (+a[1]) * 60 + (+a[2]); | |
return seconds; |