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
var gotPicture = function(path) { | |
$('#previewPic').attr('src', path); /*optional */ | |
var params = {foo: 'bar'}; | |
var cookie = localStorage.getItem("Cookie"); | |
if(cookie) { | |
params['__cookie'] = cookie; |
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"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>kRequireSpaceAfterColon</key> | |
<false/> | |
<key>kRequireOpenBraceOnMethodSignatureLine</key> | |
<true/> | |
<key>kRequireOpenBraceOnConditionalStatementLine</key> | |
<true/> |
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
{ | |
"ABW": 2929472, | |
"ABE": 214996, | |
"ACY": 275404, | |
"ABA": 566904, | |
"ABD": 3459944, | |
"AUR": 127312, | |
"AVY": 38094, | |
"ABH": 1984, | |
"AGV": 435478, |
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
Genie& | |
Music | |
Playing | |
STOP -> Stopped | |
Stopped | |
PLAY -> Playing | |
Search | |
Default* | |
Search for tracks -> Searching | |
Searching |
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
History& | |
waffle_bath unsticky a unsticky b | |
waffle_bath Unvisited | |
waffle_bath start -> waffle_bath Incomplete | |
waffle_bath Incomplete | |
waffle_bath start -> waffle_bath Incomplete | |
waffle_bath complete A -> waffle_bath CompletedOutcomeA | |
waffle_bath complete B -> waffle_bath CompletedOutcomeB |
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
<body> | |
<div id="root"></div> | |
<script src="index.tsx"></script> | |
</body> |
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 React, { useState, useEffect, useCallback } from "react"; | |
import * as PIXI from "pixi.js"; | |
import { Stage } from "@inlet/react-pixi"; | |
import Spine from "./Spine"; | |
window.PIXI = PIXI; | |
const mixes = [ | |
{ |
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 React, { FC, HTMLAttributes } from "react"; | |
interface Props extends HTMLAttributes<SVGSVGElement> { | |
name: string; | |
width?: number | string; | |
height?: number | string; | |
} | |
export const IconSprite: FC<Props> = ({ | |
name, |
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
Machine({ | |
id: `inc-build`, | |
initial: `fetchingEnvironment`, | |
context: { | |
refreshBody: null, | |
}, | |
states: { | |
fetchingEnvironment: { | |
invoke: { |
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions | |
// - XState (all XState exports) |
OlderNewer