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
// Used to prompt a user for how to open an address, or open automatically, based on the platform. | |
function openAddress(destAddr, startAddr) { | |
var destParam = ''; | |
var startParam = ''; | |
if (typeof destAddr !== 'undefined') { | |
destParam = '&daddr=' + encodeURIComponent(destAddr); | |
} | |
if (typeof startAddr !== 'undefined') { | |
startParam = '&saddr=' + encodeURIComponent(startAddr); | |
} |
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
/* | |
* Used to interact with the Bit.LY API. | |
* Written by: Josh Lambert | |
* Twitter: @zettageek | |
* Email: [email protected] | |
* Version: 1.0 | |
*/ | |
var apiKey, | |
apiVersion = 'v3', |
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
Verifying I am +joshlambert on my passcard. https://onename.com/joshlambert |
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
http://ftp.bmshelp.com/downloads/BMSRuntimes.exe | |
http://ftp.bmshelp.com/downloads/Foxreg.zip | |
http://ftp.bmshelp.com/downloads/SMB2_d.bat | |
http://ftp.bmshelp.com/downloads/Msxml.msi | |
http://link.bmshelp.com/ |
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
RewriteEngine on | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteRule ^([a-z]+)/([^/]*)$ resize.php?size=$1&file=$2 |
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
LOVs. | |
—————————— | |
There are two types of LOVs: | |
1) Static - A set list of options in APEX. | |
- Static = Entries are automatically alphabetized | |
- Static2 = Entries are displayed in the order that they’re entered. | |
2) Dynamic - Based on SQL against the database. | |
LOVs can be defined as either: | |
a) A shared component. |
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
<activity android:name=".MyAppActivity" android:label="@string/app_name" android:theme="@style/Theme.Titanium" android:configChanges="keyboardHidden|orientation" android:alwaysRetainTaskState="true" android:launchMode="singleInstance"> | |
<intent-filter> | |
<data android:scheme="myapp" android:host="app"/> | |
<action android:name="android.intent.action.MAIN"/> | |
<action android:name="android.intent.action.VIEW"/> | |
<category android:name="android.intent.category.LAUNCHER"/> | |
<category android:name="android.intent.category.DEFAULT"/> | |
<category android:name="android.intent.category.BROWSABLE"/> | |
</intent-filter> | |
</activity> |
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
- [ ] Reviewed | |
- [ ] Tested | |
- [ ] Approved |
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
// Used to fake hintText coloring to the font color. | |
// Requires hintText to be defined on the object being passed. | |
function hintTextShim(uiObject, isPswd) { | |
uiObject.objectFocus = function () { | |
if (uiObject.value === uiObject.hintText) { | |
if (typeof isPswd !== 'undefined' && isPswd === true) { | |
uiObject.passwordMask = true; | |
} | |
uiObject.value = ''; | |
} |
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
$query = mysqli_query($connection,"INSERT INTO `child_menu_details` (`id`, `parent_id`, `child_id`, `date`, `lunch`, `side1`, `side2`, `side3`, `side4`, `size`, `smoothie`, `orderDate`) | |
VALUES (NULL, '".$parentid."', '".$childid."', '".$date."' ,'".$lunch."', '".$side1."', '".$side2."', '".$side3."', '".$side4."', '".$size."', '".$smoothie."', '".$orderDate."')"); |
NewerOlder