Skip to content

Instantly share code, notes, and snippets.

View soachishti's full-sized avatar
💭
Away

Owais soachishti

💭
Away
View GitHub Profile
#include<iostream>
#include<string>
#include <conio.h>
#include <windows.h>
#include<fstream>
using namespace std;
class node{
private:
string data;
node *next;
@soachishti
soachishti / rsa.py
Created March 28, 2018 19:35
A simple RSA implementation in Python
'''
620031587
Net-Centric Computing Assignment
Part A - RSA Encryption
'''
import random
'''
@soachishti
soachishti / noscript-tracking.go
Created May 13, 2019 07:07 — forked from wybiral/noscript-tracking.go
Tracking cursor position in real-time with remote monitoring (without JavaScript)
// Tracking cursor position in real-time without JavaScript
// Demo: https://twitter.com/davywtf/status/1124146339259002881
package main
import (
"fmt"
"net/http"
"strings"
)