Skip to content

Instantly share code, notes, and snippets.

View toshi-toma's full-sized avatar
🍅
Working from home

Toshihisa Tomatsu toshi-toma

🍅
Working from home
View GitHub Profile
@toshi-toma
toshi-toma / todayTodos.js
Created July 21, 2019 07:14
print your todays tasks(Todoist)
const API_TOKEN = ""; // your api token
const fetchTasks = async()=>{
const response = await fetch("https://beta.todoist.com/API/v8/tasks?filter=today",{headers:{Authorization:`Bearer ${API_TOKEN}`}});
const result = await response.json();
let concat = '';
result.forEach(r=>concat += r.content.replace("!!", "") + '\n\n');
console.log(concat);
}
@toshi-toma
toshi-toma / React&Redux.md
Last active March 22, 2021 04:14
React + Reduxのハンズオン資料

キーワード

  • webpack
  • モジュールバンドラ
  • モジュール
    • 機能ごとに分割されたファイル
  • バンドル
    • まとめられたファイル

webpackとは

モジュールバンドラのこと

@toshi-toma
toshi-toma / tmux.md
Created November 24, 2017 14:49
tmuxのメモ

tmuxのメモ