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
(ql:quickload "drakma") | |
(defun x (y) | |
(dotimes (n y) | |
(setq res | |
(drakma:http-request "https://mangabank.org/watch/?tour=/vol/")) | |
(setq title_tag (ppcre:scan-to-strings "(?<=title\\>).*?(?=\\<)" res)) | |
(if (setq author2 (ppcre:scan-to-strings "(?<=\\[).*?(?=\\])" title_tag)) | |
(setq author author2) | |
(setq author "?")) |
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
function love.conf(t) | |
t.window.width = 23 * 56 | |
t.window.height = 23 * 31 | |
end |
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
function love.conf(t) | |
t.window.width = 12 * 105 | |
t.window.height = 12 * 57 | |
end |
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
/*go get github.com/mattn/go-sqlite3 | |
/*go get github.com/PuerkitoBio/goquery | |
/*/ | |
package main | |
import ( | |
"fmt" | |
"io" | |
"database/sql" | |
"io/ioutil" |
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.
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
import matplotlib.pyplot as plt | |
import matplotlib.dates as mdates | |
import pandas as pd | |
plt.style.use('ggplot') | |
#mhlw1 = pd.read_csv("https://www.mhlw.go.jp/content/pcr_positive_daily.csv", parse_dates=['日付']) | |
#mhlw2 = pd.read_csv("https://www.mhlw.go.jp/content/death_total.csv", parse_dates=['日付']) | |
#!wget https://www.mhlw.go.jp/content/death_total.csv |