This script only works for older versions of Spotify for Linux.
An actively developed admute script for Spotify on Linux can be found here: https://github.com/SecUpwN/Spotify-AdKiller
| #!/bin/sh | |
| ### Floating Clock ###################################################### | |
| # Created by Scott Garrett https://github.com/Wintervenom # | |
| # Found via https://bbs.archlinux.org/viewtopic.php?pid=557778#p557778 # | |
| # Maintained By Kevin Gravier <[email protected]> # | |
| ######################################################################### | |
| cols=`tput cols` |
This script only works for older versions of Spotify for Linux.
An actively developed admute script for Spotify on Linux can be found here: https://github.com/SecUpwN/Spotify-AdKiller
Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist.
Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).
Generate the list yourself:
$ cd /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS*.sdk/System/Library/Frameworks/UIKit.framework/Headers
$ grep UI_APPEARANCE_SELECTOR ./* | \
sed 's/NS_AVAILABLE_IOS(.*)//g' | \
sed 's/NS_DEPRECATED_IOS(.*)//g' | \
sed 's/API_AVAILABLE(.*)//g' | \
sed 's/API_UNAVAILABLE(.*)//g' | \
sed 's/UI_APPEARANCE_SELECTOR//g' | \
| #!/bin/bash | |
| #Linux Spotify Ad Mute v2 | |
| #Put this script in the directory the "spotify" binary is in (e.g. /usr/share/spotify). | |
| #To open Spotify, run it instead of the "spotify" binary. | |
| #System sound will be muted as soon as an ad plays | |
| #Find updated versions at: http://pcworldsoftware.kilu.net/files/link_spotify-admute.php and/or https://gist.github.com/pcworld | |
| #On Debian, you need the package "pulseaudio-utils" for the command line util "pactl" which used in this script | |
| # | |
| #Update: For newer 0.8.x versions (x>4; such as 0.8.8), use this script: https://gist.github.com/pcworld/3198763/#comment-813440 |
| MAC OS X 10.8.3 | |
| $ cd /Applications/Google\ Chrome.app/Contents/MacOS | |
| $ mv Google\ Chrome Chrome | |
| Copy the following 2 lines: | |
| #!/bin/sh | |
| /Applications/Google\ Chrome.app/Contents/MacOS/Chrome --use-spdy=off --use-system-ssl |
| # | |
| # Working with branches | |
| # | |
| # Get the current branch name (not so useful in itself, but used in | |
| # other aliases) | |
| branch-name = "!git rev-parse --abbrev-ref HEAD" | |
| # Push the current branch to the remote "origin", and set it to track | |
| # the upstream branch | |
| publish = "!git push -u origin $(git branch-name)" |
If you use git on the command-line, you'll eventually find yourself wanting aliases for your most commonly-used commands. It's incredibly useful to be able to explore your repos with only a few keystrokes that eventually get hardcoded into muscle memory.
Some people don't add aliases because they don't want to have to adjust to not having them on a remote server. Personally, I find that having aliases doesn't mean I that forget the underlying commands, and aliases provide such a massive improvement to my workflow that it would be crazy not to have them.
The simplest way to add an alias for a specific git command is to use a standard bash alias.
# .bashrc| import subprocess | |
| import smtplib | |
| import socket | |
| from email.mime.text import MIMEText | |
| import datetime | |
| # Change to your own account information | |
| to = '[email protected]' | |
| gmail_user = '[email protected]' | |
| gmail_password = 'yourpassword' | |
| smtpserver = smtplib.SMTP('smtp.gmail.com', 587) |