This file contains hidden or 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/zsh | |
set -e | |
export PATH="/usr/local/bin:/opt/homebrew/bin:$PATH" | |
############################################################################### | |
# 必要な Brew インストールライブラリ: | |
# - poppler: brew install poppler | |
# - tesseract: brew install tesseract | |
# - csvkit: brew install csvkit |
This file contains hidden or 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
// ==UserScript== | |
// @name freee人事労務 - 給与・賞与の振込 振込件数を表示 | |
// @namespace https:// miraius.co.jp | |
// @version 2024-02-25 | |
// @description 振込依頼ファイルの出力で従業員名の横に何件目かを表示する(振込方法複数非対応) | |
// @author fujimogn | |
// @match https://p.secure.freee.co.jp/docs/remittance_form | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=freee.co.jp | |
// @grant none | |
// @run-at document-idle |
This file contains hidden or 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
// ==UserScript== | |
// @name freee - ファイルボックス(ファイル詳細) - カスタムショートカット | |
// @namespace https:// miraius.co.jp | |
// @version 1.2.0 | |
// @description freeeのファイルボックス(ファイル詳細)でカスタムショートカットを有効にする | |
// @author fujimogn | |
// @match https://secure.freee.co.jp/receipts/* | |
// @icon https://www.google.com/s2/favicons?domain=freee.co.jp | |
// @require http://cdn.craig.is/js/mousetrap/mousetrap.min.js?9d308 | |
// @grant none |
This file contains hidden or 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
ja: | |
graphql_devise: | |
redirect_url_not_allowed: "'%{redirect_url}'へのリダイレクトは許可されていません。" | |
registration_failed: 'ユーザーを登録できませんでした。' | |
resource_build_failed: 'リソースを構築できず、実行が停止しました。' | |
not_authenticated: 'ユーザーがログインしていません。' | |
user_not_found: 'ユーザーが見つからないか、ログインしていません。' | |
invalid_resource: 'リソースにエラーがあります。' | |
registrations: | |
missing_confirm_redirect_url: "'confirm_success_url'がありません。モジュールが有効になっている場合に必要です。" |
This file contains hidden or 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
group :development do | |
## (略) | |
gem 'launchy' # 追加 | |
## (略) | |
end |
This file contains hidden or 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
ja: | |
admin: | |
actions: | |
import: | |
breadcrumb: インポート | |
bulk_link: インポート | |
done: インポートしました | |
link: インポート | |
menu: インポート | |
title: インポート |
This file contains hidden or 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
# frozen_string_literal: true | |
module UserDecorator | |
include PersonDecorator | |
SCHOOL_AGE = [ | |
[ 0, nil, nil, '未就学' ], | |
[ 1, nil, nil, '未就学' ], | |
[ 2, nil, nil, '未就学' ], | |
[ 3, nil, '年少', '未就学' ], |
This file contains hidden or 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/bash | |
#---------------------------------------# | |
# 設定開始 # | |
#---------------------------------------# | |
# インタフェース名定義 | |
LAN=eth0 | |
#---------------------------------------# |
This file contains hidden or 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
# A sample Guardfile | |
# More info at https://github.com/guard/guard#readme | |
# wordless | |
guard :shell do | |
# sass & less | |
watch(%r{^wp-content/themes/(\w+)/theme/assets/(.+)\.(s[ac]ss|less|css)$}){|m| | |
`rm -rf wp-content/themes/#{m[1]}/tmp/* && wordless clean && wordless compile` | |
} |
This file contains hidden or 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 | |
### check ostype | |
if [ ! `uname -s` == "Darwin" ]; then | |
echo "ERROR: only works with Mac OS X" >&2 | |
exit 1 | |
fi | |
### check app | |
app="/Applications/Skype.app/Contents/MacOS/Skype" |
NewerOlder