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
| Option Explicit | |
| Const PROG_ID = "SAPI.SpVoice" | |
| Dim StrMessage | |
| StrMessage = InputBox("しゃべらす文字", PROG_ID) | |
| If Len(StrMessage) = 0 Then | |
| WScript.Quit | |
| End If |
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
| <?php | |
| $class = new \stdClass; | |
| $class->key1 = 'value1'; | |
| $class->key2 = 'value2'; | |
| $class->key3 = 'value3'; | |
| $reflection = new \ReflectionClass($class); | |
| $properties = $reflection->getProperties(); |
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
| Option Explicit | |
| '起動するアプリケーション | |
| Const CstStrLaunchApplication = "notepad.exe" | |
| 'Const CstStrLaunchApplication = "C:\Program Files\Hidemaru\Hidemaru.exe" | |
| If WScript.Arguments.Count = 0 Then | |
| WScript.Quit | |
| End If |
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
| <?php | |
| /** | |
| * 絶対パスの取得 | |
| * | |
| * @param string $base | |
| * @param string $absolute | |
| * @return string | |
| */ | |
| function getHttpPath($base, $absolute) | |
| { |
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
| <?php | |
| session_start(); | |
| final class Download | |
| { | |
| /** | |
| * Data Directory (end with /) | |
| * @varr string | |
| */ | |
| const DATA_DIR = '/path/to/data/dir/'; |
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
| <?php | |
| class Model_Search | |
| { | |
| protected $_word; | |
| protected $_target = null; | |
| protected $_order = null; |
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
| https://twitter.com/?#!/mitaken/status/167148137784422401 | |
| 接続先 | |
| http://gyro.appdriver.jp/1.0.872browser?advertisement=install&refresh=0%3BURL%3Djp-ajmp-3342%3A&user=64バイトの英数字&achieve=00000000-0000-0000-0000-000000000000(0に変更してあります) | |
| コンテンツ | |
| <html><head> | |
| <meta http-equiv="Refresh" content="0;URL=jp-ajmp-3342:"> | |
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
| <?php | |
| /** | |
| * uuidchku modifier | |
| * | |
| * @version 1.0 | |
| * @copyrignt mitaken | |
| * @see http://chakuuta3g2.hp.infoseek.co.jp/uuidchku.html | |
| * | |
| * [USAGE] |
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
| <?php | |
| /** | |
| * W55TのLEDパターンを作るやーつ | |
| * | |
| * @cppyright mitaken | |
| */ | |
| class LED | |
| { |
NewerOlder