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
I'm using this code: | |
await page.setViewport({height, width}); | |
// Window frame - probably OS and WM dependent. | |
height += 85; | |
https://github.com/GoogleChrome/puppeteer/issues/1183 | |
// Any tab. |
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
# for a date, returns 3 letter month and week number of the month | |
6/25/2017 -> JUN-W4 | |
7/1/2017 -> JUN-W4 | |
CONCATENATE(upper(text(A15-WEEKDAY(A15, 2)+1, "mmm")), "-W", INT((6+DAY(A15+1-WEEKDAY(A15-1)))/7)) |
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
from __future__ import division | |
from numpy.fft import rfft | |
from numpy import argmax, mean, diff, log | |
from matplotlib.mlab import find | |
from scipy.signal import blackmanharris, fftconvolve | |
from time import time | |
import sys | |
try: | |
import soundfile as sf | |
except ImportError: |
Google sheets v4 is a game changer.
Programmatically format sheet:
- Overview (2 min): https://www.youtube.com/watch?v=0rpgVE_nrIk
- Intro & data upload with python (8 min): https://www.youtube.com/watch?v=VLdrgE8iJZI
- Formating (8 min): https://www.youtube.com/watch?v=86q5TMzvRqo
Programmatically create forms:
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
<style type="text/css"> | |
/*! | |
* from: https://sharmamohit.com/css/jupyter.css | |
* why: https://sharmamohit.com/post/jupyter-notebooks-in-blog/ | |
* Twitter Bootstrap | |
* | |
*//*! normalize.css v3.0.2 | MIT License | git.io/normalize */ | |
* | |
* Font Awesome | |
* |
NewerOlder