Skip to content

Instantly share code, notes, and snippets.

View koolii's full-sized avatar
remote, cold, snow

t.kuriyama koolii

remote, cold, snow
  • Freelancer
  • Bangkok, Thailand
  • 15:32 (UTC +07:00)
View GitHub Profile
@koolii
koolii / SMBDIS.ASM
Created March 7, 2018 09:00 — forked from 1wErt3r/SMBDIS.ASM
A Comprehensive Super Mario Bros. Disassembly
;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY
;by doppelganger (doppelheathen@gmail.com)
;This file is provided for your own use as-is. It will require the character rom data
;and an iNES file header to get it to work.
;There are so many people I have to thank for this, that taking all the credit for
;myself would be an unforgivable act of arrogance. Without their help this would
;probably not be possible. So I thank all the peeps in the nesdev scene whose insight into
;the 6502 and the NES helped me learn how it works (you guys know who you are, there's no
@koolii
koolii / k8s.md
Last active January 15, 2020 19:59

セルフ・ヒーリング

実行条件にはプロセス監視以外にHTTP/TCPやシェルスクリプトで成否を設定することも可能

サービスディスカバリ

  • Istio
  • Linkerd
  • Contour
  • Ambassador
package main
import "fmt"
func main() {
for i := 0; i <= 100; i++ {
if i%15 == 0 {
fmt.Printf("FizzBuzz: %d\n", i)
} else if i%3 == 0 {
fmt.Printf("Fizz: %d\n", i)