I hereby claim:
- I am rey on github.
- I am rey (https://keybase.io/rey) on keybase.
- I have a public key ASBBVSm1XTJCWIfMUtHjEECxGxp4ftG4L44tsHqFKLgY_wo
To claim this, I am signing this object:
#!/bin/bash | |
# yq: | |
# snap install yq | |
# waybackpy: | |
# pip3 install waybackpy | |
file="${1}" | |
post_layout=$(yq --front-matter=extract '.layout' ${file}) |
#! /bin/bash | |
for file in *; do | |
cat ${file} > fileContent | |
/opt/homebrew/bin/code -w fileContent | |
newFileContent=`cat fileContent` |
# ------------------------------------------------------------------------------------------------------------------------------------------ | |
# This file is called 2018-02-02-932.md | |
# ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ | |
# --- | |
# layout: link | |
# title: | |
# link: |
Can't locate plugins/Markdown.pl in @INC (@INC contains: ./extlib ./lib | |
/etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.26.1 /usr/local/share/perl/5.26.1 /usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x8 | |
6_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base) at lib/MT.pm line 117 (#2) | |
(F) You said to do (or require, or use) a file that couldn't be found. | |
Perl looks for the file in all the locations mentioned in @INC, unless | |
the file name included the full path to the file. Perhaps you need | |
to set the PERL5LIB or PERL5OPT environment variable to say where the | |
extra library is, or maybe the script needs to add the library name | |
to @INC. Or maybe you just misspelled the name of the file. See | |
"require" in perlfunc and lib. |
> Can't locate plugins/Markdown.pl in @INC (@INC contains: ./extlib ./lib /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.26.1 /usr/local/share/perl/5.26.1 /usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base) at lib/MT.pm line 117. |
I hereby claim:
To claim this, I am signing this object:
Fitbit Sleep data<br> | |
<br> | |
```<br> | |
{<br> | |
"total time slept":"{{TotalTimeSlept}}",<br> | |
"time fell asleep":"{{FellAsleepAt}}",<br> | |
"time awoke":"{{AwokeAt}}",<br> | |
"time to fall asleep":"{{TimeToFallAsleep}}",<br> | |
"number of times restless":"{{RestlessCount}}",<br> | |
"number of times awake":"{{AwakeCount}}"<br> |
Fitbit Activity data for: {{Date}}<br> | |
<br> | |
```<br> | |
{<br> | |
"date":"{{Date}}",<br> | |
"total steps":"{{TotalSteps}}",<br> | |
"calories burned":"{{TotalCaloriesBurned}}",<br> | |
"distance traveled":"{{TotalDistanceCovered}} {{TotalDistanceCoveredUnit}}",<br> | |
"sedentary minutes":"{{SedentaryMinutes}}",<br> | |
"lightly active minutes":"{{LightlyActiveMinutes}}",<br> |
#!/bin/bash | |
# harvest.sh by Rey Dhuny | |
# | |
# About | |
# -- | |
# Use harvest.sh to generate a quick-and-dirty summary of the current month's hours used for a single project. | |
# | |
# Disclaimer | |
# -- |