One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| { | |
| "version":2.0, | |
| "display_hints":[ | |
| { | |
| "key":"GPCAMERA_GROUP_VIDEO", | |
| "display_name":"Video Settings", | |
| "settings":[ | |
| { | |
| "setting_id":5, | |
| "widget_type":"select", |
| function exportFileToPNG(dest, artBoardIndex) | |
| { | |
| var exportOptions = new ExportOptionsPNG24(); // or ExportOptionsPNG8 | |
| var type = ExportType.PNG24; // or ExportType.PNG8 | |
| var file = new File(dest + ".png"); | |
| exportOptions.artBoardClipping = true; | |
| exportOptions.antiAliasing = true; | |
| exportOptions.transparency = true; | |
| exportOptions.qualitySetting = 72; |
| // autofill catcher (super hacky, abandon all hope ye who enter here --np) | |
| app.directive('autofill', ['$timeout', function($timeout) { | |
| return { | |
| restrict: 'A', | |
| require: 'ngModel', | |
| link: function( scope, elem, attrs ) { | |
| var ownInput = false; | |
| // trigger an input 500ms after loading the page (fixes chrome and safari autofill) | |
| $timeout(function() { |
| =========== | |
| mongoose version: 3.6.0rc0 | |
| ======== | |
| dbname: testing_populateAdInfinitum | |
| [ { title: 'blog 1', | |
| author: | |
| { _id: 511bde3e3985283f25000004, |
| Dear student, | |
| I was a student once and I realise most of your budget is | |
| set aside for booze. Our conference pass is £150+vat - | |
| but £180 if you're paying yourself. Maybe that's too much | |
| for you to afford, so how about a 50% discount and no VAT? | |
| I've got 10 tickets available at £75. | |
| It's first come first serve, but they're available today - |
| var express = require('express'), | |
| request = require('request'), | |
| BufferList = require('bufferlist').BufferList, | |
| sys = require('sys'); | |
| var app = express.createServer( | |
| express.logger(), | |
| express.bodyDecoder() | |
| ); |