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
| /* | |
| https://www.google.com/contacts/ | |
| https://mail.google.com/ | |
| */ | |
| .PI img , .c3q9jc img, .xvtNjc img { | |
| -webkit-border-radius: 200px; | |
| -moz-border-radius: 200px; | |
| border-radius: 200px; | |
| -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.75); |
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 bash | |
| # Use two URLS from the "View" link on the verions page of a GIST | |
| USER=mbierman | |
| PASS= | |
| if [[ ! -z $USER && ! -z $PASS && ! -z $1 && ! -z $2 ]]; then | |
| ID1=$(echo $1 | cut -d "/" -f5) |
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
| Most Exciting | |
| - Work with the product team to develop a new feature based on feedback from customers | |
| - Analyze thousands of support tickets to spot trends the product team can use | |
| - Scheduling shifts and collaborating as part of a growing cohesive support team | |
| - Manage a support team | |
| - Find and recruit teammates for the support team | |
| Runners up! | |
| - Make Zap templates to help showcase the thousands of ways customers can use Zapier | |
| - Work with people to figure out if Zapier can solve a particular workflow or integration challenge they have |
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 bash | |
| export DISPLAY=:0:0 | |
| security find-generic-password -ga "$1" | grep "password:" |
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
| // sample config file for HTML tidy | |
| indent: auto | |
| indent-spaces: 4 | |
| wrap: 80 | |
| markup: yes | |
| output-xml: no | |
| input-xml: no | |
| show-warnings: yes | |
| numeric-entities: yes | |
| quote-marks: yes |
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
| set asrc to (choose from list {"Acoustic", "Bass Booster", "Classical", "Deep", "Flat", "Latin", "Lounge", "Piano", "Pop", "R&B", "Rock", "Small Speakers", "Spoken Word", "Vocal Booster"} with title "Equalizer" default items {"Flat"}) as text | |
| if result is "false" then return | |
| tell application "iTunes" | |
| set the current EQ preset to EQ preset asrc | |
| end tell |
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
| /* Amazon.com URL */ | |
| #variant_adsLazyLoad, div#related_ads { | |
| background: slategrey; | |
| border: red 1px dashed; | |
| display:none; | |
| } | |
| #variant_adsLazyLoad > * { | |
| color: white; |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>local.com.getnpr.atc</string> | |
| <key>EnvironmentVariables</key> | |
| <dict> | |
| <key>PATH</key> | |
| <string>/Users/bierman/Documents/Applications/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/git/bin</string> |
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
| find . -type f -size -10k | grep -vi -e '.DS_Store' | grep -vi 'Beatles*' | cut -f2 -d '/' | sort -u |
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 upColor() { | |
| var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
| var sheet = ss.getSheetByName('Sheet1'); // Change to your own | |
| var rows = sheet.getRange('A1:A'); | |
| var numRows = rows.getNumRows(); | |
| var values = rows.getValues(); |