I hereby claim:
- I am theldus on github.
- I am davidsondfgl (https://keybase.io/davidsondfgl) on keybase.
- I have a public key ASBT90W6Aw9bYqrJ1f-30Pa5TNBW6O3EpcpOCw9CbnKTZwo
To claim this, I am signing this object:
| [BITS 16] | |
| ;############################################################################### | |
| ; -.- Initial Setup -.- | |
| ;############################################################################### | |
| ;Setup stack | |
| mov ax, 07C0h | |
| add ax, 20h | |
| mov ss, ax |
| #!/bin/bash | |
| ############################ | |
| ####Make Jar by Theldus##### | |
| ############################ | |
| usage() | |
| { | |
| echo -e "Usage: \n$0 <main-class> <.class folder>" | |
| echo " main-class : Your main class, without extension" | |
| echo " .class folder: Where are your binary files" |
| #include <ncurses.h> | |
| #include <unistd.h> | |
| void xmas() | |
| { | |
| static int color1 = 1; | |
| static int color2 = 2; | |
| attron(COLOR_PAIR(color1) | A_BOLD); | |
| mvprintw(0, 30, " __ __) \n"); |
| cue_file = 'file.cue' | |
| d = open(cue_file).read().splitlines() | |
| general = {} | |
| tracks = [] | |
| current_file = None |
| # ag <https://github.com/ggreer/the_silver_searcher> | |
| # usage: ag-replace.sh [search] [replace] | |
| # caveats: will choke if either arguments contain a forward slash | |
| # notes: will back up changed files to *.bak files | |
| ag -0 -l $1 | xargs -0 sed -ri.bak -e "s/$1/$2/g" |
| /* | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, either version 3 of the License, or | |
| * (at your option) any later version. | |
| */ | |
| #include <arpa/inet.h> | |
| #include <linux/if_packet.h> | |
| #include <stdio.h> |
I hereby claim:
To claim this, I am signing this object:
| ; ------------------------------ | |
| ; nasm -f bin -o libs.so libs.S | |
| ; ------------------------------ | |
| BITS 64 | |
| org 0 | |
| ADDR equ 0x200000 | |
| ; Elf header constants | |
| ET_DIN equ 3 |
| # Victorique de Blois byte patch v3.0 =), by Theldus | |
| # | |
| # This patch edits the javap source code so that when using the '-c' option, in | |
| # addition to the instruction, the bytes related to it are also emmited, something | |
| # similar to what objdump does. An example of output follows below: | |
| # | |
| # Compiled from "hello.java" (Victorique de Blois, byte dump patch v3.0 by Theldus) | |
| # public class hello { | |
| # public hello(); | |
| # Code: |
| # Increase maximum recent files on VLC, by Theldus | |
| # | |
| # First of all, this is not an official patch!, apply at your | |
| # own risk, nonetheless, it should be safe =). | |
| # | |
| # Second of all, it's so much easy to increase this limit, why on earth VLC | |
| # uses a hardcoded number? 10 at the moment. VLC already saves more than 10 | |
| # items on the ~/.config/vlc/vlc-qt-interface.conf, so why not makes use of | |
| # such thing? I really dont know. Anyway, apply this and be happy. | |
| # |