Skip to content

Instantly share code, notes, and snippets.

View ahmadkakarr's full-sized avatar

Ahmed Hassan Khan Kakar ahmadkakarr

  • Lahore, Punjab, Pakistan
View GitHub Profile
@ahmadkakarr
ahmadkakarr / client.opvn
Created August 6, 2017 22:27 — forked from lookingcloudy/client.opvn
Setup OpenVPN on Open Media Vault Server
#sample client configuration file
#place the ca.crt, client.crt, and client.key
#in the same folder as this configuration file.
#Import this into your OpenVPN client
client
dev tun
proto udp
# change this to the IP or name of your server
@ahmadkakarr
ahmadkakarr / feedly.py
Created June 16, 2017 19:49 — forked from scturtle/feedly.py
python scripts for feedly
import re
import json
import requests
URL_TO_SAVE = ('https://feedly.com/v3/streams/contents?'
'streamId=user%2F{}%2Ftag%2Fglobal.saved&count=100')
HEADERS = dict(l.strip().split(': ') for l in open('headers.txt').readlines()
if len(l.strip()))
USERID = re.search(r'"feedlyId":"([^"]+)"', HEADERS['Cookie']).group(1)
@ahmadkakarr
ahmadkakarr / package.json
Created June 4, 2017 19:05 — forked from coryhouse/package.json
package.json for Building a JS Development Environment on Pluralsight
{
"name": "javascript-development-environment",
"version": "1.0.0",
"description": "JavaScript development environment Pluralsight course by Cory House",
"scripts": {
},
"author": "Cory House",
"license": "MIT",
"dependencies": {
"whatwg-fetch": "1.0.0"