Skip to content

Instantly share code, notes, and snippets.

View garigari-kun's full-sized avatar

keisuke-t garigari-kun

  • 20:58 - 12h behind
View GitHub Profile
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" }

Set up local dev environmantal

Required

  • Vagrant
  • VirtualBox
  • Run these commands before vagrant up

    $ vagrant plugin install vagrant-vbguest

    $ vagrant vbguest
    $('#cmd').click(function(){
    $('#content').append('<br>a datepicker <input class="datepicker_recurring_start"/>');
    });
    $('body').on('focus',".datepicker_recurring_start", function(){
    $(this).datepicker();
    });
    @garigari-kun
    garigari-kun / frontendDevlopmentBookmarks.md
    Created December 12, 2017 05:55 — forked from dypsilon/frontendDevlopmentBookmarks.md
    A badass list of frontend development resources I collected over time.
    """
    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....