This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # Made by papi | |
| # Created on: Fri 20 Sep 2024 04:36:32 PM IST | |
| # mario_cube_wii_ware_dumper.py | |
| # Description: | |
| # This python script will download all of the wad file present on the | |
| # wii ware section of the mario cube website. All credit goes to them this | |
| # is just a little script to make downloading files there easier. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # get-tech.sh | |
| # Created on: Sat 01 Mar 2025 10:40:34 AM GMT | |
| # | |
| # ____ __ ____ __ | |
| # ( _ \ /. |( _ \/ ) | |
| # )___/(_ _))___/ )( | |
| # (__) (_)(__) (__) | |
| # | |
| # Description: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # Made by papi | |
| # Created on: Fri 20 Sep 2024 04:36:32 PM IST | |
| # mario_cube_dsi_ware_dumper.py | |
| # Description: | |
| # This python script will download all of the nds file present on the | |
| # dsi ware section of the mario cube website. All credit goes to them this | |
| # is just a little script to make downloading files there easier. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # Made by papi | |
| # Created on: Sat 30 Mar 2024 01:18:15 PM CET | |
| # havoc_parse.py | |
| # Description: | |
| # A python script to take a binary and covert it to different formats | |
| # Formats: | |
| # - cs -> C# buffer array | |
| # - vba -> vba for office suite |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/opt/automation/wazuh/bin/python | |
| # Set environement variables | |
| # This is made to work properly with a custom wazuh dashboard | |
| # | |
| # WAZUH_user=username | |
| # WAZUG_PASSWORD=password | |
| # | |
| # intall command: | |
| # python -m venv /folder/of/this/script | |
| # ./bin/pip install selenium |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* A dwm patch for integrated gestures */ | |
| diff -up a/dwm.c b/dwm.c | |
| --- a/dwm.c 2023-12-22 00:16:20.949995056 +0100 | |
| +++ b/dwm.c 2023-12-22 00:15:28.729807679 +0100 | |
| @@ -149,6 +149,7 @@ static void arrangemon(Monitor *m); | |
| static void attach(Client *c); | |
| static void attachstack(Client *c); | |
| static void buttonpress(XEvent *e); | |
| +static void buttonrelease(XEvent *e); | |
| static void checkotherwm(void); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* A svkbd that adds rounded corners to the keycaps */ | |
| diff -up a/drw.c b/drw.c | |
| --- a/drw.c 2023-12-20 13:30:49.639649487 +0100 | |
| +++ b/drw.c 2023-12-20 13:28:47.659098778 +0100 | |
| @@ -242,10 +242,23 @@ drw_rect(Drw *drw, int x, int y, unsigne | |
| if (!drw || !drw->scheme) | |
| return; | |
| XSetForeground(drw->dpy, drw->gc, invert ? drw->scheme[ColBg].pixel : drw->scheme[ColFg].pixel); | |
| - if (filled) | |
| - XFillRectangle(drw->dpy, drw->drawable, drw->gc, x, y, w, h); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* diff file to add a double tap tab completion to st */ | |
| diff -up a/x.c b/x.c | |
| --- a/x.c 2023-12-20 12:28:54.840325024 +0100 | |
| +++ b/x.c 2023-12-20 12:28:05.920133727 +0100 | |
| @@ -468,6 +468,7 @@ mouseaction(XEvent *e, uint release) | |
| void | |
| bpress(XEvent *e) | |
| { | |
| + static int double_click = 0; | |
| int btn = e->xbutton.button; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* diff file to add a virtual keyboard to dwm thorugh a shortcut */ | |
| diff -up a/config.def.h b/config.def.h | |
| --- a/config.def.h 2023-12-19 17:08:29.127179493 +0100 | |
| +++ b/config.def.h 2023-12-19 15:42:15.396789363 +0100 | |
| @@ -5,6 +5,7 @@ static const unsigned int borderpx = 1; | |
| static const unsigned int snap = 32; /* snap pixel */ | |
| static const int showbar = 1; /* 0 means no bar */ | |
| static const int topbar = 1; /* 0 means bottom bar */ | |
| +static const int kb_height_div = 3; /* height of the keyboard */ | |
| static const char *fonts[] = { "monospace:size=10" }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # Made by papi | |
| # Created on: Mo 30 Okt 2023 01:12:46 CET | |
| # havoc-fetch.py | |
| # Description: | |
| # A neofetch style havocui widget! | |
| # Install: | |
| # To use this script save it on your machine and add it to the script manager of Havoc | |
| # inside of: Scripts > Scripts Manager > Load Script |
NewerOlder