Skip to content

Instantly share code, notes, and snippets.

View Aditya-Jyoti's full-sized avatar
:shipit:
In pursuit of knowledge

Aditya Jyoti Aditya-Jyoti

:shipit:
In pursuit of knowledge
View GitHub Profile
@Aditya-Jyoti
Aditya-Jyoti / ..README.md
Last active June 3, 2025 21:55
ZSH and NVIM configs

ZSH and NVIM configs

For NVIM

note: you may want to install lates nvim through their relases page

  • curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.tar.gz
  • sudo rm -rf /opt/nvim
  • sudo tar -C /opt -xzf nvim-linux-x86_64.tar.gz
#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.