Matt Helm
Matt Helm
I took a look at the NamedTupleUtilities module and there is quite a bit of syntax that looks foreign to me 😨. I have a lot of researching/learning to do...
Thanks, David! The below seems to be working fine for me (I copied the code from CSV.jl and merged it with your example above): ```julia using Unicode const RESERVED =...
Here's an attempt at the documentation: ## The @normalize_names command The ```@normalize_names``` command has the form ```source |> @normalize_names()```. ```source``` can be any source that can be queried. The command...
I'm not sure exactly how to go about the unit tests, but here's something that works: ```julia names = (Symbol(" queryverse rocks"), Symbol("¡column #2!"), :c) values = [1, 2.0, "hello...
From Issue #14: > Thanks! > > Are you interested in writing another one? How about #16 😊 > > It would be very cool if you could make something...
This looks like a pretty good roadmap: https://developers.google.com/web/fundamentals/media/recording-audio I'll play around with it this weekend and see if I can come up with something : ) It would probably be...
I made a tiny little bit of progress:  Here's the code so you can just copy/paste and try it out: ```javascript @bind audio HTML(""" const player = document.getElementById('player') const...
This seems to be doing something more interesting: ```javascript @bind audio HTML(""" const player = document.getElementById('player') const handleSuccess = function(stream) { const context = new AudioContext() const analyser = context.createAnalyser()...
I need to code a kill switch into it - right now it just runs indefinitely and there's no way to shut it off 🤣. It's streaming the data but...
Okay, I'm inching closer to something useful....try this one out: ```javascript @bind audio HTML(""" Stop const player = document.getElementById('player') const stop = document.getElementById('stopButton') const handleSuccess = function(stream) { const context...