メモメモメモ

ほんとうにめも

2018-12-01から1日間の記事一覧

【ReactNative】コスパ良くクオリティ上げるならとりあえずLayoutAnimation入れとこ

苦労せずになんとなーくアプリのクオリティを上げたいあなたにおすすめです。 Animationを適用したいScreenのcomponentWillUpdateにでも書いておきます。 import { LayoutAnimation } from 'react-native' --------------------------------------------- co…

【Shell】GithubのPullRequest作成ページを一発で開く関数(ワンライナー)

関数の定義 .zsh_aliasや.bash_aliasに書いておく。 # カレントブランチから$1ブランチへのPullRequestを開く function opr() { parentBranch=$1 currentBranch=`git branch | grep "*"` repoName=$(git remote show origin -n | ruby -ne 'puts /^\s*Fetch.…