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
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 |
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
// | |
// JSSchema.h | |
// Subject | |
// | |
// Created by ∞ on 22/10/10. | |
// Copyright 2010 Emanuele Vulcano (Infinite Labs). All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
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 | |
require 'osx/cocoa' | |
require 'optparse' | |
include OSX | |
$service_name = nil | |
$service_port = nil | |
$service_type = nil |
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
#define ILAssertNoNSError(errVarName, call) \ | |
{ \ | |
NSError* errVarName; \ | |
if (!(call)) \ | |
[NSException raise:@"ILUnexpectedNSErrorException" format:@"Operation " #call " failed with error %@", errVarName]; \ | |
} |
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
// | |
// ILTelemetry.h | |
// Telemetry | |
// | |
// Created by ∞ on 21/06/10. | |
// Copyright 2010 __MyCompanyName__. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
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
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); |
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
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 |
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
// | |
// ILType.h | |
// ILType | |
// | |
// Created by ∞ on 18/04/10. | |
// Copyright 2010 __MyCompanyName__. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
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
// | |
// ILViewController.h | |
// ILViewController | |
// | |
// Created by ∞ on 07/04/10. | |
// | |
// The contents of this file are in the public domain. | |
#import <UIKit/UIKit.h> |
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
// | |
// MvrInertia.h | |
// Mover-iPad | |
// | |
// Created by ∞ on 30/03/10. | |
// Copyright 2010 __MyCompanyName__. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> |