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
[ | |
[ | |
"https://www.theresearchagency.com/insights", | |
"Insights" | |
], | |
[ | |
"https://www.theresearchagency.com/insights/how-australians-see-themselves", | |
"AustraliaNZAustraliaAUAustraliaINTAustraliaAUSAustraliaNZBrand & creativeResourceTRA MindSets: How do Australians see themselves? July 28, 2023" | |
], | |
[ |
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
coa_title_7266={ | |
custom=yes | |
pattern="pattern_solid.dds" | |
color1=red | |
color2=yellow | |
color3=red | |
colored_emblem={ | |
color1="white" | |
texture="ce_letter_h.dds" |
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
type CKValue = { toCK(): string } | |
abstract class NewType<T> { | |
constructor(public readonly value: T) {} | |
} | |
class CKNumber extends NewType<number> { | |
toCK() { return this.value.toString() } | |
} | |
class CKString extends NewType<string> { |
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
import * as matrix from './matrix'; | |
import * as vec from './vec'; | |
function expectMatrixSimilar(actual: matrix.Matrix, expected: matrix.Matrix) { | |
expect(actual.length).toBe(expected.length); | |
actual.forEach((row, i) => { | |
row.forEach((v, k) => { | |
expect(v).toBeCloseTo(expected[i][k]); | |
}); | |
}); |
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
Argument of type '(i: readonly string[]) => Errors<readonly [Error, Error]> | (readonly [() => readonly (readonly [out: "A", newIn: readonly string[]])[] | SymbolError<"A", Expected<"A">>, string[]] | readonly [() => readonly (readonly [out: "B", newIn: readonly string[]])[] | SymbolError<...>, string[]])[]' is not assignable to parameter of type '(t: readonly string[]) => Errors<readonly [Error, Error]> | readonly (readonly [out: () => readonly (readonly [out: "A", newIn: readonly string[]])[] | SymbolError<"A", Expected<"A">>, newIn: readonly string[]])[]'. | |
Type 'Errors<readonly [Error, Error]> | (readonly [() => readonly (readonly [out: "A", newIn: readonly string[]])[] | SymbolError<"A", Expected<"A">>, string[]] | readonly [() => readonly (readonly [out: "B", newIn: readonly string[]])[] | SymbolError<"B", Expected<...>>, string[]])[]' is not assignable to type 'Errors<readonly [Error, Error]> | readonly (readonly [out: () => readonly (readonly [out: "A", newIn: readonly string[]])[] | SymbolError<"A", |
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
class ErrorWrapper<E extends Error> extends Error { | |
override get message() { return this.wraps.message } | |
override get name() { return this.wraps.name } | |
constructor(public readonly wraps: E) { | |
super(wraps.message); | |
} | |
} |
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
<!DOCTYPE HTML> | |
<title>Apple Rewards</title> | |
<style type="text/css"> | |
/* | |
// First, we | |
// clear up any gives that there's | |
// something going on by making | |
// the Apple ID frame fill | |
// the whole page with no border |
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
{ | |
"elementStacks": { | |
"720_520_7d4fa4bf-8abd-4d48-921c-39009c8368ad": { | |
"lifetimeRemaining": "0", | |
"lastTablePosX": "720", | |
"markedForConsumption": "False", | |
"elementId": "passion", | |
"lastTablePosY": "520", | |
"quantity": "1" | |
}, |
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
/* | |
* R e a d m e | |
* ----------- | |
* | |
* In this file you can include any instructions or other comments you want to have injected onto the | |
* top of your final script. You can safely delete this file if you do not want any such comments. | |
*/ | |
// This file contains your actual script. | |
// |
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
import { Canvas } from '@zemn.me/math/canvas/element' | |
import { Drawable3D } from '@zemn.me/math/canvas' | |
import * as Particle from '@zemn.me/math/sim/particle' | |
import * as Unit from '@zemn.me/math/sim/unit' | |
import * as Homog from '@zemn.me/math/homog' | |
import * as Cart from '@zemn.me/math/cartesian' | |
import * as Shape from '@zemn.me/math/shape' | |
import * as Vec from '@zemn.me/math/vec' | |
import * as Matrix from '@zemn.me/math/matrix' | |
import React from 'react' |
NewerOlder