Chapter 1
Binary search
divide array into sub parts until target is found
function binarySearch(nums, target) {
let low = 0
Chapter 1
Binary search
divide array into sub parts until target is found
function binarySearch(nums, target) {
let low = 0
# aliases | |
alias c="clear" | |
export NODE_ENV=local | |
alias dnpm='docker-compose up -d scripts && docker-compose exec scripts npm | |
run ts:build && docker-compose exec scripts npm ' | |
#export NODE_PATH=$(npm root -g) | |
# Git |
colors.sh | |
# This is the custom theme template for gitprompt.sh | |
# These are the defaults from the "Default" theme | |
# You just need to override what you want to have changed | |
function prompt_callback { | |
gp_set_window_title ${PWD} | |
} | |
override_git_prompt_colors() { | |
GIT_PROMPT_THEME_NAME="Custom" | |
# Time12a="\$(date +%H:%M)" |
{"name":"p2","settings":"{\"settings\":\"{\\n /**\\n * Better Defaults\\n **/\\n \\\"editor.copyWithSyntaxHighlighting\\\": false,\\n \\\"diffEditor.ignoreTrimWhitespace\\\": false,\\n \\\"editor.emptySelectionClipboard\\\": false,\\n \\\"workbench.editor.enablePreview\\\": false,\\n \\\"window.newWindowDimensions\\\": \\\"inherit\\\",\\n \\\"editor.multiCursorModifier\\\": \\\"ctrlCmd\\\",\\n \\\"files.trimTrailingWhitespace\\\": true,\\n \\\"diffEditor.renderSideBySide\\\": false,\\n \\\"editor.snippetSuggestions\\\": \\\"none\\\",\\n \\\"editor.detectIndentation\\\": false,\\n \\\"files.insertFinalNewline\\\": true,\\n \\\"files.trimFinalNewlines\\\": true,\\n\\n /**\\n * Hide Everything\\n */\\n //\\\"workbench.activityBar.location\\\": \\\"hidden\\\",\\n \\\"workbench.sideBar.location\\\": \\\"right\\\", //here\\n \\\"editor.minimap.enabled\\\": false,\\n \\\"editor.lineNumbers\\\": \\\"off\\\",\\n \\\"editor.guides.indentation\\\": false,\\n\\n /**\\n * Silence The Noise\\n |