justin = { main feed , music , code , askjf , pubkey };
Ask Justin Frankel
No reasonable question unanswered since 2009!

Suggested topics: programming, music, sleep, coffee, etc.

Note: please do not ask questions about REAPER features, bugs or scheduling, use the forums instead.


Name: Ask: Human (enter yes):
[newer questions][unreplied] | [replied] | [recent comments] | [all]
[older questions]

Question: Could you have a look at the final endif statement in stringpool.h? Thanks.
Asked by gio (94.70.16.x) on April 28 2016, 7:35am
Reply on April 28 2016, 3:14pm:
    fixing, thanks!
Comment...
Question: Roughly how many code lines is Reaper's biggest function?
Asked by Punky Brewster (99.117.28.x) on April 27 2016, 4:47pm
Reply on April 28 2016, 2:02am:
    Not sure the easiest way to check, but probably huge, some big switch() {} statement.
Comment...
Question: when is my birthday
Asked by Jaxon (205.122.29.x) on April 27 2016, 3:41pm
Reply on April 28 2016, 2:02am:
    Tuesday, at least some years.
Comment...
Question: Do you know what the best hair growing product?
Asked by Paul (205.122.29.x) on April 26 2016, 4:00pm
Reply on April 27 2016, 1:57am:
    Hmm that's outside of my expertise
Comment...
Question: Hi, I'm working on an extension that uses a listbox, and I can get it to work for Windows, but won't work on Mac. When I run the php script, it makes the mac .rc_mac_dlg, but i'm stuck on this: hMarkerListWnd = CreateWindowEx(WS_EX_CLIENTEDGE, WC_LISTVIEW, "", WS_CHILD | WS_VISIBLE | WS_TABSTOP | LVS_REPORT | LVS_SHOWSELALWAYS | LVS_SINGLESEL, 0, 0, 1, 1, hw
Asked by Wyatt (76.77.161.x) on April 26 2016, 12:04am
Reply on April 26 2016, 3:02pm:
    "Sorry I didn't finish the question below. Is there a function in swell that I'm missing or is it possble?" Yeah, you can't use CreateWindowEx() on SWELL -- the easiest thing is to create controls in dialog resources and have CreateDialog() deal with it. To create on the fly, do something like this:
    #ifdef _WIN32
      hMarkerListWnd = CreateWindowEx(WS_EX_CLIENTEDGE, WC_LISTVIEW, "", WS_CHILD | WS_VISIBLE | WS_TABSTOP | LVS_REPORT | LVS_SHOWSELALWAYS | LVS_SINGLESEL, 0, 0, 1, 1, hw ...
    #else
      SWELL_MakeSetCurParms(1, 1, 0, 0, parent, false, false);
      hMakerListWnd = SWELL_MakeControl("",id_if_you_care,"SysListView32",LVS_REPORT|LVS_SINGLESEL,x,y,w,h,0);
      SWELL_MakeSetCurParms(1, 1, 0, 0, NULL, false, false);
    
    #endif
    
    
    
Comment...
Question: On builds: How does that work? Does it do multiple passes to get the best compile or some other things?
Asked by Punky Brewster (99.117.28.x) on April 25 2016, 2:51pm
Reply on April 26 2016, 2:56pm:
    No just builds the four different versions.
Comment...
Question: If a REAPER build takes more than 10 min, how do you test things? You can't write/test/compile quickly, what's the strategy?
Asked by Rodrigo (177.96.146.x) on April 25 2016, 2:47am
Reply on April 25 2016, 2:49pm (edited at April 25 2016, 2:50pm):
    That's for release builds (which rebuild-all, using ICC in release mode, for 4 platforms, OSX/Win, 32 and 64-bit).

    When developing using xcode, for example, you only build the files that change, which is usually close to instant, but even if I rebuild-all in debug mode in xcode, it takes ~30 seconds (VC is quite a bit slower on the same computer).
Comment...
Question: How long does it take to compile a new Reapee build?
Asked by PunkyBrewster (99.117.28.x) on April 24 2016, 10:42pm
Reply on April 25 2016, 12:33am:
    Our autobuild farm takes about 10-15 minutes I think.
Comment...
Question: Where can "genwafilefinder" be retrieved?
Asked by Joey (82.10.152.x) on April 23 2016, 6:30pm
Reply on April 25 2016, 12:33am:
    I don't know what that is (other than guessing)
Comment...
Question: "BTW, see the Note: above on this page, *cough* end of discussion... " Oops, sorry :)
Asked by Bobby D (109.19.9.x) on April 23 2016, 4:45pm
Reply on April 25 2016, 12:33am:
    OK
Comment...
Question: Re re : Midi clock.(i know, i'm kinda insisting) : And in case of music without tempo changes (like many electronic music), wouldn't it be possible to have Reaper slave-synced to a hardware sequencer through Midi Clock ? It would be so useful.
Asked by Bobby D (109.19.9.x) on April 23 2016, 10:41am
Reply on April 23 2016, 4:38pm:
    Useful, sure, but not really worth the complexity. BTW, see the Note: above on this page, *cough* end of discussion...
Comment...
Question: Do you watch Better Call Saul?
Asked by Prizmaxic (65.73.206.x) on April 21 2016, 8:24pm
Reply on April 22 2016, 12:44pm:
    Yes, I love it.
Comment...
Question: Who left the note for Mike?
Asked by Lydia Rodarte-Qu (74.192.137.x) on April 21 2016, 5:03pm
Reply on April 22 2016, 12:44pm:
    I know, right?!
Comment...
Question: Re : Midi clock. Thank you, Justin. Any plan to have "proper" (standard) Midi Clock support (Reaper beig able to receive Midi clock from a hardware sequencer/synth) ?
Asked by Bobby D (109.19.9.x) on April 21 2016, 1:31pm
Reply on April 21 2016, 2:22pm:
    No, REAPER needs predictability.
Comment...
Question: Re : Midi clock. Thank you so much, i wasn't aware about that. However, i have several drop outs, and it seems to have some lag at while starting playback, and that Reaper doesn't display the right tempo (it keeps displaying the default 120bpm while the midi clock was set at 108bpm), so if i record my performance as audio, will it be tagged as 120bpm, or 108
Asked by Bobby D (109.19.9.x) on April 20 2016, 10:17pm
Reply on April 21 2016, 1:16am:
    It won't read tempo from the clock, just uses it to synchronize, you need to manually match the tempos.
Comment...
Question: "Right click on the play button in the transport to change sync options. " Yes, thank you for the tip. But i see only MTC, no Midi Clock option ? Is Midi Clock support planned ?
Asked by Bobby D (109.19.9.x) on April 20 2016, 9:12pm
Reply on April 20 2016, 9:18pm:
    It is labeled as "MIDI SPP" (it needs the SPP to know where to start).
Comment...
Question: My girlfriend thinks I am a bad boyfriend. How do I make her happy? How do I make her love me again?
Asked by Mark (205.122.29.x) on April 20 2016, 4:05pm
Reply on April 20 2016, 9:21pm:
    Be kind and be yourself, if it's meant to be then there you go. Maybe?
Comment...
Question: so, how do you do to slave sync Reaper to a master hardware seq ? from what i understand it would workm if there is no tempo change ?
Asked by bobby d (109.19.9.x) on April 20 2016, 6:56am
Reply on April 20 2016, 1:50pm:
    Right, and assuming you have the tempos matched. Right click on the play button in the transport to change sync options.
Comment...
Question: Hi, Is there any plan to allow Reaper clock to be set as Midi Slave ?
Asked by Bob Denard (109.19.9.x) on April 19 2016, 7:27pm
Reply on April 20 2016, 1:34am:
    No, it can slave to midi clock but can't adapt to the rate changes, as it requires tempo to be predictable.
Comment...
Question: How many times do you have to poo to not be constipated anymore?
Asked by Felicia (205.122.29.x) on April 18 2016, 4:09pm
Reply on April 20 2016, 1:35am:
    I don't think it's a question of quantity, but quality.
Comment...
[newer questions][unreplied] | [replied] | [recent comments] | [all]
[older questions]
Copyright 2025 Justin Frankel. | RSS