<body>
<div>
<header>
<h1 id="title"><em><a href="/">Hello world!</a></em></h1>
</header>
<section>
<ul>
<li class="item"><a href="#">Navigation Item</a></li>
<a href="#">Navigation Item</a>
This file contains 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
Filename: "Capture d’écran 2017-06-01 à 14.27.15.png", key: "970a5cb2-9301-4531-af5e-f36dd75f9b33.Capture d’écran 2017-06-01 à 14.27.15.png" | |
Filename: "Capture d’écran 2017-06-01 à 14.27.15.png", key: "970a5cb2-9301-4531-af5e-f36dd75f9b33.Capture d’écran 2017-06-01 à 14.27.15.png" | |
Filename: "Capture d’écran 2017-06-01 à 14.27.15.png", key: "970a5cb2-9301-4531-af5e-f36dd75f9b33.Capture d’écran 2017-06-01 à 14.27.15.png" | |
Filename: "Screen Shot 2017-06-01 at 12.23.59.png", key: "8c4a630d-f49b-4a11-ae9c-b273183c8c81.Screen Shot 2017-06-01 at 12.23.50.png" | |
Filename: "Capture d’écran 2017-06-30 à 11.35.14.png", key: "f1c13402-e564-447c-b7ed-e21bf033f9d1.Capture d’écran 2017-06-30 à 11.35.14.png" | |
Filename: "Capture d’écran 2017-07-31 à 15.07.07.png", key: "dbae3ea6-6d2f-4265-bb1b-aade08c284ce.Capture d’écran 2017-07-31 à 15.07.07.png" | |
Filename: "Edit-New_Respimat-Übersicht-170802-DK.jpg", key: "17ebe573-a5b2-455a-b430-e217a9ee09ce.Edit-New_Respimat-Übersicht-170802-DK.jpg" | |
Filename: "Edit-New_R |
This file contains 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
process.on("unhandledRejection", function(reason, p) { | |
console.log(reason, p); | |
console.log("Rejection handled") | |
new Promise(function(resolve, reject) { | |
console.log("Second rejection") | |
reject(new Error("Foo")); | |
}); | |
}); |
This file contains 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
import React, { Component } from 'react'; | |
import Provider from "./Provider"; | |
import Incrementer from "./Incrementer"; | |
class App extends Provider { | |
state = { value: 0 }; | |
render() { | |
const increment = this.dispatch.bind(this, { type: "INCREMENT" }); | |
const decrement = this.dispatch.bind(this, { type: "DECREMENT" }); |
This file contains 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
const update_ = Runner.instance_.update; | |
Runner.instance_.update = function() { | |
if(this.horizon.obstacles.length) { | |
const nearestObstacle = this.horizon.obstacles[0]; | |
if(nearestObstacle.xPos < 115 && !this.tRex.jumping) { | |
if(nearestObstacle.yPos <= 50) { | |
this.tRex.setDuck(true); | |
setTimeout(this.tRex.setDuck.bind(this.tRex, false), 500); | |
} else { | |
this.tRex.startJump(this.currentSpeed); |
This file contains 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
src/data/auth.coffee-112- id: installationId) | |
src/data/auth.coffee-113- return new Promise (resolve, reject) -> | |
src/data/auth.coffee-114- projectsDLM.get cacheKey, (err, res) -> | |
src/data/auth.coffee-115- return reject(err) if err? | |
src/data/auth.coffee-116- return resolve res if res? | |
src/data/auth.coffee:117: currentTimestamp = Date.now().toString() | |
src/data/auth.coffee-118- projectsDLM.set cacheKey, currentTimestamp, (err, res) -> | |
src/data/auth.coffee-119- return reject(err) if err? | |
src/data/auth.coffee-120- resolve currentTimestamp | |
src/data/auth.coffee-121- |
This file contains 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
{ | |
"section_a": { | |
"1": { | |
"i": { | |
"content": " Explain using examples why many hard RTS use a cyclic executive approach to scheduling whereas many soft RTS utilise a real-time operating system. [10] " | |
}, | |
"ii": { | |
"content": " Using Antilock Braking Systems (ABS) as an example, distinguish between the sample rate and response time of a RTS. [10] " | |
}, | |
"iii": { |
This file contains 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
loop[0][2][20] = function(i) { | |
console.log(i); | |
}; | |
// Output: | |
// 0 | |
// 2 | |
// 4 | |
// 6 | |
// 8 |
This file contains 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 multiline = function(string) { | |
// Replace the "function() {/*\n" and "\n*/}" with nothing and bam, multiline strings | |
return string.toString().replace(/(^[^\n]*\n)|(\n\*\/\})/g, ""); | |
}; | |
console.log(multiline(function() {/* | |
Hello world! | |
I'm a multiline string! | |
Tada! |