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:
want to buy a book at around 300-400p. Any recommendations? the topic can be anything, but I would prefer something light&funny.
Asked by gio (62.103.65.x) on January 8 2012, 7:34am
Reply on January 8 2012, 3:41pm:
How about Catch 22?
Comment...
Question:
I know an army of addicted whittle users waiting silently for an update. Any statement for what 2012 holds? happy new year m8!
Asked by gio (62.103.65.x) on January 7 2012, 10:03pm
Reply on January 8 2012, 3:42pm:
Ah, I should push an update, yeah...
Comment...
Question:
Have you ever been to a concert at The Stone thestonenyc.com/ ?
Asked by James (98.183.224.x) on January 5 2012, 4:38pm
Reply on January 6 2012, 4:40pm:
No, but that sounds like a nice place!
Comment...
Question:
Not being a money centred person, how do you feel receiving a large amount of money (i.e >$26k/yr) has benefited you/society?
Asked by tyz10 (90.196.187.x) on January 4 2012, 12:50pm
Reply on January 6 2012, 4:43pm:
How has it benefited me? Well, I've had plenty of experiences I wouldn't have had otherwise (though who knows what experiences I gave up as a result...). Having flexibility in my work schedule has allowed me to make software that people enjoy using, which I enjoy and society may arguably benefit from.. so there's that sort of thing. Generally, though, I don't think I'm any happier than if I was making $26k/year, I just have very different things to complain about.
Comment...
Question:
Which side would you rather race and why? www.youtube.com/watch?v=MFCNVvvmxNw
Asked by travis (70.178.43.x) on January 3 2012, 2:53pm
Reply on January 6 2012, 4:43pm:
Bahahah that is awesome and stupid and awesome.
Comment...
Question:
IMO, Winamp 2.91 remains the epitome of tight, efficient Win32 C programming. What do you use to play your MP3s nowadays?
Asked by Josh (24.183.132.x) on January 2 2012, 2:12am
Reply on January 6 2012, 4:43pm:
Winamp 5.08e, usually... or my iphone, or sometimes *shudder* iTunes.
Comment...
Question:
When reading the DSP guide, did you understand all of the math in your first pass? The math seems hard.
Asked by Will (70.173.150.x) on January 1 2012, 12:43am
Reply on January 2 2012, 12:43am:
Hell no, some of the 3D stuff for the recursive filters I still don't grasp.
Comment...
Question:
If I pay for winamp these days, will you get any money?
Asked by Roben (108.45.70.x) on December 31 2011, 4:47am
Reply on January 2 2012, 12:43am:
No.
Comment...
Question:
If I wanted to learn how to create network/p2p systems, where exactly should I start? Thanks!
Asked by Lopa (75.37.59.x) on December 28 2011, 3:43am
Reply on January 2 2012, 12:43am:
No idea, look at all of the open source stuff maybe?
Comment...
Question:
Do you write your Win32 programs as Unicode (always)?
Asked by Rodrigo (189.114.198.x) on December 27 2011, 8:52pm
Reply on December 29 2011, 2:13am:
I do everything in multibyte character set, but use UTF-8 (via WDL's win32_utf8.h wrapper) for character encodings (so our stuff will work on win9x etc).
Comment...
Question:
How'd you spend Christmas? :-)
Asked by Will (70.173.150.x) on December 25 2011, 9:15pm
Reply on December 29 2011, 2:12am:
Visiting my wife's parents, and eating, mostly.
Comment...
Question:
I use icc (big deal) but lately I'm very skeptical about performance on non-intel cpus. cpu dispatcher, Is it fair for the user?
Asked by gio (62.103.65.x) on December 23 2011, 3:32pm
Reply on December 23 2011, 9:49pm:
I haven't done exhaustive tests, but I believe the following to be the case:
ICC produces code that is a lot faster on Intel CPUs, when compared to both VC6 and VC2005, though the gains are a bit less when VC2005 has SSE2 enabled (but that of course requires a non-ancient CPU).
ICC produces code that is a lot faster on AMD CPUs, when compared to VC6 or VC2005 (when the latter has SSE2 disabled).
ICC vs VC2005/SSE2 on AMD CPUs, that I'm not so sure about.
My experiences are based on ICC 10.x, I should mention, which is old.
Comment...
Question:
What cell phone u use?
Asked by Desert Rain (122.176.191.x) on December 23 2011, 10:44am
Reply on December 23 2011, 9:49pm:
iPhone 4S, at the moment.
Comment...
Question:
PlayPreviewEx "family": what do mean the parameters "bufflags" and "msi" ?
Asked by frenchos (188.224.0.x) on December 20 2011, 9:21pm
Reply on December 21 2011, 12:31am:
If 1 is set in bufflags, it will buffer-ahead (in case your source needs to do some cpu intensive processing, a good idea -- if it needs to be low latency, then don't set the 1 bit).
MSI is the measure start interval, which if set to n greater than 0, means start synchronized to playback synchronized to a multiple of n measures..
Comment...
Question:
Do you have any kind of IRA?
Asked by Will (24.234.206.x) on December 20 2011, 8:55pm
Reply on December 21 2011, 12:29am:
Yes, which reminds me I need I need another.
Comment...
Question:
How you measure cpu & memory consumption in REAPER? asking cause I can't find the regular win32 calls in swell etc.
Asked by gio (62.103.65.x) on December 18 2011, 10:53pm
Reply on December 19 2011, 5:08pm:
For Win32 it's non-obvious and not a standard API, unfortunately, it involves reading a bunch of undocumented registry keys. For OSX we use malloc_zone_statistics() and getrusage().
Comment...
Question:
C has very few fancy language constructs, yet you can do anything with it. Are new language features really worth anything?
Asked by Will (70.173.150.x) on December 18 2011, 7:28pm
Reply on December 18 2011, 9:01pm:
Sure, for example, having member functions that have an implicit "this" pointer takes a great deal of pain-in-the-ass away (I'll admit this is at the expense of scope clarity -- hence, it makes sense to prefix member variables with m_ or similar so you never have to worry about "is this local or is this a member?" -- but this is not hugely different from local vs global data anyway). Also templates can be very handy, too, otherwise in C you use other kludges like big nasty #define based macros, or #define + #include, etc. Having said that, I do end up doing those as well, at times.
Comment...
Question:
Is it safe to leave my girlfriend alone for some quality programming on a Saturday night?
Asked by gio (62.103.65.x) on December 18 2011, 12:54am
Reply on December 18 2011, 1:43am:
Depends on how good of a programmer she is, I suppose?
Comment...
Question:
...approaching Christmas, have you got a wish list for Santa? :O
Asked by gio (62.103.65.x) on December 17 2011, 10:37pm
Reply on December 18 2011, 1:44am:
Not really, I'm sure I'm on his naughty list anyway.
Comment...
Question:
Have you got any clue why many people avoid GPLv3 like plague?
Asked by gio (62.103.65.x) on December 17 2011, 8:26pm
Reply on December 18 2011, 1:46am:
I suppose one could say GPL3::GPL2::::GPL2::BSD or something, and GPL2 is nice and in the middle? I end up preferring LGPL or BSD myself.
Comment...
[
newer questions
]
[
unreplied
] | [
replied
] | [
recent comments
] | [
all
]
[
older questions
]
Copyright 2025 Justin Frankel
.
|
RSS