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 getHanoiMoves = async (n) => new Promise((resolve) => { | |
wasmWorker.onmessage = (event) => resolve(event.data); | |
wasmWorker.postMessage({ n }); | |
}); |
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"?> | |
<!-- OPML generated by NetNewsWire --> | |
<opml version="1.1"> | |
<head> | |
<title>sjdonado_feeds.opml</title> | |
</head> | |
<body> | |
<outline text="NetNewsWire News" title="NetNewsWire News" description="" type="rss" version="RSS" htmlUrl="https://netnewswire.blog/" xmlUrl="https://netnewswire.blog/feed.xml"/> | |
<outline text="Finance" title="Finance"> | |
<outline text="Darius Foroux" title="Darius Foroux" description="" type="rss" version="RSS" htmlUrl="https://dariusforoux.com/" xmlUrl="https://dariusforoux.com/feed/"/> |
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, { useEffect, useRef } from 'react'; | |
import { fabric } from 'fabric'; | |
import { useCanvas } from './useCanvas'; | |
const PVEditor = () => { | |
const canvasRef = useRef(null); | |
const { state, addObject, updateObject, deleteObject, selectObject, syncActiveObject } = useCanvas(); | |
useEffect(() => { | |
const canvas = new fabric.Canvas('canvas', { width: 800, height: 600 }); |
OlderNewer