Skip to content

Instantly share code, notes, and snippets.

View dziban303's full-sized avatar
πŸ’­
πŸ±β€πŸ‰

Dziban303 dziban303

πŸ’­
πŸ±β€πŸ‰
View GitHub Profile
@dziban303
dziban303 / AddBashToContextMenu.reg
Last active December 7, 2017 12:25 — forked from kevin-d-omara/AddUbuntuBashToContextMenu.reg
Add Bash to the context menu for Windows 10.
Windows Registry Editor Version 5.00
; * Adds Bash to the extended context menu (shift + right-click).
; * If you prefer the regular context menu (right-click),
; delete both lines containing <"Extended"="">.
; Context menu for right-clicking the background of a directory or the desktop.
[HKEY_CLASSES_ROOT\Directory\Background\shell\Bash]
@="Open Bash window here"
"Extended"=""
@dziban303
dziban303 / Notepad++AdvancedSearch.txt
Created March 11, 2016 04:37 — forked from ramons03/Notepad++AdvancedSearch.txt
Notepad++ Advanced search and replace. Null, Enter char, Tab, Regular Expressions, Etc.
Open the find/replace dialog.
At the bottom will be some Search mode options. Select "Extended (\n \r \t \0 \x...)"
In either the Find what or the Replace with field entries, you can use the following escapes:
\n new line (LF)
\r carriage return (CR)
\t tab character
\0 null character
\xddd special character with code ddd