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
うおおお、朝飯買う間もなくいしづち出た | |
トイレを偵察していて、半世紀が過ぎて、半世紀が過ぎて、ホームページにわしらがなのかな | |
踏切の非常ボタンが押されたか……今度レシピ調べてみよう | |
ちょっと…… | |
むりぎぶ。若者っぽい | |
DaruSIM? | |
SUZUKIのカテゴリーにこっそりアニメ由来の名前つけるのが一番落ち着く | |
中核派なんか破防法で潰せばいいんちゃうん(小並感 | |
わしが言われる分には全然気にした科学的回答の一つによれば、このおっさん | |
まっさかぁ |
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
ストーリー:中小SIerの活躍を描くAKAB○U | |
■舞台 | |
人形町クラウドソリューションっていう架空の会社 | |
■登場人物 | |
・超できるエリートプログラマー「すずきなおき」 | |
・クラウド開発界で No.1 と呼ばれている「ブチゾーカメブチ」 | |
・ちょっと都心から離れたところに住んでる凄腕チューター「ムッシュ小田原」 | |
・No.1 のパトロン「紫の熊の人」 |
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
-- クロスドメインなリクエストの時にヘッダを返す Lua | |
req_headers = iis.req.get_headers() | |
if req_headers["Origin"] ~= nil then | |
iis.resp.set_header("Access-Control-Allow-Origin", req_headers["Origin"]) | |
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
var blob = directory.GetBlockBlobReference(filename); | |
blob.Properties.CacheControl = "public, max-age=31536000"; | |
blob.Properties.ContentType = MimeMapping.GetMimeMapping(filename); |
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> | |
!function () { | |
var range = 11, base = 90; | |
var data = []; | |
var list = document.querySelectorAll(".hatena-module-category ul li a"); | |
for (var i = 0; i < list.length; i++) { | |
data.push(parseInt(list[i].innerHTML.match(/\((\d+)\)/)[1])); | |
} | |
var min = Math.min.apply(null, data), max = Math.max.apply(null, data); | |
var sqrtMin = Math.sqrt(min), sqrtMax = Math.sqrt(max); |
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
/* | |
saori.cpp | |
Multi Platform SAORI Framework | |
*/ | |
#include "saori.h" | |
#ifdef _WINDOWS | |
#ifdef _DEBUG | |
#include <crtdbg.h> |
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
/* | |
saori.h | |
Multi Platform SAORI Framework | |
*/ | |
#pragma once | |
#include <string> | |
#include <vector> | |
#include <map> |
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
2015-10-06 06:56:58 TWITTERCONNECTORA860D028F0CE44B8B93C5AB049550318 POST /statuses/update TweetText=hoge%26hogehoge&X-ARR-LOG-ID=c9891b01-845f-4c48-82ea-3ee67fe5bd87 443 - 138.91.17.229 EMA-Gateway - - twitterconnectora860d028f0ce44b8b93c5ab049550318.azurewebsites.net 403 0 0 1284 1337 3822 | |
2015-10-06 06:57:56 TWITTERCONNECTORA860D028F0CE44B8B93C5AB049550318 POST /statuses/update TweetText=%25u3060%25u308b%25u3084%25u306a%25u304e&X-ARR-LOG-ID=7d559b07-24a4-4509-b2c2-63bcbe072c71 443 - 138.91.17.229 EMA-Gateway - - twitterconnectora860d028f0ce44b8b93c5ab049550318.azurewebsites.net 200 0 0 1100 1387 1117 | |
2015-10-06 06:58:55 TWITTERCONNECTORA860D028F0CE44B8B93C5AB049550318 POST /statuses/update TweetText=%25u3060%25u308b%25u3084%25u306a%25u304e&X-ARR-LOG-ID=0ba429a1-2ca2-499c-9057-845d42de01af 443 - 138.91.17.229 EMA-Gateway - - twitterconnectora860d028f0ce44b8b93c5ab049550318.azurewebsites.net 403 0 0 1284 1387 922 | |
2015-10-06 06:59:55 TWITTERCONNECTORA860D028F0CE44B8B93C5AB049550318 POST /statuses/update Tweet |
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
public class Fastly | |
{ | |
public Fastly(string fastlyKey) | |
{ | |
_fastlyKey = fastlyKey; | |
} | |
private readonly string _fastlyKey; | |
private const string EntryPoint = "https://api.fastly.com"; |
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
{ | |
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
"contentVersion": "1.0.0.0", | |
"parameters": { | |
"siteName": { | |
"type": "string" | |
}, | |
"appServicePlanName": { | |
"type": "string" | |
}, |