- Who owns the Future - Jaron Lanier
- Capital in the Twenty-First Century - Thomas Piketty
- How we got to now, 6 inventions - S. Johnson
- Danubia - Simon Winder
- Stragic Storytelling - Dane McKinsey
- The Dazzle of the Day - Molly Glass
- The Shepards Life - James Rebanks
- Incognito - David Eagleman
- [A General Theory of Love](http://www.amazon.com/General-Theory-Love-Thomas-Lewis/dp/0375709223
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Daenerys Stormborn of the House Targaryen, the First of Her Name, the Unburnt, Queen of Meereen, Queen of the Andals and the Rhoynar and the First Men, Khaleesi of the Great Grass Sea, Breaker of Chains, and Mother of Dragons. |
$ wget -e robots=off -r -np 'http://example.com/folder/'
- -e robots=off causes it to ignore robots.txt for that domain
- -r makes it recursive
- -np = no parents, so it doesn't follow links up to the parent folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env node | |
| console.log('yay gist') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function CountEmail() { | |
| var starredEmails = GmailApp.search('is:starred'); | |
| var newunreadEmails = GmailApp.search('is:unread label:inbox'); | |
| var urgentEmails = GmailApp.search('label:urgent'); | |
| var waitingEmails = GmailApp.search('label:waiting-for'); | |
| var chaseEmails = GmailApp.search('label:chase'); | |
| var draftEmails = GmailApp.search('in:draft'); | |
| var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Sheet1"); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "privacyStatement": "https://example.org/privacy.html", | |
| "countriesDataHeld": ["IE", "LU"], | |
| "portability": { | |
| "description": "You can download your raw account data", | |
| "url": "https://example.org/give-me-my-data.html" | |
| }, | |
| "deletion": { | |
| "description": "To delete your data, you must contact our support team", | |
| "url": "mailto:[email protected]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # These functions expect CLOUD_PLATFORM to be bound to one of the values below. | |
| # Read in if this is a specific cloud. | |
| # cloud_platform options: | |
| # AWS | |
| # AZURE | |
| # GCE | |
| # ORACLE |
OlderNewer