Skip to content

Instantly share code, notes, and snippets.

View Animesh-Ghosh's full-sized avatar
🎯
Focusing

MaDDogx Animesh-Ghosh

🎯
Focusing
View GitHub Profile
@Animesh-Ghosh
Animesh-Ghosh / index.html
Last active May 13, 2020 09:04
Facelift
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="author" content="Animesh Ghosh">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#24292e">
<title>GitHub API Wrapper</title>
<style type="text/css">
/* designing for mobile first */
@Animesh-Ghosh
Animesh-Ghosh / cipher.cpp
Created April 13, 2020 14:19
Some ciphers.
/*
To build
g++ crypt.cpp -o crypt.exe -std=c++11 -Wall -Wextra -O2
*/
#include <iostream>
#include <algorithm>
#include <array>
#include <vector>
#include <set>
@Animesh-Ghosh
Animesh-Ghosh / .vimrc
Created February 21, 2020 08:21
A modest .vimrc
" My .vimrc file.
" set line numbers
set number relativenumber
" set syntax highlight
syntax on
" set tabsize to 4
set tabstop=4
@Animesh-Ghosh
Animesh-Ghosh / Default (Windows).sublime-keymap
Last active August 29, 2019 15:56
My Sublime Text 3 Settings
[
{
"keys": ["alt+`"],
"command": "toggle_terminus_panel"
},
{
"keys": ["ctrl+alt+t"],
"command": "terminus_open",
"args": {
"cwd": "${file_path:${folder}}",