- あいさつ
- 自己紹介
- 吉村総一郎
- ハンドルネームは sifue
- 読み方は「しふー」
- 元々ニコニコ生放送の開発者を3年
- その前は製造業向けシステムインテグレーターを5年
- 学生の頃は研究室で画像解析や数値解析のプログラムを書いていた
- 趣味は競技系のネットのゲーム、LoL、PUBG、Fortniteやハースストーンなど (弱い)
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
g++ main.cpp |
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
cp -r ../schedule-arranger/node_modules/mocha ./node_modules/ | |
cp -r ../schedule-arranger/node_modules/.bin/mocha ./node_modules/.bin/ | |
cp -r ../schedule-arranger/node_modules/.bin/_mocha ./node_modules/.bin/ |
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
ls | grep .gz | xargs -n1 gunzip | |
ls | grep .log | xargs -n1 grep "the game" | vim - |
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
#include <iostream> | |
#include <complex> | |
#include <vector> | |
#include <stack> | |
using namespace std; | |
template<class T> bool operator<(const complex<T> &a, const complex<T> &b){ | |
return a.real() == b.real() ? a.imag() < b.imag() : a.real() < b.real(); | |
} |
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
#include <iostream> | |
#include <vector> | |
using namespace std; | |
enum CubeState {FF, FR, RF, RR, HOMO, HETERO}; | |
enum Rotate {A, B, C, D}; | |
CubeState reverse(CubeState s, Rotate r) { | |
if (s == FF) { |
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
#include <iostream> | |
#include <complex> | |
#include <vector> | |
#include <stack> | |
using namespace std; | |
template<class T> bool operator<(const complex<T> &a, const complex<T> &b){ | |
return a.real() == b.real() ? a.imag() < b.imag() : a.real() < b.real(); | |
} |
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
#include <iostream> | |
#include <complex> | |
#include <vector> | |
#include <stack> | |
using namespace std; | |
template<class T> bool operator<(const complex<T> &a, const complex<T> &b){ | |
return a.real() == b.real() ? a.imag() < b.imag() : a.real() < b.real(); | |
} |
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
#include <iostream> | |
#include <complex> | |
#include <vector> | |
#include <stack> | |
using namespace std; | |
template<class T> bool operator<(const complex<T> &a, const complex<T> &b){ | |
return a.real() == b.real() ? a.imag() < b.imag() : a.real() < b.real(); | |
} |
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
#include <iostream> | |
#include <complex> | |
#include <vector> | |
#include <stack> | |
using namespace std; | |
template<class T> bool operator<(const complex<T> &a, const complex<T> &b){ | |
return a.real() == b.real() ? a.imag() < b.imag() : a.real() < b.real(); | |
} |