Skip to content

Instantly share code, notes, and snippets.

View rwaldron's full-sized avatar

Rick Waldron rwaldron

  • Boston, MA
View GitHub Profile

Teacher Moments

Development

Local Setup

  1. Install Node.js (version >=10.0.0).
  2. Install yarn (version >=1.19.x): npm install yarn@latest -g
  3. Install Dependencies:

Teacher Moments

Development

Local Setup

  1. Install Node.js (version >=10.0.0).
  2. Install yarn (version >=1.19.x): npm install yarn@latest -g
  3. Install Dependencies:

Teacher Moments

Development

Local Setup

  1. Install Node.js (version >=10.0.0).
  2. Install yarn (version >=1.19.x): npm install yarn@latest -g
  3. Install Dependencies:

Teacher Moments

Development

Local Setup

  1. Install Node.js (version >=10.0.0).
  2. Install yarn (version >=1.19.x): npm install yarn@latest -g
  3. Install Dependencies:
Process: Rocksmith2014 [48517]
Path: /Users/USER/Library/Application Support/Steam/*/Rocksmith2014.app/Contents/MacOS/Rocksmith2014
Identifier: Ubisoft.Rocksmith2014
Version: 1.0 (1)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Rocksmith2014 [48517]
User ID: 501
Date/Time: 2019-10-09 22:58:10.769 -0400
mkdir test262-transformers
export TRANSFORMERS=$PWD/test262-transformers
cd test262-transformers
npm init -y
npm install --save @babel/core @babel/preset-env
touch spec.js 

Copy the contents to spec.js into your local spec.js

/*
mkdir sort-audit;
cd sort-audit;
npm init -y;
npm install glob;
wget https://gist.githubusercontent.com/rwaldron/d99fab1594f8a15d3dd2b3e56fcbe09a/raw/audit.js
wget https://s3.amazonaws.com/test-results.bocoup.com/test262/parsed-v8.json
wget https://s3.amazonaws.com/test-results.bocoup.com/test262/parsed-chakra.json
wget https://s3.amazonaws.com/test-results.bocoup.com/test262/parsed-javascriptcore.json
This file has been truncated, but you can view the full file.
0
arrayContains.js
arrayContains.js
arrayContains.js
----------------
1
verifyProperty-value.js
verifyProperty-value.js
verifyProperty-value.js
// https://www.w3.org/TR/css-typed-om-1/#simple-numeric
class CSSUnitValue {
constructor(value, unit) {
this.value = value;
this.unit = unit;
}
toString() {
// https://www.w3.org/TR/css-typed-om-1/#numericvalue-serialization
// 4. Otherwise, if unit is "percentage", append "%" to s, then return s.
return `${this.value}${this.unit === "percent" ? "%" : ""}`;
JsValueRef __stdcall WScriptJsrt::MonotonicNowCallback(JsValueRef callee, bool isConstructCall, JsValueRef *arguments, unsigned short argumentCount, void *callbackState)
{
HRESULT hr = E_FAIL;
JsValueRef returnValue = JS_INVALID_REFERENCE;
JsErrorCode errorCode = JsNoError;
IfJsrtErrorSetGo(ChakraRTInterface::JsGetUndefinedValue(&returnValue));
using std::chrono::duration_cast;
using std::chrono::milliseconds;