小さいものは、大きい物にない利点がいくつもある。小さいもの同士なら簡単に独特の便利な方法で組み合わせることができる
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 numpy as np | |
import matplotlib.pyplot as plt | |
plt.rcParams['font.family'] = 'MEIRYO' | |
plt.rcParams["font.size"] = 18 | |
w, h, dpi = 1920, 1080, 144 | |
fig = plt.figure(figsize=(w / dpi, h / dpi), dpi=dpi, facecolor='white') |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCa9QgWj4uK5ypblOLZ58bwqZL+s792LcZsdJ7sxCSkrp8p7LyKVqTTnGicCgKtN/4s5hJDInM5P1Iuaws4cEzgvWMKu4XJNsuCbvfceaOfQa3+Ar81lclsUg3OuTFCW6quBPFeoCaoQ9RD9M/Ygso0YJFcpUSBJWVV82b82y33b3m3eevs/SjE/gyWtq5xUPGpcnMrqcWK+rNJE2W2vT+wANhY5UoHc22YUsDVV1RkZIQuVE8j4HpKCBKotWnv4LJc7Jk3oWhTzptRJHvz4P8slGYWehg7MiaUNEcGjWyKUxxiCjzQ8j1ZSE2RqnYcbT281t5vOzKj+i7uqgsjRBI1 pokop@DESKTOP-BMGS4AG |
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 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
# -*- coding: utf-8 -*- | |
""" | |
Spyderエディタ | |
これは一時的なスクリプトファイルです | |
""" | |
import requests,json,platform | |
json_url = "https://api.github.com/repos/gohugoio/hugo/releases/latest" | |
json_data = requests.get(json_url) |
NewerOlder