Skip to content

Instantly share code, notes, and snippets.

View jmahmood's full-sized avatar

Jawaad Mahmood jmahmood

View GitHub Profile
import Cocoa
// Load data from a URL.
let url: NSURL = NSURL(string: "http://www.tokyomuslim.com")
let resultsData = NSData(contentsOfURL: url, options: NSDataReadingOptions.DataReadingUncached, error: nil)
let resultsString:NSString = NSString(data: resultsData, encoding: NSUTF8StringEncoding)
// Load JSON data.
let jsonUrl: NSURL = NSURL(string: "https://api.github.com/users/mralexgray/repos/")
let jsonResultsData = NSData(contentsOfURL: jsonUrl, options: NSDataReadingOptions.DataReadingUncached, error: nil)
@jmahmood
jmahmood / gist:6526167
Created September 11, 2013 16:27
Data CD/DVD Backup script
#! /bin/bash
# Wait for a CD to be inserted then copy the contents
#
echo "CD copy, press <ctrl>C to exit"
echo "Looking for disk..."
#
# Go into a continuous loop always looking for a new CD
while :
do
@jmahmood
jmahmood / facebook
Created March 25, 2013 02:11
My Facebook-avoidance strategy
NameVirtualHost facebook.com:80
<VirtualHost facebook.com:80>
ServerAdmin [email protected]
DocumentRoot /var/www/docs/facebook.com
ServerName facebook.com
ErrorLog logs/facebook.com-error_log
CustomLog logs/facebook.com-access_log common
</VirtualHost>
# /var/www/docs/facebook.com/index.php
@jmahmood
jmahmood / base_websql.coffee
Created September 6, 2012 08:15
Coffeescript WebSQL
# This is a simple websql class I built in coffeescript.
# This gives a good example of how to use "fat arrows" to maintain a different
# level's "this" pointer - without fat arrows, you will not be able to save @results
"use strict";
root = exports ? this
class @websql
constructor: ->
@jmahmood
jmahmood / example.py
Created July 9, 2012 03:54
3 years of python
A few years ago:
def parseBugzillaCookies(self,s):
if s is None: return {self.SESSION_ID_STRING:None}
ret = {}
tmp = s.split(';')
for t in tmp:
t = t.replace('HttpOnly, ','')
coppia = t.split('=')
if coppia[0].strip() in ['Bugzilla_logincookie','Bugzilla_login']:
@jmahmood
jmahmood / stickystudy.py
Created May 19, 2012 08:40
Sticky Study Import File Generator
o = open("Kanji_Vocab_List.txt")
contents = o.read().decode('utf8')
o.close()
c = contents.split()
words = [ (c[i], c[i+1]) for i in range(len(c)) if i%2==0 ]
# This is for testing actually writing the kanji.
output = []
@jmahmood
jmahmood / chgrp.py
Created April 27, 2012 04:23
Python chgrp Function
import os
def chgrp(filepath, gid):
uid = os.stat(filepath).st_uid
os.chown(filepath, uid, gid)
@jmahmood
jmahmood / output_screenshots.sh
Created March 23, 2012 06:04
Get Screenshots for files in a directory
for file in *.m4v ; do
ffmpeg -ss 00:00:15 -i $file -vframes 1 -an -f image2 $(echo $file | rev | cut -f2- -d. | rev).png
done
@jmahmood
jmahmood / image_resize.py
Created February 14, 2012 07:01
Resize Images in Python
#!/usr/bin/env python
# This is intended as a quick and dirty image resizer. It doesn't even check to see if the filename is already in use. I
# don't suggest it for production use without changes.
# Stashing it here for future improvements.
import Image
import sys
import os
def resize_image_width_ratio(filename, new_filename, max_width=800):
@jmahmood
jmahmood / views.example.py
Created January 26, 2012 03:44
An example of a reusable Django View
# This is not tested and not complete, but give an interesting example of how you can turn a Django view into something reusable.
# It is based on the code here: http://code.google.com/p/django-jqchat/
# It might make sense to turn this into an abstract base class.
# The purpose of this is:
# 1. Improved code reuse for outputting data.
# 2. Easier modification to relevant areas
# 3. Because it is new and interesting to me (Kiss my future jobs goodbye for admitting that :/)
# 4. Can stash it in a different file, so the view is not as cluttered-up.