Some of the features mentioned in this document only work on the beta or Dev channel. To change your channel:
- chrome://help in a browser window
- Click Detailed Build Information
- Change Channel
- Select Beta (Or Dev, if you're feeling adventurous)
| Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
| ActivityTweet | |
| generic_activity_highlights | |
| generic_activity_momentsbreaking | |
| RankedOrganicTweet | |
| suggest_activity | |
| suggest_activity_feed | |
| suggest_activity_highlights | |
| suggest_activity_tweet |
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| shopt -s inherit_errexit 2>/dev/null || true | |
| # this script will connect macOS to Cloudflare Warp using Wireguard | |
| # note: this is *absolutely not* an official client from Cloudflare | |
| # Copyright (C) 2019 Jay Freeman (saurik) | |
| # Zero Clause BSD license {{{ |
| <?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>KeepAlive</key> | |
| <true/> | |
| <key>RunAtLoad</key> | |
| <true/> | |
| <key>Label</key> | |
| <string>homebrew.mxcl.aria2</string> |
| #!/bin/bash | |
| # | |
| # transcode-video.sh | |
| # | |
| # Copyright (c) 2013-2015 Don Melton | |
| # | |
| about() { | |
| cat <<EOF | |
| $program 5.13 of April 8, 2015 |
| var fs = require('fs'), | |
| path = require('path'), | |
| _ = require('underscore'), | |
| when = require('when'), | |
| express = require('express'), | |
| GhostPlugin = require('../../../core/server/plugins/GhostPlugin'), | |
| knex = require('../../../core/server/models/base').Knex, | |
| KudosPlugin; | |
| KudosPlugin = function (ghost) { |
| #!/usr/bin/env bash | |
| set -o errexit | |
| set -o nounset | |
| set -o pipefail | |
| # Automatically update your CloudFlare DNS record to the IP, Dynamic DNS | |
| # Can retrieve cloudflare Domain id and list zone's, because, lazy | |
| # Place at: | |
| # /usr/local/bin/cf-ddns.sh |
| class Player | |
| def initialize | |
| @max_health = 20 | |
| @last_health = @max_health | |
| @taking_damage = false | |
| @directions = [:backward, :forward] | |
| @current_direction = :forward | |
| @reached_wall = false | |
| end | |
| #!/bin/sh | |
| NGINX_VERSION=1.3.4 | |
| TMP_PATH=/tmp | |
| # Fetch and extract nginx source | |
| cd $TMP_PATH | |
| wget http://nginx.org/download/nginx-$NGINX_VERSION.tar.gz | |
| tar xvfz nginx-$NGINX_VERSION.tar.gz | |
| cd nginx-$NGINX_VERSION |