Skip to content

Instantly share code, notes, and snippets.

View AdithyanA2005's full-sized avatar

Adithyan A AdithyanA2005

View GitHub Profile
div > .vimiumHintMarker {
padding: 2px 3px;
background-color: #282828;
border: 0;
border-radius: 2px;
box-shadow: 0em 0.1em 0.6em 0.1em rgba(0, 0, 0, 0.4);
background-image: none;
}
div > .vimiumHintMarker span {
@AdithyanA2005
AdithyanA2005 / vimium_dark_theme.css
Created June 23, 2025 20:10 — forked from mesartwell/vimium_dark_theme.css
CSS for Vimium UI (dark theme)
/* Arc Dark theme */
/* Link hint boxes */
div > .vimiumHintMarker {
background: #383c4a;
font-size: 12px;
border: 0.25em solid #383c4a;
border-radius: 0.68em;
box-shadow: 0em 0.1em 0.6em 0.1em rgba(0, 0, 0, 0.4);
}
@AdithyanA2005
AdithyanA2005 / config.conf
Last active January 29, 2023 06:45
Config file for neofetch
# NEOFETCH CONFIG
# See this wiki page for more info:
# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info
print_info() {
info title
info underline
info "OS" distro
# info "Users" users
info "Disk" disk
@AdithyanA2005
AdithyanA2005 / config.fish
Last active January 30, 2023 05:05
The config file for fish shell
set TERM "xterm-256color"
set EDITOR "micro"
set VISUAL "kate"
# Disables the welcome message
set fish_greeting
# Cache command exit status
set -g last_status $status
@AdithyanA2005
AdithyanA2005 / fairrecord.ipynb
Created August 4, 2022 16:39
FairRecord.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@AdithyanA2005
AdithyanA2005 / python_programs.ipynb
Last active June 6, 2022 14:15
Python_Programs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void sum_of_two_numbers() {
int num1, num2;
printf("Hello, world! \n");
printf("Enter number 1 => ");
scanf("%d", &num1);
printf("Enter number 2 => ");
@AdithyanA2005
AdithyanA2005 / basicnumpyandpandas.ipynb
Created December 31, 2021 13:32
BasicNumpyAndPandas.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.