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
""" | |
Kaizen Harvester - https://github.com/loklak/loklak_server/blob/development/src/org/loklak/harvester/strategy/KaizenHarvester.java | |
loklak server project - https://github.com/loklak/loklak_server | |
""" | |
import random | |
from matplotlib import pyplot | |
m = [] |
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 os | |
import requests | |
link = 'http://api.wordnik.com/v4/words.json/randomWords?hasDictionaryDef=tru' | |
'e&minCorpusCount=0&minLength=5&maxLength=15&limit=1&api_key=' | |
+ os.environ.get('WORDNIK_KEY') | |
loklak_host = 'http://35.188.118.126' | |
while True: |
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
""" | |
This program plots output of top commands dumped in different files | |
""" | |
import sys | |
import numpy | |
from matplotlib import pyplot | |
def clean(line): |
NewerOlder