Click here to Skip to main content
15,890,123 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: I feel like I have parts left over but it's working Pin
Sander Rossel30-Jun-20 21:24
professionalSander Rossel30-Jun-20 21:24 
GeneralRe: I feel like I have parts left over but it's working Pin
honey the codewitch30-Jun-20 22:20
mvahoney the codewitch30-Jun-20 22:20 
PraiseRe: I feel like I have parts left over but it's working Pin
Kornfeld Eliyahu Peter30-Jun-20 21:50
professionalKornfeld Eliyahu Peter30-Jun-20 21:50 
GeneralRe: I feel like I have parts left over but it's working Pin
honey the codewitch30-Jun-20 22:01
mvahoney the codewitch30-Jun-20 22:01 
GeneralRe: I feel like I have parts left over but it's working Pin
Slacker00730-Jun-20 21:59
professionalSlacker00730-Jun-20 21:59 
GeneralRe: I feel like I have parts left over but it's working Pin
honey the codewitch30-Jun-20 22:00
mvahoney the codewitch30-Jun-20 22:00 
GeneralRe: I feel like I have parts left over but it's working Pin
Slacker00730-Jun-20 22:05
professionalSlacker00730-Jun-20 22:05 
GeneralRe: I feel like I have parts left over but it's working Pin
honey the codewitch30-Jun-20 22:16
mvahoney the codewitch30-Jun-20 22:16 
I'll consider it. What I've seen of the C# stuff isn't great. Wet Dry Midi is cool, but it's a different animal, as it's mostly for high level composition of MIDI scores.

In terms of C#, I'm biased but mine kills it.

C#
using(var dev = MidiDevice.Inputs[0]) 
{
    dev.Open();
    Console.Error.WriteLine("Recording started. Press a key to stop.");
    dev.StartRecording();
    Console.ReadKey();
    MidiFile mf = dev.EndRecording();
    mf.WriteTo("recorded.mid");
    Console.Error.WriteLine("Performance saved to recorded.mid");
}


I just typed that up now. I've never seen it easier to sequence and save score, and despite all that you can get down to the metal with it.
Real programmers use butterflies

GeneralRe: I feel like I have parts left over but it's working Pin
Slacker00730-Jun-20 22:20
professionalSlacker00730-Jun-20 22:20 
GeneralRe: I feel like I have parts left over but it's working Pin
honey the codewitch30-Jun-20 22:28
mvahoney the codewitch30-Jun-20 22:28 
GeneralRe: I feel like I have parts left over but it's working Pin
Marc Clifton1-Jul-20 3:14
mvaMarc Clifton1-Jul-20 3:14 
GeneralRe: I feel like I have parts left over but it's working Pin
honey the codewitch1-Jul-20 4:04
mvahoney the codewitch1-Jul-20 4:04 
JokeLooked at CP and saw this... Pin
raddevus30-Jun-20 5:37
mvaraddevus30-Jun-20 5:37 
GeneralRe: Looked at CP and saw this... Pin
OriginalGriff30-Jun-20 5:41
mveOriginalGriff30-Jun-20 5:41 
GeneralRe: Looked at CP and saw this... Pin
raddevus30-Jun-20 5:42
mvaraddevus30-Jun-20 5:42 
GeneralRe: Looked at CP and saw this... Pin
ZurdoDev30-Jun-20 7:58
professionalZurdoDev30-Jun-20 7:58 
GeneralRe: Looked at CP and saw this... Pin
raddevus30-Jun-20 8:33
mvaraddevus30-Jun-20 8:33 
GeneralRe: Looked at CP and saw this... Pin
dandy7230-Jun-20 8:39
dandy7230-Jun-20 8:39 
GeneralRe: Looked at CP and saw this... Pin
OriginalGriff30-Jun-20 9:19
mveOriginalGriff30-Jun-20 9:19 
GeneralRe: Looked at CP and saw this... Pin
dandy721-Jul-20 3:33
dandy721-Jul-20 3:33 
Generalwhir, click click beep Pin
k505430-Jun-20 4:56
mvek505430-Jun-20 4:56 
GeneralRe: whir, click click beep Pin
raddevus30-Jun-20 5:34
mvaraddevus30-Jun-20 5:34 
GeneralRe: whir, click click beep Pin
RickZeeland30-Jun-20 6:44
mveRickZeeland30-Jun-20 6:44 
GeneralRe: whir, click click beep Pin
dandy7230-Jun-20 6:54
dandy7230-Jun-20 6:54 
GeneralRe: whir, click click beep Pin
kalberts30-Jun-20 7:08
kalberts30-Jun-20 7:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.