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
rem 毎回開くシナリオ、エビデンスのファイルを設定 | |
set filename1=テストシナリオ.xlsx | |
set filename2=エビデンス.xlsx | |
rem 毎回開くフォルダを設定 | |
set scenario_folder=W:\scenario_folder\ | |
set evidence_folder=Z:\evidence_folder\ | |
rem ファイルパスを設定 | |
set scenario_path=%scenario_folder%%filename1% |
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
f | |
s | |
dash | |
evil | |
evil-leader | |
evil-matchit | |
evil-numbers | |
evil-visualstar | |
elisp-slime-nav | |
ace-jump-mode |
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
# Cask | |
2048-game | |
ac-php | |
ac-php-core | |
ace-jump-buffer | |
ace-window | |
ag | |
aggressive-indent | |
alchemist | |
alect-themes |
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
ac-clang | |
anything-c-moccur | |
csv-mode | |
gtags | |
html-helper-mode | |
menu-tree | |
moccur-edit | |
msbuild-parser | |
msvc | |
navi |
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
ace-jump-mode | |
anaphora | |
dash | |
debbugs | |
diminish | |
dired-details | |
el-get | |
elisp-slime-nav | |
i3-emacs | |
ido-ubiquitous |
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
function Get-ScreenShot | |
{ | |
[CmdletBinding()] | |
param( | |
[parameter(Position = 0, Mandatory = 0, ValueFromPipelinebyPropertyName = 1)] | |
[ValidateNotNullOrEmpty()] | |
[string]$OutPath = "$env:USERPROFILE\Documents\ScreenShot", | |
#screenshot_[yyyyMMdd_HHmmss_ffff].png | |
[parameter(Position = 1, Mandatory = 0, ValueFromPipelinebyPropertyName = 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
anzu | |
auctex | |
auto-compile | |
avy | |
benchmark-init | |
buffer-move | |
calc | |
cc-mode | |
clean-aindent-mode | |
cmake-ide |
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
(require 'f) | |
(defun current-line-number () | |
"Print the current line number (in the buffer) of point." | |
(interactive) | |
(save-restriction | |
(widen) | |
(save-excursion | |
(beginning-of-line) | |
(1+ (count-lines 1 (point)))))) |
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
(defmacro after1 (mode &rest body) | |
"`eval-after-load' MODE evaluate BODY." | |
`(eval-after-load ,mode | |
'(progn ,@body))) | |
(defmacro after2 (mode &rest body) | |
"`eval-after-load' MODE evaluate BODY." | |
(declare (indent defun)) | |
`(eval-after-load ,mode | |
'(progn ,@body))) |
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
(require 'nadvice) | |
(defun pps-after (x) | |
(interactive) | |
(let ((lst `(:depth ,(nth 0 x) | |
:char-add-start-innermost ,(nth 1 x) | |
:char-add-start-last ,(nth 2 x) | |
:instring ,(nth 3 x) | |
:inside-comment ,(nth 4 x) | |
:quote-char ,(nth 5 x) | |
:min-paren-depth ,(nth 6 x) |