- 12.5 kWh g / m3
- 139.68 JPY / m3
- 26.5 JPY / kWh e
- 水道水は 15 C, 出湯温度は 40 C, エネファームの貯湯温度は 60 C で一定
- エネファームによる出湯は安定して 60 C の温水と 15 C の水道水の 5 : 4 混合と仮定
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
<!doctype html> | |
<html lang="en"> | |
<meta charset="UTF-8"> | |
<title>Anchor generator</title> | |
<script> | |
addEventListener('DOMContentLoaded', () => { | |
const form = document.querySelector('form#input'); | |
const input = document.querySelector('input#url'); | |
const div = document.querySelector('div#output'); |
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 | |
CONCURRENCY=8 | |
RESULT_DIR="$(mktemp -d -p ./)" | |
for iter in $(seq 1 "${CONCURRENCY}"); do | |
./ndt7-client.exe -format json | tail -n 1 >"${RESULT_DIR}/${iter}" & | |
done | |
until [[ "$(jobs | grep -c Running)" -eq 0 ]]; do |
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/node | |
const child_process = require('node:child_process'); | |
const readline = require('node:readline/promises'); | |
class SNATReflector { | |
constructor() { | |
this.armIptablesRestore(); | |
this.armConntrack(); | |
} |
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
2022/04/08 17:25:01 217.178.137.58 | |
2022/04/05 19:43:14 217.178.137.58 | |
2022/04/01 18:01:51 217.178.137.58 | |
2022/03/26 10:58:34 217.178.130.122 | |
2022/03/26 9:49:27 217.178.130.122 | |
2022/03/01 20:36:31 217.178.27.70 | |
2022/03/01 16:47:54 217.178.27.70 | |
2022/01/16 17:54:54 217.178.27.70 | |
2021/12/23 0:31:37 217.178.27.70 | |
2021/11/25 14:48:27 217.178.27.183 |
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
$ uname -a | |
Linux *****.makotom.org 5.18.7-arch1-1 #1 SMP PREEMPT_DYNAMIC Sat, 25 Jun 2022 20:22:01 +0000 x86_64 GNU/Linux | |
$ curl -fsSJL https://gist.github.com/makotom/9bab3eccbd5eccc82011dd9730a8825a/raw/try-connect.c | gcc -o try-connect -x c - | |
$ ./try-connect 2001:db8::1234:5678 | |
connecting 2001:db8::1234:5678...connected | |
src_addr: 240b:10:****:****:****:****:****:**** | |
$ ./try-connect fe80::1234:5678 | |
connecting fe80::1234:5678...EINVAL (22): Invalid argument | |
$ ./try-connect "$(ip -6 addr | grep 'scope link' | head -n 1 | awk '{ print $2 }' | awk -F/ '{ print $1 }')" | |
connecting fe80::****:****:****:****...EINVAL (22): Invalid argument |
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 | |
MAX_ITER=16 | |
RESULT_DIR="$(mktemp -d -p ./)" | |
for iter in $(seq 1 "${MAX_ITER}"); do | |
./ndt7-client >"${RESULT_DIR}/${iter}" & | |
done | |
until [[ "$(jobs | grep -c Running)" -eq 0 ]]; do |
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 | |
MAX_ITER=16 | |
RESULT_DIR="$(mktemp -d -p ./)" | |
for iter in $(seq 1 "${MAX_ITER}"); do | |
./ndt7-client >"${RESULT_DIR}/${iter}" & | |
done | |
until [[ "$(jobs | grep -c Running)" -eq 0 ]]; do |
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
#include <ctype.h> | |
#include <limits.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <wchar.h> | |
// https://github.com/cygwin/cygwin/blob/eeeb5650cf706f4dde72ce8b8598aef41f88718a/winsup/cygwin/glob.cc#L112 | |
#define MAXPATHLEN 8192 |
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
diff --git a/trunk/PKGBUILD b/trunk/PKGBUILD | |
index 76516184b49..a3b73c8f210 100644 | |
--- a/trunk/PKGBUILD | |
+++ b/trunk/PKGBUILD | |
@@ -24,7 +24,8 @@ source=(https://ftp.gnu.org/gnu/glibc/glibc-$pkgver.tar.xz{,.sig} | |
bz27343.patch | |
0001-nptl_db-Support-different-libpthread-ld.so-load-orde.patch | |
0002-nptl-Check-for-compatible-GDB-in-nptl-tst-pthread-gd.patch | |
- 0003-nptl-Do-not-build-nptl-tst-pthread-gdb-attach-as-PIE.patch) | |
+ 0003-nptl-Do-not-build-nptl-tst-pthread-gdb-attach-as-PIE.patch |
NewerOlder