Skip to content

Instantly share code, notes, and snippets.

View joevtap's full-sized avatar
:shipit:
Hacking

jovi joevtap

:shipit:
Hacking
View GitHub Profile
@AlphaLawless
AlphaLawless / Vimrc
Created May 29, 2021 21:09
My vimrc config
"INDENTION OPTIONS//
set autoindent " New lines inherit the indentation of previous lines.
set expandtab " Convert tabs to spaces.
set shiftround " When shifting lines, round the indentation to the nearest multiple of shiftwidth.
set shiftwidth=2 " When shifting, indent using two spaces.
set smarttab " Insert tabstop number of spaces when the tab key is pressed.
set tabstop=2 " Insert using 2 spaces.
filetype plugin indent on " Enable indentation rules that are file-type specific.
" Specify a directory for plugins
call plug#begin('~/.vim/plugged')
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'scrooloose/nerdtree'
"Plug 'tsony-tsonev/nerdtree-git-plugin'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'ryanoasis/vim-devicons'
Plug 'airblade/vim-gitgutter'
@sundowndev
sundowndev / GoogleDorking.md
Last active June 29, 2025 19:13
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@MightyPork
MightyPork / usb_hid_keys.h
Last active June 20, 2025 10:01
USB HID Keyboard scan codes
/**
* USB HID Keyboard scan codes as per USB spec 1.11
* plus some additional codes
*
* Created by MightyPork, 2016
* Public domain
*
* Adapted from:
* https://source.android.com/devices/input/keyboard-devices.html
*/