Skip to content

Instantly share code, notes, and snippets.

View sifue's full-sized avatar

Soichiro Yoshimura sifue

View GitHub Profile
@sifue
sifue / 今日のITニュース.md
Created October 12, 2017 09:36
今日のITニュース

今日のITニュース

Version: ImageMagick 7.0.6-10 Q16 x64 2017-08-27 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2015 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Visual C++: 180040629
Features: Cipher DPC Modules OpenMP
Delegates (built-in): bzlib cairo flif freetype jng jp2 jpeg lcms lqr openexr pa
ngocairo png ps rsvg tiff webp xml zlib
@sifue
sifue / 無料で読めるポール・グレアムの「ハッカーと画家」+αの日本語訳のみのまとめ.md
Last active November 5, 2025 07:14
無料で読めるポール・グレアムの「ハッカーと画家」+αの日本語訳のみのまとめ
@sifue
sifue / gist:353ab724c8b521894b71e8a7d9a207ea
Created September 11, 2017 10:03
Windows上のVirtualBoxの共有フォルダでnpm installをするとError: ETXTBSYが出る場合にそれを回避するコマンド
rm -rf ./node_modules && mkdir -p ~/workspace_noshared/`basename \`pwd\``/node_modules && ln -s ~/workspace_noshared/`basename \`pwd\``/node_modules ./node_modules
@sifue
sifue / template.cpp
Created September 9, 2017 20:01
競技プログラミング用C++テンプレート 20170909
#include <bits/stdc++.h> // g++ -std=c++14 -o a a.cpp
using namespace std;
typedef pair<int, int> P;
typedef long long ll;
#define rep(i, n) for(int i = 0; i < (n); i++)
#define all(c) (c).begin(), (c).end()
#define uniq(c) c.erase(unique(all(c)), (c).end())
#define _1 first
#define _2 second
@sifue
sifue / cp.sh
Created August 31, 2017 10:51
共有フォルダのワークスペースでインストールできない人のコマンド
mkdir ~/workspace2
cd workspace2
npm install request
cd ~/workspace/npm-training
rm -rf node_modules
cp - ../../workspace2/node_modules .
@sifue
sifue / geo_kakudo.cpp
Created August 20, 2017 05:13
書き直したらこんな感じ
#include <iostream>
#include <algorithm>
#include <set>
using namespace std;
int main(){
int N;
cin >> N;
int p[N][3];
int i, j;
for(i = 0; i < N; i++){
@sifue
sifue / 予習メモ 夏期合宿 吉村編.md
Last active August 9, 2017 00:26
予習メモ 夏期合宿 吉村編

N予備校ネット夏期合宿「プログラミング」公開授業

  • アンケートは大体80%ぐらいOKならば進む方針で
  • 練習はタイムオーバーしてたらやらない
  • できるだけ巻き目でやって可能なら挙手する

10:00 プログラミング体験をしてみよう 吉村

自己紹介 2分

  • あいさつ
  • 自己紹介
@sifue
sifue / vagrant_halt_ubuntu64_16.bat
Created June 17, 2017 02:37
vagrant_halt_ubuntu64_16.bat
@echo off
cd %USERPROFILE%\vagrant\ubuntu64_16
vagrant halt
@sifue
sifue / vagrant_up_ubuntu64_16.bat
Created June 17, 2017 02:37
vagrant_up_ubuntu64_16.bat
@echo off
cd %USERPROFILE%\vagrant\ubuntu64_16
vagrant up