 => {
for (const d of document.querySelectorAll('div.FavoritesPostDelete')) {
d.click()
}
}, 100)
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
| { | |
| "modifiers": [ | |
| { | |
| "id": 895135597, | |
| "item_id": 25312951, | |
| "name": "Choice of Burger (Father's Day Box)", | |
| "required": false, | |
| "min_selections": 4, | |
| "max_selections": 4, | |
| "availability": null, |
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
| # 2016 CTO Summit | |
| aws contact -> product manager -> ask re price point | |
| heroku p+ dynos are isolated | |
| ## Client tech partnering with SVB | |
| stripe atlas ** bank integration api ** bill.com | |
| ## LaunchDarkly |
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
| </Development/work/thanx-ios/ | |
| ▸ Frameworks/ | |
| ▸ Pods/ | |
| ▸ Thanx Tests/ | |
| ▾ Thanx/ | |
| ▾ Assets/ | |
| ▸ Colors/ | |
| ▸ Fonts/ | |
| ▸ Gifs/ | |
| ▸ Images.xcassets/ |
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 | |
| # | |
| # Sample RSA key generation / encryption / decryption | |
| # | |
| # Flow: | |
| # Generates certificates: | |
| # public.pem / public.der | |
| # private.pem / private.der | |
| # public_private.p12 |
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
| How to setup Heroku Hostname SSL with GoDaddy SSL Certificate and Zerigo DNS | |
| Heroku recently added an exciting new 'Hostname SSL' option. This option offers the broad compatibility of IP-based SSL, but at 1/5 the price ($20 / month at the time of this writing). | |
| The following tutorial explains how to use Heroku's new 'Hostname SSL' option on your Heroku project. Before we begin, let's list what we're using here: | |
| * Heroku Hostname SSL | |
| * GoDaddy Standard SSL Certificate | |
| * Zerigo DNS |
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 | |
| while [ 1 ]; do | |
| response=$(curl -s -o /dev/null -w "%{http_code}" https://github.com/drn) | |
| if [ $response -eq 404 ]; then | |
| say 'Git hub username is available' | |
| message='Github username is available' | |
| terminal-notifier -message $message | |
| exit 0 | |
| fi |
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
| class SignalInterrupt < Exception; end | |
| def run | |
| trap("SIGINT") { raise SignalInterrupt } | |
| loop do | |
| put "Operation" | |
| sleep(60) | |
| end | |
| rescue SignalInterrupt | |
| puts "SignalInterrupt raised" |
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
| require 'benchmark' | |
| puts Benchmark.measure { | |
| (1..1_000_000).each do |i| | |
| (1..100).each do |j| | |
| 1+1 | |
| end | |
| end | |
| } |
NewerOlder