Skip to content

Instantly share code, notes, and snippets.

View boydlee's full-sized avatar

Boydlee Pollentine boydlee

View GitHub Profile
@boydlee
boydlee / Gruntfile.js
Last active September 9, 2015 13:36 — forked from skypanther/Gruntfile.js
Grunt - build your Titanium app and upload to Installr
var _ = require('underscore')._;
module.exports = function(grunt) {
grunt.initConfig({
settings: {
appName: 'YourAppName',
ppUuid: 'uuid', /* Provisioning profile UUID */
distributionName: 'cert_name', /* Distr. certificate name */
keystoreLocation: '/Users/path/to/android.keystore', /* path to keystore */
storePassword: 'keystore_password', /* keystore password */
@joshjensen
joshjensen / alloy.py
Last active November 30, 2016 18:25
Alloy Grid - Open Alloy controllers, views, and styles in Sublime Text grid layout.
# Version: 0.0.022
# Please note: This has only been tested on Sublime Text 3 Build 3065
# Installation:
# 1. Click "Download Gist"
# 2. Put alloy.py in: ~/Library/Application Support/Sublime Text 3/Packages/User/
# 3. Set your layout to Grid 4 - Go to view > layout > Grid: 4
# 4. Add to the bliss of working with Alloy...
@vyatri
vyatri / README.md
Last active December 20, 2015 07:38
Twitter titanium oauth javascript to login, logout, tweet, and post photo to twitter

For those who got twitter authentication error:

in your app setting in dev.twitter.com , make sure you fill up callback_url field. Even though it's just a placeholder. Just to verify that you are using browser type app. Also tick "Allow this application to be used to Sign in with Twitter" checkbox. And make sure you have Access_Token generated on "Details" tab

original script ---> https://gist.github.com/rampicos/4320296

how to use ---> http://shareourideas.com/2012/12/18/linkedin-connect-for-appcelerator-titanium/

I modified the original script to be able to work on twitter v1.1 and PIN-based authentication.