I hereby claim:
- I am bean1310 on github.
- I am bean_comp (https://keybase.io/bean_comp) on keybase.
- I have a public key ASDV00F0wrPUo-zporC7gRTqjA06yfp6ZGockZxQPtYNqAo
To claim this, I am signing this object:
| # | |
| # Automatically generated file; DO NOT EDIT. | |
| # Linux/x86 5.4.207 Kernel Configuration | |
| # | |
| # | |
| # Compiler: gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 | |
| # | |
| CONFIG_CC_IS_GCC=y | |
| CONFIG_GCC_VERSION=90400 |
| #!/usr/bin/env python3 | |
| import sys | |
| class FatArch: | |
| def __init__(self, binary): | |
| self.cpuType = binary[0:4] | |
| self.cpuSubType = binary[4:8] | |
| self.offset = binary[8:12] | |
| self.size = binary[12:16] |
| #!/bin/bash | |
| profiles[0]='K380' | |
| profiles[1]='JIS' | |
| profile_len=${#profiles[@]} | |
| currentProfile=$('/Library/Application Support/org.pqrs/Karabiner-Elements/bin/karabiner_cli' --show-current-profile-name) | |
| for ((i = 0; i < $profile_len; i++)); do | |
| if [ $currentProfile == ${profiles[$i]} ]; then | |
| if [ $i -eq $(($profile_len - 1)) ] ; then |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| DEFAULT_SERVERS_DIR='/home/minecraft/MinecraftServers' # デフォルトのマイクラ鯖ディレクトリであることをミサカはコメントします. | |
| JAVA_ARGS='-d64 -Xmx5G -Xms5G' # 本番起動時のjavaの引数である ということをミサカはコメントします. | |
| MINECRAFT_SERVER_JAR='server.jar' # デフォルトのマイクラサーバのjarファイルであることをミサカはコメントします. | |
| DISCORD_WEBHOOK_URL='' # DiscordのWebhookURLを指定してください. とミサカはコメントします. | |
| new() { | |
| echo "サーバのためのディレクトリを作る準備をミサカはします." |
| /* タブ消し */ | |
| #tabbrowser-tabs { | |
| visibility: collapse !important; | |
| } | |
| /* タブの背景の非表示 */ | |
| #TabsToolbar { | |
| visibility: collapse !important; | |
| } |
| /* モーメントタブを非表示に */ | |
| div .js-moments-tab { | |
| display: none; | |
| } | |
| /* 右上のTweetボタンいらないでしょ */ | |
| div .topbar-tweet-btn { | |
| display: none; | |
| } |
| "#####表示設定##### | |
| set number "行番号を表示する | |
| set title "編集中のファイル名を表示 | |
| set showmatch "括弧入力時の対応する括弧を表示 | |
| syntax on "コードの色分け | |
| set smartindent "オートインデント | |
| set expandtab "タブを空白文字に | |
| set tabstop=4 "画面上でタブ文字が占める幅 | |
| set shiftwidth=4 "自動インデントでずれる幅 | |
| set autoindent "改行時に前の行のインデントを継続 |
| #!/bin/bash | |
| # variable settings | |
| BASEDIR=/home/minecraft/ | |
| ORIGDIR=${BASEDIR}mountPoint/ | |
| BACKUPDIR=${BASEDIR}backups/mountPoint_`date +"%m-%d_%H%M%S"`/ | |
| # Sync original directory to backup directory | |
| rsync -rl0tcv ${ORIGDIR} ${BACKUPDIR} > ${BASEDIR}rsync.log | |
| if [ $? = 0 ]; then |
| #!/bin/bash | |
| # Minecraft ramdisk restore | |
| BASEDIR=/home/minecraft/ | |
| ORIGDIR=${BASEDIR}mountPoint | |
| BACKUPDIR=${BASEDIR}backups/latest/ | |
| mount ${ORIGDIR} | |
| if [ $? = 0 ]; then |