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
<?xml version="1.0" encoding="UTF-8"?> | |
<Events> | |
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> | |
<System> | |
<Provider Name="Microsoft-Windows-DistributedCOM" Guid="{1B562E86-B7AA-4131-BADC-B6F3A001407E}" EventSourceName="DCOM" /> | |
<EventID Qualifiers="0">10016</EventID> | |
<Version>0</Version> | |
<Level>2</Level> | |
<Task>0</Task> | |
<Opcode>0</Opcode> |
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
/** | |
* Promises | |
*/ | |
let selectedProduct = this.client.api( 'product', 'get', {id: product_id} ); | |
let metadata = this.client.listMetafieldByProduct( product_id ); | |
Promise.all([ selectedProduct , metadata ]) | |
.then(( result) => { | |
console.log('result:', result); | |
}) |
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
api@api:~/microservice-video/dev$ npm install | |
> [email protected] preinstall /home/api/microservice-video/dev/node_modules/.staging/v8-debug-87b3b14b | |
> node -e 'process.exit(0)' | |
> [email protected] preinstall /home/api/microservice-video/dev/node_modules/.staging/v8-profiler-40ea5c46 | |
> node -e 'process.exit(0)' | |
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: Maschine 2 [3032] | |
Path: /Applications/Native Instruments/*/Maschine 2.app/Contents/MacOS/Maschine 2 | |
Identifier: com.native-instruments.Maschine 2 | |
Version: 2.5.6 [R2] (2.5.6 [R2], Copyright © 2016 Native Instruments GmbH) | |
Code Type: X86-64 (Native) | |
Parent Process: ??? [1] | |
Responsible: Maschine 2 [3032] | |
User ID: 502 | |
Date/Time: 2017-01-26 13:15:52.193 +0100 |
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
// testModule.ts | |
let foo = 1; | |
let getFoo = () => { | |
console.log('foo', foo) | |
} | |
let incrementFoo = () => { | |
++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
downloadURL https://firebasestorage.googleapis.com/v0/b/product-videos-3c793.appspot.com/o/anita-hass-2%2Fproducts%2F9096539847%2Fvideo.mp4?alt=media&token=82b5b79f-b93e-4593-936b-82f0cd7cd231 | |
Webhook: { id: 1963708, | |
event: 'source.transferred', | |
progress: '25%', | |
metadata: | |
{ streams: { video: [Object], audio: [Object] }, | |
format: | |
{ name: 'mov', | |
duration: 8, | |
size: 10497024, |
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
<?php | |
/** | |
* Der Image Pfad auf dem server relative zu diesem Script | |
*/ | |
$image_directory = "./images/"; | |
/** | |
* Die base URL fuer die Bilder | |
*/ |
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: Maschine 2 [4407] | |
Path: /Applications/Native Instruments/*/Maschine 2.app/Contents/MacOS/Maschine 2 | |
Identifier: com.native-instruments.Maschine 2 | |
Version: 2.5.0 [R5213] (2.5.0 [R5213], Copyright © 2016 Native Instruments GmbH) | |
Code Type: X86-64 (Native) | |
Parent Process: ??? [1] | |
Responsible: Maschine 2 [4407] | |
User ID: 501 | |
Date/Time: 2016-11-30 19:24:01.164 +0100 |
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 moves = this.state.history.map((step:string[], move:number) => { | |
const desc = move ? 'Move #' + move : 'Game start'; | |
return ( | |
<li> | |
<a href="#" key={move} onClick={ () => this.jumpTo(move) } >{move}-{desc}</a> | |
</li> | |
); | |
}); | |
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
module.exports = { | |
entry: "./entry.ts", | |
output: { | |
path: __dirname, | |
filename: "bundle.js" | |
}, | |
resolve: { | |
extensions: ['.ts', '.tsx', '.js', '.jsx'] | |
}, | |
devtool: 'source-map', |