Forked from Jamie Jefferson's Pen Sortable list with GSAP Draggable.
A Pen by Captain Anonymous on CodePen.
| /** | |
| * Bower dependencies: | |
| * timezone-js | |
| * moment | |
| * moment-timezone | |
| * angular-moment | |
| * angular-tz-extensions | |
| * | |
| * index.html: | |
| * <script src="lib/timezone-js/src/date.js"></script> |
Forked from Jamie Jefferson's Pen Sortable list with GSAP Draggable.
A Pen by Captain Anonymous on CodePen.
| using UnityEngine; | |
| using System.Collections; | |
| using System; | |
| using System.Collections.Generic; | |
| /// <summary> | |
| /// Gareth Williams - Lonewolfwilliams LTD | |
| /// http://lww.io | |
| /// </summary> | |
| public class Promises : MonoBehaviour |
I suggest two possible formats for the assessment: either Nate's single-file quiz, here: https://gist.github.com/NateWr/3d8b0cc5eb19712912d9f31dfb1d7896 or my interactive version on Kahoot, here: https://create.kahoot.it/share/html-css-quick-quiz/98be1fc1-00d6-4186-98b9-fbac58b8fce3
| const imageData = canvas.toDataURL() | |
| const degrees = 90 | |
| const image = new Image(); | |
| image.onload = () => { | |
| ctx.clearRect(0, 0, canvas.width, canvas.height); | |
| ctx.save(); | |
| ctx.translate(canvas.width / 2, canvas.height / 2); | |
| ctx.rotate(degrees * Math.PI / 180); | |
| ctx.drawImage(image, -image.width / 2, -image.width / 2); |
| <?xml version="1.0" encoding="utf-8"?> | |
| <!-- | |
| This configuration file is required if iisnode is used to run node processes behind | |
| IIS or IIS Express. For more information, visit: | |
| https://github.com/tjanczuk/iisnode/blob/master/src/samples/configuration/web.config | |
| --> | |
| <configuration> | |
| <system.webServer> |
| /** | |
| * Recursively print a binary tree data structure | |
| * @param {function} printFn function used to print output; called with a single string argument | |
| * @param {object} node current node object | |
| * @param {string|function} leftKey name of current node's left child property, or a function that accepts the | |
| * current node and returns the left child node | |
| * @param {string|function} rightKey name of current node's right child property, or a function that accepts the | |
| * current node and returns the right child node | |
| * @param {string|function} displayKey property to display, or a function that returns a display string | |
| * @param {string} [indent=''] current indentation string; mostly used to build up indentation across levels |
| /* | |
| * Convert A String to Base64 String or Vice-Versa | |
| */ | |
| declare const android: any; | |
| declare const java: any; | |
| declare const NSData: any; | |
| declare const NSUTF8StringEncoding: any; | |
| declare const NSString: any; |