Skip to content

Instantly share code, notes, and snippets.

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

Danny Caroline jq2

🌏
I may be slow to respond. #cyberwarfare
View GitHub Profile
@jq2
jq2 / va_args.c
Created March 2, 2018 08:08
simple-var-args-usage
/*
* @filename: va_args.c
* @author: jq2
* @description: Simple va_list, va_start, va_end usage example...
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@jq2
jq2 / gist:1c3771d581015648c807d2abebc989e6
Last active January 4, 2021 03:53
Lista de canais com cursos e/ou vídeo aulas sobre computação (Português pt_BR).
Code Shadow
https://www.youtube.com/c/CodeShadow
DevDojo
https://www.youtube.com/channel/UCjF0OccBT05WxsJb2zNkL4g/playlists
Tutorial Python - Abel Separovich
https://www.youtube.com/user/Oseparovich/playlists
@jq2
jq2 / prime_numbers.py
Created March 14, 2018 00:19
Find n prime numbers in Python
n = 100
i = 2
result = []
while i < n:
ret = True
for x in range(2, i):
if i % x == 0:
ret = False
break
if ret:
TERMS_OF_USE FOR THE dev.dot.null Facebook page...
@jq2
jq2 / c_language_resources.md
Last active January 21, 2020 21:26
list of c programming language resources
@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 / 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 / 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 / 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/"