オタク向けのyaml_cvのstyle.txt.
実はみなさんが必要なのは連絡先・顔写真・学歴/職歴,免許/資格の欄だけだったりする.
#!/bin/bash | |
# data storage | |
DISCORD_WEBHOOK="https://discord.com/api/webhooks/*****" | |
# Web browser is best useful tool | |
TOKEN="" | |
INPUT="{{{{masterpiece}}}},UnrealEngine" | |
UC="worst quality, low quality, normal quality" |
{ | |
"schemaVersion": 1, | |
"label": "hello", | |
"message": "sweet world", | |
"color": "orange" | |
} |
オタク向けのyaml_cvのstyle.txt.
実はみなさんが必要なのは連絡先・顔写真・学歴/職歴,免許/資格の欄だけだったりする.
addi x1, x2, 1 | |
addi x2, x3, 2 | |
addi x3, x4, 3 | |
addi x4, x5, 4 | |
addi x5, x6, 5 | |
addi x6, x7, 6 | |
addi x7, x8, 7 | |
addi x8, x9, 8 | |
addi x9, x10, 9 | |
addi x10, x11, 10 |
#!/bin/bash | |
PROTON_VERSION="- Experimental" | |
STEAM_COMPAT_CLIENT_INSTALL_PATH="${HOME}/.local/share/Steam" | |
STEAMAPPS_BASE="${STEAM_COMPAT_CLIENT_INSTALL_PATH}/steamapps" | |
STEAMAPPS_COMMON="${STEAMAPPS_BASE}/common" | |
PROTON_BIN="${STEAMAPPS_COMMON}/Proton ${PROTON_VERSION}/proton" |
const puppeteer = require('puppeteer'); | |
puppeteer.launch({ | |
headless: false, | |
executablePath: "/usr/bin/chromium", | |
ignoreDefaultArgs: "--mute-audio" | |
}).then(async browser => { | |
const page = await browser.newPage() | |
await page.goto('https://marupop.yopc.dev/') |
I hereby claim:
To claim this, I am signing this object:
import os | |
os.system(""" | |
bash << EOS | |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | |
source $HOME/.cargo/env;cargo new fizzbuzz;cd fizzbuzz | |
echo Zm4gbWFpbigpe2ZvciBpIGluIDEuLjEwMXttYXRjaChpJTMsaSU1KXsoMCwgMCkgPT4gcHJpbnRsbiEoIkZpenpCdXp6IiksKDAsIF8pID0+IHByaW50bG4hKCJGaXp6IiksKF8sIDApPT5wcmludGxuISgiQnV6eiIpLF89PnByaW50bG4hKCJ7fSIsIGkpLH19fQo= | base64 -d > src/main.rs | |
cargo run | |
EOS | |
""") |
const config = require("./config.js"); | |
const puppeteer = require("puppeteer"); | |
(async () => { | |
const browser = await puppeteer.launch(); | |
const page = await browser.newPage(); | |
const navigationPromise = page.waitForNavigation(); | |
await page.goto( | |
"https://ib.sevenbank.co.jp/IB/IB_U_CO_002/IB_U_CO_002_100.aspx?Lang=ja-JP" |
#!/bin/bash | |
#/usr/bin/speedtest --server 15047 --csv >> /home/sksat/speed/`date -u "+%Y-%m-%d"`.csv | |
line=`/usr/bin/speedtest --server 15047 --csv` | |
csv=() | |
for ((i=1; i < 11; i++)); do | |
a=`echo ${line} | cut -d ',' -f ${i}` | |
#echo $a |