Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View kakipo's full-sized avatar
💪
Let's get physical

K kakipo

💪
Let's get physical
View GitHub Profile
店名 料理 ランチ時間 タバコ 一言
肉割烹 将泰庵 肉料理 11:30~14:00 禁煙? あんまり美味しくなかった(少なくとも鉄火丼は)
コスパ悪い
五十亭 焼鳥 11:30~14:00 昼禁煙? ランチ 780 円
つくねカツおいしかった。ご飯おかわりOK。
タイ料理研究所 タイ料理 11:30~14:30 禁煙? 狭い
そこそこ高い(1200円くらい)
美味しい
ハノイのホイさん フォー 11:30~14:30 禁煙? そこそこ広い
ランチで丼などがつく
よく閉まっているイメージがある
トローズ (TORO'S) ハンバーグ 11:30~14:30 禁煙? 美味しい
早い時間にランチ終了していることが結構ある
もんじろう 唐揚げ
焼鳥
11:30~14:30 喫煙 定食の肉がデカイ、味良い、値段もそこそこで満足度高い
店内狭い&喫煙なので非喫煙者にはしんどいかもしれない
海浜食堂 たけだ 魚定食 11:30~15:00 喫煙 秋刀魚が美味しい
狭い
おばちゃんがキュート
[カンティプール](http://tabelog.com/tokyo/A1303
@kakipo
kakipo / webapp.conf
Last active July 9, 2017 13:46
Force Redirect HTTP to HTTPS on nginx behind ELB
# redirect http to https
set $redirect "";
if ($http_x_forwarded_proto != 'https') {
set $redirect "1";
}
if ($http_user_agent !~* ELB-HealthChecker) {
set $redirect "${redirect}1";
}
if ($http_host ~ "your-nifty-domain.com") {
set $redirect "${redirect}1";
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "VPC knowhow template",
"Parameters": {
"KeyName": {
"Description": "Name of an existing EC2 KeyPair to enable SSH access to the instances",
"Type": "String",
"MinLength": "1",
"MaxLength": "64",
"AllowedPattern": "[-_ a-zA-Z0-9]*",