This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "order": [ | |
| { | |
| "orderno": 1001, | |
| "custid": "C41", | |
| "order_date": "2017-04-29", | |
| "ship_date": "2017-05-03", | |
| "items": [ | |
| { | |
| "itemno": 347, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "customer": [ | |
| { | |
| "custid": "C13", | |
| "name": "T. Cruise", | |
| "address": { | |
| "street": "201 Main St.", | |
| "city": "St. Louis, MO", | |
| "zipcode": "63101" | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "customer": [ | |
| { | |
| "custid": "C13", | |
| "name": "T. Cruise", | |
| "address": { | |
| "street": "201 Main St.", | |
| "city": "St. Louis, MO", | |
| "zipcode": "63101" | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "content": [ | |
| { | |
| "Region": "West", | |
| "Country": "U.S.A." | |
| }, | |
| { | |
| "Region": "South West", | |
| "Country": "U.S.A." | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- Actions --- | |
| $Copy <M-C> | |
| $Cut <M-X> <S-Del> | |
| $Delete <Del> <BS> <M-BS> | |
| $LRU | |
| $Paste <M-V> | |
| $Redo <M-S-Z> <A-S-BS> | |
| $SearchWeb <A-S-G> | |
| $SelectAll <M-A> | |
| $Undo <M-Z> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set typelinkhints | |
| let searchlimit = 40 | |
| let scrollstep = 70 | |
| let fullpagescrollpercent = 100 | |
| let locale = "fr" | |
| let mapleader = "," | |
| let hintcharacters = "qwertyuiasdfghjklzxcvbnm" | |
| let vimport=8001 | |
| map <Leader>vr :source ~/.cvimrc<CR> | |
| map <Leader>h :history<Space> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # rvm gemset use global | |
| # gem install irbtools | |
| # gem install terminal-notifier | |
| # | |
| require 'irbtools/configure' | |
| # | |
| # Irbtools.welcome_message= | |
| # | |
| # fancy_irb options | |
| default_options = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ABQuery | |
| * | |
| * Copyright 2003 Brendan Cully <brendan@kublai.com> | |
| * | |
| * This program is free software; you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation; either version 2 of the License, or | |
| * (at your option) any later version. | |
| * | |
| * This program is distributed in the hope that it will be useful, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set nocompatible | |
| "set rtp+=~/.vim/ " needed under fenêtres(tm). | |
| " | |
| " | |
| call pathogen#runtime_append_all_bundles() | |
| call pathogen#helptags() | |
| " | |
| filetype on | |
| syntax on | |
| colorscheme desert |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # wirble | |
| begin | |
| require 'wirble' | |
| Wirble.init | |
| Wirble.colorize | |
| rescue LoadError => err | |
| warn "Couldn't load Wirble: #{err}" | |
| puts "try: 'gem install -r wirble'" | |
| # | |
| require 'irb/completion' |