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
| movies|master ⇒ pagoda tunnel web1 | |
| zsh: correct 'web1' to 'web' [nyae]? n | |
| ** Error: | |
| ** Input unrecoginized | |
| ** try 'pagoda -a <appname> tunnel <component>' | |
| ** ie. 'pagoda -a app tunnel db1' |
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
| λ /var/dev/barony-recruitment/ php ./recruitment.php | |
| Adding butthole to keywords: | |
| Data: Array | |
| ( | |
| [keywords] => Array | |
| ( | |
| [0] => butthole | |
| ) | |
| ) |
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
| var App = { | |
| // Configuration container | |
| Config: {} | |
| }; | |
| // Common utilities | |
| App.Util = { | |
| // Format bytes into human readable size notation | |
| formatFileSize: function(bytes) { |
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
| //= require jquery_ujs | |
| //= require jquery-fileupload/basic | |
| //= require jquery-fileupload/vendor/tmpl | |
| window.App = { | |
| // Configuration container | |
| Config: {} | |
| }; | |
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
| //= require jquery_ujs | |
| //= require jquery-fileupload/basic | |
| //= require jquery-fileupload/vendor/tmpl | |
| window.App = { | |
| // Configuration container | |
| Config: {} | |
| }; | |
| $(function() { |
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
| /*global Hogan:true*/ | |
| $(function() { | |
| "use strict"; | |
| /* | |
| * Global configuration options | |
| */ | |
| var Config = { | |
| // Product fields | |
| productSchema: { |
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
| /*global Hogan:true*/ | |
| $(function() { | |
| "use strict"; | |
| /* | |
| * Global configuration options | |
| */ | |
| var Config = { | |
| // Product fields | |
| productSchema: { |
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
| var Robot = function(robot){ | |
| robot.turnLeft(robot.angle % 90); | |
| //robot.turnGunRight(90); | |
| robot.clone(); | |
| this.direction = 1; | |
| }; | |
| Robot.prototype.onIdle = function(ev) { | |
| var robot = ev.robot; | |
| robot.ahead(1); | |
| if (robot.parentId) { |
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
| <table id="wrapper" width="600" cellpadding="20" cellspacing="0" border="0" style="background-color:#fff;border:1px #ddd solid;"> | |
| <tr> | |
| <td id="header" class="padded"> | |
| This is an automated message sent on: <?php echo date('m.d.Y'); ?> at <?php echo date('g:i a'); ?><br /> | |
| Note that you cannot reply to this message. Our Help Center can be found at <a href="http://www.netoutlet.com/help-center">Our help Center</a> | |
| </td> | |
| </tr> | |
| <tr> | |
| <td id="logo">TODO</td> | |
| </tr> |
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
| // VAT BREAKDOWN: | |
| $header = array( | |
| t('VAT -%'), | |
| t('Net'), | |
| t('VAT'), | |
| t('Gross'), | |
| ); | |
| // First, product: | |
| // $line_item_wrapper = entity_metadata_wrapper('commerce_line_item', $line_item); | |
| // $price = $line_item_wrapper->commerce_total->value(); |