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
From 787dd8c55a4cee7fdfdbf509e7b3cac109504fe2 Mon Sep 17 00:00:00 2001 | |
From: pbaker <[email protected]> | |
Date: Sun, 3 Oct 2010 23:35:48 -0400 | |
Subject: [PATCH 1/3] *nix-based kludge to workaround absence of ignore_patterns in python 2.5, only appeared in 2.6 | |
--- | |
lib/rapidsms/management/commands/startproject.py | 19 +++++++++++++------ | |
1 files changed, 13 insertions(+), 6 deletions(-) | |
diff --git a/lib/rapidsms/management/commands/startproject.py b/lib/rapidsms/management/commands/startproject.py |
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 file is part of ThreadPool, a jruby or ruby-based | |
# thread pool manager. | |
# Copyright (C) 2009,2010 Daniel Bush | |
# This program is distributed under the terms of the MIT | |
# license. | |
# A copy of the license is | |
# enclosed with this project in the file LICENSE. | |
# | |
# |
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | |
"http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<head> | |
<!-- | |
This is an example that shows how to create an application that uses | |
an embedded sqlite database in a mobile device (iphone,ipod,ipad,android using phonegap, jquery | |
and sqlite. |
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
(function(){ | |
// Geo namespace | |
var App; | |
if (typeof exports !== 'undefined') { | |
App = exports; | |
} else { | |
App = this.App = {}; | |
} |
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
8972dbe, 2012-03-25 23:44:55: Initial commit | <- API? I love APIs. It's almost midnight, better knock this out. | |
54793e3, 2012-03-25 23:50:25: Check authToken | <- Deprecated? White-label? I thought that was Walmart... | |
a1deaad, 2012-03-26 00:07:44: Separate files, add Google CDN jQuery | <- Okay, add some php and js and it'll just fall into place. Like that problem set... | |
f14d2d2, 2012-03-26 00:33:58: Add jquery ajax post call (CORS?)...whoops it's a GET to a different URL | <- Ughrufmph. I know this isn't going to work...what? | |
9fb8d58, 2012-03-26 02:00:11: Authtoken with hardcoded php local proxy | | |
87df47a, 2012-03-26 02:13:49: Add cross-domain proxy; returns success | | |
4b4893a, 2012-03-26 02:15:37: Clean up wrong code | | |
f820 |
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 | |
# Set the marketing version of the project. | |
# Take the number from git and apply it to the project. | |
# Any "v" prepended to the git tag will be removed. | |
# Get the current release description from git. | |
git_version=`git describe --tags` | |
# Check to see if the tag starts with with "v", and remove if so. |
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
Pod::Spec.new do |s| | |
s.name = 'Facebook-iOS-SDK' | |
s.version = '3.0.6.b' | |
s.platform = :ios | |
s.license = 'Apache License, Version 2.0' | |
s.summary = 'The iOS SDK provides Facebook Platform support for iOS apps.' | |
s.description = 'The Facebook iOS SDK enables you to access the Facebook Platform APIs including the Graph API, FQL, and Dialogs.' | |
s.homepage = 'http://developers.facebook.com/docs/reference/iossdk' | |
s.author = 'Facebook' | |
s.source = { :git => 'https://github.com/facebook/facebook-ios-sdk.git', :tag => 'sdk-version-3.0.6.b' } |
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
Pod::Spec.new do |s| | |
s.name = 'MJPopupViewController' | |
s.version = '0.0.0' | |
s.platform = :ios | |
s.summary = 'A UIViewController Category to display a ViewController as a popup with different transition effects.' | |
s.homepage = 'https://github.com/martinjuhasz/MJPopupViewController' | |
s.author = { 'Martin Juhasz' => '[email protected]' } | |
s.source = { :git => 'https://github.com/martinjuhasz/MJPopupViewController.git', :commit => '45ac970c38ed5240a111b9047cc39b5413d42f6e' } | |
s.source_files = 'Source' | |
s.frameworks = 'QuartzCore', 'CoreGraphics' |
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
Pod::Spec.new do |s| | |
s.name = 'LLRoundSwitch' | |
s.version = '1.0.1' | |
s.license = 'MIT' | |
s.summary = 'Customizable replacement for UISwitch with ARC support' | |
s.homepage = 'http://github.com/LordLobo/LLRoundSwitch' | |
s.author = { 'LordLobo' => '[email protected]' } | |
s.source = { :git => 'http://github.com/LordLobo/LLRoundSwitch.git', :commit => 'ae2fdb6d7bc7b6b0f1e96f4aadd69f7246477422' } | |
s.description = 'Customize the on/off text, the color of the background, supports event delegation, all with ARC in-mind.' | |
s.platform = :ios |
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
EventMachine | |
============ | |
Installation: | |
$ gem install eventmachine | |
Synchronous Ruby code (Not EM appropriate): | |
ret = operation(); do_something_with(ret) | |
Evented, asynchronous code (EM appropriate): |
OlderNewer