Required
$ vagrant plugin install vagrant-vbguest
$ vagrant vbguest| call plug#begin() | |
| Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries' } | |
| " ファイルをtree表示してくれる | |
| Plug 'scrooloose/nerdtree' | |
| " Rails向けのコマンドを提供する | |
| Plug 'tpope/vim-rails' | |
| " Ruby向けにendを自動挿入してくれる | |
| Plug 'tpope/vim-endwise' | |
| " コメントON/OFFを手軽に実行 | |
| Plug 'tomtom/tcomment_vim' |
| describe 'workspace' do | |
| before do | |
| puts 'before: outer before called.' | |
| end | |
| after do | |
| puts 'after: outer after called' | |
| end | |
| let!(:outer_let) { puts "outer let variable defined" } |
| puts 'hey' |
| $('#cmd').click(function(){ | |
| $('#content').append('<br>a datepicker <input class="datepicker_recurring_start"/>'); | |
| }); | |
| $('body').on('focus',".datepicker_recurring_start", function(){ | |
| $(this).datepicker(); | |
| }); |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| """ | |
| Replace all spaces in a string with %20 | |
| """ | |
| def replace_spaces(st): | |
| char_list = [] |
| https://semaphoreci.com/community/tutorials/getting-started-with-rspec | |
| https://docs.python.org/3/library/unittest.html | |
| https://github.com/minsoo91/hash_table |
| Lecture5 | |
| - Create a link for navbar | |
| link_to(a_tag_title, controllername_methodname_path) | |
| - Generate a controller called Page | |
| action: home about_us contact_us products newsletter blog calendar articles login |
| Ruby on Rails | |
| "full stack" web server | |
| means it does everything like accepting request, processing requests, accessing database, managing files etc... | |
| What Do I have to do.... |