I hereby claim:
- I am AndrewKvalheim on GitHub.
- I am andrewkvalheim on Keybase.
- I have a public key whose fingerprint is
3BE8 FAF9 6A55 8283 9915 0084 9254 D459 4094 9194
.
To claim this, I am signing this object:
#!/bin/bash | |
# Applies the Monokai color scheme to the current terminal session. | |
declare -A map0 | |
map0=( [foreground ]='#F8F8F2' [background ]='#272822' | |
[cursor ]='#F8F8F0' [selection ]='#49483E' | |
[pink ]='#F92672' [green ]='#A6E22E' | |
[yellow ]='#E6DB74' [blue ]='#66D9EF' | |
[purple ]='#AE81FF' [orange ]='#FD971F' | |
[gray ]='#75715E' ) |
;;; Non-interactively save all selected regions as separate files | |
(define (script-fu-export-selected-regions image drawable) | |
;; Start | |
(gimp-image-undo-group-start image) | |
;; If there are selections | |
(when (= 0 (car (gimp-selection-is-empty image))) | |
(let ((number 1) (prefix "") (suffix "")) | |
;; Construct filename components | |
(let* ((parts (strbreakup (car (gimp-image-get-filename image)) ".")) |
diff --git a/src/com/android/settings/ChooseLockGeneric.java b/src/com/android/settings/ChooseLockGeneric.java | |
index f67213c..e015024 100644 | |
--- a/src/com/android/settings/ChooseLockGeneric.java | |
+++ b/src/com/android/settings/ChooseLockGeneric.java | |
@@ -246,7 +246,8 @@ public class ChooseLockGeneric extends PreferenceActivity { | |
int encryptionStatus = mDPM.getStorageEncryptionStatus(); | |
boolean encrypted = (encryptionStatus == DevicePolicyManager.ENCRYPTION_STATUS_ACTIVE) | |
|| (encryptionStatus == DevicePolicyManager.ENCRYPTION_STATUS_ACTIVATING); | |
- if (encrypted) { | |
+ LockPatternUtils lockPatternUtils = new LockPatternUtils(getActivity()); |
I hereby claim:
3BE8 FAF9 6A55 8283 9915 0084 9254 D459 4094 9194
.To claim this, I am signing this object:
*.apkg diff=apkg |
/ Documentation: http://www.sitemaps.org/protocol.html | |
doctype xml | |
urlset xmlns='http://www.sitemaps.org/schemas/sitemap/0.9' | |
- pages.each do |page| | |
url | |
loc = page.absolute_url | |
lastmod = page.mtime.iso8601 | |
changefreq = page.data.changefreq || 'weekly' |
Ubuntu 13.04 has reached [end-of-life (EOL)][eol], so software updates to it are no longer available. It will continue to check for software updates, however, and fail with error messages such as:
Failed to download repository information.
and:
W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/raring/main/source/Sources 404 Not Found
// ==UserScript== | |
// @name Use epost™ without proprietary software. | |
// @namespace https://Andrew.Kvalhe.im/ | |
// @version 0.1.0 | |
// @description Override the "Adobe Reader Required" message in Canada Post's epost™ service. | |
// @match https://express.epost.ca/edms/en/pdfPlugin.html* | |
// @grant none | |
// ==/UserScript== | |
window.overRide(); |
// Given a selection of buildings, select redundant (i.e. collinear, non-tagged, | |
// non-glued) nodes. | |
// | |
// Dependencies: | |
// | |
// - [JOSM Scripting Plugin](https://gubaer.github.io/josm-scripting-plugin/) | |
// | |
// Usage: | |
// | |
// 1. Select some buildings for analysis, e.g. via Search → `new building`. |