Skip to content

Instantly share code, notes, and snippets.

View jq2's full-sized avatar
🌏
I may be slow to respond. #cyberwarfare

Dan Morris jq2

🌏
I may be slow to respond. #cyberwarfare
View GitHub Profile
@jq2
jq2 / gist:b3a82c66f2702e62eb177ba3f593327f
Created December 5, 2021 15:30
We're failing to communicate ?
Q: We're failing to communicate ?
A: The answer is a big NO;
@jq2
jq2 / projects.md
Last active December 7, 2021 22:40
projects

Projects I am currently working on include, but are not limited to:

  • portal-br.org
  • kobkob.org

Projects I want to support/help/collaborate with (this list is public, this list will be updated later, keep your eyes here!), but are not limited to:

  • debxp.org
  • gnu.org
  • slackjeff.com.br

HIGHER PRIORITY_PROJECTS

@jq2
jq2 / proof.txt
Created June 3, 2020 15:11
proof.txt
proof.txt
@jq2
jq2 / levenshtein.sh
Created March 17, 2020 16:37
[ bash ]: Levenshtein distance (#regex, Approximate “fuzzy” matching)
#!/bin/bash
function levenshtein {
if (( $# != 2 )); then
echo "Usage: $0 word1 word2" >&2
elif (( ${#1} < ${#2} )); then
levenshtein "$2" "$1"
else
local str1len=${#1}
local str2len=${#2}
local d
@jq2
jq2 / get-proxies.sh
Created March 16, 2020 04:17
get-proxies.sh - # Get more HTTP proxies from multiple sources.
#!/bin/bash
# Date: Wed 11 Mar 2020
# Description: Simple proxy finder...
# Dependencies/Requirements: bash 4.x, python 3.x, pup latest version...
# @author: Dan Morris | A.K.A (jq2).
# Usage: ./main.sh {1..100} ;
target_link="https://www.sslproxies.org/"
@jq2
jq2 / disable-all-windows-unnecessary-services.txt
Created August 12, 2019 09:21
Microsoft Windows XP/7/8/8.1/10 - Surveillance Self-Defense Scripts, Tools, Guides/HowTo's, (E)books and much more!
@matthewjberger matthewjberger/Remove-Windows10-Bloat.bat
https://gist.github.com/matthewjberger/2f4295887d6cb5738fa34e597f457b7f
@ilyaigpetrov/Tuning Windows 10 for Slow Machines.md
https://gist.github.com/ilyaigpetrov/03506150e0a3a4104a24f7e519d42078
@alirobe/reclaimWindows10.ps1
https://gist.github.com/alirobe/7f3b34ad89a159e6daa1
@2510/Windows 10 Disable Services.bat
@jq2
jq2 / ex0.c
Created August 24, 2018 04:00
Sending HTTP requests in C language
/*
@date: Fri Aug 24 00:32:44 -03 2018
@author: Dan Morris A.K.A jq2
@filename: ex0.c
@last_updated: Fri Aug 24 00:53:47 -03 2018
@description: Enviando requisições HTTP GET usando a API de soquetes do Unix/BSD (Berkeley sockets).
Exemplo desenvolvido para o 'Hacking-BR - Grupo de estudos' no Facebook.
*/
@jq2
jq2 / .sh
Last active August 8, 2018 13:54
bash/one-liners
$ folder="/tmp/work-`date +'%F'`"; cd $folder; git init $folder; > $folder/README.md; git add -A; git commit -am "Initial commit";
$ mkdir /tmp/work_`date +'%F'` && cd $_
@jq2
jq2 / c_language_resources.md
Last active January 21, 2020 21:26
list of c programming language resources