Skip to content

Instantly share code, notes, and snippets.

View Adirockzz95's full-sized avatar
👋
Hi there! :v :v

Aditya Khandkar Adirockzz95

👋
Hi there! :v :v
View GitHub Profile
@Adirockzz95
Adirockzz95 / blocklist_fb.txt
Created March 18, 2024 14:38
block facebook url except *.whatsapp.*
0.0.0.0 0-edge-chat.facebook.com
0.0.0.0 0.beta.facebook.com
0.0.0.0 0.facebook.com
0.0.0.0 1-edge-chat.facebook.com
0.0.0.0 2-edge-chat.facebook.com
0.0.0.0 3-edge-chat.facebook.com
0.0.0.0 4-edge-chat.facebook.com
0.0.0.0 5-edge-chat.facebook.com
0.0.0.0 6-edge-chat.facebook.com
0.0.0.0 a.ish.instagram.com
@Adirockzz95
Adirockzz95 / manim_svg_example.py
Last active March 12, 2024 02:18
manim SVG object animation example
#!/usr/bin/env python
#
# Usage: python extract_scene.py -p [filename] [classname]
# eg: python extract_scene.py -p examples.py DrawCircle
#
import math
import os
@Adirockzz95
Adirockzz95 / examples.py
Last active January 19, 2024 18:26
manim animation examples
#!/usr/bin/env python
#
# Usage: python extract_scene.py -p [filename] [classname]
# eg: python extract_scene.py -p examples.py DrawCircle
#
import math
import numpy as np
@Adirockzz95
Adirockzz95 / frequency_reuse.py
Created August 20, 2019 15:49
Cellular Frequency reuse visualization in python
#!/usr/bin/python
from math import *
try:
from Tkinter import *
except:
from tkinter import *
class Hexagon(object):
@Adirockzz95
Adirockzz95 / minimal_pygame_opencv_opengl.py
Created April 15, 2022 15:55
Minimal Python example code to display video frames from USB camera using OpenCV, Pygame and OpenGL.
"""
Minimal Python example code to display video frames from USB camera
using OpenCV, Pygame and OPENGL.
Tested with:
Pygame: 1.9.4
OpenCV: 4.5.4
"""
import time
@Adirockzz95
Adirockzz95 / WirelessIRQ.cpp
Last active February 6, 2018 06:46
Wireless LED hearts project: Rx using polling
#include <avr/interrupt.h>
#include <avr/power.h>
#include <avr/sleep.h>
#include <SPI.h>
#include "nRF24L01.h"
#include "RF24.h"
#include "FastLED.h"
@Adirockzz95
Adirockzz95 / WirelessPollingTx.cpp
Created February 6, 2018 06:26
Wireless LED hearts project: Tx polling
#include <avr/interrupt.h>
#include <avr/power.h>
#include <avr/sleep.h>
#include <SPI.h>
#include "nRF24L01.h"
#include "RF24.h"
#include "FastLED.h"
#define NUM_LEDS 12
@Adirockzz95
Adirockzz95 / WirelessLEDs.cpp
Created February 6, 2018 06:19
Wireless LED hearts project: receiver using Interrupts
#include <avr/interrupt.h>
#include <avr/power.h>
#include <avr/sleep.h>
#include <SPI.h>
#include "nRF24L01.h"
#include "RF24.h"
#include "FastLED.h"
#include "printf.h"
@Adirockzz95
Adirockzz95 / SlotMachine.cpp
Created July 26, 2017 18:24
LED Matrix Slot machine game
/*
* Program name: This program is part of the project Pen Stand: LED Enabled
* Author: Aditya K
*
* Discription: This program imitates Slot Machine game. This game has 3 rounds.
* A 'round' starts when the user removes the pen from pen stand causing an interrupt.
* For each round, the reel is spun 5 times displaying different symbols;
* this is done by generating random indexes and passing it to the default Font table displaying the spinning animation.
* The last index generated (5th spin) is stored in a list.
* After 3 rounds( 3 rounds because we have 3 LED matrix modules),indexes in the list are compared, if same, the user WINS else user LOSES.
@Adirockzz95
Adirockzz95 / DisplayCount.cpp
Created July 26, 2017 18:23
LED Matrix Count program
/**
* Program name: This program is part of the project Pen Stand: LED Enabled
* Author: Aditya K
* Date: 7/1/2017
* LICENSE: MIT
*
* Discription: This program counts how many times a Pen is removed from the
the stand and prints it on LED Matrix display.
*
* Copyright (c) 2017 Aditya K.