Skip to content

Instantly share code, notes, and snippets.

View ise's full-sized avatar
📚

Masaaki Takeuchi ise

📚
View GitHub Profile
@shortjared
shortjared / list.txt
Last active March 23, 2026 23:13
List of AWS Service Principals
a4b.amazonaws.com
access-analyzer.amazonaws.com
account.amazonaws.com
acm-pca.amazonaws.com
acm.amazonaws.com
airflow-env.amazonaws.com
airflow.amazonaws.com
alexa-appkit.amazon.com
alexa-connectedhome.amazon.com
amazonmq.amazonaws.com
@gaearon
gaearon / modern_js.md
Last active March 25, 2026 15:33
Modern JavaScript in React Documentation

If you haven’t worked with JavaScript in the last few years, these three points should give you enough knowledge to feel comfortable reading the React documentation:

  • We define variables with let and const statements. For the purposes of the React documentation, you can consider them equivalent to var.
  • We use the class keyword to define JavaScript classes. There are two things worth remembering about them. Firstly, unlike with objects, you don't need to put commas between class method definitions. Secondly, unlike many other languages with classes, in JavaScript the value of this in a method [depends on how it is called](https://developer.mozilla.org/en-US/docs/Web/Jav
@hecres
hecres / config.yml
Last active October 24, 2021 03:49
【CircleCI】対象リポジトリのSubmoduleをPullする方法
version: 2.1
executors:
unity:
docker:
- image: gableroux/unity3d:2019.1.14f1
jobs:
build-test:
executor: unity
steps:
- checkout
@yudoufu
yudoufu / ssm.sh
Last active February 16, 2021 05:15
#!/bin/bash
set -e
usage() {
echo "USAGE: `basename $0` [Options]"
echo " ssm target selection using peco"
echo ""
echo "Optinal Arguments:"
echo " All arguments excluded options pass to initial queries of peco"
echo ""