Skip to content

Instantly share code, notes, and snippets.

View hwpplayer1's full-sized avatar
🇹🇷
I want to lead to The Free Software Movement

Mert Gör 🇹🇷 hwpplayer1

🇹🇷
I want to lead to The Free Software Movement
View GitHub Profile
@ashafq
ashafq / haar.c
Created March 14, 2025 18:29
Haar Wavelet Transform, In-place
/**
* Copyright (c) 2025 Ayan Shafqat <ayan@shafq.at>
*
* 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.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
/**
* Integer to Cardinal converter (unsigned)
*
* Copyright (C) 2021 Ayan Shafqat <[email protected]>
*
* 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.
*
1. Download latest apktool version.
2. Download the batch file and aapt.exe.
3. Create a folder anywhere in the PC and put all the apktool.jar, aapt.exe and the batch script in that folder.
4. Open command prompt.
5. Navigate to the folder where you placed apktool.jar, batch script and the aapt.exe.
6. Now, you need to install the file using the " IF " command.
7. Type the following command.
apktool if name-of-the-app.apk
@yellowbyte
yellowbyte / compiling_asm.md
Last active May 27, 2025 21:57
how to assemble assembly with NASM assembler to 32-bit or 64-bit ELF binary with or without libc

32-bit ELF binary

how to assemble and link:

nasm -f elf32 -o <filename>.o <filename>.asm
ld -m elf_i386 -o <filename> <filename>.o

template code (hello world):

section .text
global _start
@Yousha
Yousha / .gitignore
Last active June 12, 2025 09:02
.gitignore for PHP developers.
##### Windows
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
# Dump file
*.stackdump