I hereby claim:
- I am leblanck on github.
- I am kyleblanc (https://keybase.io/kyleblanc) on keybase.
- I have a public key ASC7810eDnemx6lI_-VLZ-pqAMNafrV2hD-vLxdI1OLFKAo
To claim this, I am signing this object:
| s = SpreadsheetApp.getActiveSheet(); | |
| function onOpen() { | |
| // Creates Menu Bar Item in Google Sheets | |
| var ui = SpreadsheetApp.getUi(); | |
| ui.createMenu('Book Menu') | |
| .addItem('Get Book Details', 'getBookDetails') | |
| .addToUi(); | |
| } |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| uuencode /tmp/fileIn.txt fileOut.txt | mail -s "Sending txt File" [email protected] |
| #!/bin/bash | |
| #You should set an app specific passwd for this email service account | |
| curl --url 'smtps://smtp.gmail.com:465' --ssl-reqd \ | |
| --mail-from '[email protected]' \ | |
| --mail-rcpt '[email protected]' \ | |
| --user '[email protected]:YourPassword' \ | |
| -T <(echo -e 'From: [email protected]\nTo: [email protected]\nSubject: Curl Test\n\nHello') |
| sudo sysdiagnose -f ~/Desktop/ |
| sudo sntp -sS time.apple.com |
| profiles -C -v | grep attribute | awk '/name/{$1=$2=$3=""; print $0}' | sed 's/^ *//' |
| function bubbleSort(arr) { | |
| let swapped | |
| do { | |
| swapped = false | |
| for (let i = 0; i < arr.length; i++) { | |
| if (arr[i] && arr[i + 1] && arr[i] > arr[i + 1]) { | |
| const temp arr[i] | |
| arr[i] = arr[i + 1] | |
| arr[i + 1] = temp | |
| swapped = true |