Skip to content

Instantly share code, notes, and snippets.

View jatinkrmalik's full-sized avatar
👨‍💻
munching code

Jatin K Malik jatinkrmalik

👨‍💻
munching code
View GitHub Profile
# Credit Card Validator
# Takes in a credit card number from a common credit card vendor (Visa, MasterCard, American Express, Discoverer) and validates it to make sure that it is a valid number.
# We will use Luhn Algorithm to validate the card. Read more @ https://en.wikipedia.org/wiki/Luhn_algorithm
# Some sample CC numbers to verify:
# Visa 4111 1111 1111 1111
# MasterCard 5500 0000 0000 0004
# American Express 3400 0000 0000 009
# Diner's Club 3000 0000 0000 04
@jatinkrmalik
jatinkrmalik / whoIs.py
Last active November 1, 2016 18:22
Whois Search Tool
# Whois Search Tool
# Enter an IP or host address and have it look it up through whois and return the results to you.
# Created by: Jatin Kumar Malik | jatinkrmalik(at)gmail(dot)com
# Pre-requisites:
# 1. Python 3 - To install: sudo apt-get install python3
# 2. Beautiful Soup library - To install: sudo pip3 install bs4
# 3. Requests library - To install: sudo pip3 install requests
@jatinkrmalik
jatinkrmalik / countdown.sh
Last active February 8, 2017 08:15
A small script to implement countdown in bash
#!/bin/bash
# A small script to implement countdown in bash
seconds=200; # Set countdown time in seconds
date1=$((`date +%s` + $seconds)); # to get future time in seconds
# for asthetics
echo ""
@jatinkrmalik
jatinkrmalik / cowsayFortune.sh
Created February 8, 2017 08:19
Get your fortune in a fancy way every 10 seconds
#!/bin/bash
# Get your fortune in a fancy way every 10 seconds.
# ___________________________
#< Let me tell your fortune! >
# ---------------------------
# \ ^__^
# \ (oo)\_______
# (__)\ )\/\
@jatinkrmalik
jatinkrmalik / hackEVMs.cpp
Last active March 16, 2017 13:10
How EVMs were hacking in recent Legislative Assembly Elections 2017 in India! :P
/*
Program: Hacking all EVMs enabling BJP to win.
Description: Well, Dev Jha asked for it. ¯\_(ツ)_/¯
Author: Jatin K Malik
Date: 16-03-2017 06:11:17 PM
*/
#include < iostream >
using namespace std;
@jatinkrmalik
jatinkrmalik / identifyCreditCardType.js
Created March 22, 2017 07:34
Code snippet to identify the credit card type from it's number
function GetCardType(number)
{
// visa
var re = new RegExp("^4");
if (number.match(re) != null)
return "Visa";
// Mastercard
re = new RegExp("^5[1-5]");
if (number.match(re) != null)
@jatinkrmalik
jatinkrmalik / getXKCD.py
Created March 22, 2017 07:58
Download all XKCD comics with their original names
#!/usr/bin/env python3
import requests,sys,re
from bs4 import BeautifulSoup
import time
from datetime import datetime
from urllib.request import urlopen
now = time.time()
import string
@jatinkrmalik
jatinkrmalik / sps.py
Last active June 2, 2017 09:23
Stone | Paper | Scissors
# Stone Paper Scissors
import random
import os
def cls(): # to clear the screen
os.system('cls' if os.name == 'nt' else 'clear')
# Testing python-omxplayer-wrapper from https://github.com/willprice/python-omxplayer-wrapper
from omxplayer import OMXPlayer as op
from time import sleep
file_path = '../audio/Baby.mkv'
player = op(file_path)
player.play()
sleep(10)
@jatinkrmalik
jatinkrmalik / faceDetect.py
Last active October 6, 2017 08:20
Face detection using DLIB and OpenCV3
# !/usr/bin/python
import time
from modules.faceOnboarding import service
from flask import Response
from modules.faceOnboarding import app
import tempfile
@app.app.route('/video_feed')