Skip to content

Instantly share code, notes, and snippets.

@southrop
southrop / kancolle_api.md
Last active August 29, 2015 13:57
api_get_member/ship

A prettified/human-readable version of this data response from api_get_member/ship from the Kancolle ship3 API.

For a detailed breakdown of what each compoment means, see here

@southrop
southrop / c3hk.md
Last active August 29, 2015 14:04
C3 HK Guests

2015

  1. THE iDOLM@STER CINDERELLA GIRLS
  2. 福原綾香 (Fukuhara Ayaka) [渋谷凛 Shibuya Rin]
  3. 原紗友里 (Hara Sayuri) [本田未央 Honda Mio]
  4. 青木瑠璃子 (Aoki Ruriko) [多田李衣菜 Tada Riina]
  5. 山本希望 (Yamamoto Nozomi) [城ヶ崎莉嘉 Jougasaki Rika]
  6. 牧野由依 (Makino Yui) [佐久間まゆ Sakuma Mayu]
  7. ガンダムビルドファイターズトライ (Gundam Build Fighters Try) stage
  8. 冨樫かずみ (Togashi Kazumi) [カミキ・セカイ Kamiki Sekai]
  9. 内田雄馬 (Uchida Yuuma) [コウサカ・ユウマ Kousaka Yuuma]

bitmap

boatmap

bitNTRmap

pamtib

@southrop
southrop / cookie.js
Created September 7, 2014 17:47
JavaScript to set a regional cookie for DMM
No. Japanese Name English Name IP
01 横須賀鎮守府 Yokosuka Naval District 203.104.105.167
02 呉鎮守府 Kure Naval District 125.6.184.15
03 佐世保鎮守府 Sasebo Naval District 125.6.184.16
04 舞鶴鎮守府 Maizuru Naval District 125.6.187.205
05 大湊警備府 Ominato Guard District 125.6.187.229
06 トラック泊地 Truk Anchorage 125.6.187.253
07 リンガ泊地 Lingga Anchorage 125.6.188.25
08 ラバウル基地 Rabaul Naval Base 203.104.248.135
@southrop
southrop / 20140912update.md
Last active August 29, 2015 14:06
Kancolle 2014/09/12 Update Notes

Kancolle 2014/09/12 Update Notes

Please report any translation errors or mistakes to me at @kotoriburd.

1. New Area in the Northern Region Implemented

A new Extra Operation has been added to World 3 (3-5).
※ Clearing the map will reward 1 medal per month.

2. New BGM Implemented

3 new BGMs added. "Musashi's Return" ※ Unlocked by a special furniture

@southrop
southrop / 20141024update.md
Last active August 29, 2015 14:08
Kancolle 2014/10/24 Update Notes

Kancolle 2014/10/24 Update Notes

Please report any translation errors or mistakes to me at @kotoriburd.

1. Second Remodel for Fusou Implemented

The nameship of the Fuso class of battleships has received a further remodel.

  • Requires a blueprint
  • Remodels at Lv. 80

2. Additional Voices for Fusou Implemented

Additional voices for Resupplying, Idling and Marriage have been added for Fusou Kai. Fusou Kai 2 has a new Homeport voice.

@southrop
southrop / kancolle.js
Last active August 29, 2015 14:09
Override style for kancolle
var s = document.createElement('style');
s.innerHTML = 'body{margin:0!important;overflow:hidden!important}#game_frame{position:fixed!important;left:50%!important;top:-16px!important;margin-left:-450px!important;z-index:1!important}';
document.head.appendChild(s);
// Minified to be run in browser console
var s = document.createElement('style');s.innerHTML = 'body{margin:0!important;overflow:hidden!important}#game_frame{position:fixed!important;left:50%!important;top:-16px!important;margin-left:-450px!important;z-index:1!important}';document.head.appendChild(s);
@southrop
southrop / shiropro.js
Last active August 29, 2015 14:09
Override style for shiropro
var s = document.createElement('style');
s.innerHTML = 'body{margin:0!important;overflow:hidden!important}#game_frame{position:fixed!important;left:50%!important;top:0px!important;margin-left:-400px!important;z-index:1!important}';
document.head.appendChild(s);
// Minified to be run in browser console:
var s = document.createElement('style');s.innerHTML = 'body{margin:0!important;overflow:hidden!important}#game_frame{position:fixed!important;left:50%!important;top:0px!important;margin-left:-400px!important;z-index:1!important}';document.head.appendChild(s);

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"