File: app.asar.contents/.vite/renderer/main_window/assets/MainWindowPage-Ber3pIf8.js
if(!T&&e)return null;
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Macropad EEPROM キーコード変換ツール</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
max-width: 1200px; |
----------------------------------------------------------------------------------------------------------------------------------------- | |
| 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 | |
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 \ |
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))), |
$ go build -o firmware-extractor
$ ./firmware-extractor -h
Usage of firmware-extractor:
-f string
WXR-2533DHPのファームウェアファイルを指定してください
$ ./firmware-extractor -f ./wxr_2533dhp2_jp_146
Input:
- 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:
To claim this, I am signing this object:
FROM debian:buster-slim | |
RUN apt update \ | |
&& apt install -y \ | |
autoconf \ | |
wget \ | |
nasm \ | |
build-essential \ | |
pkg-config \ | |
libde265-0 \ |
#!/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" |