Googleマップでルートを検索し、ルート詳細を表示してから実行してください。
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 -g theme_date_format '+%-m/%-d %a %-H:%M:%S' | |
set -g theme_color_scheme solarized-dark |
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
IntelliJ IDEA テンプレート集 |
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
<configuration> | |
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | |
<encoder> | |
<pattern>%highlight(%-5level) %logger{15} - %message%n%xException{10}</pattern> | |
</encoder> | |
</appender> | |
<appender name="ASYNCSTDOUT" class="ch.qos.logback.classic.AsyncAppender"> | |
<appender-ref ref="STDOUT" /> |
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
#!/usr/local/bin/fontforge | |
# | |
# Noto Sans JP: https://fonts.google.com/earlyaccess#Noto+Sans+JP | |
# | |
# Usage: | |
# chmod +x SetFontNames-NotoSansJP.pe | |
# ./SetFontNames-NotoSansJP.pe *.otf | |
i=1 | |
while ( i<$argc ) |
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
## .zshrc | |
# | |
# zsh settings are managed by zplug | |
# https://github.com/zplug/zplug/blob/master/doc/guide/ja/README.md | |
export PATH="/bin:/usr/bin:/usr/local/bin:$PATH" | |
source ~/.zplug/init.zsh | |
# Plugins |
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
@echo off | |
cd /d %~dp0 | |
git pull origin | |
If Errorlevel 1 SET /P CONFIRM="" |
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
/* | |
* ライプニッツの公式を用いたπ計算 | |
* https://ja.wikipedia.org/wiki/ライプニッツの公式 | |
* m: 何項まで計算するかを指定する(大きいほど計算量が多くなる) | |
*/ | |
def pi(m: Long) = { | |
def leibniz(n: Long) = 4.0 * (1 - (n % 2) * 2) / (2 * n + 1) | |
@tailrec | |
def inner(n:Long = 0, acc: Double = 0.0): Double = |
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/sh | |
# | |
# クリップボードのコードを指定の言語向けにハイライトします | |
# (Mac用) | |
pbpaste | highlight --out-format=rtf --syntax="$1" | pbcopy |
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/sh | |
find "`pwd`" -name '*.svg' -exec inkscape --file="{}" --export-pdf="{}.pdf" \; |