Skip to content

Instantly share code, notes, and snippets.

View retrography's full-sized avatar

Mahmood S. Zargar retrography

  • VU Amsterdam
  • Amsterdam, Netherlands
  • X @mszargar
View GitHub Profile
@retrography
retrography / ndirs.sh
Last active June 11, 2017 22:52
Persistence layer for ZSH named directories. Introduces the following zsh functions: bm, rbm, lam, tbm
# Directory bookmark handler
touch ~/.ndirs
function rbm() { sed -i "/^$1\t/d" ~/.ndirs; export $1='' }
function tbm() { hash -d _="$(pwd)" }
function bm() { rbm $1; tbm $1; echo -e "$1\t$(pwd)" >> ~/.ndirs }
function lbm() { sort ~/.ndirs }
sed -e 's/^/hash -d /' -e 's/\t/="/' -e 's/$/"/' ~/.ndirs | while read line; do eval $line; done
@retrography
retrography / annotex.py
Last active November 20, 2024 14:45
PDF highlight and annotation extractor
#!/usr/bin/env python
__author__ = 'Mahmood S. Zargar'
import poppler
import sys
import urllib
import os
def main():
@retrography
retrography / color_comb.sh
Created January 21, 2016 17:51
Bash script for combining several IntelliJ IDEA (or other JetBrains IDE) syntax color themese into a single jar file
#!/bin/bash
urldecode() {
# urldecode <string>
local url_encoded="${1//+/ }"
printf '%b' "${url_encoded//%/\\x}"
}
touch "IntelliJ IDEA Global Settings"
@retrography
retrography / openconnect.md
Created January 14, 2016 20:35 — forked from moklett/openconnect.md
OpenConnect VPN on Mac OS X

Unfortunately, the Cisco AnyConnect client for Mac conflicts with Pow. And by "conflicts", I mean it causes a grey-screen-of-death kernel panic anytime you connect to the VPN and Pow is installed.

As an alternative, there is OpenConnect, a command-line client for Cisco's AnyConnect SSL VPN.

Here's how to get it set up on Mac OS X:

  1. OpenConnect can be installed via homebrew:

     brew update
    

brew install openconnect

@retrography
retrography / db.sh
Created December 31, 2015 08:31
A simple CSV-based key/value storage
#!/bin/bash
# Use with `source db.sh`
touch db.csv
db () {
case $1 in
put)
key=$2
@retrography
retrography / define.py
Created December 31, 2015 08:24
Uses OSX Dictionary API Python bindings to fetch dictionary definition of a word (and colorizes it)
#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
import re
from DictionaryServices import *
class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
@retrography
retrography / SpamSumCompare.r
Created November 28, 2015 05:13
SpamSumCompare - A simplified implementation of SpamSum Hash comparison algorithm in native R.
# SpamSumCompare - A simplified implementation of SpamSum Hash
# comparison algorithm in native R.
#
# Copyright (C) 2002 Andrew Tridgell <[email protected]>
# Copyright (C) 2006 ManTech International Corporation
# Copyright (C) 2013 Helmut Grohne <[email protected]>
# Copyright (C) 2015 Mahmood S. Zargar <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@retrography
retrography / 0_reuse_code.js
Created November 16, 2015 18:14
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
@retrography
retrography / ttags.sh
Created November 2, 2015 21:47
Generate appropriate tags for a URL from tweets
$URL="http://someurl"
t search all -n 100 "$URL" | grep -Eo '#[A-Za-z_]*'| gsed -r 's/^#//' | tr '[A-Z]' '[a-z]' | sort | uniq -c | sort -r
@retrography
retrography / respawn.sh
Created September 23, 2015 05:13
One-liner that respawns a crash-prone process every time it quits
while true; do ./scraper.rb; done