This file contains 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
pm uninstall -k --user 0 com.google.android.apps.tachyon && | |
pm uninstall -k --user 0 com.google.android.music && | |
pm uninstall -k --user 0 com.google.android.apps.docs.editors.sheets && | |
pm uninstall -k --user 0 com.google.android.apps.docs.editors.slides && | |
pm uninstall -k --user 0 com.google.android.apps.docs.editors.docs && | |
pm uninstall -k --user 0 com.google.android.videos && | |
pm uninstall -k --user 0 com.android.gallery3d && | |
pm uninstall -k --user 0 com.android.calendar && | |
pm uninstall -k --user 0 com.evernote && | |
pm uninstall -k --user 0 com.evernote.promohelper && |
This file contains 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
Windows Registry Editor Version 5.00 | |
; Open files | |
[HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3] | |
@="Edit with S&ublime Text 3" | |
"Icon"="D:\\OneDrive\\Apps\\sublime\\sublime_text.exe,0" | |
[HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3\command] | |
@="\"D:\\OneDrive\\Apps\\sublime\\sublime_text.exe\" \"%1\"" |
This file contains 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
(function(doc) { | |
var createCustomEvent = function(e, n) { | |
var customEvent = doc.createEvent("CustomEvent"); | |
customEvent.initCustomEvent(n, true, true, e.target); | |
e.target.dispatchEvent(customEvent); | |
customEvent = null; | |
return false | |
}, | |
nm = true, | |
startPos = { |
This file contains 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
// ==UserScript== | |
// @name GitHub Suppress Diffs | |
// @version 2013.10.29 | |
// @namespace FET | |
// @description Suppress style.css | |
// @include http*://github.com/* | |
// ==/UserScript== | |
// Files to suppress: | |
suppressFiles([ |
This file contains 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/sh | |
# toggle touch pad | |
device=`xinput list --name-only | grep -i touchpad` | |
isOn=`xinput list-props "$device" | grep -i enabled | tail -c 2` | |
iconEnabled='input-touchpad-symbolic' | |
iconDisabled='touchpad-disabled-symbolic' | |
case "$isOn" in | |
0) |
This file contains 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
$base-font-size: 14px; | |
$base-font-family: sans-serif; | |
// * | |
// @extend %bs-border-box | |
// Prevent iOS text size adjust after orientation change, without disabling user zoom | |
html | |
height: 100% | |
font-size: 100% |