Skip to content

Instantly share code, notes, and snippets.

@millenomi
millenomi / gist:756048
Created December 27, 2010 11:09
Need to apply some manipulation to strings in arbitrary apps? Clipboard filtering to the rescue! (OS X 10.6+ only, but can be adapted to other versions and OSes.)
require 'osx/cocoa'
pboard = OSX::NSPasteboard.generalPasteboard
x = nil
loop do
new_x = `pbpaste`
if new_x != x
x = new_x
y = x.gsub(/Art\./, 'art').gsub(/[^a-zA-Z0-9]/, '').downcase
puts y
@millenomi
millenomi / SJSchema.h
Created October 22, 2010 09:28
A class for validating a decoded JSON structure without tearing any precious hair.
//
// JSSchema.h
// Subject
//
// Created by ∞ on 22/10/10.
// Copyright 2010 Emanuele Vulcano (Infinite Labs). All rights reserved.
//
#import <Foundation/Foundation.h>
#!/usr/bin/env ruby
require 'osx/cocoa'
require 'optparse'
include OSX
$service_name = nil
$service_port = nil
$service_type = nil
#define ILAssertNoNSError(errVarName, call) \
{ \
NSError* errVarName; \
if (!(call)) \
[NSException raise:@"ILUnexpectedNSErrorException" format:@"Operation " #call " failed with error %@", errVarName]; \
}
//
// ILTelemetry.h
// Telemetry
//
// Created by ∞ on 21/06/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
if (!ILabs.DraggableBehavior) {
ILabs.DraggableBehavior = function(element) {
var originalTransform;
var originalX, originalY;
var self = {};
function handleDragStart(e) {
originalTransform = new WebKitCSSMatrix(window.getComputedStyle(element).webkitTransform);
originalX = Event.pointerX(e.move);
require 'build_idioms/webos'
BuildIdioms::WebOS.mojo_application \
:sources_path => 'stylematters'
# examples:
# if at includes/idioms/webos.rb:
# rake -Iincludes build
# rake -Iincludes clean
# rake -Iincludes run
//
// ILType.h
// ILType
//
// Created by ∞ on 18/04/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
//
// ILViewController.h
// ILViewController
//
// Created by ∞ on 07/04/10.
//
// The contents of this file are in the public domain.
#import <UIKit/UIKit.h>
//
// MvrInertia.h
// Mover-iPad
//
// Created by ∞ on 30/03/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>