- Installed Apps from the Apple App Store
- Xcode
- DayOne
- Apptivate
- Marked
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -cr prl_mod/prl_fs/SharedFolders/Guest/Linux/prl_fs/inode.c prl_mod_patched/prl_fs/SharedFolders/Guest/Linux/prl_fs/inode.c | |
*** prl_mod/prl_fs/SharedFolders/Guest/Linux/prl_fs/inode.c 2010-12-20 20:53:25.000000000 +0100 | |
--- prl_mod_patched/prl_fs/SharedFolders/Guest/Linux/prl_fs/inode.c 2011-01-09 00:35:59.084213064 +0100 | |
*************** | |
*** 368,374 **** | |
init_buffer_descriptor(&bd, &pattr, PATTR_STRUCT_SIZE, 0, 0); | |
ret = host_request_attr(sb, p, buflen, &bd); | |
if (ret == 0) | |
! ret = inode_setattr(dentry->d_inode, attr); | |
dentry->d_time = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var http = require('http'), | |
httpProxy = require('http-proxy'); | |
// | |
// Create a new instance of HttProxy to use in your server | |
// | |
var proxy = new httpProxy.HttpProxy(); | |
//will match the root url or | |
//a request for any html pages |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "net/http" | |
class ProxyApp | |
def call(env) | |
begin | |
request = Rack::Request.new(env) | |
headers = {} | |
env.each do |key, value| | |
if key =~ /^http_(.*)/i | |
headers[$1] = value |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'redcarpet' | |
require 'Pygments' | |
class HTMLwithPygments < Redcarpet::Render::XHTML | |
# def doc_header() | |
# puts Pygments.styles() | |
# monokai |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global d3status | |
on run | |
set d3status to "" | |
end run | |
on idle | |
if d3status is not "Available" then | |
set thesource to do shell script "curl us.battle.net/d3/en/status" | |
set atid to AppleScript's text item delimiters |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <unordered_map> | |
#include "common.h" | |
class Entity | |
{ | |
public: | |
Entity(); | |
template<typename T> void addComponent(T* comp) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# original at https://gist.github.com/c0wfunk/3666392 | |
# revised by Fielding Johnston for personal use | |
# most recent available at | |
# https://gist.github.com/justfielding/f64f7729ae1c0683e3c9 | |
# usage: $0 source_dir [source_dir] ... | |
# where source_dir args are directories containing git repositories |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import json | |
from colored import fg, bg, attr | |
classes = json.loads('{' | |
'"Priest": "231",' | |
'"Rogue": "227",' | |
'"Mage": "81",' | |
'"Paladin": "211",' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this was a lazy hack, so use: | |
// | |
// sudo launchctl limit maxfiles 1000000 1000000 | |
// | |
// | |
// to get past the kqueue error on writing to the wordlist file | |
var ascii = 'abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ<>{}()[]":;-+=*&?^%$#@!~`_/|,.'; | |
var hkeys = "0123456789"; |
OlderNewer