Skip to content

Instantly share code, notes, and snippets.

@guillermosnipe
guillermosnipe / log.txt
Created November 14, 2020 20:26
Log.txt
This file has been truncated, but you can view the full file.
log.txt for X-Plane 11.51b1 (build 115100 64-bit d63e21afbedbe3ed0d3667effa989dae0ab4457a)
compiled on Nov 11 2020 15:10:36
X-Plane started on Sat Nov 14 21:16:42 2020
This log file is generated automatically by Laminar Research applications and contains diagnostics about your graphics hardware, installation, and any error conditions.
If you need to contact tech support or file a bug, please send us this file. NOTE: this file is rewritten every time you start ANY of your X-System applications.
Windows 10.0 (build 19041/2)
This is a 64-bit version of Windows.
CPU type: 8664
@guillermosnipe
guillermosnipe / gist:9532fcf779614d1fc00aa018fa075810
Last active September 17, 2018 15:35
Adding carbon cli the ability to process files from a directory
const util = require('util');
const exec = util.promisify(require('child_process').exec);
const fs = require( 'fs' );
const path = require( 'path' );
const codeSampleDir = './code-samples';
//Async forEach loop
async function asyncForEach(array, callback) {
let arrayLength = array.length;
for (let index = 0; index < arrayLength; index++) {