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
| // 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
| #!/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
| 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 | |
| # 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
| /* | |
| 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
| set input to text returned of (display dialog "How many minutes should I play music for?" default answer "90") | |
| delay input * 60 | |
| --- fade volume | |
| tell application "iTunes" | |
| set currentvolume to the sound volume | |
| repeat with i from currentvolume to 0 by -2 | |
| set the sound volume to i | |
| delay 0.5 | |
| end repeat |
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 | |
| ############################################################### | |
| ## ChangeIP.com bash update script | |
| ############################################################### | |
| ## Written 3/18/09 by Tom Rinker, released to the Public Domain | |
| ## Re-write 09/15/2017 by Michael Bierman | |
| ## I replaced wget with curl so it can work on all macs. | |
| ############################################################### | |
| ## This is a simple bash script to preform a dDNS update with |
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
| tell application "Safari" | |
| activate | |
| tell window 1 | |
| set current tab to (make new tab with properties {URL:"https://voice.google.com/voicemail"}) | |
| delay 2 | |
| repeat with n from 0 to 99 | |
| repeat with n from 0 to 10 | |
| tell application "System Events" |
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
| on run {input, parameters} | |
| tell application "/Applications/Evernote.app" to run | |
| repeat with this_item in the input | |
| set the item_info to info for this_item | |
| tell application id "com.evernote.evernote" | |
| activate | |
| create note from file this_item | |
| end tell |