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 will list ALL branches and give you the chance to choose the ones being deleted | |
" Be sure to remove branch names from the file that are important: | |
" master, develop, staging, current branches, etc. | |
" | |
git branch >/tmp/merged-branches && vi /tmp/merged-branches && xargs git branch -D </tmp/merged-branches |
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
defmodule BracketPush do | |
@doc """ | |
Checks that all the brackets and braces in the string are matched correctly, and nested correctly | |
""" | |
@spec check_brackets(String.t) :: boolean | |
def check_brackets(str) do | |
end | |
end |
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
-- modified adjacency list | |
-- 162ms for 30,000 records in a tree | |
create table topology ( | |
id serial primary key, | |
parent_id integer, | |
second_parent_id integer, | |
name varchar | |
); | |
create index on topology (id); |
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
Show hidden characters
// Packages | |
// | |
// BetterCoffeeScript | |
// BlockCursorEverywhere | |
// BracketHighlighter | |
// Emmet | |
// MarkdownPreview | |
// SCSS | |
// SidebarEnhancements | |
// SolarizedColorScheme |