Skip to content

Instantly share code, notes, and snippets.

View AWMooreCO's full-sized avatar

Andrew Moore AWMooreCO

  • Denver, Colorado
View GitHub Profile
@AWMooreCO
AWMooreCO / Temp.md
Created January 8, 2015 23:10
For Github Support

#Keyboard Style

The following code:

<kbd>WIN</kbd>

… should look like it does on this page, but instead looks like this: WIN in a Gist Markdown File.

@AWMooreCO
AWMooreCO / style.css
Last active August 29, 2015 14:16
Merch Product Catalog Fixes
.woocommerce.archive ul.products li.product h3,
.woocommerce ul.products li.product h3 {
top: .25em;
color: #616671;
}
.woocommerce.archive ul.products li.product {
margin-bottom: 2.5em;
}
@AWMooreCO
AWMooreCO / eddb.io.css
Last active August 29, 2015 14:19
eddb.io Dark Stylish Style
/* More Accurate Elite Orange: FD831E */
/* Elite Hover: #F6AF3D */
@import url(http://fonts.googleapis.com/css?family=Roboto:400,700);
html.site-eddb, body.site-eddb, .wrap {
background-color: #000;
}
html, body {
@AWMooreCO
AWMooreCO / cmder_context_disable.reg
Created October 2, 2015 22:03
Registry scripts to enable and disable the Cmder context menu options
Windows Registry Editor Version 5.00
[-HKEY_CLASSES_ROOT\Directory\Background\shell\cmder]
[-HKEY_CLASSES_ROOT\Directory\shell\cmder]
@AWMooreCO
AWMooreCO / RestoreThisPCLibraries.reg
Created July 28, 2020 03:19
Restores the 7 default libraries in This PC on Windows 10
Windows Registry Editor Version 5.00
; This script restores the standard Windows 10 Libraries found in This PC (tested with Windows 10 1909)
; == Restore 3D Objects Folder from This PC
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}]
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}]
@AWMooreCO
AWMooreCO / Working with AutoHotKey in Sublime Text.md
Last active June 23, 2023 20:27
How to make the best of use of Sublime Text in editing, running, and compiling AutoHotKey scripts.

Sublime Text, AutoHotKey, and You

If you're going to work with [AutoHotKey] scripts, I recommend that you download and install [Sublime Text 3], which is an excellent editor for all sorts of languages, including AutoHotKey .AHK files. To get the most out of Sublime Text 3 when editing AHK files:

  1. Install Sublime Text [Package Control], then,
  2. Install and Set Up the [AutoHotKey Package] the easy way:
    1. Enter the Sublime Text command palette by pressing Ctrl + Shift + P or by navigating to Preferences > Packages Control
    2. In the input field, type install and using your directional keys (up/down), highlight Package Control: Install Package and press Enter
    3. Now type autohotkey, and when all the results are filtered to just the one AutoHotKey package and it is highlighted, press Enter. This will install the AutoHotKey package.
  3. Once the AutoHotKey Package for Sublime Text is installed, we're going to need to edit
@AWMooreCO
AWMooreCO / RemoveThisPCLibraries.reg
Created July 28, 2020 02:34
Removes the 7 default libraries from This PC in Windows 10
Windows Registry Editor Version 5.00
; This script removes the standard Windows 10 Libraries found in This PC (tested with Windows 10 1909)
; == Remove 3D Objects Folder from This PC
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}]
@AWMooreCO
AWMooreCO / AdvancedWindowSnap.ahk
Last active April 6, 2024 01:29
Advanced Window Snap is a script for AutoHotKey that expands upon Windows built-in window-snapping hotkeys.
/**
* Advanced Window Snap
* Snaps the Active Window to one of nine different window positions.
*
* @author Andrew Moore <andrew+github@awmoore.com>
* @version 1.0
*/
/**
* SnapActiveWindow resizes and moves (snaps) the active window to a given position.