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
/* | |
============================================================================== | |
ThreeValueSlider.h | |
Created: 5 Dec 2021 6:50:04pm | |
Author: Daniel Walz | |
============================================================================== | |
*/ |
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
#pragma once | |
#include <atomic> | |
#include <juce_data_structures/juce_data_structures.h> | |
template<typename ValueType> | |
class AtomicValue | |
{ | |
public: |
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
// Note: this is a fraction of a backup, it is not supposed to work out of the box! | |
import * as path from 'path'; | |
import * as os from 'os'; | |
import {createConnection} from 'net'; | |
import {Socket} from 'net'; | |
import {v1} from 'uuid'; | |
import * as Promise from 'bluebird'; | |
import * as retry from 'bluebird-retry'; | |
import { EventEmitter } from 'events'; |
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
/* | |
============================================================================== | |
Resample the test signals in the folder | |
============================================================================== | |
*/ | |
#include <juce_core/juce_core.h> | |
#include <juce_audio_formats/juce_audio_formats.h> |
OlderNewer