Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View showwin's full-sized avatar

ITO Shogo showwin

View GitHub Profile
<?xml version="1.0" encoding="utf8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:s="http://sqlfairy.sourceforge.net/sqlfairy.xml">
<xsl:output method="html" encoding="utf8" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"/>
<xsl:template match="database">
<html lang="ja">
<head>
<meta charset="utf-8"/>
<title>テーブル定義</title>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
@showwin
showwin / etc_init.d_unicorn
Last active May 3, 2019 13:35
rbenv + unicorn の init スクリプト
#!/bin/sh
#chkconfig:2345 85 70
#description:unicorn shell
NAME="Unicorn"
ENV=production
USER="root"
ROOT_DIR="/opt/rails/[PROJECT_NAME]"
if IS_LAPRAS_RELEASED:
service_name = 'scouty'
else:
service_name = 'LAPRAS SCOUT'

ISHOCON2 目的

ISUCONの練習をして高速化の勉強をすることがこのイベントの目的です。
懇親会では高速化した手法をぜひ共有しあってください!

タイムスケジュール

時間 内容
9:30 ~ 10:00 受付
10:00 ~ 12:00 コンテスト
@showwin
showwin / benchmark.go
Created February 9, 2016 08:30
1分間に何回のリクエストを受け付けられるかのベンチマークスクリプト
package main
import (
"flag"
"fmt"
"net/http"
"strconv"
"sync"
"time"
)
@showwin
showwin / speedtest.rb
Last active October 9, 2015 07:00
Speedtesting Tool for Japan
###### README ######
# Speedtesting Tool for Japan
#
# How to Use
# 1. Install pip
# `$ curl -kL https://raw.github.com/pypa/pip/master/contrib/get-pip.py | sudo python`
#
# 2. Install speedtest-cli (https://github.com/sivel/speedtest-cli)
# `$ pip install speedtest-cli`
#