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
| // Script-as-app template. | |
| function doGet(e) { | |
| var ret, num; | |
| if (e != null) { | |
| num = e.parameter.num; | |
| } else { | |
| num = "5"; | |
| } | |
| if (!hikariLogin()) { |
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
| # @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://raw.github.com/gist/3817081/first-chocolatey.ps1'))" | |
| # install Chocolatey | |
| iex ((new-object net.webclient).DownloadString('http://bit.ly/psChocInstall')) | |
| # basic | |
| cinst vlc | |
| cinst 7zip | |
| cinst pdfcreator | |
| cinst keepass | |
| cinst git | |
| cinst ccleaner |
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
| ;; Save this file as siteinit.l in site-lisp folder. | |
| ;; Re-dump it with Ctrl+Shift+Click xyzzy. | |
| ; キーバインドの変更 | |
| (global-set-key '(#\C-x #\u) 'undo) | |
| ;; [ツール]-[共通設定]-[さまざま]のクリップボード同期 | |
| ;(global-set-key '(#\M-w) 'copy-region-to-clipboard) | |
| ;(global-set-key '(#\C-w) 'kill-region-to-clipboard) | |
| ;(global-set-key '(#\C-y) 'paste-from-clipboard) | |
| (global-set-key '(#\C-x #\j) 'goto-line) |
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
| javascript:(function(){var l=window.location.href;void(window.open('https://chart.googleapis.com/chart?chs=300x300&cht=qr&chl='+l,'_blank'));})() |
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
| # NetbootCD | |
| # http://netbootcd.tuxfamily.org/ | |
| ISOFILE=NetbootCD-4.6.iso | |
| BASEURL=http://downloads.tuxfamily.org/netbootcd/4.6/NetbootCD-4.6.iso | |
| SUM=31491178bfa9c97e93152bde39759941 | |
| VER=4.6 | |
| #install | |
| prepareiso $ISOFILE $BASEURL |
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
| Dim strFileName, strExt | |
| Dim objApp | |
| 'Check arguments | |
| If WScript.Arguments.Count <> 1 Then WScript.Quit | |
| 'get file name | |
| strFileName = WScript.Arguments(0) | |
| strExt = LCase(Right(strFileName, 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
| CmdUtils.CreateCommand({ | |
| names: ["search with sparks", "sparks"], | |
| description: "Search news from Google Sparks.", | |
| help: "Select text and execute this command.", | |
| author: { | |
| name: "NOMURA Yoshihide", | |
| email: "nomura@pobox.com", | |
| homepage: "http://yoshimov.com/", | |
| }, | |
| license: "GPL", |
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
| CmdUtils.makeBookmarkletCommand({ | |
| names: ["add google plus button", "plus google plus"], | |
| description: "Add Google+ button on any web page.", | |
| help: "Just execute command on the web page.", | |
| author: { | |
| name: "NOMURA Yoshihide", | |
| email: "nomura@pobox.com", | |
| homepage: "http://yoshimov.com/", | |
| }, | |
| license: "GPL", |
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
| CmdUtils.CreateCommand({ | |
| names: ["convert as wiki"], | |
| description: "Convert current url into wiki enabled link.", | |
| help: "Open the target url and execute covert as wiki command.", | |
| author: { | |
| name: "Yoshimov", | |
| email: "yoshimov@pobox.com", | |
| homepage: "http://yoshimov.com/", | |
| }, | |
| license: "GPL", |