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
| 184d183 | |
| < 'err_extract' => 'Unable to extract files from uploaded archive', | |
| 187,188c186 | |
| < 'btn_submit' => '実行', | |
| < 'msg_extract' => 'Extract & Attach files' | |
| --- | |
| > 'btn_submit' => '実行' |
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
| 182d181 | |
| < 'err_extract' => 'Unable to extract files from uploaded archive', | |
| 185,186c184 | |
| < 'btn_submit' => 'Submit', | |
| < 'msg_extract' => 'Extract & Attach files' | |
| --- | |
| > 'btn_submit' => 'Submit' |
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
| 42,43d41 | |
| < define('PLUGIN_OPEN_AVOID_DIRECT', FALSE); // TRUE or FALSE | |
| < | |
| 160c158 | |
| < global $vars, $_attach_messages, $notify, $notify_subject; | |
| --- | |
| > global $_attach_messages, $notify, $notify_subject; | |
| 190,221d187 | |
| < if ($vars['extract_mode'] == 'on') { | |
| < switch (strtolower(substr($file['name'], -4))) { |
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
| (define-key global-map "\C-a" 'start-kbd-macro) | |
| (define-key global-map "\C-q" 'end-kbd-macro) | |
| (define-key global-map "\C-z" 'call-last-kbd-macro) | |
| (define-key global-map "\C-o" 'beginning-of-buffer) | |
| (define-key global-map "\C-l" 'end-of-buffer) | |
| (put 'upcase-region 'disabled nil) | |
| (cond | |
| ( (or (eq window-system 'ns) (eq window-system 'mac) ) | |
| ; for cocoa emacs |
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
| brew update | |
| brew upgrade | |
| brew install brew-cask | |
| brew install zsh | |
| brew install git | |
| brew install hub | |
| brew install gist | |
| brew install curl | |
| brew install wget |
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
| <nu.mine.tmyymmt.android.widget.RetractiveHorizontalScrollView> | |
| <LinearLayout> | |
| <TextView /> | |
| <TextView android:id="@+id/child_content" /> | |
| <TextView /> | |
| </LinearLayout> | |
| </nu.mine.tmyymmt.android.widget.RetractiveHorizontalScrollView> |
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
| if (foo != null) { | |
| Bar bar = foo.getBar(); | |
| if (bar != null) { | |
| Baz baz = bar.getBaz(); | |
| if (baz != null) | |
| return baz.compute(); | |
| else | |
| return null; | |
| } | |
| else |
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
| for { | |
| foo <- maybeFoo | |
| bar <- foo.bar | |
| baz <- bar.baz | |
| } yield baz.compute |
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
| ; Grep description of specs2 unit specification in selected buffer on xyzzy | |
| ; Please copy & paste following code at your .xyzzy | |
| ; Usage: M-x grep-specs2-unit-selected-buffer | |
| (defun grep-specs2-unit-selected-buffer () | |
| (interactive) | |
| (grep " should \\| in " (selected-buffer))) |
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
| ; css-mode | |
| (defun coding-style-css () | |
| (setq css-indent-offset 2)) | |
| (add-hook 'css-mode-hook 'coding-style-css) | |
| ; | |
| (setq truncate-lines t) | |
| (setq truncate-partial-width-windows t) |
OlderNewer