Skip to content

Instantly share code, notes, and snippets.

View nekoruri's full-sized avatar
🤔
にゃーん

@nekoruri nekoruri

🤔
にゃーん
View GitHub Profile
@sters
sters / gekiyasu.js
Last active January 25, 2017 11:37
✨安い!!お得!!激安JS!!✨
//==================================================//
// 参考
// http://qiita.com/shiozaki/items/0e42e101b7483df13c8f
//
// 使い方
// <span class="gekiyasu">19800</span>
// <script src="gekiyasu.js"></script>
// <script>
// gekiyasu.initialize();
// </script>
@tuannvm
tuannvm / 0.12.tf
Last active December 3, 2022 18:50
#terraform #hashicorp #cheatsheet #0.12
#### 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] : []
}
@greymd
greymd / yamaya_fib.md
Last active November 4, 2024 07:48
yamayaさんの難読化シェル芸(フィボナッチ数列) 解説

yamayaさんの難読化シェル芸(フィボナッチ数列) 解説

経緯

(1) ある日、yamaya さんという怖い方がこのツイートを投稿する。

yamaya_src