- Scala基礎の3節,4節の映像授業がリリース
- アルバイトの案内
- [速報]GitHub、依存関係表示でのパッケージやアプリケーション対応、セキュリティアラートなどの新機能発表。GitHub Universe 2017
- Webデザインを「もっとかっこよくして!」と言われた時に試したいCSS小技5つ
- ガートナージャパン、「日本におけるテクノロジのハイプ・サイクル:2017年」発表。DevOpsは過度な期待のピーク、クラウドやビッグデータは幻滅期
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
| 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 |
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
| rm -rf ./node_modules && mkdir -p ~/workspace_noshared/`basename \`pwd\``/node_modules && ln -s ~/workspace_noshared/`basename \`pwd\``/node_modules ./node_modules |
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 <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 |
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
| mkdir ~/workspace2 | |
| cd workspace2 | |
| npm install request | |
| cd ~/workspace/npm-training | |
| rm -rf node_modules | |
| cp - ../../workspace2/node_modules . |
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 <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++){ |
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
| @echo off | |
| cd %USERPROFILE%\vagrant\ubuntu64_16 | |
| vagrant halt |
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
| @echo off | |
| cd %USERPROFILE%\vagrant\ubuntu64_16 | |
| vagrant up |