Skip to content

Instantly share code, notes, and snippets.

View jatindhankhar's full-sized avatar
🎯
">script>js:alert(1)<?script>

Jatin Dhankhar jatindhankhar

🎯
">script>js:alert(1)<?script>
View GitHub Profile
@jatindhankhar
jatindhankhar / arch_linux_notes
Created January 6, 2015 14:24
Arch Installation guide
Download and install by following the guide by Linux Veda
#systemctl enable NetworkManager
# systemctl start NetworkManager
Disable DHCPCD
systemctl disable dhcpcd.service #Confilcts
Install yaourt
Fix Yaourt error arising due to curl and IPV6
@jatindhankhar
jatindhankhar / 0_reuse_code.js
Last active August 29, 2015 14:11
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@jatindhankhar
jatindhankhar / keybase.md
Last active February 11, 2017 17:03
Keybase Identity File

Keybase proof

I hereby claim:

  • I am jatindhankhar on github.
  • I am jatin (https://keybase.io/jatin) on keybase.
  • I have a public key whose fingerprint is 633F 3305 5C51 6A75 CB04 E9A0 5DE6 30E3 4CEF BA46

To claim this, I am signing this object:

@jatindhankhar
jatindhankhar / mail.py
Created September 22, 2014 16:45
Simple python script to Mail stuff
import os
import smtplib
from email.mime.text import MIMEText import csv
with open('/home/jatin/py.csv', 'rb') as f: # Replace path with your file path
reader = csv.reader(f)
for row in reader: