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]
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 <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(); |
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/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 |
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
for f in $(ls *.svg | grep '.*\.svg$'); | |
do | |
echo $f | |
inkscape $f --export-pdf=$f.pdf | |
done |
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
set expandtab | |
set tabstop=2 | |
set shiftwidth=2 | |
set number | |
syntax on |
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
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) |
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
rm $(find * -name node_modules -maxdepth 1 -type d) -r |
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
See bonychops.com |
NewerOlder