Skip to content

Instantly share code, notes, and snippets.

View temmings's full-sized avatar
🇹🇭
Out sick

Tetsuya HAMAMOTO temmings

🇹🇭
Out sick
View GitHub Profile
@temmings
temmings / ZMAP_CU.LOG
Last active March 28, 2019 06:04
Configuration MS-DOS version 6.2 for PC-98 (1997-08-19)
ZMAP v1.00 Copyright(C) 1992 ZOBplus Hayami
DOS Version 6.20 Extended memory size 14336 Kbytes
Addr PSP Size ownerpsp/parameters device Hooked vectors
---- ---- ------- -------------------------- -------- -----------------------
0444 0444 64 Pal21 n0
0449-0454 176 <free>
0455 0455 4928 dosdata$ 00 20 25 26 27 2A 2B 2C
2D 32 33 34 35 36 37 38
39 3A 3B 3C 3D 3E 3F
@temmings
temmings / MapList.txt
Last active March 23, 2019 15:36
WIP: MapList 3.6.0 for POE-TradeMacro (data/MapList.txt) / data source: https://pathofexile.gamepedia.com/User:Temmings/MapData
; Data from http://pathofexile.gamepedia.com/User:Temmings/MapData
; Comments can be made with ";", blank lines will be ignored.
;
; This file was auto-generated by scrape_poe_maps.py on 2019-03-24 at 00:26:06
mapList := Object()
mapList["Unknown Map"] := "Map not recognised or not supported"
uniqueMapList := Object()
uniqueMapList["Unknown Map"] := "Map not recognised or not supported"

Create character

  1. Witch (for gems)
  2. Marauder

Prepare

  • Explosive Trap : Enemy at the Gate : Witch
  • Lesser Poison Support @ Witch : Mercy Mission : Witch
  • Storm Brand in vendor @ Witch : The Siren's Cadence : Witch
転送してもらったので、オリジナルのSMTPヘッダは不明。
> 差出人: information
> 日時: 2018年5月21日 18:45:53 JST
> 宛先: *******@i.softbank.jp
> 件名: ソフトバンクからのお知らせ
>
> 平素は、ソフトバンクをご利用いただきありがとうございます。
> お客さまがご利用のEメール(i)のメールアドレスが不正に利用されている可能性があるため、パスワードの変更をお願いいたします。
>
/play
/*.png
/*.bmp
/solitaire
@temmings
temmings / hatara-clicker-wip.js
Created November 24, 2016 02:11
hatara-clicker-wip.js
'use strict'
const cashGoal = 10000 * 10000;
const wageEffects = { shikaku: 1.5, programming: 20 };
const esteemItems = ['shikaku', 'programming'];
const wage = (items, effects) =>
2
+ (items.shikaku * effects.shikaku)
+ (items.programming * effects.programming);
@temmings
temmings / register-iqos-packcode.sh
Last active November 20, 2016 19:43
iQOSphere にパックコードを登録する
#!/bin/bash
set -eu
IQOSPHERE_DOMAIN="https://iqosphere.jp"
IQOSPHERE_LOGIN_API="${IQOSPHERE_DOMAIN}/modules/login"
IQOSPHERE_REGISTER_API="${IQOSPHERE_DOMAIN}/modules/awardpoint"
LOGIN_ID="${YOUR_LOGIN_ID}"
PASSWORD="${YOUR_LOGIN_PASSWORD}"
PACKCODE=$1
@temmings
temmings / file0.txt
Last active May 6, 2016 20:51
Zshのエイリアスの好きなところに引数を取りたい ref: http://qiita.com/temmings/items/c1ee9885b2c68581fd22
alias show-ssl-cert='openssl s_client -connect $1:443 -showcerts'
@temmings
temmings / OmniFocus 2-Import action per line.scpt
Last active April 17, 2016 20:51
OmniFocus 2: Import action per line, for Automator / 選択範囲を1行毎にアクションとして取り込む
(* Import action from selected at per line, to temporary project. *)
on run {input, parameters}
set theRawLines to my getRawLines(input as string)
if not length of theRawLines is greater than 0 then return input
set theTrimmedLines to my getTrimmedLines(theRawLines)
if not length of theTrimmedLines is greater than 0 then return input
tell application "OmniFocus"
tell default document