I hereby claim:
- I am alexmcroberts on github.
- I am alexmcroberts (https://keybase.io/alexmcroberts) on keybase.
- I have a public key whose fingerprint is EC3A 7E2E 279F 98D6 A9BB D120 5C83 A8D3 04C4 DE64
To claim this, I am signing this object:
{ | |
"BTTPresetCreatorNotes" : "", | |
"BTTPresetInfoURL" : "", | |
"BTTPresetName" : "Default", | |
"BTTPresetColor" : "170.216240, 248.370000, 101.831700, 255.000000", | |
"BTTGeneralSettings" : { | |
"BTTPathSampleSize" : 100, | |
"BTTCMOnTop" : true, | |
"BTTForceForceClickPressure2F" : 700, | |
"BSTLeftHalfBlock" : true, |
{"lastUpload":"2019-02-06T20:10:41.092Z","extensionVersion":"v3.2.4"} |
#!/bin/sh | |
# | |
# This hook parses the Migrations directory and counts if there are any migrations to run. | |
# If there are no migrations, nothing will show - leaving the developer in peace :) | |
git log -m -1 --name-only --pretty="format:" &> new_migrations.log | |
COUNTER=0 | |
while read CMD; do | |
if [[ $CMD == *Migration* ]] | |
then |
$Google_Fit_Activity_Types = array( | |
"Aerobics" => 9, | |
"Awake (during sleep cycle)" => 112, | |
"Back-country skiing" => 66, | |
"Badminton" => 10, | |
"Baseball" => 11, | |
"Basketball" => 12, | |
"Biathlon" => 13, | |
"Biking" => 1, | |
"Boxing" => 20, |
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"strconv" | |
"strings" | |
"time" | |
) |
Using MongoDB in golang with mgo |
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true); | |
curl_setopt($ch, CURLOPT_CAINFO, '/Path/to/website.com.crt'); |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# | |
# This hook parses the Migrations directory and counts if there are any migrations to run. | |
# If there are no migrations, nothing will show - leaving the developer in peace :) | |
git log -m -1 --name-only --pretty="format:" &> new_migrations.log | |
COUNTER=0 | |
while read CMD; do | |
if [[ $CMD == *Migration* ]] | |
then |
public function email_test() { | |
$this->layout = 'Emails/html/default'; | |
return $this->render('Emails/html/account_verification'); | |
} |