Skip to content

Instantly share code, notes, and snippets.

@safiire
safiire / c++11_example.cpp
Last active May 25, 2016 00:23
Messing around with C++11
// C++11 is pretty neat so far.
//
// clang++ yay.cpp -o yay -std=c++11 -stdlib=libc++
#include <iostream>
#include <memory>
#include <vector>
#include <functional>
using namespace std;
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <math.h>
#include "common.h"
// Enums
enum {SAW, SQUARE, SINE};
@safiire
safiire / lowpass.cpp
Created July 8, 2014 04:09
One Zero Low Pass Filter
#include <iostream>
#include <complex>
#define PI 3.141592653589793
#define SAMPLE_RATE 64
using namespace std;
// This lowpass is a weighted moving average
// If you change the + to - it will become a highpass filter
@safiire
safiire / the_greatest_english_paragraph_of_all.txt
Created February 12, 2014 18:55
This is likley the greatest English paragraph, of all.
For although light oftenest behaves as a wave, it can be looked on as a mote, the *lightbit*.
We have already said by the way that a mote of stuff can behave not only as a chunk, but as a wave.
Down among the unclefts, things do not happen in steady flowings, but in leaps between bestandings that are forbidden.
The knowledge-hunt of this is called *lump beholding*.
@safiire
safiire / rc_filter_simulation.rb
Created February 10, 2014 18:40
RC Lowpass Filter Simulation in both Ruby and Rust for comparison.
#!/usr/bin/env ruby
# encoding: UTF-8
require 'complex'
Tau = 2 * Math::PI
TableWidth = 20
#######################################################################
## This is a script I was using to simulate an analog Resistor
## Capacitor in series filter, to see if I had the math right.
@safiire
safiire / dual_number_derivative.rb
Last active October 2, 2016 12:18
Simulataneously calculate a function and it's derivitive using Dual Numbers
require 'matrix'
## Note: In ruby the notation x**n means x raised to the nth power
##
## In linear algebra, Dual numbers are in the form:
## a + bε
##
## Where ε is what is called nilpotent, you can think of
## ε as an infinitesimal (sort of kinda), like how they used to do Calculus in the
## olden days.
@safiire
safiire / pi_infinite_series
Last active August 29, 2015 13:56
Compute π with an infinite series
def f(n)
(2 * n + 1)**-1
end
def g(n)
((-1)**n).to_f
end
def pi
@safiire
safiire / phase_accumulator.dsp
Last active December 22, 2015 19:19
A Phase Accumulator / Sine wave generator in Faust
import("math.lib");
Tau = 6.283185307179586;
Pi = 3.141592653589793;
Fs = SR;
oscillator(f, amplitude) = phase_accumulator(w) : sinf * amplitude with {
w = f / Fs * Tau;
sinf = ffunction(float sinf(float), <math.h>, "");
};