Viewing 15 posts - 1 through 15 (of 35 total)
  • Author
    Posts
  • #624
    Dj Buik
    Member

    In addition on my last post:
    http://www.claessonedwards.com/forum/viewtopic.php?f=5&t=828

    Here my wishlist for 2010:

    1) MP3 Breakaway Batch conversion
    2) Digital Studio Link
    3) ?

    Can’t think for a third one quickly, maybe other people have some features to wish?

    #9375
    Boki
    Member

    Full version (version which can not be registered), so other peoples can make presets, and export settings to file which can be loaded in normal Public version.

    8)

    #9376
    Anonymous
    Guest

    [quote author=”Boki”]Full version (version which can not be registered), so other peoples can make presets, and export settings to file which can be loaded in normal Public version.

    8)[/quote]
    +1

    Would be very nice for those of us advanced processing junkies 😀

    #9377
    Leif
    Keymaster

    Let me add one to the list:

    36-hour days

    ///Leif

    #9378
    Dj Buik
    Member

    2nd option:

    Add one second C++ (or assembler) programmer to your development team. 🙂
    But i think, qualified and experience, are hard to find. 😕

    Een fijne jaarwisseling

    #9379
    Leif
    Keymaster

    [quote author=”Dj Buik”]Add one second C++ (or assembler) programmer to your development team. [/quote]

    I’m open to suggestions 🙂.

    ///Leif

    #9380
    Dj Buik
    Member

    The other day i wrote this program, but it didn’t work…

    code :for a = 1 to 100000
    rem add 1000 euro to my account
    MyAccountNumber = MyAccountNumber + 1000
    next a

    Can someone debug this for me?

    If you get this program to work, i’m sure Leif will get you a job.

    #9381
    Leif
    Keymaster

    Of course! It’s obvious what the problem is.

    The code, as it’s written, will just increase the account number, without doing anything to the contents.

    What you want is to increase the value of the number it’s pointing to, not the pointer itself.

    code :for a = 1 to 100000
    rem add 1000 euro to my account
    *MyAccountNumber = *MyAccountNumber + 1000
    next a

    That should do it!

    ///Leif

    #9382
    JesseG
    Member

    [quote author=”Leif”]That should do it![/quote]

    nope. that would also only increase the value of the pointer. not the value that the pointer is pointing to. for instance in C++, if "MyAccountNumber" was a 32bit unsigned int…

    code :int *MyAccountNumber = *(int*)[some_pointer], a;
    while (a < 100000)
    {
    // add 1000 euro to my account
    MyAccountNumber = MyAccountNumber + 1000;
    a++;
    }

    or if MyAccountNumber was already defined only as an offset and not a full fledged locally mapped pointer…

    code :int *cashToSet, a;
    while (a < 100000)
    {
    // add 1000 euro to my account
    cashToSet = &MyAccountNumber + 1000;
    memcpy(&MyAccountNumber, &cashToSet, sizeof(int));
    a++;
    }

    profit?

    extra credit bonus:

    code :for a = 1 to 100000
    rem add 1000 euro to my account
    &MyAccountNumber += 1000
    next a

    8)

    (someone someone got the puns, lol)

    #9383
    Dj Buik
    Member

    crap 😥

    jesse, i think you got the job….

    good luck 🙂

    BTW: The amount on my accountnumber is many times <= 0
    Is that a problem 😳

    #9384
    JesseG
    Member

    lol, Leif already knows I can code. we bounce stuff off each other from time to time. 😉

    as far as your account, ehh… if i figure that out, i’m not telling ANYONE. lol

    #9385

    I want a new more stable version of Edcast… ow wait, that is another program 😆 Sometimes it get stucked on a lower bitrate for some reason, and i had to restart BBP (and Edcast) to fix it again. Also on my live PC it was streamin at 208 kb/s instead 192 kb/s (which was configured). Restarting it a few times didn’t solve the problem. Next day it was over…

    Strange stuff sometimes with Edcast… I actually don’t have any wished for BBP. It is a good product, can’t think of improvements at this time.

    #9386
    Leif
    Keymaster

    I wish it wasn’t so complicated to license codecs, or I would have released LeifCast a long time ago.

    ///Leif

    #9387

    Well…you can also deliver an application without the codecs. I download my own codec(s) from the internet 😉 I am using only LAME so.

    #9388
    timmywa
    Participant

    Good call Cyber!! Do it, Leif!

    Happy New Year, you all!

Viewing 15 posts - 1 through 15 (of 35 total)
  • The forum ‘Breakaway Professional Products – [discontinued]’ is closed to new topics and replies.