I hereby claim:
- I am 0asa on github.
- I am 0asa (https://keybase.io/0asa) on keybase.
- I have a public key ASAI-Wl8hiPkV-7MrngtxFlDzqUGrPsoRX-qPwzdqnwpgQo
To claim this, I am signing this object:
| Day | Pulse Ox [^automatically detected] | Charge 2 [^manual trigger] | |
|---|---|---|---|
| 1 | 12 min / 165 cals / 2.27 km | 13 min / 164 cals / 1.91 km | |
| 2 | - | - | |
| 3 | 17 min / 175 cals / 2.76 km | 13 min / 154 cals / 1.93 km | |
| 4 | - | - | |
| 5 | - | - | |
| 6 | - | - | |
| 7 | 42 min / 161 cals / 4.5 km | 41 min / 328 cals / 3.68 km |
I hereby claim:
To claim this, I am signing this object:
| <html> | |
| <head> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" type="text/javascript"></script> | |
| <script> | |
| function GetRandomBackground() | |
| { | |
| var app_id = 'YOUR_APPLICATION_ID' | |
| var url = 'https://api.unsplash.com/photos/random?client_id=' + app_id; | |
| $.ajax({ | |
| url: url, |
| import time | |
| import logging | |
| class Timer: | |
| def __init__(self, timed, logger=None): | |
| self.logger = logger | |
| self.timed = timed | |
| def __enter__(self): | |
| self.start = time.perf_counter() |
| # https://ffmpeg.org/ffmpeg-filters.html#il | |
| import ffmpeg | |
| try: | |
| top = ffmpeg.input("top/%d.jpg") | |
| bot = ffmpeg.input("bottom/%d.jpg") | |
| s = ( | |
| ffmpeg | |
| .filter([top, bot], 'vstack') | |
| .filter('il', l='i', c='i') |