- ジンギスカン鍋で焼き肉をする
- John Wick 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
[ 0.000000] Linux version 3.18.29 (buildbot@catfish) (gcc version 4.6.4 (Realtek RSDK-4.6.4 Build 2002) ) #2 Wed Jun 12 10:35:41 EEST 2019 | |
[ 0.000000] bootconsole [early0] enabled | |
[ 0.000000] CPU revision is: 0000dc02 | |
[ 0.000000] Determined physical RAM map: | |
[ 0.000000] memory: 03400000 @ 00000000 (usable) | |
[ 0.000000] memory: 00bc0000 @ 03440000 (usable) | |
[ 0.000000] Zone ranges: | |
[ 0.000000] Normal [mem 0x00000000-0x03ffffff] | |
[ 0.000000] Movable zone start for each node | |
[ 0.000000] Early memory node ranges |
メーカー | 型番 (チップ) | 個数 | チップメーカー | バス | 規格 | バンド | ストリーム数 | 備考 |
---|---|---|---|---|---|---|---|---|
intel | AX200 (AX200) | 1 | intel | PCIe x1 | 802.11ax/ac | 2.4/5 | 2x2 | |
intel | Wireless-AC 8265 (8265NGW) | 1 | intel | m.2 | 802.11ac | 2.4/5 | 2x2 | |
intel | Wireless-AC 9260 | 1 | intel | m.2 | 802.11ac | 2.4/5 | 2x2 | |
intel | Wireless-AC 7260 | 1 | intel | mpcie | 802.11ac | 2.4/5 | 2x2 | |
intel | Wireless-N 7260 | 1 | intel | mpcie | 802.11agn | 2.4/5 | 2x2 | |
intel | WIFi Link 5300 533AN_HMW | 1 | intel | mpcie | 802.11agn | 2.4/5 | 3x3 |
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
# | |
# 外側の真正のネットワーク vrf-out vrf-in ホストBが持ってる余計なルート | |
# (AAA.AAA.0.0.0/16) -- GE0(AAA.AAA.0.XX) __ NEC-IX __ GE1(BBB.BBB.0.1) --UTPケーブルで直結-- GE2:1(BBB.BBB.0.2) __ NEC-IX __ GE2:2(10.20.10.1) -- eth0(10.20.10.100) HostB eth1 (AAA.AAA.0.0/16) | |
# | |
ip route vrf vrf-in AAAA.AAAA.0.0/16 BBB.BBB.0.1 | |
ip route vrf vrf-out default ${AAA.AAA.0.0/16のデフォゲ} | |
ip route vrf vrf-out 10.20.10.0/24 BBB.BBB.0.2 | |
ip dhcp enable | |
! | |
! |
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 | |
import openai | |
import pit | |
import sys | |
openai.api_key = pit.Pit.get("openai")['api_key'] | |
roles = ["assistant", "user"] |
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 ruby | |
require "optparse" | |
OPTS={ | |
:bpm => 60.0, | |
:output => "output.gif", | |
} | |
opt = OptionParser.new | |
opt.on("-b BPM", "--bpm=BPM") {|v| |
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
U6-Lite-BZ.6.0.14# dmesg | |
[ 0.081647] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) | |
[ 4.268203] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. | |
[ 4.268213] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes | |
[ 4.268224] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. | |
[ 4.268372] CPU1 revision is: 0001992f (MIPS 1004Kc) | |
[ 0.177597] Synchronize counters for CPU 1: done. | |
[ 4.034649] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. | |
[ 4.034656] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes | |
[ 4.034663] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. |
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/sh | |
set -ex | |
echo "in chromium directory" | |
mkdir chromium && cd chromium | |
echo "fetch chromium" | |
fetch --nohooks chromium | |
echo "in src directory" | |
cd src | |
echo "build deps" | |
./build/install-build-deps.sh |
NewerOlder