I hereby claim:
- I am evansims on github.
- I am evansims (https://keybase.io/evansims) on keybase.
- I have a public key whose fingerprint is 4F5E C6AC A591 2B02 65AC 2D7C B970 6FBE 74F6 A3EA
To claim this, I am signing this object:
/** | |
This is based on the example provided at: | |
https://developers.google.com/apps-script/samples/automations/vacation-calendar | |
The following changes were made: | |
- Uses the outOfOffice eventType to identify events to sync. It does not use a keyword search. | |
- Events use the full names of members, pulled from the Google Workspace API (AdminDirectory.) | |
- Recurring OOF events are supported. | |
- Creates "shadow events" instead of importing the actual events, to circumvent "forbidden" errors in some cases, and issues with recurring events. |
<?php | |
public function decrypt($secret, $data) | |
{ | |
$secret = hex2bin($secret); | |
$iv = base64_decode(substr($data, 0, 16), true); | |
$data = base64_decode(substr($data, 16), true); | |
$tag = substr($data, strlen($data) - 16); | |
$data = substr($data, 0, strlen($data) - 16); | |
try { |
FROM php:7.4-fpm-alpine | |
WORKDIR "/application" | |
# Install essential build tools | |
RUN apk add --no-cache \ | |
git \ | |
yarn \ | |
autoconf \ | |
g++ \ | |
make \ |
#1E1F2B,#1E1F2B,#282A3A,#FFD76D,#1E1F2B,#9A9DA7,#95E18A,#F47777 |
<?php | |
/* | |
* (c) Mark Badolato <mbadolato@gmail.com> | |
* | |
* This content is released under the {@link http://www.opensource.org/licenses/MIT MIT License.} | |
*/ | |
namespace Bado\ScoreCalculator; |
gender: { | |
nominative: { | |
neutral: 'they', | |
masculine: 'he', | |
feminine: 'she', | |
elverson: 'ey', | |
spivak: 'E', | |
humanist: 'hu', | |
peh: 'peh', | |
per: 'per', |
ffmpeg -i filename.wav -map_metadata -1 -vol 128 filename.mp3 |
I hereby claim:
To claim this, I am signing this object:
<a href="https://drive.google.com/uc?export=view&id=XXX"><img src="https://drive.google.com/uc?export=view&id=XXX" style="width: 500px; max-width: 100%; height: auto" title="Click for the larger version." /></a> |
$app->hook('slim.before.dispatch', function () use ($app) { | |
$app->render('/views/header.php'); | |
}); | |
$app->hook('slim.after.dispatch', function () use ($app) { | |
$app->render('/views/footer.php'); | |
}); |