Skip to content

Instantly share code, notes, and snippets.

View e10dokup's full-sized avatar

Yoshihiro WADA e10dokup

  • CyberAgent, Inc.
  • Japan
View GitHub Profile
@e10dokup
e10dokup / log.md
Last active May 29, 2016 05:41
WDVCオリエンテーション議事録

議事録

  • 日時:2016/5/29
  • 場所:スペースアルファ三宮 中会議室2⑨

TODO

とりあえず後で資料をfservに投げておこう

注意

@e10dokup
e10dokup / 6_1.c
Created June 6, 2016 05:17
6章最終課題(1)解答コード
#include <stdio.h>
#include <math.h>
#define N 500
int main(void){
int i, j, n, nend;
double xleft, xright, yleft, yright;
double x[N+1], dx, xx[N+1], y[N+1], dy, yy[N+1];
double u[N+1][N+1], uu[N+1][N+1], s[N+1][N+1];
double c1, c2, t, dt, tend;
@e10dokup
e10dokup / something_like_sprix.rb
Last active August 27, 2016 03:00
something_like_sprix.rb
#!/usr/bin/env ruby
# coding:utf-8
require 'sinatra'
require 'rack'
get '/*' do
status 503
return "ただいまアクセスが集中しているため、サイトが繋がりづらい状態になっています。 ご迷惑をおかけして申し訳ありません。"
end