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
#!/bin/bash | |
# USAGE: GETip -container- Example: | |
# GETip 9837705e48ae | |
# will return 172.17.0.2 | |
docker inspect $1 | jq -r .[0].NetworkSettings.IPAddress |
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
#!/bin/bash | |
page="$(wget -O - $1)" | |
today=`date +%Y-%m-%d.%H:%M:%S` | |
new=$today".html" | |
echo "$page" >>$new | |
echo "$page" |
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
{"snippets":[ | |
{ "name" : "Add Snippet", "code" :[ | |
"!cp /home/jack/.local/share/jupyter/nbextensions/snippets/snippets.json snippets-temp.json", | |
"name = \" <place name here>\" ", | |
"codes =\"\"\" ", | |
"<place code here> ", | |
"\"\"\" ", | |
"count = 0 ", | |
"for line in codes.split('\\n'): ", | |
" if len(line) > 0: ", |
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
# EDITOR.py | |
print (""" | |
for usage: | |
import EDITOR | |
EDITOR.Help() | |
""") | |
""" | |
EDITOR.View() | |
An input window will open. | |
This prints 100 lines, you provide the starting point |
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 warnings | |
warnings.filterwarnings('ignore', message='numpy.dtype size changed') | |
from nltk.corpus import stopwords | |
from nltk.tokenize import word_tokenize, sent_tokenize | |
from nltk.stem.snowball import SnowballStemmer | |
import nltk | |
text = """ | |
as machines grow with artifificial intelligence abilities, and the fact that there \ |
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
#!/user/local/bin/python | |
# Enter a number or a phrase | |
from itertools import permutations | |
Xset = set() | |
SEARCH = raw_input("Search Phrase: ") | |
SEARCH = SEARCH.split(" ") | |
searchs = list(SEARCH) | |
print searchs | |
print "------------------------------------" | |
perm = permutations(searchs) |
NewerOlder