IN PROGRESS
Fungibles are indivisible units of currency that may be useful for other purposes.
Fungibles can not be created or destroyed.
| // Compile with: gcc -Wall -std=gnu99 main.c | |
| #include <stddef.h> | |
| #include <stdlib.h> | |
| // see https://gcc.gnu.org/onlinedocs/gcc/Variable-Length.html | |
| void foo(size_t length; char buf[length], size_t length) { | |
| for (size_t i=0; i<length; i++) { | |
| buf[i] = 0; | |
| } |
| { | |
| "nodes": { | |
| "nixpkgs": { | |
| "locked": { | |
| "lastModified": 1747967828, | |
| "narHash": "sha256-wA/ckEEgrmv+0N2L4BQ7XfU1DHvCGTDd4nPpZwmqi6I=", | |
| "owner": "nixos", | |
| "repo": "nixpkgs", | |
| "rev": "eda6a410f1ac02dc9a0e60869dd5b7e134d04d4f", | |
| "type": "github" |
| 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 |
| { | |
| "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 <shelvacu@gmail.com> | |
| // 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 |