Skip to content

Instantly share code, notes, and snippets.

View amanagr's full-sized avatar
👨‍🍳
Cooking Code

Aman Agrawal amanagr

👨‍🍳
Cooking Code
View GitHub Profile
@amanagr
amanagr / windows10activation
Created May 7, 2021 13:22 — forked from amanjuman/windows10activation
Activate Windows 10 without Any Activator
1. Open CMD as Administrator
2. Paste the following commands into the Cmd: One by one, follow the order.
cscript slmgr.vbs /ipk "SERIAL NUMBER HERE"
Replace SERIAL NUMBER HER with any of these, according your Windows 10 installation type.
Home/Core TX9XD-98N7V-6WMQ6-BX7FG-H8Q99
Home/Core (Country Specific) PVMJN-6DFY6-9CCP6-7BKTT-D3WVR
Home/Core (Single Language) 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH
@amanagr
amanagr / settings.json
Created April 25, 2020 07:26
Windowns Terminal Profile
// This file was initially generated by Windows Terminal 0.11.1121.0
// It should still be usable in newer versions, but newer versions might have additional
// settings, help text, or changes that you will not see unless you clear this file
// and let us generate a new one for you.
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
Google Summer Of Code 2019 Work:
Added a lot of new features in zulip-terminal with the help of Sumanth V Rao and Neil Pilgrim.
Link to my commits: https://github.com/zulip/zulip-terminal/commits?author=amanagr
Started a new project “Zulint” with the help of Tim Abbott.
Link to the projects: https://github.com/zulip/zulint
Link to my commits: https://github.com/zulip/zulint/commits?author=amanagr
@amanagr
amanagr / vimrc
Last active July 24, 2019 15:32
My vim conf.
set nocompatible " required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')