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
<!-- | |
========================================================================== | |
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" /> |
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
// Sample EaselJS Component | |
(function (window) { | |
function SampleComponent () { | |
this.initialize(); | |
} | |
SampleComponent.prototype = new Shape(); |
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
Ext.define("CoffeeHunter.view.Main", { | |
extend: "Ext.TabPanel", | |
xtype: "main", | |
config: { | |
tabBarPosition: "bottom", | |
ui: "brown", | |
items: [ | |
{ | |
xtype: "locations", |
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
Alias /st2 /Projects/SenchaTouch2 | |
<Directory "/Projects/SenchaTouch2"> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Order allow,deny | |
Allow from all | |
</Directory> |
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
> 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 |
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
{% extends "layout.html" %} | |
{% block canonical %}{{ url }}{{ page.url }}{% endblock %} | |
{% block title %}{{ page.title }}{% endblock %} | |
{% block meta %} | |
{{ super() }} | |
{% if page.metadata.keywords %}<meta name="keywords" content="{{ page.metadata.keywords }}">{% endif %} | |
{% endblock %} | |
{% block content %} | |
<div class="row"> | |
<div class="twelve columns"> |
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
--- | |
title: About David Tucker | |
subtitle: Software developer and architect, author, speaker, and digital strategist | |
author: David tucker | |
date: 2013-01-02 | |
template: about.html | |
keywords: david tucker,developer,architect,author,speaker | |
changefreq: monthly | |
priority: 0.7 | |
--- |
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
var http = require('http'); | |
http.createServer(function (req, res) { | |
res.writeHead(200, {'Content-Type': 'text/plain'}); | |
res.end('The Web Server is Running\n'); | |
}).listen(8095); | |
console.log('Server Running on Port 8095'); |
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
{ | |
"name" : "sample-node-application", | |
"version" : "0.0.1", | |
"author" : "David Tucker" | |
} |
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
# Installing Express and Socket.io | |
npm install express --save-dev | |
npm install socket.io --save-dev | |
# Installing Dependencies (for other developers) | |
npm install | |
# Updating Dependencies (if new versions were released) | |
npm update |
OlderNewer