- Download psexec
- From
Command Prompt
in administrator mode (right click from search launcher) - Useful link Windows Timers Bullshits
- To view current
powercfg -waketimers
psexec.exe -i -s %windir%\system32\mmc.exe /s taskschd.msc
- Brings up a funky UI to fix some waketimers
Event Viewer (Local)
->Windows Logs
->System
(Right click -> Filter Current Log) -> Event sources:Power-Troubleshooter
->Ok
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
if (this._interceptor == null || !this._interceptor(action)) { | |
mark(action.type); | |
this._currentDispatchActionType = action.type; | |
try { | |
const actionHandlers = | |
this._orderedActionHandlers[action.type] || this._computeOrderedActionHandlers(action.type); | |
for (let i = 0, l = actionHandlers.length; i < l; i++) { | |
const {actionHandler, storeDidChange} = actionHandlers[i]; | |
if (actionHandler(action) !== false) { | |
storeDidChange(action); |
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/bash | |
make clean | |
make distclean | |
# ./configure --with-features=huge --enable-terminal --enable-rubyinterp --enable-python3interp --enable-perlinterp --enable-cscope | |
./configure --with-features=huge --enable-terminal --enable-rubyinterp --enable-python3interp --enable-perlinterp --enable-cscope --enable-luainterp=yes --with-lua-prefix=/usr/local/Cellar/lua/5.3.5_1 | |
make | |
rm src/MacVim/build/Release/MacVim.app/Contents/Resources/MacVim.icns | |
cp ./MacVim.icns src/MacVim/build/Release/MacVim.app/Contents/Resources/ | |
open src/MacVim/build/Release |
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
// Default export | |
// Export from file.js | |
const ExampleSomething = {}; | |
export default ExampleSomething; | |
// import from another.js | |
import ExampleSomething from './file.js'; | |
// Named Exports | |
// Export from file.js | |
export const Another = {}; |
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 .vimrc file | |
if has('vim_starting') | |
set nocompatible | |
endif | |
" Ensure all directories are setup properly and download plug.vim | |
if empty(glob('~/.vim/autoload/plug.vim')) | |
execute '!mkdir -p ~/.vim/bundle ~/.vim/backup ~/.vim/swap ~/.vim/cache ~/.vim/undo ~/.vim/autoload ~/.vim/bundle' | |
execute '!curl -fLo ~/.vim/autoload/plug.vim https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' |
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
{ | |
"printWidth": 120, | |
"trailingComma": "es5", | |
"bracketSpacing": false, | |
"singleQuote": true, | |
"bracketSameLine": true, | |
"overrides": [ | |
{ | |
"files": ["*.css", "*.styl"], | |
"options": { |
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
" NOTE: Only source this file once per session | |
if g:localvimrc_sourced_once | |
finish | |
endif | |
echom '{page} .lvimrc has been sourced' | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab |
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 | |
# | |
# This shell script passes all its arguments to the binary inside the | |
# MacVim.app application bundle. If you make links to this script as view, | |
# gvim, etc., then it will peek at the name used to call it and set options | |
# appropriately. | |
# | |
# Based on a script by Wout Mertens and suggestions from Laurent Bihanic. This | |
# version is the fault of Benji Fisher, 16 May 2005 (with modifications by Nico | |
# Weber and Bjorn Winckler, Aug 13 2007). |
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
let g:hl_was_on = 0 | |
function! ToggleHLSearch(enter) | |
if a:enter == 1 && v:hlsearch == 1 | |
let g:hl_was_on = 1 | |
elseif a:enter == 1 | |
let g:hl_was_on = 0 | |
set hlsearch | |
elseif a:enter == 0 && g:hl_was_on == 0 | |
let g:hl_was_on = 0 | |
set nohlsearch |