Skip to content

Instantly share code, notes, and snippets.

View wasdennnoch's full-sized avatar

Adrian Paschkowski wasdennnoch

View GitHub Profile
@fworks
fworks / install-zsh-windows-git-bash.md
Last active April 16, 2024 03:53
Zsh / Oh-my-zsh on Windows Git Bash
@suphon-t
suphon-t / Instructions.md
Last active March 12, 2017 02:04
Installing Xposed framework on Android emulator

Installing Xposed framework on Android emulator

Step 1 - Enable making changes to /system

You might want to copy the system.img to somewhere else first in case of bootloops.

$ cp ~/Library/Android/sdk/system-images/android-23/google_apis/x86/system.img ~/system.img
@pencil
pencil / RandomSort.java
Last active April 10, 2023 13:57
Random Sort (bogosort, stupid sort) implementation in Java
public class RandomSort {
public RandomSort(int[] i) {
int counter = 0;
System.out.println("I'll sort " + i.length + " elements...");
while (!isSorted(i)) {
shuffle(i);
counter++;
}
System.out.println("Solution found! (shuffled " + counter + " times)");