Skip to content

Instantly share code, notes, and snippets.

View yomybaby's full-sized avatar

Jong Eun Lee yomybaby

View GitHub Profile
@yomybaby
yomybaby / app.js
Created January 2, 2012 03:35 — forked from pec1985/app.js
FaceBook slide in views
// Create a new project and copy this code into app.js
// if you use this code, please give me credit :)
function JustAView(text){
var view = Ti.UI.createView({
backgroundColor:"#"+((1<<24)*Math.random()|0).toString(16),
width:200,
height:100
});
var label = Ti.UI.createLabel({
@yomybaby
yomybaby / example.js
Created June 15, 2012 05:57 — forked from salbito/gist:1165174
Backbone.sync for Titanium HttpClient and Titanium ACS API
// http://cloud.appcelerator.com/docs/api/v1/acls/create
var Backbone = require('/lib/backbone'),
_ = require('/lib/underscore');
var ReviewModel = Backbone.Model.extend({
modelNameForACS : 'Reviews' //just add Model Name of ACS
});
var ReviewCollection = Backbone.Collection.extend({
@yomybaby
yomybaby / TiViewProxy.h
Created July 2, 2012 09:32
titanium disable clipping option for iOS view
/**
* Appcelerator Titanium Mobile
* Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved.
* Licensed under the terms of the Apache Public License
* Please see the LICENSE included with this distribution for details.
*/
#import "TiProxy.h"
#import "TiUIView.h"
#import "TiRect.h"
#import <pthread.h>
@yomybaby
yomybaby / ActionBarView.js
Created August 15, 2012 03:59 — forked from Mode54/ActionBarView.js
Action Bar Module for Titanium Mobile
/*
* Android API Guide
* http://developer.android.com/guide/topics/ui/actionbar.html
* Android Design Guide
* http://developer.android.com/design/patterns/actionbar.html
* Titanium Mobile will support someday
* https://jira.appcelerator.org/browse/TIMOB-2371
*/
var osName = Ti.Platform.osname,
isAndroid = osName==='android',
@yomybaby
yomybaby / LICENSE.md
Last active December 16, 2015 20:39 — forked from brandonb927/LICENSE.md
       DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
               Version 2, December 2004

Copyright (C) 2012 Brandon B. brandon@brandonbrown.io

Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed.

DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE

#!/bin/bash
#
# Build and iPhone Simulator Helper Script
# Shazron Abdullah 2011
#
# WARN: - if your .xcodeproj name is not the same as your .app name,
# this won't work without modifications
# - you must run this script in where your .xcodeproj file is
PROJECTNAME=$1
@yomybaby
yomybaby / readme.md
Last active December 24, 2015 05:09
How to add a Alloy custome formFactor
# 모르는것
# archetype, post_serializer
# incase net/http is not required
require "net/http"
require "uri"
require "json"
# ...?
require_dependency 'rate_limiter'
// Use to clear all cookies from webViews
// - Very useful when logging in users via third party webView login forms.
// Kosso
// October 2012
/*
Usage:
var cookiejar = require('com.hashpan.cookiedroid');
cookiejar.clearCookies();
@yomybaby
yomybaby / README.md
Last active March 1, 2016 12:20
iOS7 Colors CommonJS module.Color code from http://codepen.io/ChrisNager/pen/qjbdt I had a test for Titanium Mobile only. But you can use this for any platform supporting hex color code.