This file contains hidden or 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 java.util | |
| import java.util.concurrent.ThreadLocalRandom | |
| // https://vtm.zive.cz/vtm/aspirin-nesnizuje-riziko-mrtvice-ale-naopak-zvysuje-riziko-krvaceni-do-mozku-zjistili-australsti-vedci/sc-869-a-223426/default.aspx?artcomments=1 | |
| object MonteCarlo { | |
| @main | |
| def main(): Any = { | |
| println("start") |
This file contains hidden or 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
| $ http GET https://onemocneni-aktualne.mzcr.cz/api/v2/covid-19/osoby.csv | grep '2020-0[1-5]' | wc -l | |
| 8990 | |
| satai@cerritos ~ | |
| $ http GET https://onemocneni-aktualne.mzcr.cz/api/v2/covid-19/osoby.csv | grep '2020-0[1-5]' | grep M | grep ',[7-9][0-9],' | wc -l | |
| 551 | |
| satai@cerritos ~ | |
| $ http GET https://onemocneni-aktualne.mzcr.cz/api/v2/covid-19/osoby.csv | grep '2020-09' | wc -l | |
| 42639 | |
| satai@cerritos ~ | |
| $ http GET https://onemocneni-aktualne.mzcr.cz/api/v2/covid-19/osoby.csv | grep '2020-09' | grep M | grep ',[7-9][0-9],' | wc -l |
This file contains hidden or 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
| main :: IO () | |
| main = print "I'm here" |
This file contains hidden or 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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
This file contains hidden or 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
| function man2kindle | |
| cd /tmp ; and man $argv[1] | man2html > $argv[1].html ; and kindlegen $argv[1].html ; and mailsend -smtp SMTP_SERVER -f [email protected] -name "YOUR NAME" -auth -user NAME -pass "PASS" -to [email protected] -sub $argv[1] -attach $argv[1].mobi ; and rm $argv[1].html $argv[1].mobi ; and cd - | |
| end |
This file contains hidden or 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
| #!/usr/bin/env python | |
| import time | |
| from pyquery import PyQuery as pq | |
| while True: | |
| def to_float(text): | |
| return float(text.text.replace(',', '.')) | |
| doc = pq(url='http://www.volby.cz/pls/prez2013/pe2?xjazyk=CZ') | |