This gist's comment stream is a collection of webdev apps for OS X. Feel free to add links to apps you like, just make sure you add some context to what it does — either from the creator's website or your own thoughts.
— Erik
#!/usr/bin/env groovy | |
@Grab('org.apache.pdfbox:pdfbox:1.8.8') | |
import org.apache.pdfbox.cos.COSArray | |
import org.apache.pdfbox.cos.COSString | |
import org.apache.pdfbox.pdfparser.PDFStreamParser | |
import org.apache.pdfbox.pdfwriter.ContentStreamWriter | |
import org.apache.pdfbox.pdmodel.PDDocument | |
import org.apache.pdfbox.pdmodel.PDPage | |
import org.apache.pdfbox.pdmodel.common.PDStream | |
import org.apache.pdfbox.util.PDFOperator |
import urllib2 | |
import threading | |
from Queue import Queue | |
import sys, os, re | |
class ThreadedDownload(object): | |
REGEX = { | |
'hostname_strip':re.compile('.*\..*?/', re.I) | |
} |
import re | |
import shutil | |
import argparse | |
from os import path | |
from sys import stderr | |
# | |
# Author: Daxda | |
# Date: 02.04.2014 | |
# WTF: This is a quick tool I've hacked together to easily remove the meta |
Go to http://developer.apple.com/downloads, log in with your Apple ID (free) and download the newest version of either Command Line Tools (OS X Lion) for Xcode or Command Line Tools (OS X Mountain Lion) for Xcode. Run the installer in the dmg and you'll have the LLVM compiler, make
, and other build tools.
Install XQuarts to satisfy a library dependency for PHP.
require 'formula' | |
class Visualpython < Formula | |
homepage 'http://www.vpython.org/' | |
url 'http://www.vpython.org/contents/download/visual-5.74_release.tar.bz2' | |
sha1 'd658166f681e66c2a412a9e8a7f6b6a8476884f3' | |
depends_on :x11 # if your formula requires any X11/XQuartz components | |
depends_on 'boost' | |
depends_on 'gtkglextmm' |