These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.
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
| # In order for gpg to find gpg-agent, gpg-agent must be running, and there must be an env | |
| # variable pointing GPG to the gpg-agent socket. This little script, which must be sourced | |
| # in your shell's init script (ie, .bash_profile, .zshrc, whatever), will either start | |
| # gpg-agent or set up the GPG_AGENT_INFO variable if it's already running. | |
| # Add the following to your shell init to set up gpg-agent automatically for every shell | |
| if [ -f ~/.gnupg/.gpg-agent-info ] && [ -n "$(pgrep gpg-agent)" ]; then | |
| source ~/.gnupg/.gpg-agent-info | |
| export GPG_AGENT_INFO | |
| else |
Notes for Ubuntu 21.04, getting the MX Master mouse to work.
- Ubuntu 21.04 uses Wayland by default. These instructions only work for x.org
- Getting Wayland to rebind mouse keys was confusing. Much easier to just use x.org and these instructions I found.
First, install Solaar to see the battery level on the taskbar
sudo apt-get install solaarsource:
curl https://gist.githubusercontent.com/rehandalal/bcd4818457b5697e1d9e98951de1713e/raw/3723219fe3ceb294d353bed1a8bf4692b59a6bc0/filtered-recipes.json | \
jq -c '.[] | {id: .id, slug: .latest_revision.arguments.slug, pref: .latest_revision.arguments.preferenceName, created: .latest_revision.date_created, creator : .latest_revision.creator | "\(.first_name) \(.last_name)", ft: .latest_revision.filter_expression}' | \
jq -c '. | "$$ \(.id) $$ \(.created) $$ \(.creator) $$ \(.slug) $$ \(.pref) $$ \(.ft) $$"' | sed 's/"//g' | sed 's/|/\|/g' | sed 's/\$\$/|/g' | sort
| id | created | creator | slug | pref name | filter expression |
|---|---|---|---|---|---|
| 311 | 2017-11-21T18:29:39.911418Z | null null | pref-flip-autofill-release-1405217-2-2 | extensions.formautofill.available | ( [normandy.userId] |
##motions
| motion | description |
|---|---|
| h | Count characters left |
| l | Count characters right |
| ^ | To the first character of the line |
| $ | To the last character of the line |
| f<char> | To the counth character occurrence to the right. F<char> to the counth character occurrence to the left |
| t<char> | To 1 character just before the counth character occurrence to the right |
| T<char> | To 1 character just before the counth character occurrence to the left |
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
| console.log('Loading event'); | |
| var CLOUDSEARCH_ENDPOINT = < INSERT HERE > | |
| var async = require('async'); | |
| var jpath = require('json-path') | |
| var zlib = require('zlib'); | |
| var aws = require('aws-sdk'); | |
| var s3 = new aws.S3({ | |
| apiVersion: '2006-03-01' | |
| }); |
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 python | |
| import boto.sqs | |
| from boto.sqs.message import RawMessage | |
| conn = boto.sqs.connect_to_region('us-east-1') | |
| q = conn.get_queue('tiles-data-processing-queue-stage') | |
| q.set_message_class(RawMessage) | |
| m = q.read() |
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 | |
| # ******************************* | |
| # Instructions on turning this into an OSX service: | |
| # http://blog.lanceli.com/2012/08/downscale-screenshot-at-hight-resolution-on-retina-mackbook-pro.html | |
| # ******************************* | |
| # the path where screenshots to save | |
| DROPBOX_ID= ENTER YOUR DROPBOX ID HERE |
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 | |
| # update the system | |
| sudo apt-get --yes update | |
| sudo apt-get --yes upgrade | |
| # node.js using PPA (for statsd) | |
| sudo apt-get install --yes python-software-properties | |
| sudo apt-add-repository ppa:chris-lea/node.js | |
| sudo apt-get update --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 python | |
| # | |
| # s3-download.py - a quick-and-dirty download script to download from S3 | |
| # implemented using Boto, which automatically applies AWS IAM role credentials | |
| # | |
| # This code is distributed under the MIT license from | |
| # http://opensource.org/licenses/MIT: | |
| # | |
| # Copyright (c) 2013 Martijn Koster | |
| # |
NewerOlder