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
from __future__ import unicode_literals | |
import sys | |
import statistics | |
from prompt_toolkit import prompt, AbortAction | |
from prompt_toolkit.history import InMemoryHistory | |
from prompt_toolkit.contrib.completers import WordCompleter | |
import meetup.api | |
def get_names(): |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
commit e951eec402172028c7dfa4354f5664af2eb73203 | |
Author: Nick Timkovich <[email protected]> | |
Date: Fri Aug 4 12:33:29 2017 -0500 | |
Use specified phrases in lieu of 'Used' for limit summary | |
diff --git a/horizon/templates/horizon/common/_limit_summary.html b/horizon/templates/horizon/common/_limit_summary.html | |
index b58ba8b4c..251d98b6b 100644 | |
--- a/horizon/templates/horizon/common/_limit_summary.html | |
+++ b/horizon/templates/horizon/common/_limit_summary.html |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
from __future__ import print_function, unicode_literals | |
import os | |
import codecs | |
import glob | |
import logging | |
import stat | |
CP_MODERN = True | |
try: | |
import configparser |
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
import cmd | |
import textwrap | |
from collections import Counter | |
dungeon = { | |
(2, 1): 'hat', | |
(2, 2): 'goblin', | |
(2, 4): 'machete', | |
} | |
no_opponent = "The Goblin isn't available" |
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
# maybe they'll be used, one day... | |
class ArrayAutoAllocator(object): | |
def __init__(self, n_columns, fill_val=-1, chunk_size=PREALLOC_ROWS, dtype=None): | |
self.n_columns = n_columns + 1 # for the index | |
self.fill_val = fill_val | |
self.chunk_size = chunk_size | |
self.dtype = dtype | |
self.chunks = {} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.