Skip to content

Instantly share code, notes, and snippets.

@re3turn
re3turn / commit_template.md
Last active January 9, 2020 14:00
commit template

Emojis

Emojis Usage
🎉 初めてのコミット(Initial Commit)
新機能(New Feature)
🐛 バグ修正(Bugfix)
‼️ バグとは言い切れないけど何か悪いものを正しく修正した時
✏️ タイポなどの修正(Fix typo)
♻️ リファクタリング(Refactoring)
📝 ドキュメント(Documentation)
@re3turn
re3turn / pngjudge.bat
Last active November 6, 2018 17:19
PNGの種類を判別するバッチ
@echo off
setlocal
set "MAGICK=C:\Program Files\ImageMagick-7.0.8-Q16\magick.exe"
set "PNG_FILE=%1"
if "PNG_FILE" == "" (
call :usage
exit /b 1
)
@re3turn
re3turn / docker_gitlab_japanese_localized.sh
Last active March 4, 2017 14:31
docker-gitlab日本語化
#! /bin/bash
set -e
SCRIPT_DIR=$(cd $(dirname $0) && pwd)
VER=v8.16.6
PATCH_VER=${1:=${VER}}
if [ ! -e /usr/bin/patch ]; then
@re3turn
re3turn / 0_reuse_code.js
Created December 18, 2016 09:09
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console