justin = {
main feed
,
music
,
code
= {
cockos
,
reaper
,
wdl
,
ninjam
,
jsfx
,
more
}
,
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:
Are you going to be at CES2013?
Asked by Will i am (74.142.104.x) on December 26 2012, 5:56pm
Reply on December 27 2012, 9:40pm:
Nope.
Comment...
Question:
who is nex to me?
Asked by sham (77.98.53.x) on December 26 2012, 4:25pm
Reply on December 27 2012, 9:40pm:
Dunno.
Comment...
Question:
did you have a nice holiday?
Asked by dral (24.158.28.x) on December 26 2012, 4:11pm
Reply on December 27 2012, 9:40pm:
Sure.
Comment...
Question:
since the 4.x.x series every new iteration of vbulletin is worst than the previous one. does that worry you?
Asked by gio (94.66.80.x) on December 26 2012, 2:39am
Reply on December 27 2012, 9:40pm:
Yeah unsure if we'll ever upgrade.
Comment...
Question:
did u knew that WDL controls some HUGE electric power generators? probably ur using one of them. AMAZING, huh -- Merry Xmas.
Asked by gio (94.66.80.x) on December 26 2012, 1:33am
Reply on December 27 2012, 9:40pm:
Scary, any pictures or more info I can have?
Comment...
Question:
What's in the bucket?
Asked by travis (70.178.147.x) on December 25 2012, 3:52am
Reply on December 27 2012, 9:41pm:
a mop, and an illustrated book about birds.
Comment...
Question:
Have to code on many platforms(e.g Win/Suse/redhat/AIX/HPUx), but with none experience..is ACE a good choice? or any advice?
Asked by Dave (219.133.0.x) on December 25 2012, 1:58am
Reply on December 27 2012, 9:41pm:
Dunno what ACE is. What kind of software?
Comment...
Question:
are porsche boxters shitty cars?
Asked by Will (70.173.150.x) on December 25 2012, 1:11am
Reply on December 27 2012, 9:41pm:
No. Are they worth the money? Probably no as well.
Comment...
Question:
Do you consult each other (WT included) when doing UI part of the R? Or is it just done by the person who does the rest of code?
Asked by Martin (93.136.31.x) on December 24 2012, 4:58am
Reply on December 27 2012, 9:41pm:
We all often discuss various aspects of design, WT included.
Comment...
Question:
What main 3 reasons that Reaper not so popular as could be?
Asked by Sasha (46.241.3.x) on December 23 2012, 11:28am
Reply on December 23 2012, 4:29pm:
Popularity isn't a design goal, for one. That and, it probably would benefit from a more technical, sophisticated name, rather than something niche.
Comment...
Question:
Has your wife ever shown any interest in coding? Does she use any of your software?
Asked by Mommy (99.173.159.x) on December 23 2012, 2:25am
Reply on December 23 2012, 4:27pm:
Nope, and only rarely.
Comment...
Question:
Regarding ask.slashdot.org/story/12/12/21/1846239/ask-slashdot-do-coding-s... does Cockos do this
Asked by Will (24.234.85.x) on December 21 2012, 9:35pm
Reply on December 23 2012, 4:27pm:
We have some informal standards but they aren't a big deal.
Comment...
Question:
Do yopu have a bucket list?
Asked by Pinkaso (208.64.185.x) on December 21 2012, 9:12pm
Reply on December 23 2012, 4:26pm:
No, but I do have a bucket.
Comment...
Question:
What is your wife better than you at?
Asked by Will (70.173.150.x) on December 21 2012, 3:55am
Reply on December 23 2012, 4:26pm (edited at December 23 2012, 4:28pm):
Pretty much everything except programming. She's a wonderful cook, and also is definitely better about not ending sentences with prepositions, to. ;) [sic]
Comment...
Question:
What's your thoughts on creating a company/fanpage on Facebook for a wider interaction/expansion/news of REAPER?
Asked by RenLB (201.47.217.x) on December 20 2012, 10:38pm
Reply on December 23 2012, 4:26pm:
I think the company does have a page on FB, but I don't really use FB.
Comment...
Question:
Re: Hey I didn't know this malloc behavior, that's great. Do you have any suggestions on how large I should alloc the block?
Asked by Rodrigo (200.198.222.x) on December 20 2012, 9:50am
Reply on December 20 2012, 5:53pm:
Figure out what the reasonable maximum number of files you'd ever open is, and multiply it by the typical file length (it doesn't store the path per file, thankfully, just path then file list).
Comment...
Question:
Technologically, what body of programing knowledge was necessary to build up Ninjam? Were you totally alone?
Asked by French Engineeri (147.210.204.x) on December 20 2012, 8:04am
Reply on December 20 2012, 5:53pm:
Basic audio device programming and understanding, multithreading, and TCP networking stuff... Had some conceptual design discussions with my brother, who also did the first GUI for it.
Comment...
Question:
I'm trying GetOpenFileName for multiple files [bit.ly/WpS5J6]. Works OK on Windows, but crashes on Wine. What do you use?
Asked by Rodrigo (187.58.227.x) on December 19 2012, 11:20pm
Reply on December 20 2012, 3:31am:
I'd just allocate a big buffer and hope for the best... If you malloc() a large buffer and only write the beginning of it, it won't actually reserve physical RAM for the buffer that is unused, so while it will temporarily waste some address space, it won't actually be using the RAM.
Comment...
Question:
could you briefly explain the purpose of various LICE_*Bitmaps? thanks
Asked by olilarkin (144.32.156.x) on December 19 2012, 3:39pm
Reply on December 19 2012, 10:12pm:
LICE_IBitmap: abstract interface for all lice bitmaps
LICE_MemBitmap: bitmap backed by a malloc()'d buffer
LICE_SysBitmap: bitmap backed by a buffer that also has a HDC associated with it (on OSX, this implies a SWELL HDC). For these, getDC() returns non-NULL.
LICE_SubBitmap: a utility wrapper to have a subimage of another LICE_IBitmap. If you wish to clip drawing to a rectangle, you can use this.
LICE_WrapperBitmap: used if you want to wrap some foreign buffer and make it accessible for LICE functions.
Comment...
Question:
I am getting Windows 8 for just $15 yes $15 only, do i upgrade or dont fix what aint broke, on Windows 7, i use only for UPNP
Asked by Desert Rain (122.176.9.x) on December 18 2012, 3:20pm
Reply on December 18 2012, 10:44pm:
I wouldn't bother at this point...
Comment...
[
newer questions
]
[
unreplied
] | [
replied
] | [
recent comments
] | [
all
]
[
older questions
]
Copyright 2025 Justin Frankel
.
|
RSS