Skip to content

Instantly share code, notes, and snippets.

View fohte's full-sized avatar

Fohte / Hayato Kawai fohte

View GitHub Profile
@tbutts
tbutts / tmux-migrate-options.py
Last active February 29, 2024 08:11
For tmux configs: Merge deprecated/removed -fg, -bg, and -attr options into the -style option
#!/usr/bin/env python
# vim: set fileencoding=utf-8
#
# USAGE:
# Back up your tmux old config, run the script and redirect stdout to your conf
# file. Example:
#
# $ cp ~/.tmux.conf ~/.tmux.conf.orig
# $ python ./tmux-migrate-options.py ~/.tmux.conf.orig > ~/.tmux.conf
#

README for team members

この文章は、一緒のチームで仕事をする人に、自分がどんな人間か理解してもらうためのドキュメントです。

性格・強み

Strengths Finder

image

  • 慎重さ
    • あなたは世の中が予測できない場所であることを知っています。すべてが秩序正しいように見えますが、表面下には数多くの危険が待ちかまえていることを感じ取っています。

    • 何かの判断をするときは、これで問題ないだろうかといろいろな可能性を考えてすべて問題ないことを確認してから選択する傾向があります。なので意思決定に時間がかかります。
  • コードレビューも一緒です。こういうとき困らないかとかいろいろ考えるので、人より時間がかかる方です。
@gboudreau
gboudreau / AuthyToOtherAuthenticator.md
Last active June 12, 2024 02:57 — forked from Ingramz/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy

fetch API

▼fetch API とは?

XMLHttpRequest と似たもので、より強力で柔軟な操作が可能。
まだ実験段階の機能で、複数のブラウザで開発中の状態にあります。
caniuse: http://caniuse.com/#search=fetch
Service WorkersではXMLHttpRequestは使えないため、fetch APIが使わています。
Service Workers … ブラウザが Web ページとは別にバックグラウンドで実行するスクリプト。Web Pushなど)

▼fetch API の使い方