View dot.py
This file contains 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/python | |
#---------------------------------------------------------------------- | |
# Be sure to add the python path that points to the LLDB shared library. | |
# | |
# # To use this in the embedded python interpreter using "lldb" just | |
# import it with the full path using the "command script import" | |
# command | |
# (lldb) command script import /path/to/dot.py | |
#---------------------------------------------------------------------- |
View MachTimer
This file contains 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
==> MachTimer.h <== | |
// | |
// MachTimer | |
// Tout | |
// | |
// Code sourced from http://zpasternack.org/high-resolution-timing-in-cocoa/ | |
// | |
#import <Foundation/Foundation.h> | |
#include <mach/mach_time.h> |
View version.rb
This file contains 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 | |
$: << File.expand_path(File.dirname(File.realpath(__FILE__)) + './../lib') | |
require 'gli' | |
require 'version' | |
require 'versionomy' | |
include GLI::App | |
#version Version::VERSION |
NewerOlder