Skip to content

Instantly share code, notes, and snippets.

View sohaeb's full-sized avatar

Suhaib Abdulghani sohaeb

View GitHub Profile
anonymous
anonymous / TreeCutter.cpp
Created May 20, 2016 18:36
#include <windows.h>
#include <vector>
#include <iostream>
#include <ctime>
#include <process.h>
using namespace std;
bool started = false;
vector<INPUT> v;
anonymous
anonymous / TreeCutter.cpp
Created May 20, 2016 12:04
#include <windows.h>
#include <vector>
#include <iostream>
#include <ctime>
#include <process.h>
using namespace std;
bool started = false;
vector<INPUT> v;
@staltz
staltz / introrx.md
Last active June 3, 2024 11:21
The introduction to Reactive Programming you've been missing
@shrayasr
shrayasr / update-sidebar-praw.md
Last active August 9, 2020 08:33
Updating sidebar content with PRAW

Updating reddit sidebar content with PRAW

PRAW is the AWESOME Reddit API Wrapper written in Python.

Download PRAW

pip install praw

Import PRAW

#!/usr/bin/python
# -*- coding: utf-8 -*-
import subprocess
__all__ = ["transform"]
__version__ = '0.3'
__author__ = 'Christoph Burgmer <cburgmer@ira.uka.de>'
__url__ = 'http://github.com/cburgmer/upsidedown'