The Transmission torrent client has an option to set a Blocklist, which helps protect you from getting caught and having the DMCA send a letter/email.
It's as simple as downloading and installing the latest client:
| # Checkout config tool: https://zed0.co.uk/clang-format-configurator/ | |
| # Or http://cf.monofraps.net/ | |
| # https://clang.llvm.org/docs/ClangFormatStyleOptions.html | |
| # https://github.com/01org/parameter-framework/blob/master/.clang-format | |
| # Tested on: clang-format version 6.0.1 | |
| # Common settings | |
| BasedOnStyle: WebKit |
The Transmission torrent client has an option to set a Blocklist, which helps protect you from getting caught and having the DMCA send a letter/email.
It's as simple as downloading and installing the latest client:
| ## vim: syntax=fvwm: | |
| ## | |
| ## FBBar - a combined system-tray and status-bar. | |
| ## | |
| ## The statusbar is implemented as an FvwmButtons module. An fvwmperl | |
| ## module FuBarStats uses Sys::Statistics::Linux to monitor system info, | |
| ## and to keep FuBar updated with the info. | |
| DestroyModuleConfig FuBar: * | |
| *FuBar: Geometry 1366x20 |
| ######################### | |
| # .gitignore file for Xcode4 and Xcode5 Source projects | |
| # | |
| # Apple bugs, waiting for Apple to fix/respond: | |
| # | |
| # 15564624 - what does the xccheckout file in Xcode5 do? Where's the documentation? | |
| # | |
| # Version 2.6 | |
| # For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects | |
| # |
| # Template file with replacement tag: ${BODY} | |
| TEMPLATE="${SRCROOT}/ShapeDemo/Template.html" | |
| # generate and clean HTML | |
| HTML_CONTENTS=`/usr/local/bin/markdown "${INPUT_FILE_PATH}"` | |
| HTML_CONTENTS=`echo $HTML_CONTENTS | sed -e 's/[\/&]/\\\&/g'` | |
| # replace into template and write to Resources | |
| cat "$TEMPLATE" | sed "s/\${BODY}/${HTML_CONTENTS}/" > "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/${INPUT_FILE_BASE}.html" |
| # Run script to increase CFBundleVersion by 1 each time a build is archived under release or adhoc | |
| #!/bin/sh | |
| if [ "$CONFIGURATION" == Adhoc || "$CONFIGURATION" == Release ]; then | |
| buildNumber=$(/usr/libexec/PlistBuddy -c "Print CFBundleVersion" "$INFOPLIST_FILE") | |
| buildNumber=$(($buildNumber + 1)) | |
| /usr/libexec/PlistBuddy -c "Set :CFBundleVersion $buildNumber" "$INFOPLIST_FILE" | |
| fi | |
| # Run script to set CFBundleVersion to local latest git commit hash |
| {-# LANGUAGE OverloadedStrings #-} | |
| {-# LANGUAGE DeriveDataTypeable #-} | |
| import Data.Aeson | |
| import qualified Data.ByteString.Char8 as BS | |
| import qualified Data.ByteString.Lazy.Char8 as BSL | |
| import Data.ByteString.Lazy (toChunks) | |
| import Data.List | |
| import Data.Maybe | |
| import Data.Typeable (Typeable) |
| -- See article here: http://daringfireball.net/2007/07/simple_inbox_sweeper | |
| -- The following should be one long line: | |
| set _description to "All unflagged, read messages in each IMAP account | |
| inbox will be moved to the “Archive” mailbox corresponding to that | |
| account. This action is not undoable." | |
| tell application "Mail" | |
| display alert "Archive read messages from IMAP inboxes?" buttons ¬ | |
| {"Cancel", "Archive"} cancel button 1 message _description |
| #!/bin/bash | |
| # This script automatically sets the version and short version string of | |
| # an Xcode project from the Git repository containing the project. | |
| # | |
| # To use this script in Xcode 4, add the contents to a "Run Script" build | |
| # phase for your application target. | |
| set -o errexit | |
| set -o nounset |
| {-# LANGUAGE PackageImports #-} | |
| {- | |
| You need to register your Twitter application at <http://dev.twitter.com/> | |
| to get the consumer key and secret needed for OAuth. When connecting to | |
| Twitter for the first time, do this: | |
| let consumer = Consumer "consumer key" "consumer secret" | |
| token <- authenticate |