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
| Sub create_sheet_index() | |
| Dim idx As Range | |
| Dim i As Integer | |
| ' #index という名前のシートに出力 | |
| Set idx = Worksheets("#index").Cells(3, 2) | |
| i = 1 | |
| For Each sht In ActiveWorkbook.Worksheets | |
| ' シート名の頭が#は取り込まない |
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 git | |
| # | |
| # http://henrik.nyh.se/2008/12/git-dirty-prompt | |
| # http://www.simplisticcomplexity.com/2008/03/13/show-your-git-branch-name-in-your-prompt/ | |
| function parse_git_dirty { | |
| [[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "*" | |
| } | |
| function parse_git_branch { | |
| git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/[\1$(parse_git_dirty)]/" |
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
| Apacheはたぶん標準構成でいれた気がする。 | |
| PHP5.2をダウンロード | |
| インストーラにしたがってインストール完了。 | |
| Apache再起動 | |
| Apacheが起動しない! |
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
| <package> | |
| <job id="EnumFolders"> | |
| <object id="fso" progid="Scripting.FileSystemObject"/> | |
| <script language="JScript"><![CDATA[ | |
| // 除外するパターン | |
| var excludes = createFilter([".svn", "Branches"]); | |
| // 抽出するパターンを配列から生成する | |
| var includes = createFilter([ | |
| "Hoge", |
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
| <?xml version="1.0" ?> | |
| <!-- 特定のフォルダを除外してフォルダを列挙する --> | |
| <package> | |
| <job id="EnumFolders"> | |
| <object id="fso" progid="Scripting.FileSystemObject"/> | |
| <script language="JScript"><![CDATA[ | |
| // 除外するパターン | |
| var excludes = new ActiveXObject("VBScript.RegExp"); | |
| excludes.Pattern = "^.svn$|^Branches"; |
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
| application: session | |
| version: 1 | |
| runtime: python27 | |
| api_version: 1 | |
| threadsafe: yes | |
| handlers: | |
| - url: /favicon\.ico | |
| static_files: favicon.ico | |
| upload: favicon\.ico |
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
| application: webapp2 | |
| version: 1 | |
| runtime: python27 | |
| api_version: 1 | |
| threadsafe: yes | |
| handlers: | |
| - url: .* | |
| script: main.app |
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
| Hello, {{ hoge() }} san. |
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
| ' | |
| ' Test runner module | |
| ' | |
| Public Sub run() | |
| Dim tests As ISuite | |
| Dim test As ITest | |
| Dim results As TestResult | |
| Set tests = New vbUnitTestSuite | |
| Set test = tests.suite |
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
| <html> | |
| <body> | |
| {% hello %} | |
| </body> | |
| </html> |