Skip to content

Instantly share code, notes, and snippets.

// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
@talon55
talon55 / bfs.py
Created June 5, 2018 10:02
A breadth-first search implementation in Python 3 based on sample code in https://medium.com/basecs/breaking-down-breadth-first-search-cebe696709d9. Sample output: https://imgur.com/a/ZdRlasW
#!/usr/bin/env python3
from ete3 import Tree
from random import randint
def level_order_search(root_node, to_find = None):
if root_node is None:
return
queue = []
@talon55
talon55 / gist:c55060d72301b0a9949d
Created March 24, 2016 00:15
Docker Env Alias
docker_env='/Applications/Docker/Docker\ Quickstart\ Terminal.app/Contents/Resources/Scripts/start.sh'