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
NOTE: Only use on friends. | |
Must have email invite for meeting selected, then run this VBA script | |
as an Outlook Macro (Need Developer pane showing to create/use macro). | |
----------------------------------------------------------------------- | |
Function GetCurrentItem() As Object | |
Dim objApp As Outlook.Application | |
Set objApp = Application | |
On Error Resume Next |
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
- Right-click shortcut -> Properties -> Shortcut tab -> Target: | |
%windir%\system32\cmd.exe /c start "" "%CD%\this\is\relative\to\shorcut\location" | |
- Make sure "Start in:" is empty | |
- You can use "Change Icon..." too | |
- Look for icons in file: %SystemRoot%\system32\SHELL32.dll |
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
; Quick Text Formatting/Style Changes and Other Helpful Windows Tools | |
; - High-compatibility and unifies keyboard shortcuts b/t programs | |
; - Shortcuts for converting selected text to the following: | |
; All lower: THIS_is-a_tESt -> this_is-a_test | |
; All Upper: THIS_is-a_tESt -> THIS_IS-A_TEST | |
; Caps case: ThisIsAnExample -> THIS_IS_AN_EXAMPLE | |
; thisIsAnExample -> THIS_IS_AN_EXAMPLE | |
; Camel Case: THIS_IS_AN_EXAMPLE -> ThisIsAnExample | |
; this_is_an_example -> ThisIsAnExample | |
; tHIS_Is_an_ExAmPLE -> ThisIsAnExample. |
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 python3 | |
''' | |
Created on Apr 20, 2016 | |
@author: alex.vantol | |
BACKUP SCRIPT - w/ CLI | |
Takes a folder and location as input. | |
Outputs a zip file at given location | |
containing the contents of the input folder. |
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 python3 | |
''' | |
Pretty Command Line Interface Example v1.1 | |
@author: Alexander VanTol | |
''' | |
import sys | |
import traceback | |
import argparse | |
from colorama import init, Fore, Back, Style |
NewerOlder