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.
var express = require('express'), | |
request = require('request'), | |
BufferList = require('bufferlist').BufferList, | |
sys = require('sys'); | |
var app = express.createServer( | |
express.logger(), | |
express.bodyDecoder() | |
); |
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 - |
=========== | |
mongoose version: 3.6.0rc0 | |
======== | |
dbname: testing_populateAdInfinitum | |
[ { title: 'blog 1', | |
author: | |
{ _id: 511bde3e3985283f25000004, |
// 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() { |
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; |
{ | |
"version":2.0, | |
"display_hints":[ | |
{ | |
"key":"GPCAMERA_GROUP_VIDEO", | |
"display_name":"Video Settings", | |
"settings":[ | |
{ | |
"setting_id":5, | |
"widget_type":"select", |
This is a proposal for a lightning talk at the Reactive 2015 conference.
NOTE: If you like this, star ⭐ the Gist - the amount of stars decides whether it makes the cut! You could also Retweet if you want :)
JavaScript is getting async functions (or already has them if you count Babel.JS) and with them a way to finally slay the evil pyramid. This new language feature lets you write asynchronous code that almost looks synchronous, while maintaining the same semantics as promises. This lets you shed your .then and .catch boilerplate and escape those nested callbacks in favour of clean, explicit, maintainable code.
#Rocket League API
All requests seem to be to the domain https://psyonix-rl.appspot.com. There are several endpoints on this domain.
Endpoint | Purpose |
---|---|
/callproc105/ | Leaderboard, player statistics |
/Population/GetPopulation/ | Player counts/regions |
/login105/ | Authentication, obtaining session ids |
All exercises are attempted on https://coderpad.io |