Skip to content

Instantly share code, notes, and snippets.

View Fendo181's full-sized avatar
:octocat:
Write Code Every Day 📝

Futoshi Endo Fendo181

:octocat:
Write Code Every Day 📝
View GitHub Profile

基本手順

mkdir ~/.vim
cd ~/.vim
mkdir colors
git clone https://github.com/tomasr/molokai
mv molokai/colors/molokai.vim ~/.vim/colors/
vi ~/.vimrc

2016年にJavaScriptを学んでどう感じたか

※この記事は"How it feels to learn JavaScript in 2016"著者であるJose Aguinaga氏による、以下のツイートの本文を確認して記事を翻訳しています。
https://twitter.com/jjperezaguinaga/status/784058480613322752?lang=ja
As long as you reference the original article, please feel free to translate/quote “How it feels to learn JavaScript in 2016” in any media.
また、このような素晴らしい記事を書いて頂いたJose Aguinaga氏に感謝致します。 ありがとうございました。

※追記2016_11_23

初期セットアップ

インストール手順

shogoさんのgithubからdeinのシェルスクリプトをインストールするシェルスクリプトを作る。

mkdir ~/.vim/dein
cd ~/.vim/dein

Gitの設定

ユーザ設定

git config --global color.ui true
git config --global user.name "YOUR NAME"
git config --global user.email "YOUR@EMAIL.com"

This article translated it with permission of Mr. Abdul Nimeri who is the author of "How" ages faster than "Why".

“How” ages faster than “Why”

I used to write a lot of Angular back in 2015. But recently, the JS community has largely moved on from Angular 1 to other libraries, and in turn, so have my projects. I always knew in the back of my mind that technology — and the knowledge that goes along with it — becomes outdated, but this was the first time I experienced it for myself. I wondered: what parts of my Angular knowledge are now obsolete? What parts are long-lasting? And most importantly, how can I make sure that I always get better as an engineer in the face of all those fleeting frameworks and libraries?

**私は2015年にAngularを使って沢山コードを書いていましたが、最近のJSコミュニティではAngular 1から他のライブラリに大きく移行しており、今度は私のプロジェクトでも同様な事がおきました。常に技術とそれに伴う知識は時代遅れになると心の奥ではわかっていましたが、この事は私自身初めての経験でした。Angularの知識のどの部分が時代遅れになるのか?どの部分が長く続くのでしょうか?。そして最も重要なことは、これらの一時的なフ

# zplug設定
export ZPLUG_HOME=/usr/local/opt/zplug
source $ZPLUG_HOME/init.zsh
zplug 'zsh-users/zsh-completions'
zplug 'zsh-users/zaw'
zplug 'zsh-users/zsh-syntax-highlighting', defer:2
zplug check || zplug install
### cdr の設定 (zplug load 前に書かないと zaw-cdr がスキップされる)

よく使う.gitignoreをまとめてみた。

初期セットアップ

shogoさんのgithubからdeinのシェルスクリプトをインストールする為にスクリプトをダウンロードから実行するまでの一連の手順。 今回はdeinっというディレクトリを作成した。 ファイル名はinit_dein.shとする。

mkdir ~/.vim/dein
cd ~/.vim/dein
alias.a=add
alias.cm=commit
alias.cma=commit --amend
alias.st=status
alias.ss=status -s
alias.sh=show
alias.fe=fetch
alias.me=merge
alias.p=push
alias.br=branch