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
| { | |
| "resp":{ | |
| "status":true, | |
| "version":"2.0", | |
| "master":{ | |
| "styles":[ | |
| "Techno", | |
| "IDM", | |
| "Ambient" | |
| ], |
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
| { | |
| "resp":{ | |
| "status":true, | |
| "version":"2.0", | |
| "label":{ | |
| "images":[ | |
| { | |
| "width":600, | |
| "uri150":"/image/L-150-5-1136662517.jpeg", | |
| "type":"primary", |
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
| { | |
| "resp":{ | |
| "status":true, | |
| "search":{ | |
| "searchresults":{ | |
| "numResults":"313", | |
| "start":"1", | |
| "end":"20", | |
| "results":[ | |
| { |
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 " be iMproved | |
| filetype off " required! | |
| set rtp+=~/.vim/bundle/vundle/ | |
| call vundle#rc() | |
| syntax on | |
| set expandtab | |
| set shiftwidth=4 |
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 guifont=Inconsolata:h20 | |
| set guioptions-=T | |
| colorscheme solarized | |
| set columns=105 | |
| set lines=49 | |
| "set fuoptions=maxvert,maxhorz | |
| "set transparency=5 |
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
| [user] | |
| email = wesrog@discogs.com | |
| name = Wes Rogers | |
| [alias] | |
| st = status | |
| ci = commit | |
| br = branch | |
| co = checkout | |
| df = diff |
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
| call pathogen#infect('~/src/vim/bundle') | |
| syntax on | |
| filetype plugin indent on | |
| set expandtab | |
| set shiftwidth=4 | |
| set tabstop=4 | |
| set smarttab | |
| set ai "Auto indent |
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
| call pathogen#infect('~/src/vim/bundle') | |
| syntax on | |
| filetype plugin indent on | |
| set expandtab | |
| set shiftwidth=4 | |
| set tabstop=4 | |
| set smarttab | |
| set ai "Auto indent |
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
| filetype off | |
| call pathogen#infect('~/src/vim/bundle') | |
| call pathogen#helptags() | |
| filetype plugin indent on | |
| syntax on | |
| set expandtab | |
| set shiftwidth=4 | |
| set tabstop=4 |
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
| # This | |
| def fixture_create_user(*args, **kwargs): | |
| username = kwargs.pop('username', 'test') | |
| seller = kwargs.pop('seller', False) | |
| buyer = kwargs.pop('buyer', False) | |
| voter = kwargs.pop('voter', False) | |
| curr_id = kwargs.pop('curr_id', 1) | |
| banned = kwargs.pop('banned', 'N') | |
| account_closed = kwargs.pop('account_closed', 'N') | |
| auto_activate = kwargs.pop('auto_activate', True) |