Skip to content

Instantly share code, notes, and snippets.

View aayushjain's full-sized avatar
👩‍💻
Rebasing

Aayush Jain aayushjain

👩‍💻
Rebasing
View GitHub Profile
@aayushjain
aayushjain / keybase.md
Last active April 16, 2019 08:19
Verifying myself on Keybase.io

Keybase proof

I hereby claim:

  • I am aayushjain on github.
  • I am aayushjain (https://keybase.io/aayushjain) on keybase.
  • I have a public key whose fingerprint is 32C3 A7C1 0A41 BA48 15E2 1F5E 3EA4 9B84 B4DC 30F2

To claim this, I am signing this object:

@aayushjain
aayushjain / Base File.sublime-settings
Last active September 25, 2019 09:19
Custom config for environment in SublimeText 3
//
// For package: Alignment
//
{
"alignment_chars" : ["=", ":"],
"alignment_space_chars" : ["=", ":"],
}
@aayushjain
aayushjain / uTorrent Configs.md
Last active June 20, 2024 08:47
Cleans up uTorrent Interface; removes ads.

Turn off Ads in uTorrent

Go to Options > Preferences > Advanced.
Toggle the following values to 'False':

  1. offers.left_rail_offer_enabled
  2. gui.show_plus_upsell
  3. offers.sponsored_torrent_offer_enabled
  4. bt.enable_pulse
  5. gui.show_notorrents_node
@aayushjain
aayushjain / setup_go_in_wsl.sh
Last active February 11, 2020 12:59
Script to install Go inside WSL in Windows 10
#!/bin/bash
set -e
GVERSION="1.13.7"
echo "Preparing to install Go $GVERSION"
MACHINE_TYPE=`uname -m`
if [ ${MACHINE_TYPE} == 'x86_64' ]; then
ARCH="amd64"
elif [ ${MACHINE_TYPE} == 'i386' ]; then
@aayushjain
aayushjain / ublock-config.txt
Created June 2, 2019 22:00
Configure uBlock Origin for anti-adblocking
{
"timeStamp": 1550259830973,
"version": "1.18.4",
"userSettings": {
"advancedUserEnabled": true,
"alwaysDetachLogger": false,
"autoUpdate": true,
"cloudStorageEnabled": true,
"collapseBlocked": true,
"colorBlindFriendly": false,
@aayushjain
aayushjain / openpgp.txt
Created June 27, 2019 17:51
OpenKeychain Linked Identity
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:32c3a7c10a41ba4815e21f5e3ea49b84b4dc30f2]
List Current Windows Apps

Get-AppxPackage | Select Name, PackageFullName

List all Provisioned Apps

(apps set to install for new user the first time account is signed in)
Get-AppxProvisionedPackage -Online | Format-Table DisplayName, PackageName
or Get-AppxProvisionedPackage -Online | Select DisplayName | Sort DisplayName

List all System Apps (imp)
@aayushjain
aayushjain / .gitconfig
Last active August 3, 2020 20:43
Useful aliases to integrate in your workflow
[user]
name = Aayush Jain
email = aayush.2896@gmail.com
[core]
editor = 'C:/Program Files/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin
pager = less
[alias]
st = status
a = add
c = commit