This file contains hidden or 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> |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
template<typename T> | |
class MFSafePointer | |
{ | |
public: | |
MFSafePointer() = default; | |
~MFSafePointer() | |
{ | |
reset(); | |
} |
This file contains hidden or 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
/** | |
\file LomseComponent.h | |
\author Daniel Walz - Foleys Finest Audio (ffAudio) | |
This uses JUCE www.juce.com | |
and lenmus https://github.com/lenmus/lomse | |
*/ | |
This file contains hidden or 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
#include "MainComponent.h" | |
//============================================================================== | |
MainComponent::MainComponent() | |
{ | |
text.append ("Lorem ipsum dolor sit amet, consectetur adipiscing elit,\n", juce::Font (14.0f), juce::Colours::white); | |
text.append ("sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\n", juce::Font (20.0f), juce::Colours::white); | |
text.append ("Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi\n", juce::Font (8.0f), juce::Colours::white); | |
text.append ("ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\n", juce::Font (18.0f), juce::Colours::red); | |
text.append ("in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\n", juce::Colours::blue); |
This file contains hidden or 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
#include <JuceHeader.h> | |
class AutoReleasePool : private juce::Timer | |
{ | |
public: | |
using Ptr = juce::ReferenceCountedObjectPtr<juce::ReferenceCountedObject>; | |
AutoReleasePool() | |
{ | |
startTimerHz (1); | |
} |
This file contains hidden or 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
#!/usr/bin/python | |
import sys, json | |
if len (sys.argv) < 4: | |
print "Usage: " + sys.argv[0] + " <font.otf> <font_metadata.json> fontname" | |
exit (-1) | |
fontname = sys.argv[3] |
This file contains hidden or 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
/* | |
============================================================================== | |
MouseOverChecker.h | |
Created: 13 Aug 2019 1:26:42pm | |
Author: Daniel Walz | |
============================================================================== | |
*/ |
NewerOlder