- Oct 2024
-
www.datacamp.com www.datacamp.com
-
–reload
This should be "--reload" (two hyphens).
-
""
This should be "/".
-
- Feb 2020
-
funnelgarden.com funnelgarden.com
-
--scripts-version=react-scripts-ts
Use
--template typescript
instead.
-
- May 2019
-
developer.lightbend.com developer.lightbend.com
-
use the following configuration
Add this to
application.conf
, which is usually in projectRoot/conf
.
-
- Jan 2019
-
css-tricks.com css-tricks.com
-
<pre rel="HTML"><code markup="tt" class="language-markup">
I would omit this. It looks like a typo.
-
- Oct 2018
-
nbviewer.jupyter.org nbviewer.jupyter.org
-
<matplotlib.axes.AxesSubplot at 0x10aef19d0>
At bottom, I suggest adding "When you are done with this notebook, close the current browser window/tab."
-
-
github.com github.com
-
Table of Contents
It wasn't clear that I needed to go through "How to use this cookbook" before clicking links in this TOC. I wound up installing jupyter, instead of using MyBinder. D-:
-
-
nbviewer.jupyter.org nbviewer.jupyter.org
-
You should see this:
Need to press Tab (without holding Shift) first.
-
- Jan 2018
-
bendyworks.com bendyworks.com
-
path
You may need to add this at the top of the file to use the path library:
const path = require('path');
-
You'll need to tell the Dev Server what to serve.
The text below goes in
webpack.config.js
. -
The single & will tell most systems to run the command before and after it in parallel.
This doesn't seem to work with Windows 10.
-
-
www.typescriptlang.org www.typescriptlang.org
-
enable some module system
For commonjs, add this to the compilerOptions section of your tsconfig.json :
"module": "commonjs",
-
-
www.scala-js.org www.scala-js.org
-
> test
Enter
reload
(no quotes) first. -
include this file
Place before the script tag for fastops.js .
-
fastOptJS
Case is important. The S is capitalized.
Tags
Annotators
URL
-
-
phaser.io phaser.io
-
cursors = game.input.keyboard.createCursorKeys();
This goes inside create.
-
-
-
'ground'
The first ledge platform uses the same 'ground' texture as the ground platform uses.
-
ground
This is the ground platform at the bottom of the screen. The name is a bit confusing, because it is the same as the 'ground' texture (initialized in preload).
-
- Sep 2017
-
www.scala-js.org www.scala-js.org
-
import dom.document
The order of imports is significant. Here,
dom.document
references thedom
imported at the previous line. -
create a method
Place these lines inside the TutorialApp object (before the final closing brace).
-
npm install source-map-support
Type
exit
in sbt before running npm.Further, my npm issues a lot of warnings concerning package.json, license field, etc. It seems OK, though.
Run
sbt
again after npm finishes.
-