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
| .mejs-inner span { | |
| font-family: Helvetica,Arial; | |
| } |
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
| require './pronama' | |
| describe Pronama do | |
| # before {@pronama = Pronama.new} | |
| # it "プロ生ちゃんマジ天使!" do | |
| # expect(@pronama.プロ生ちゃん).to eq "プロ生ちゃんマジ天使!" | |
| # end | |
| # let(:pronama){Pronama.new} | |
| # it "プロ生ちゃんマジ天使!" do | |
| # expect(pronama.プロ生ちゃん).to eq "プロ生ちゃんマジ天使!" | |
| # end |
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" encoding="utf-8" ?> | |
| <configuration> | |
| <system.webServer> | |
| <staticContent> | |
| <remove fileExtension=".svg" /> | |
| <mimeMap fileExtension=".svg" mimeType="image/svg+xml" /> | |
| <clientCache cacheControlMode="UseMaxAge" | |
| cacheControlMaxAge="7.00:00:00" /> | |
| </staticContent> | |
| </system.webServer> |
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" encoding="utf-8" ?> | |
| <configuration> | |
| <system.webServer> | |
| <!-- 省略 --> | |
| </system.webServer> | |
| <location path="favicon.ico"> | |
| <system.webServer> | |
| <staticContent> | |
| <clientCache cacheControlMode="UseMaxAge" | |
| cacheControlMaxAge="90.00:00:00" /> |
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 | |
| /** | |
| * Template Name: Udon | |
| */ | |
| ?> |
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
| <meta name="robots" content="noindex" /> |
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 (parseFloat($().jquery) >= 1.7) { | |
| return $(this).on("click", onClick); | |
| } else { | |
| // **reach to this line when using jQuery 1.1x** | |
| return $(this).live("click", onClick); //deprecated since 1.7 | |
| } |
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
| class Canvas { | |
| element: HTMLCanvasElement; | |
| private context: CanvasRenderingContext2D; | |
| constructor(element: HTMLCanvasElement) { | |
| this.element = element; | |
| this.context = element.getContext("2d"); | |
| } | |
| drawImage(src: string) { |
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
| <meta name="twitter:card" content="player"> | |
| <meta name="twitter:site" content="pronama"> | |
| <meta name="twitter:title" content="暮井 慧 ボイス"> | |
| <meta name="twitter:image:src" content="https://pronama.azurewebsites.net/voice/img/img0.png"> | |
| <meta name="twitter:player" content="https://pronama.azurewebsites.net/voice/player.php/?no=A015&fc=0"> | |
| <meta name="twitter:player:height" content="350"> | |
| <meta name="twitter:player:width" content="350"> |
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 | |
| /* | |
| Plugin Name: Post from photo | |
| */ | |
| if (!isset($_SESSION)) { | |
| session_start(); | |
| } | |
| require_once(ABSPATH . 'wp-load.php'); | |
| require_once(dirname( __FILE__ ) . '/class-wp_post_helper.php'); // https://github.com/wokamoto/wp_post_helper |