Skip to content

Instantly share code, notes, and snippets.

View Aditya-Jyoti's full-sized avatar
🦆
batak

Aditya Jyoti Aditya-Jyoti

🦆
batak
View GitHub Profile
#include <IRremote.hpp>
#define FORWARD 24
#define BACKWARD 82
#define LEFTWARD 8
#define RIGHTWARD 90
#define START 71
#define STOP 69
<summary> VIEW </summary>

January

	|Mon|Tue|Wed|Thu|Fri|Sat|Sun|
	|:-:|:-:|:-:|:-:|:-:|:-:|:-:|

|27|28|29|30|31|1|2|

@Aditya-Jyoti
Aditya-Jyoti / Special-Methods.md
Last active May 31, 2021 10:19
List of all Special Methods in Python OOP

List of all Special Methods in Python OOP

Initialization and Construction

Method Description
new(cls, other) To get called in an object's instantiation.
init(self, other) To get called by the __new__ method.
del(self) Destructor method.