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 | |
dir="/Users/dave/Sites/" | |
project="" | |
# Check for Git | |
type -P git &>/dev/null || { echo "Git is not installed. Exiting." >&2; exit 1; } | |
# Get a project name | |
while [ -z "$project" ] | |
do |
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 | |
site="" | |
prefix="output" | |
# Loop through the variables | |
while [ "$1" != '' ] | |
do | |
case $1 in | |
-u| --url ) | |
shift |
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
/** | |
* Run through all of the paths and turn the transparency to | |
* 100% to avoid problems in flash. | |
*/ | |
var Transparency = { | |
total: 0, | |
// Removes all of the transparency |
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
import net.davewidmer.flint.Streaks; | |
var streaks:Streaks = new Streaks(); | |
addChild(streaks); | |
streaks.start(); |
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
/** | |
* Paint-like Streaks using the Flint particle generator. | |
* | |
* @author Dave Widmer | |
*/ | |
package net.davewidmer.flint | |
{ | |
import flash.filters.BlurFilter; | |
import flash.geom.Point; | |
import flash.geom.Rectangle; |
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
import net.davewidmer.flint.Snow; | |
var snowfall:Snow = new Snow(); | |
addChild(snowfall); | |
snowfall.start(); |
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
/** | |
* Snowfall using the Flint particle generator. | |
* | |
* @author Dave Widmer | |
*/ | |
package net.davewidmer.flint | |
{ | |
import flash.geom.Point; | |
import net.davewidmer.display.BaseSprite; |
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
/** | |
* The BaseSprite is the foundation for all of the display objects | |
* that are used in this set of classes. | |
* | |
* @author Dave Widmer | |
* @see http://www.davewidmer.net | |
* | |
* @license MIT (http://www.opensource.org/licenses/mit-license.php) | |
* @copyright 2010 © Dave Widmer | |
*/ |
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
<?php | |
/** | |
* Formats a tweet with links | |
* | |
* @author Dave Widmer | |
* @see http://www.davewidmer.net | |
* | |
* @param string Tweet | |
* @return string Formatted Tweet |
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
<phpunit bootstrap="public/index.php" colors="true" verbose="true"> | |
<testsuites> | |
<testsuite name="PHPUnit Test Suite"> | |
<file>31x/modules/unittest/tests.php</file> | |
</testsuite> | |
</testsuites> | |
<groups> | |
<exclude> | |
<group>kohana</group> | |
</exclude> |
OlderNewer