- Ragheb, M. (2012, March 28). Fukushima Earthquake and Tsunami Station Blackout Accident
- Nuclear Chemistry: Lessons From The Fukushima Daiichi Disaster
- Fukushima nuclear disaster — Wikipedia
- The Signal and the Noise. Nate Silver
- Gutenberg-Richter law — Wikipedia
- List of earthquakes in Japan — Wikipedia
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 re | |
import asyncio | |
import os | |
from bs4 import BeautifulSoup | |
from bs4.element import NavigableString | |
from playwright.async_api import async_playwright | |
USERNAME = "USERNAME HERE" | |
PASSWORD = "PASSWORD 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
import re | |
import asyncio | |
from playwright.async_api import async_playwright | |
USERNAME = "TYPE YOUR USERNAME HERE" | |
PASSWORD = "TYPE YOUR PASSWORD HERE" | |
HOST = "zproxy.lum-superproxy.io:9222" | |
URL = "https://www.svpino.com/" # USE YOUR URL HERE |
Number of lines in a repo:
git ls-files | xargs wc -l
Breakdown of lines in a repo by contributor:
git ls-files | while read f; do git blame -w -M -C -C --line-porcelain "$f" | grep -I '^author '; done | sort -f | uniq -ic | sort -n
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
# Customize BASH PS1 prompt to show current GIT repository and branch. | |
# by Mike Stewart - http://MediaDoneRight.com | |
# SETUP CONSTANTS | |
# Bunch-o-predefined colors. Makes reading code easier than escape sequences. | |
# I don't remember where I found this. o_O | |
# Reset | |
Color_Off="\[\033[0m\]" # Text Reset |