Skip to content

Instantly share code, notes, and snippets.

View sjdonado's full-sized avatar
:atom:
The enemy of the art is the absence of limitations - Orson Welles

Juan Rodriguez sjdonado

:atom:
The enemy of the art is the absence of limitations - Orson Welles
View GitHub Profile
@sjdonado
sjdonado / 08.05.23-9.js
Created May 8, 2023 19:02
Tower of Hanoi in P5.js + WASM - Dev.to
const getHanoiMoves = async (n) => new Promise((resolve) => {
wasmWorker.onmessage = (event) => resolve(event.data);
wasmWorker.postMessage({ n });
});
@sjdonado
sjdonado / sjdonado_feeds.opml
Last active November 3, 2024 00:19
My collection of RSS feeds
<?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/"/>
@sjdonado
sjdonado / Editor.tsx
Last active November 29, 2024 12:17
Fabric 2d editor prototype
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 });