Skip to content

Instantly share code, notes, and snippets.

View pranaysy's full-sized avatar

Pranay S. Yadav pranaysy

View GitHub Profile
@pranaysy
pranaysy / howtoinstalla7000linux.md
Created December 17, 2023 21:02 — forked from nickavem/howtoinstalla7000linux.md
How to Install the Netgear A7000 (RTL8812AU/21AU/14AU) Linux Wifi Drivers.

Sources: aircrack-ng/rtl8812au, aircrack-ng/rtl8814au

How to Install the Netgear A7000 (RTL8812AU/21AU/14AU) Linux Wifi Drivers.

Note: This guide is purposefully simple. If you would like more information about what exactly each command is doing, try:

man `the command in question`

or go to the respective source repositories as mentioned above.

@pranaysy
pranaysy / lz76benchmarks.py
Last active November 6, 2025 08:14
Comparison of LZ76 complexity implementations
"""
A demo comparison of three different implementations for estimating Lempel-Ziv complexity (1976)
Implementations compared:
- Pure Python version, by Naereen
- Numba (str), as implemented in EntroPy by Raphael Vallat
- Numba, updated for speed, based on numpy integer arrays
Simple comparisons for equality of estimates and performance to address issue:
https://github.com/raphaelvallat/entropy/issues/14