Candlestick rendering demo. Demonstrates candle rendering and up and down day coloring.
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
Yakuza | €25.00 | |
---|---|---|
Leonardo Da Vinci | €25.00 | |
St Peter's and the papal Basilicas | €25.00 | |
Chocolat | €25.00 | |
Les Tuches 2 | €25.00 | |
Hail Ceasar | €25.00 | |
Les Visiteurs | €25.00 | |
Marseille | €25.00 | |
Thomas & Friends: The Great race | €25.00 | |
Retour chez ma mère | €25.00 |
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
Yakuza,€25.00 | |
Leonardo Da Vinci,€25.00 | |
St Peter's and the papal Basilicas,€25.00 | |
Chocolat,€25.00 | |
Les Tuches 2,€25.00 | |
Hail Ceasar,€25.00 | |
Les Visiteurs,€25.00 | |
Marseille,€25.00 | |
Thomas & Friends: The Great race,€25.00 | |
Retour chez ma mère,€25.00 |
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
## docker | |
# List all Docker images | |
docker images | |
# Build docker image | |
docker build -tag $IMAGE_NAME . | |
# -t, --tag value Name and optionally a tag in the 'name:tag' format (default []) |
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
[Error: Parse Error] bytesParsed: 483, code: 'HPE_UNEXPECTED_CONTENT_LENGTH' } Error: Parse Error | |
at Error (native) | |
at Socket.socketOnData (_http_client.js:315:20) | |
at emitOne (events.js:90:13) | |
at Socket.emit (events.js:182:7) | |
at readableAddChunk (_stream_readable.js:147:16) | |
at Socket.Readable.push (_stream_readable.js:111:10) | |
at TCP.onread (net.js:525:20) |
The issue:
..mobile browsers will wait approximately 300ms from the time that you tap the button to fire the click event. The reason for this is that the browser is waiting to see if you are actually performing a double tap.
(from a new defunct https://developers.google.com/mobile/articles/fast_buttons article)
touch-action
CSS property can be used to disable this behaviour.
touch-action: manipulation
The user agent may consider touches that begin on the element only for the purposes of scrolling and continuous zooming. Any additional behaviors supported by auto are out of scope for this specification.
a. test
- test
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
1. test | |
a. test |
I am a parapgraph.
I am a parapgraph.
"I am a parapgraph."
'I am a parapgraph.'
(I am a parapgraph.)
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
let addTask, | |
removeTask; | |
addTask = (data) => { | |
return { | |
type: 'ADD_TASK', | |
data: data | |
}; | |
}; |