Need advise for purchase

hello, I would like to develop flex 4.5 applications in mobile devices... can you advise me for a good phone with android OS?
I'm looking for something around $400 US dollars
thanks in advance
JedM

I was actually just about the put the Droid 2 I got at Adobe Max on craigslist. :D
It's a beautiful device, but I need the cash for some unfortunate expenses that popped up. I'd be happy to cut ya' a deal, being a fellow dev and all.
PM for details.
PS: This offer goes out to anyone else looking for a good testing device, if the OP isn't interested
*edit*
Looks like my offer is available to anyone who is interested.
Hehe, I feel like such a spammer!

Similar Messages

  • Need advise for processing DAQmx waveform array

    Hello All,
    I am using following code to continuously acquire data from 2 channels, then export to a text file for analysis with Execel or Origin. The data file should contain four columns:
    t1   Y1    t2   Y2
    I know it is convenient to use Write Measurement File express VI, but since this express VI open and close file in each loop execution, I prefer to use low-level File I/O functions to save computer resources (I need to reserve resources for image acquisition and analyses).
    The following attached VI just show the overall frame of the code, but is not executable now. I hope to get some suggestions from this forum to finish it.
    Here, I have two main questions, thank you in advance if you can provide hints to any of them.
    (1) How to get correct t0 and dt values for the waveform data
     I am using 25Hz pulse signal to externally trigger DAQmx  through PFI0.  I set 100Hz for the rate input of the DAQmx timing VI  since  LabVIEW help  says "If you use an external source for the Sample Clock, set this input to the
    maximum expected rate of that clock. " .
     When I use Write Measurement File express VI,  I found in the resulting text file, the dt is 0.01 instead of 0.04, i.e., the value of dt in the waveform data is not determined by external PFI0 signal, but by the rate input for the DAQmx timing VI.  Also, I found t0 does not always start from  zero.  However, from the display of data plot, I am sure the acquisition is at 25Hz.
    Some people in this forum ever told me to use Get Waveform Component and Build waveform functions to manually rebuild the waveform data in order to get correct t0 and dt. I tried and no luck to succeed.  Anyone can give me more detailed hints?
    (2) How to write data of 'NChan NSample' at one time in a loop
    I have two channel DAQmx, and for each channel there are several data points.  I plan to use following method to export data:
    Suppose in one loop DAQmx Read VI read 10 samples from each channel, so I assume I will get four arrays of 10 elements:
    t_channel_1, Y_channel_1, t_channel_2, Y_channel_2.
    Then I use a loop structure of N=10 to concatenate t1, tab,Y1,tab, t2,tab, Y2,return in 'element by element' mode, i.e., do 10 times of string concatenate and write to text file.
    I don't know whether above method is effective. Anyone can advise a better one?
    (3) Convert from timestamp to elapsed time in milisecond
    In the final text file, the time column should be the values of elapsed time in milisecond since the start of acquisition. So, I think I need to get the timestamp of the first data point so that for later data points I can use Elapsed Time express VI  to extract elapsed time in milisecond. However, I don't know how to get the timestamp at the starting of acquisition. Please advise if you know it.
    Sincerely,
    Dejun
    Message Edited by Dejun on 08-30-2007 10:34 AM
    Attachments:
    code.jpg ‏86 KB
    code.vi ‏49 KB

    tbob wrote:
    Ravens Fan:
    Read his post again:
    "I am using 25Hz pulse signal to externally trigger DAQmx  through PFI0.  I set 100Hz for the rate input of the DAQmx timing VI  since  LabVIEW help  says "If you use an external source for the Sample Clock, set this input to the maximum expected rate of that clock. " .
     When I use Write Measurement File express VI,  I found in the resulting text file, the dt is 0.01 instead of 0.04, i.e., the value of dt in the waveform data is not determined by external PFI0 signal, but by the rate input for the DAQmx timing VI.  Also, I found t0 does not always start from  zero.  However, from the display of data plot, I am sure the acquisition is at 25Hz."
    He says in the 1st paragraph that he sets theDAQmx timing to 100Hz because that is his maximum expected clock rate.  In the 2nd paragraph he says that in his measurement file dt is 0.01 instead of 0.04.  This indicates that the dt value is determined by the DAQmx timing rate, not the PFI0 clock rate.  I am thinking that he should set the DAQmx timing to match the PFI0 timing, 25Hz.
    Maybe this would work.
    You're right, I did misread what he said. But, I still have questions about what he said.  " I set 100Hz for the rate input of the DAQmx timing VI  ".  The code shows a rate input of 25 to the timing VI.  And nowhere else do I see a setting of 100Hz.  I ran his code (used a simulated device) and put an indicator on the to dt's in the clusters.  The came up as .04 which is what i would expect.  It is hard to comment what is going on in the file since there is nothing being send to the write text file VI.
    Message Edited by Ravens Fan on 08-31-2007 12:18 PM

  • Re need advise for groups

    Hi guys.
    Doing a reinstall of Arch 32 bit and had some problems with gnome before where it was not rendering themes properly for my user and looked ugly lol.
    Anyways I would like some advise on what groups I need and should add for my user account. This is a one user machine.

    the groups you add for your user is very dependent on what you're running on your system.  It's hard to say exactly which ones you'll want without knowing what you want to do on your system. The wiki page has some good info on various groups and what they do, it should help you better figure out what you want. http://wiki.archlinux.org/index.php/Groups

  • Need advise for best practice when using Toplink with external transaction

    Hello;
    Our project is trying to switch from Toplink control transaction to using External transaction so we can make database operation and JMS operation within a single transaction.
    Some of our team try out the Toplink support for external transaction and come up with the following initial recommendation.
    Since we are not familar with using external transaction, I would like member of this forum and experts, to help comment on whether these recommendation are indeed valid or in line with the best practice. And for folks that have done this in their project, what did you do ?
    Any help will be most appreciated.
    Data Access Objects must be enhanced to support reading from a TOPLink unit of work when using an external transaction controller. Developers must consider what impact a global transaction will have on the methods in their data access objects (DAOs).
    The following findSomeObject method is representative of a “finder” in the current implementation of our DAOs. It is not especially designed to execute in the context of a global transaction, nor read from a unit of work.
    public findSomeObject(ILoginUser aUser, Expression queryExpression)
    ClientSession clientSession = getClientSession(aUser);
    SomeObject obj = null;
    try
    ReadObjectQuery readObjectQuery = new ReadObjectQuery(SomeObject.class);
    readObjectQuery.setSelectionCriteria(queryExpression);
    obj = (SomeObject)clientSession.executeQuery(readObjectQuery);
    catch (DatabaseException dbe)
    // throw an appropriate exception
    finally
    clientSession.release();
    if (obj == null)
    // throw an appropriate exception
    return obj;
    However, after making the following changes (in blue) the findSomeObject method will now read from a unit of work while executing in the context of a global transaction.
    public findSomeObject(ILoginUser aUser, Expression queryExpression)
    Session session = getClientSession(aUser);
    SomeObject obj = null;
    try
    ReadObjectQuery readObjectQuery = new ReadObjectQuery(SomeObject.class);
    readObjectQuery.setSelectionCriteria(queryExpression);
    if (TransactionController.getInstance().useExternalTransactionControl())
         session = session.getActiveUnitOfWork();
         readObjectQuery.conformResultsInUnitOfWork(); }
    obj = (SomeObject)session.executeQuery(readObjectQuery);
    catch (DatabaseException dbe)
    // throw an appropriate exception
    finally
    if (TransactionController.getInstance().notUseExternalTransactionControl())
         session.release();
    if (obj == null)
    // throw an appropriate exception
    return obj;
    When getting the TOPLink client session and reading from the unit of work in the context of a global transaction, new objects need to be cached.
    public getUnitOfWork(ILoginUser aUser)
    throws DataAccessException
         ClientSession clientSession = getClientSession(aUser);
         UnitOfWork uow = null;
         if (TransactionController.getInstance().useExternalTransactionControl())
              uow = clientSession.getActiveUnitOfWork();
              uow.setShouldNewObjectsBeCached(true);     }
         else
              uow = clientSession.acquireUnitOfWork();
         return uow;
    }

    As it generally is with this sort of question there is no exact answer.
    The only required update when working with an External Transaction is that getActiveUnitOfWork() is called instead of acquireUnitOfWork() other than that the semantics of the calls and when you use a UnitOfWork is still dependant on the requirements of your application. For instance I noticed that originally the findSomeObject method did not perform a transactional read (no UnitOfWork). Has the requirements for this method changed? If they have not then there is still no need to perform a transactional read, and the method would not need to change.
    As for the requirement that new object be cached this is only required if you are not conforming the transactional queries and adds a slight performance boost for find by primary key queries. In order to use this however, objects must be assigned primary keys by the application before they are registered in the UnitOfWork.
    --Gordon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Need BAPI for Purchasing Order Reject through Workflow

    Hi All.
    I need a bapi to reject Purchase Order(PO) through Workflow. i've found some to release but not to reject, ('08' status Code). Can anybody hlp me please.
    Thanks & Regards,
    Mani.

    You can check standard Wflow Template WS65400030
    I think you can use Method ResetRelease of businress Object BUS2012

  • Need advise for PAL compression

    Hi,
    I have a movie that I made in NTSC.
    I would like to make a PAL DVD for someone who has no NTSC player.
    After reading the various threads, I would like to try compressor.
    Coudl someone help me and advise me what to choose to have the best result
    Under compressor (version 3.5.1) I have seen 8 and 10 bits uncompressed, DVPAL, DV50 PAL, and PAL ANAMORPHIC.
    I am not sure I quite understand how these differences will impact the result (DVD).
    Should I make a self contained movie first from my NTSC project and use that to make the PAL ?
    Thanks in advance to those who would like to share their knowledge and experience.
    Ivan

    Yes Nick, I know and I think that you already suggested the same thing in a previous thread if I remember well.
    The fact is that when I sent them the NTSC version, the color was not stable, going from B&W to yellow and other problem to read the DVD, which I checked on my equipment before sending of course.
    You might be right.
    May be this problem is not related to format.
    Thanks a lot
    Ivan

  • Need Advise for feasibility

    hi,
    is it possible for model business process using BPM for the scenario below?
    Role A user sends a task to >1 Role B (user 1, user 2, user 3) to perform this task concurrently. (I'm using Split N -> Join)
    is it possible to have role B user 1 to route task back to role A user and task instance still with role B (user 2, user 3) until role A user route task to role C user?
    Please advise.

    Perhaps put a "User A" activity within the Split-N circuit.
    If "User A" routes instance the join, that will end the activity for the other "user Bs". Would look something like:
    userA--> splitN-->userB-->userA-->join-->UserC
    Andrew

  • AVCHD I'm moving from Mac to Windows I need advise for Transcode

    My question is now that I no longer have ProRes422 because I'm now going to switch to a windows machine.  (Company invested into Windows Plugins, is the reason for the switch).  I need to know what format is suggested instead of ProRes.  I want to maintain video integrity and be able to easily edit like I did with prores422.  I can't seem to get a straight answer.  I realize there are many options.  But there has got to be a favorite or a recommended codec for smooth editing in Premiere Pro CC on a windows machine. 
    I also would love some advice on my workflow below.  Maybe someone could help me be more efficient.
    I have a 6 hour event that is recorded with 5 panasonic cameras. AVCC Cam 3CCD HD Cameras.
    This was my workflow on the MAC and why.  (I'm looking for advice, I realize I could have done this completely wrong)
    All Adobe Products are current version of CC
    I do all my Multicam syncing with Red Giant Plural Eyes 3 via the audio waveform matching.
    I have a multichannel recorder that records various things in the venue that the cameras all sync to.  .wav
    1.  For my interview segments 1 camera I ingest SD card into Prelude and create sub clips and organize the small clips there and then import and edit in Premiere Pro CC
    2. For my 6 hour long footage.  (4 other cameras).  I have an AVCHD file.  During a 6 hour event while the camera is recording, the panasonic creates up to 24 or more .MTS files. 
         Note: that sometimes the camera men shut off the camera to change the battery or make an adjustment.I convert the .mts files individually to ProRes 422 for editing.  I don't merge the .mts files together, because when I multi cam sync I want to make sure that each .mts file is an independent file that can be synced via audio waveform.   There is a small overlap of the .mts files.  so each .mts file is it's own camera for the syncing process.  (This is very time consuming)  I would love suggestions on how to make a better workflow for this.
    Thank You

    Okay, Ann!  I'm going to give it a try.  I have a great machine; however, Final Cut Pro X said it could handle AVCHD natively as well I also used Premiere Pro CC for mac trying AVCHD.  It hung up and turned my machine into a doorstop whenever, I applied any color  correction or effects.  So it was a really smooth option using an intermediate codec.  I'm willing to give it a shot on my windows machine here;however, many other discussion forums have warned about avchd being highly compressed and not very fun to work with.  I don't mind using an intermediate codec if it makes my job run more smoothly.

  • Need advise for a good book

    I'm a beginner and I'm looking to buy a good book to learn
    how to use dreamweaver, I went to amazon and most of the books
    about dreamweaver have good rating so it is hard to know which one
    is the best for me.
    What do you suggest?
    Thank you for your help.

    > I just bought the
    > missing manual and it seem very good!
    I'm especially fond of the TechEditor.
    Good luck!
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Yannorlando" <[email protected]> wrote in
    message
    news:fvv63f$d78$[email protected]..
    > Don't worry I know several web developer, they will help
    me. I just bought
    > the
    > missing manual and it seem very good! Thanks for your
    help
    >
    >
    quote:
    Originally posted by:
    Newsgroup User
    > Are they OK with a site that looks and performs as if it
    were the first
    > site
    > someone has built? I hope not....
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    > ==================
    >
    >
    > "Yannorlando" <[email protected]> wrote
    in message
    > news:fvt4tm$6o1$[email protected]..
    > > yes I'm starting learning HTML, for me advanced
    mean a website for a
    > > construction company with link picture etc.
    > >
    > > Thank you for your help
    >
    >
    >
    >
    >

  • I accidentally purchased Adobe Photoshop and Premiere Elements for Windows, but I need it for Mac. Please advise.

    I accidentally purchased Adobe Photoshop and Premiere Elements for Windows, but I need it for Mac. Please advise.

    Return, cancel, or exchange an Adobe order

  • I was advised to purchase dazzle video creator to move analog videos from an old sony camcorder to a mac.  I have purchased the dazzle and the specs seem to be for windows only.  Has anyone used this product on mac?

    I was advised to purchase dazzle video creator to move analog videos from an old sony camcorder to a mac.  I have purchased the dazzle and the specs seem to be for windows only.  Has anyone used this product on mac?

    I am not certain, but I believe there is a version of Dazzle for the Mac. However, it is not the route I would chose.
    You really need a proper analogue to digital converter, like the ADVC110, to connect to your camera via the usual RCA cables, and to your Mac via firewire.

  • I have problem with buying in games , I got the massage that the purchased can not be completed , please contact iTunes support.. I need help for my case please

    I have problem with buying in games , I got the massage that the purchased can not be completed , please contact iTunes support.. I need help for my case please

    http://www.apple.com/support/itunes/contact/

  • I need advise and help with this problem . First , I have been with Mac for many years ( 14 to be exact ) I do have some knowledge and understanding of Apple product . At the present time I'm having lots of problems with the router so I was looking in to

    I need advise and help with this problem .
    First , I have been with Mac for many years ( 14 to be exact ) I do have some knowledge and understanding of Apple product .
    At the present time I'm having lots of problems with the router so I was looking in to some info , and come across one web site regarding : port forwarding , IP addresses .
    In my frustration , amongst lots of open web pages tutorials and other useless information , I come across innocent looking link and software to installed called Genieo , which suppose to help with any router .
    Software ask for permission to install , and about 30 % in , my instinct was telling me , there is something not right . I stop installation . Delete everything , look for any
    trace in Spotlight , Library . Nothing could be find .
    Now , every time I open Safari , Firefox or Chrome , it will open in my home page , but when I start looking for something in steed of Google page , there is
    ''search.genieo.com'' page acting like a Google . I try again to get raid of this but I can not find solution .
    With more research , again using genieo.com search eng. there is lots of articles and warnings . From that I learn do not use uninstall software , because doing this will install more things where it come from.
    I do have AppleCare support but its to late to phone them , so maybe there some people with knowledge , how to get this of my computer
    Any help is welcome , English is my learned language , you may notice this , so I'm not that quick with the respond

    Genieo definitely doesn't help with your router. It's just adware, and has no benefit to you at all. They scammed you so that they could display their ads on your computer.
    To remove it, see:
    http://www.thesafemac.com/arg-genieo/
    Do not use the Genieo uninstaller!

  • I need to change from Japan App Store to Australia App Store. I get this every time I try using My MacID: "This Apple ID is only valid for purchases in the Japanese iTunes Store. You will be switched to that Store." What next TY. JohnCahill

    I moved from Japan to Australia. I need to change from Japan App Store to the Australian App Store. I get the following message every time I try using My MacID which was set up in Japan: "This Apple ID is only valid for purchases in the Japanese iTunes Store. You will be switched to that Store." At one point... by which path I do not remember... I was instructed to created a new ID. I fill out the new ID forms, but the address is rejected each time... quite confusing. Does it want a new name? But it says I cannot use an apple domain (tag?) even though I guess it has to be an apple address... ? So I have iTunes crdit cards purchansed in Australia, can't spend in AUstralian iTunes Store, get directed back to Japan each time, and can't open a new ID... What am I doing wrong? Thank you in advance.  John. Australia.

    You must have a separate Apple ID registered in the other store along with a valid bank-issued charge card in the other country, and a legal billing address in the other country.
    Sorry... But... You cannot use other countries itunes stores.
    You must be within the Country with a Valid Billing Address and Credit Card for that Country to use the iTunes Store of that Country..
    iTunes Store Terms of Service
    http://www.apple.com/legal/itunes/us/terms.html#SERVICE

  • I need to use up all my credits in ITunes but only have $.25. How do I do this as nothing is worth $.25? The reason I need to do this is to change my country for purchases on my Credit Card that is not a US credit card

    I need to use up all my credits in ITunes but only have $.25. How do I do this as nothing is worth $.25? The reason I need to do this is to change my country for purchases on my Credit Card that is not a US credit card

    Click here and ask the iTunes Store staff to zero your account balance.
    (114902)

Maybe you are looking for