Skip to content

Instantly share code, notes, and snippets.

View mamoru0217's full-sized avatar
🏠
Working from home

Mamoru Amano mamoru0217

🏠
Working from home
View GitHub Profile
@mamoru0217
mamoru0217 / タスク.md
Last active August 4, 2025 13:31
タスク
  • サーバーから受け取ったsurveyFormのデータをstate上に適切に展開する状態管理。
  • surveyFormのUI上の見た目を変える状態管理。
  • 変化した状態をサーバーに送信する状態管理。

変更したい値 survey_form_title { [key]: string } survey_form_description: { [key]: string } survey_form_edition: string

@mamoru0217
mamoru0217 / com.googlecode.iterm2.plist
Created March 11, 2019 07:18
iterm2 configuration
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>AboutToPasteTabsWithCancel</key>
<true/>
<key>AboutToPasteTabsWithCancel_selection</key>
<integer>2</integer>
<key>AppleAntiAliasingThreshold</key>
<integer>1</integer>
tap "c-bata/kube-prompt"
tap "heroku/brew"
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/completions"
tap "homebrew/core"
tap "homebrew/services"
brew "readline", link: true
brew "boost"
brew "python"
@mamoru0217
mamoru0217 / gist:968dfadc490e2e705858e8f4dc80e0d7
Last active January 11, 2018 01:56
Facebook Page から投稿一覧を取得する Google App Script
var baseUrl = "https://graph.facebook.com/v2.11/"
var token = '' // tokenの取得方法は https://hirofukami.com/2017/06/30/facebook-page-access-token/ などを参考に

var postFieldList = [
  "created_time",
  "message",
  "permalink_url",
  "id",
  "promotion_status",