$ go build -o firmware-extractor
$ ./firmware-extractor -h
Usage of firmware-extractor:
-f string
WXR-2533DHPのファームウェアファイルを指定してください
$ ./firmware-extractor -f ./wxr_2533dhp2_jp_146
Input:
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
----------------------------------------------------------------------------------------------------------------------------------------- | |
| name | req/s | avg. latency | 90 % in | 95 % in | 99 % in | avg. cpu | avg. memory | | |
----------------------------------------------------------------------------------------------------------------------------------------- | |
| rust_tonic_st | 135382 | 7.35 ms | 7.70 ms | 7.85 ms | 8.20 ms | 102.64% | 10.8 MiB | | |
| rust_tonic_mt | 132125 | 4.78 ms | 4.71 ms | 7.73 ms | 60.97 ms | 292.93% | 26.01 MiB | | |
| go_vtgrpc | 130477 | 5.27 ms | 7.58 ms | 11.60 ms | 56.48 ms | 426.83% | 31.52 MiB | | |
| go_grpc | 130185 | 5.49 ms | 8.97 ms | 14.64 ms | 54.79 ms | 499.59% | 27.77 MiB | | |
| rust_grpcio | 129512 | 5.23 ms | |
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
FROM ubuntu:noble-20240429 | |
COPY ubuntu.sources /etc/apt/sources.list.d/ubuntu.sources | |
RUN \ | |
apt-get update \ | |
&& apt-get install -y \ | |
vim \ | |
apt-src \ | |
ruby \ |
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
CREATE TABLE `test_json_tbl` ( | |
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | |
`columns` json DEFAULT (_utf8mb4'[]'), | |
`name` text COLLATE utf8mb4_general_ci, | |
`selections` json DEFAULT (_utf8mb4'[]'), | |
PRIMARY KEY (`id`), | |
KEY `idx_columns1` ((cast(json_extract(`columns`,_utf8mb4'$[*].value') as char(512) array))), | |
KEY `idx_columns2` ((cast(json_extract(`columns`,_utf8mb4'$[*]._id') as char(64) array))), | |
KEY `idx_selections1` ((cast(json_extract(`selections`,_utf8mb4'$[*].value[*]') as char(512) array))), | |
KEY `idx_selections2` ((cast(json_extract(`selections`,_utf8mb4'$[*]._id') as char(64) array))), |
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
- name: Setup helm-kubeval | |
env: | |
KUBEVAL_VERSION: 0.15.0 | |
run: | | |
curl -L "https://github.com/instrumenta/kubeval/releases/download/$KUBEVAL_VERSION/kubeval-linux-amd64.tar.gz" -o /tmp/kubeval-linux-amd64.tar.gz | |
tar xvf /tmp/kubeval-linux-amd64.tar.gz -C /tmp | |
chmod +x /tmp/kubeval | |
mv /tmp/kubeval /usr/local/bin/ | |
kubeval --version | |
helm plugin install https://github.com/instrumenta/helm-kubeval |
I hereby claim:
- I am PyYoshi on github.
- I am pyyoshi (https://keybase.io/pyyoshi) on keybase.
- I have a public key whose fingerprint is 8C8F 440B 3390 4D89 6E52 A114 146D 52F7 C000 C2F0
To claim this, I am signing this object:
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
FROM debian:buster-slim | |
RUN apt update \ | |
&& apt install -y \ | |
autoconf \ | |
wget \ | |
nasm \ | |
build-essential \ | |
pkg-config \ | |
libde265-0 \ |
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 | |
# | |
# Originally written by http://redartisan.com/tags/csv | |
# Added and minor changes by Gavin Laking | |
# Rewritten by Andrew Bennett for Ruby 1.9 | |
# | |
# Usage: ruby csv_to_fixture.rb file.csv [--json] | |
# | |
# "id","name","mime_type","extensions","icon_url" | |
# "1","unknown","unknown/unknown","||","/images/icon/file_unknown.gif" |
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
find `pwd` -type d -maxdepth 3 -name node_modules | xargs -n1 sudo tmutil addexclusion -p |
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
# ~/.config/mpv/input.conf | |
MOUSE_BTN3 add volume 2 | |
MOUSE_BTN4 add volume -2 | |
AXIS_UP add volume 2 | |
AXIS_DOWN add volume -2 | |
UP add volume 2 | |
DOWN add volume -2 |
NewerOlder