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 | |
| # aqua-rdp-relay — Aqua Voice の文字起こしを RDP (Windows App) セッションへ中継する | |
| # | |
| # 要件: Mac の音声入力を、リモート側にソフトを足さず・ローカルにも常駐を増やさず、 | |
| # RDP 先 (Windows / Linux 問わず) へそのまま入力できるようにする。Aqua Voice で検証 | |
| # したが、「クリップボード + 合成⌘V」方式の音声入力ツール (Whisper 系等) なら同様に有効。 | |
| # | |
| # 背景: Windows App がフォーカスのとき、Aqua は「クリップボードに文字起こしを載せて | |
| # 合成 ⌘V → 約0.8秒後にクリップボードを復元」する。しかし合成 ⌘V は Windows App で | |
| # 修飾キーが落ちて "v" 1文字になり、クリップボードも即復元されるため貼り付けが失敗する。 |
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` | |
| } |
NewerOlder