Japanese: https://zenn.dev/bony_chops/articles/25024f5b13d7a6
- Run
# Bitwarden CLI installition, you can use other options as well npm install -g @bitwarden/cli
Japanese: https://zenn.dev/bony_chops/articles/25024f5b13d7a6
# Bitwarden CLI installition, you can use other options as well
npm install -g @bitwarden/cli
| from mitmproxy import http | |
| import re | |
| def request(flow: http.HTTPFlow) -> None: | |
| url = flow.request.url | |
| url = re.sub(r'Kegworks', 'Sikarugir', url) | |
| url = re.sub(r'kegworks', 'sikarugir', url) |
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:7B03D8A1D6B3D7A5129FB36C457BF5D69ECE0883]
| #include <Adafruit_NeoPixel.h> | |
| #include <Arduino.h> | |
| #define PIN 26 // LEDの信号線をつなぐマイコンのピン番号 | |
| #define STRIP_COUNT 52 //つなぐLEDの数 | |
| Adafruit_NeoPixel strip = Adafruit_NeoPixel(STRIP_COUNT, PIN, NEO_GRB + NEO_KHZ800); //あれこれ初期設定 | |
| void setup() { | |
| strip.begin(); |
| #!/bin/env sh | |
| for i in `seq 0 19` | |
| do | |
| wget -O "pizza_""$i"".jpg" 'https://api.lorem.space/image/pizza?w=150&h=150' | |
| done |
| for f in $(ls *.svg | grep '.*\.svg$'); | |
| do | |
| echo $f | |
| inkscape $f --export-pdf=$f.pdf | |
| done |
| set expandtab | |
| set tabstop=2 | |
| set shiftwidth=2 | |
| set number | |
| syntax on |
| require 'bigdecimal/util' | |
| sum = 0 | |
| 2090.times do |i| | |
| t = (10 ** 1000) / ((2 * i + 1)* (3 ** (i + 1))) | |
| sum += t if i % 2 == 0 | |
| sum -= t if i % 2 == 1 | |
| end | |
| sum *= 6 | |
| sum *= Integer.sqrt(3 * (10 ** 1000) ** 2) |