Skip to content

Instantly share code, notes, and snippets.

View VictorNS69's full-sized avatar
🖥️
\_(º-º)_/

Víctor Nieves Sánchez VictorNS69

🖥️
\_(º-º)_/
View GitHub Profile
@VictorNS69
VictorNS69 / virtualenv.md
Last active March 15, 2024 02:47 — forked from miranda-zhang/virtualenv.md
How to install virtualenv and virtualenvwrapper

Install virtualenv and virtualenvwrapper

Install both packages:

sudo apt install virtualenvwrapper
sudo apt install virtualenv

(recomended if have multiple apps running on different enviroments)

$ pip3 install virtualenv

@VictorNS69
VictorNS69 / README-Template.md
Created July 30, 2019 12:53 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@VictorNS69
VictorNS69 / A hack for showing LaTeX formulas in GitHub markdown.md
Last active January 19, 2024 11:47
How to add LaTex formula to a Markdown
@VictorNS69
VictorNS69 / sed cheatsheet
Created January 20, 2022 11:14 — forked from un33k/sed cheatsheet
magic of sed -- find and replace "text" in a string or a file
FILE SPACING:
# double space a file
sed G
# double space a file which already has blank lines in it. Output file
# should contain no more than one blank line between lines of text.
sed '/^$/d;G'
@VictorNS69
VictorNS69 / GoogleDorking.md
Created January 20, 2022 11:14 — forked from sundowndev/GoogleDorking.md
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"
@VictorNS69
VictorNS69 / nc-tcp-forward.sh
Created September 6, 2023 09:57 — forked from holly/nc-tcp-forward.sh
easy tcp port forwarding by netcat
#!/usr/bin/env bash
set -e
if [ $# != 3 ]; then
echo 'Usage: nc-tcp-forward.sh $FRONTPORT $BACKHOST $BACKPORT' >&2
exit 1
fi