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
| @helper TestHelper() { | |
| {<text>@DateTime.Now.Ticks</text>} | |
| } |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Web; | |
| namespace PHPE9568F34_D428_11d2_A769_00AA001ACF42 | |
| { | |
| /// <summary> | |
| /// PHPE9568F34-D428-11d2-A769-00AA001ACF42 | |
| /// http://phpsadness.com/sad/11 | |
| /// </summary> |
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 (true) { | |
| <p>コンパイルOK</p> | |
| } | |
| @* コンパイルエラー *@ | |
| @if (true) { | |
| @if (true) { | |
| <p>コンパイルエラー</p> | |
| } |
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 Hauhau() { | |
| return | |
| "Hauhau" + | |
| "Gaogao" | |
| ; | |
| } | |
| alert(Hauhau()); // => "HauhauGaogao" ではない。 |
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
| data:image/png;base64,iVBORw0KGgoAAAANSUhEUgABhp8AAAABAQMAAAD+SF0jAAAAB3RJTUUH2goHCxcF0aoqCQAAABd0RVh0U29mdHdhcmUAR0xEUE5HIHZlciAzLjRxhaThAAAACHRwTkdHTEQzAAAAAEqAKR8AAAAGUExURQAAAP///6XZn90AAAAkSURBVHja7cExAQAADAKg9Q/tbOEF3AMAAAAAAAAAAAAAAOyly6Wl/CU5lOkAAAAASUVORK5CYII= |
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
| <!DOCTYPE html> | |
| <meta charset="UTF-8"> | |
| <title>JavaScript 文字列エスケープ</title> | |
| <style> | |
| textarea { width: 100%; } | |
| .buttonArea { text-align:center } | |
| </style> | |
| <h1>JavaScript 文字列エスケープ</h1> | |
| <div> |
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
| /* | |
| * 90年代のWebをjQueryに。 | |
| * | |
| * License: Public Domain | |
| * | |
| * Example: | |
| * $('span').fontcolor('red') | |
| * .fontsize(10) | |
| * .blink() | |
| * .big() |
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
| using System; | |
| using System.Linq; | |
| using System.Threading.Tasks; | |
| namespace ConsoleApplication1 | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { |
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
| <!DOCTYPE html> | |
| <html xml:lang="ja" xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta http-equiv="X-UA-Compatible" content="IE=EDGE" /> | |
| <title>jquery-template-test1</title> | |
| <script type="text/javascript" src="http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.2.min.js"></script> | |
| <script type="text/javascript" src="http://github.com/nje/jquery-tmpl/raw/master/jquery.tmpl.js"></script> | |
| <script type="text/javascript"> | |
| function render() { |
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
| /* | |
| * CredentialUI.cs - Windows Credential UI Helper | |
| * | |
| * License: Public Domain | |
| * | |
| */ | |
| using System; | |
| using System.ComponentModel; | |
| using System.Runtime.InteropServices; | |
| using System.Security; |