Skip to content

Instantly share code, notes, and snippets.

View davidtucker's full-sized avatar

David Tucker davidtucker

View GitHub Profile
@davidtucker
davidtucker / output.txt
Created February 14, 2012 15:31
Output from ST2 Power Tools Generator Demonstration
> generateSenchaTouch2Project.sh
----------------------------------
SENCHA TOUCH 2 PROJECT GENERATOR
----------------------------------
Developed by David Tucker (http://www.davidtucker.net)
Project Hosted on Github (https://github.com/davidtucker/senchaTouch2Tools)
This code is licensed with an MIT License which can be viewed at
http://www.opensource.org/licenses/mit-license.php
@davidtucker
davidtucker / httpd.conf
Created February 14, 2012 03:30
Sample Apache Alias Entry
Alias /st2 /Projects/SenchaTouch2
<Directory "/Projects/SenchaTouch2">
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
@davidtucker
davidtucker / Main.js
Created February 9, 2012 02:28
Sample Sencha Touch View
Ext.define("CoffeeHunter.view.Main", {
extend: "Ext.TabPanel",
xtype: "main",
config: {
tabBarPosition: "bottom",
ui: "brown",
items: [
{
xtype: "locations",
@davidtucker
davidtucker / SampleComponent.js
Created February 9, 2012 02:23
Sample EaselJS Component
// Sample EaselJS Component
(function (window) {
function SampleComponent () {
this.initialize();
}
SampleComponent.prototype = new Shape();
@davidtucker
davidtucker / manifestGenerator
Created December 15, 2010 20:32
Generate a Flex Library manifest XML file via Ant by utilizing Flex metadata.
<!--
==========================================================================
Macro: generateManifestFile
Creates a manifest file for components using the [Manifest( "ComponentName" )]
metadata.
==========================================================================
-->
<macrodef name="generateManifestFile">
<attribute name="outputFile" default="${basedir}/manifest.xml" />
<attribute name="sourceDirectory" default="src" />