Makes 5 servings @ 900 calories or 6 servings @ 775 calories
Delicious chicken carbonara that's super simple to make.
|Nutritional Info: | |
| {"lastUpload":"2020-06-03T20:49:48.150Z","extensionVersion":"v3.4.3"} |
| {"lastUpload":"2020-06-03T17:56:23.661Z","extensionVersion":"v3.4.3"} |
| ################################# | |
| # Functions # | |
| ################################# | |
| function aws { | |
| /usr/local/bin/aws "$@" | ppj | |
| } | |
| function ppj { | |
| pygmentize -f terminal256 -l json -O style=monokai |
| { | |
| init: function (elevators, floors) { | |
| var DS = this.api.instances.DispatchServiceInstance = new this.api.services.DispatchService(this.api, floors), | |
| ES = this.api.instances.ElevatorServiceInstance = new this.api.services.ElevatorService(this.api, elevators); | |
| DS.on("new_task", function () { | |
| console.info("New task", this); | |
| // if (ES.idleElevatorsAvailable()) | |
| // ES.processTask(DS.nextTask()); | |
| }); |
| { | |
| init: function(elevators, floors) { | |
| var queue = [], | |
| self = this; | |
| for (var i = floors.length - 1; i >= 0; i--) { | |
| floors[i].on("up_button_pressed", self.api.handlers.onUpButton); | |
| floors[i].on("down_button_pressed", self.api.handlers.onDownButton); | |
| floors[i].api = self.api; |
| var Intaglio = require('intaglio'), | |
| repository = new Intaglio.repositories.mysql({ | |
| host: 'localhost', | |
| database: 'database', | |
| user: 'username', | |
| password: 'password' | |
| }); | |
| Intaglio.ORM.create(repository).then(function (ORM) { | |
| ORM.factory('user').create({ |
| #!/bin/bash | |
| # | |
| # DESCRIPTION: | |
| # | |
| # Set the bash prompt according to: | |
| # * the branch/status of the current git repository | |
| # * the branch of the current subversion repository | |
| # * the return value of the previous command | |
| # | |
| # USAGE: |