I hereby claim:
- I am hfreire on github.
- I am hfreire (https://keybase.io/hfreire) on keybase.
- I have a public key ASD91X_VarQXA8-IS0qsaLzI6pLM8ao2kbWpwZn4eCNPpgo
To claim this, I am signing this object:
GIT_AUTHOR_DATE=$(date -v '-12H' '+%a %h %d %H:%M:%S %Y %z') \ | |
GIT_COMMITTER_DATE=$(date -v '-12H' '+%a %h %d %H:%M:%S %Y %z') \ | |
git commit -am "feat: better late than ever" |
curl -O https://raw.githubusercontent.com/jpoliv/wakeonlan/master/wakeonlan | |
perl wakeonlan 24:5E:BE:00:00:00 |
const BASE_URL = 'https://go.lime-go.com' | |
const ACCOUNT_ID = process.env.LIMEGO_ACCOUNT_ID | |
const REQUEST_COOKIE = process.env.LIMEGO_REQUEST_COOKIE | |
const REQUEST_VERIFICATION_TOKEN = process.env.LIMEGO_REQUEST_VERIFICATION_TOKEN | |
const REQUEST_SENDER_ID = process.env.LIMEGO_REQUEST_SENDER_ID | |
const _ = require('lodash') | |
const Logger = require('modern-logger') |
I hereby claim:
To claim this, I am signing this object:
# Load test Aftonbladet's website with HTTP GET requests and show error report | |
echo "GET https://www.aftonbladet.se" | vegeta attack -duration=60s | tee results.bin | vegeta report |
# Install latest bash version using macports | |
sudo port install bash | |
# Add macports bash as an available shell interpreter | |
echo /opt/local/bin/bash >> /etc/shells | |
# Set macports bash as the default shell interpreter | |
chsh -s /opt/local/bin/bash | |
# Open a new terminal window |
# create a vault | |
aws glacier create-vault --account-id - --vault-name my-vault-name | |
# check that the vault was created successfully | |
aws glacier describe-vault --account-id - --vault-name my-vault-name | |
# upload a file to the vault | |
aws glacier upload-archive --vault-name my-vault-name --account-id - --archive-description "my-archive-description" --body my-text-file.txt | |
# request an inventory of the vault |
#!/bin/sh | |
KODI_HOSTNAME=$1 | |
HLS_URL=$2 | |
curl -X \ | |
-H "Content-Type: text/parameters" \ | |
-d "Content-Location: $HLS_URL" \ | |
"http://$KODI_HOSTNAME:36667/play" -v |
#!/bin/sh | |
SOC_USB=/sys/devices/platform/soc/20980000.usb | |
if [ ! -d $SOC_USB ]; | |
then | |
SOC_USB=/sys/devices/platform/soc/3f980000.usb # Raspberry Pi 3 | |
fi | |
BUSPOWER=$SOC_USB/buspower |
/* | |
* Copyright 2006 Sun Microsystems, Inc. All Rights Reserved. | |
* | |
* Redistribution and use in source and binary forms, with or without | |
* modification, are permitted provided that the following conditions | |
* are met: | |
* | |
* - Redistributions of source code must retain the above copyright | |
* notice, this list of conditions and the following disclaimer. | |
* |