This file contains 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
journey | platform | category_id | min_build_no | variant | fieldset | |
---|---|---|---|---|---|---|
sell | ios | 1234 | 12 | default | {"screens": [...]} | |
listing_detail | ios | 1234 | 48 | default | {"screens": [...]} | |
listing_detail | ios | 1234 | 48 | truncate_desc_exp_2 | {"screens": [...]} |
This file contains 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
For the stock cable, the cable colours are from left to right: green, yellow white red black. | |
Green is ground (pin 4) | |
Yellow is 5V (pin 2) | |
White is reset (pin 1) (?) | |
Red is data (pin 3) | |
Black is clock (pin 5) |
This file contains 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
if !has('nvim') | |
set nocompatible | |
endif | |
set hidden | |
syntax on | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#rc() |
This file contains 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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
This file contains 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 -g prefix C-x | |
unbind-key C-b | |
bind-key C-x send-prefix | |
bind a next-window | |
bind % split-window -h -c "#{pane_current_path}" | |
bind '"' split-window -c "#{pane_current_path}" | |
bind c new-window -c "$HOME" |
This file contains 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
require 'nokogiri' | |
require 'httparty' | |
all_bus_stops = [] | |
raw_doc = HTTParty.post('http://www.transitlink.com.sg/eservice/eguide/bscode_idx.php', :body => {"bs_code" => "01012"}) | |
doc = Nokogiri::HTML(raw_doc) | |
# we get all of the bus stops first |
This file contains 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
require 'json' | |
require 'optparse' | |
require 'net/http' | |
require 'net/https' | |
def parse_options(argv) | |
####################################### | |
# Please change the following as needed | |
####################################### |
This file contains 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 -g prefix C-x | |
unbind-key C-b | |
bind-key C-x send-prefix | |
bind a next-window | |
bind % split-window -h -c "#{pane_current_path}" | |
bind '"' split-window -c "#{pane_current_path}" | |
bind c new-window -c "$HOME" |
This file contains 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 -xg fish_color_user d75fff | |
set -xg fish_color_host d78700 | |
set -xg fish_color_git_added 00ff00 | |
set -xg fish_color_git_clean 00ff00 | |
set -xg fish_color_git_copied ff00ff | |
set -xg fish_color_git_deleted ff5f00 | |
set -xg fish_color_git_dirty ff5f00 | |
set -xg fish_color_git_modified 00afff | |
set -xg fish_color_git_renamed ff00ff |
This file contains 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
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6, | |
p, | |
blockquote { | |
margin: 0; | |
padding: 0; |
NewerOlder