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
body{ | |
position: relative; | |
-webkit-transition: left .2s ease; | |
} |
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
p { background-color: red; } | |
p { background-color: "Behold I am not a valid color at ALL!!!!" } |
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
<!-- | |
Copyright (c) 2012 Terrence Ryan | |
Permission is hereby granted, free of charge, to any person obtaining a copy of this | |
software and associated documentation files (the "Software"), to deal in the Software | |
without restriction, including without limitation the rights to use, copy, modify, | |
merge, publish, distribute, sublicense, and/or sell copies of the Software, and to | |
permit persons to whom the Software is furnished to do so, subject to the following | |
conditions: |
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
#venn div{ | |
height: 360px; | |
width: 360px; | |
border-radius:180px; | |
-khtml-border-radius:180px; | |
-moz-border-radius:180px; | |
-webkit-border-radius:180px; | |
border: 1px solid #000; | |
display: table; | |
float: left; |
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/sh | |
project="[phonegap projectnumber]"; | |
username="[phonegap username]"; | |
password="[phonegap password]"; | |
appPath="[path to www folder]; | |
projectPath="[path where you want the apk file]; | |
##commit changes |
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
</div> | |
</article> | |
</div> | |
<footer> | |
</footer> | |
</body> |
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
</div> | |
</div> | |
</div> | |
<div id=“footer”> | |
</div> | |
</body> |
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
private const RADIUS_OF_EARTH_IN_MILES:int = 3963; | |
private const RADIUS_OF_EARTH_IN_FEET:int =20925525; | |
private const RADIUS_OF_EARTH_IN_KM:int =6378; | |
private const RADIUS_OF_EARTH_IN_M:int =6378000; | |
private function distanceBetweenCoordinates(lat1:Number,lon1:Number, | |
lat2:Number,lon2:Number, | |
units:String="miles"):Number{ | |
var R:int = RADIUS_OF_EARTH_IN_MILES; |
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
private const RADIUS_OF_EARTH_IN_MILES:int = 3963; | |
private const RADIUS_OF_EARTH_IN_FEET:int =20925525; | |
private const RADIUS_OF_EARTH_IN_KM:int =6378; | |
private const RADIUS_OF_EARTH_IN_M:int =6378000; | |
private function distanceBetweenCoordinates(lat1:Number,lon1:Number, | |
lat2:Number,lon2:Number, | |
units:String="miles"):Number{ | |
var R:int = RADIUS_OF_EARTH_IN_MILES; |
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
<?xml version="1.0" encoding="utf-8"?> | |
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" | |
creationComplete="init(event)" | |
xmlns:s="library://ns.adobe.com/flex/spark" > | |
<fx:Script> | |
<![CDATA[ | |
import mx.events.FlexEvent; | |
public var closeTimer:Timer; | |