I hereby claim:
- I am pfeodrippe on github.
- I am pfeodrippe (https://keybase.io/pfeodrippe) on keybase.
- I have a public key ASC6zPplVGMxrgMzASGL_x6_7YzkShB5SgNgpB3Efv-tvgo
To claim this, I am signing this object:
| import time | |
| import requests # pip install requests | |
| from random import randint | |
| while True: | |
| # url = 'http://127.0.0.1:8001/uploadImg' | |
| url = 'http://bioanalyzer.cloudapp.net:81/uploadImg' | |
| init_time = time.time() | |
| folder = str(randint(0,1)) |
| import time | |
| import requests | |
| from random import randint | |
| while True: | |
| # url = 'http://127.0.0.1:8001/uploadImg' | |
| url = 'http://bioanalyzer.cloudapp.net:81/uploadImg' | |
| init_time = time.time() | |
| folder = str(randint(0,1)) |
| import SimpleHTTPServer | |
| class CORSHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): | |
| def send_head(self): | |
| """Common code for GET and HEAD commands. | |
| This sends the response code and MIME headers. | |
| Return value is either a file object (which has to be copied | |
| to the outputfile by the caller unless the command was HEAD, | |
| and must be closed by the caller under all circumstances), or |
| #!/bin/sh | |
| url="$2" | |
| # Please, set your preferred kubectl context! | |
| if [[ $url == *"deis-builder"* ]]; then | |
| app_name=$(basename $url | cut -f 1 -d '.') | |
| echo "Using app $app_name for slugbuild detection" | |
| pod_name=$(kubectl -n deis get pods --output=jsonpath='{.items[*].metadata.name}' -a | xargs -n1 | grep 'slugbuild-'$app_name) |
| Wed May 17 12:15:23 UTC 2017 |
| var chart = c3.generate({ | |
| data: { | |
| x: 'x', | |
| columns: [ | |
| ['x', '0-4', '5-9', '10-14', '15-24', '25-49', '50+'], | |
| ['homens', 343, 300, 314, 555, 610, 295], | |
| ['mulheres', 318, 305, 315, 560, 591, 344] | |
| ], | |
| type: 'bar' | |
| }, |
I hereby claim:
To claim this, I am signing this object:
Alguns recursos de TLA+ (em inglês, infelizmente, mas entre no nosso grupo do Telegram em #ALGUM_LINK para tirar dúvidas).
Practical TLA+ (link para comprar o livro) (Hillel Wayne - 2018. Bom para se iniciar nesse mundo)
Specifying Systems (open source) (Lamport - atualizado em 2020, aparentemente. Mais avançado, recomendo ler o do Hillel primeiro)
| {:deps | |
| {org.clojure/tools.analyzer.jvm {:mvn/version "1.1.0"} | |
| datascript {:mvn/version "1.0.1"}}} |
| (ns my-clerk.parser | |
| (:require | |
| [nextjournal.clerk.viewer :as clerk.viewer] | |
| [nextjournal.markdown :as md] | |
| [nextjournal.markdown.parser :as md.parser] | |
| [fr.jeremyschoffen.prose.alpha.reader.core :as reader] | |
| [fr.jeremyschoffen.prose.alpha.eval.common :as eval-common] | |
| [clojure.string :as str] | |
| [clojure.walk :as walk])) |