Skip to content

Instantly share code, notes, and snippets.

View timboudreau's full-sized avatar

Tim Boudreau timboudreau

View GitHub Profile
//! A rough cut of how to build a processing graph for samples.
//! I omitted dealing with multiple channels via const generics, as it
//! complicates things and the point here is just how you'd chain things up.
/// Takes a vector of samples, does horrible things to them and returns the result.
fn processing_demo(input: Vec<f32>) -> Vec<f32> {
let mut graph = demo_graph(Vec::with_capacity(input.len()));
graph.process_audio(input.iter());
graph.close()
}
@timboudreau
timboudreau / main.rs
Created May 25, 2024 08:10
Floem inter-window messaging bug
use floem::{
close_window,
context::ComputeLayoutCx,
event::EventPropagation,
keyboard::NamedKey,
kurbo::{Rect, Size},
new_window,
reactive::{create_rw_signal, ReadSignal, RwSignal},
style::{Background, Style, TextColor, TextOverflow},
taffy::{
package com.mastfrog.lambda.gc;
import java.lang.ref.WeakReference;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Test;
public class LambdaGCTest {
import java.awt.DisplayMode;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Graphics2D;
import java.awt.GraphicsConfiguration;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;
import java.awt.geom.AffineTransform;
import java.awt.geom.NoninvertibleTransformException;
import java.awt.image.VolatileImage;
@timboudreau
timboudreau / Data.java
Created December 6, 2013 15:06 — forked from jtulach/Data.java
Histogram in Java and HTML+CSS
package dew.demo.histogram;
import java.util.ArrayList;
import java.util.List;
import net.java.html.json.ComputedProperty;
import net.java.html.json.Model;
import net.java.html.json.Property;
/** Model annotation generates class Data with
* one property for list of of numbers and read-only property
@timboudreau
timboudreau / Data.java
Created December 6, 2013 13:27 — forked from jtulach/Data.java
Histogram in Java and HTML+CSS
package dew.demo.histogram;
import java.util.ArrayList;
import java.util.List;
import net.java.html.json.ComputedProperty;
import net.java.html.json.Model;
import net.java.html.json.Property;
/** Model annotation generates class Data with
* one property for list of of numbers and read-only property