(1) ある日、yamaya さんという怖い方がこのツイートを投稿する。
This file contains 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
#### first class expresssion | |
variable "ami" {} | |
resource "aws_instance" "example" { | |
ami = var.ami | |
} | |
#### list & map | |
resource "aws_instance" "example" { | |
vpc_security_group_ids = var.security_group_id != "" ? [var.security_group_id] : [] | |
} |
This file contains 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
//==================================================// | |
// 参考 | |
// http://qiita.com/shiozaki/items/0e42e101b7483df13c8f | |
// | |
// 使い方 | |
// <span class="gekiyasu">19800</span> | |
// <script src="gekiyasu.js"></script> | |
// <script> | |
// gekiyasu.initialize(); | |
// </script> |
This file contains 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
Latency Comparison Numbers | |
-------------------------- | |
L1 cache reference/hit 1.5 ns 4 cycles | |
Floating-point add/mult/FMA operation 1.5 ns 4 cycles | |
L2 cache reference/hit 5 ns 12 ~ 17 cycles | |
Branch mispredict 6 ns 15 ~ 20 cycles | |
L3 cache hit (unshared cache line) 16 ns 42 cycles | |
L3 cache hit (shared line in another core) 25 ns 65 cycles | |
Mutex lock/unlock 25 ns | |
L3 cache hit (modified in another core) 29 ns 75 cycles |
モヒカンslackのチャネルリスト(毎日 AM 5:00 自動更新)
詳細はQiita:究極のIT系最新技術情報収集用Slackチーム公開 - モヒカンSlack -を参照。
参加は
This file contains 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
import java.time.OffsetDateTime; | |
import java.time.format.DateTimeFormatter; | |
public class 日本人 { | |
protected final String name; | |
protected final OffsetDateTime birthdate; | |
public 日本人(String name, String birthdate) { | |
this.name = name; | |
// 2011-12-03T00:00:00+09:00 |
This file contains 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
駆け出しのサーバー寄りインフラエンジニアが読むべき各種ドキュメント | |
* 情報系の専門教育を受けていない、あるいは座学をサボってきた人向け。……と思っていたが、これらを全域カバーするレベルで座学をマヂにやっている人というのはあんまり存在しないかもしれない&微妙に属性が違うので、これはこれで必須。 | |
* 1年目が終わるまでにこれぐらいは読んで&軽く実践しておけると望ましい。 | |
* 3年目すぎてもこれらが把握できてなければ相当深刻にヤバいかもしれないが、理想が高すぎるかもしれない。 | |
* 5年目ぐらいには何とか全部読んでいてほしいなぁ……ぐらい。 | |
できるようになっているべきこと | |
================================ |
ソーシャルゲームのマークアップを主軸にした大規模開発用のHTML/CSS設計思想。
風呂 https://github.com/hiloki/flocss といったらシャワーだよねっていう
* *
* + ネタです
n ∧_∧ n
+ (ヨ(* ´∀`)E)
Y Y *
- Fork from Docker cheat sheet
- 実際にコマンドを試したい場合は、すぐにDockerを試したい人のための基礎コマンドを参照
Why Should I Care (For Developers)
"Dockerが面白いのはシンプルな環境に隔離性と再現性をもたらしてくれることだ.ランタイムの環境を一度作れば、パッケージにして別のマシンでも再利用することできる.さらに,すべてはホスト内の隔離された環境で行われる(VMのように).最も素晴らしい点は,シンプルかつ高速であることだ."
NewerOlder