Anyone familiar with the C language????

hey guys
well ill give it a try. see if anyone here can help me. i need to input an integer and then convert it to a binary representation. size of the integer is 16 bits. can anyone help??? eg:
user input : 27
program output: 0000000000011011
would appreciate if anyone could help
cheers
milos

How about:
    public String getBits (int i) {
        String bits = "";
        for (int b = 0; b < 16; b ++, i >>= 1)
            bits = (((i & 1) == 1) ? '1' : '0') + bits;
        return bits;
    };You said you only need 16 bits, and that way should keep the bits in the right order, too (most significant on left).
In C/C++, a fast way to do that would be:
    char *getBits (unsigned int i, char *buf) {
        char *b = buf + 16;
        *b = 0;
        for (int j = 0; j < 16; j ++, i >>= 1)
            *(--b) = ((i & 1) + '0');
        return buf;
    };Doesn't matter if int is unsigned or not (except from the standpoint of you preventing the programmer from accidently passing a negative number), since your only getting the low 16 bits, and arithmetic right shifts won't affect this anyway. Didn't test that, hopefully it works. Yeah, sure its unsafe, but only if buf isn't at least 17 bytes.
Jason

Similar Messages

  • Anyone familiar with "The Standby Wizard for Oracle "

    Is anyone familiar with "The Standby Wizard for Oracle " by Relational Database Consultants, Inc?
    It is a GUI app that supposedly simplifies and automates the creation, maintenance, and switchback functions necessary to implement Oracle's standby database paradigm for high-availability.
    I have a very small IT shop and simplification with data protection is important to me.
    I'd like to read anyones thoughts if you have such.

    Hi
    I never used this tool. However it is important that you have the right infrastructure, too. A standby database wrong implemented is useless. You can try to call a consult in near you to implement the dataguard.
    Does Relational Database Consultants has a documentation about the product?
    Bye, Aron

  • Anyone familiar with the Java Service Wrapper?

    I'm getting errors when trying to use the Java Service Wrapper. My wrapper.conf file looks like this:
    # Wrapper License Properties (Ignored by Community Edition)
    # Include file problems can be debugged by removing the first '#'
    #  from the following line:
    ##include.debug
    #include ../conf/wrapper-license.conf
    #include ../conf/wrapper-license-%WRAPPER_HOST_NAME%.conf
    # Wrapper Java Properties
    # Java Application
    wrapper.java.command=%JAVA_HOME%\bin\java.exe
    # Tell the Wrapper to log the full generated Java command line.
    wrapper.java.command.loglevel=INFO
    # Java Main class.  This class must implement the WrapperListener interface
    #  or guarantee that the WrapperManager class is initialized.  Helper
    #  classes are provided to do this for you.  See the Integration section
    #  of the documentation for details.
    wrapper.java.mainclass=org.tanukisoftware.wrapper.WrapperSimpleApp
    # Java Classpath (include wrapper.jar)  Add class path elements as
    #  needed starting from 1
    wrapper.java.classpath.1=C:\dbbackup\lib\wrapper.jar
    wrapper.java.classpath.2=%JAVA_HOME%\lib\tools.jar
    wrapper.java.classpath.3=C:\dbbackup\apps\JavaApplication110.jar
    # Java Library Path (location of Wrapper.DLL or libwrapper.so)
    wrapper.java.library.path.1=C:\dbbackup\lib
    # Java Bits.  On applicable platforms, tells the JVM to run in 32 or 64-bit mode.
    wrapper.java.additional.auto_bits=TRUE
    # Java Additional Parameters
    #wrapper.java.additional.1=
    # Initial Java Heap Size (in MB)
    #wrapper.java.initmemory=3
    # Maximum Java Heap Size (in MB)
    #wrapper.java.maxmemory=64
    # Application parameters.  Add parameters as needed starting from 1
    wrapper.app.parameter.1=JavaApplication110.Main
    # Wrapper Logging Properties
    # Enables Debug output from the Wrapper.
    # wrapper.debug=TRUE
    # Format of output for the console.  (See docs for formats)
    wrapper.console.format=PM
    # Log Level for console output.  (See docs for log levels)
    wrapper.console.loglevel=INFO
    # Log file to use for wrapper output logging.
    wrapper.logfile=../logs/wrapper.log
    # Format of output for the log file.  (See docs for formats)
    wrapper.logfile.format=LPTM
    # Log Level for log file output.  (See docs for log levels)
    wrapper.logfile.loglevel=INFO
    # Maximum size that the log file will be allowed to grow to before
    #  the log is rolled. Size is specified in bytes.  The default value
    #  of 0, disables log rolling.  May abbreviate with the 'k' (kb) or
    #  'm' (mb) suffix.  For example: 10m = 10 megabytes.
    wrapper.logfile.maxsize=0
    # Maximum number of rolled log files which will be allowed before old
    #  files are deleted.  The default value of 0 implies no limit.
    wrapper.logfile.maxfiles=0
    # Log Level for sys/event log output.  (See docs for log levels)
    wrapper.syslog.loglevel=NONE
    # Wrapper General Properties
    # Allow for the use of non-contiguous numbered properties
    wrapper.ignore_sequence_gaps=TRUE
    # Title to use when running as a console
    wrapper.console.title=Test Wrapper Sample Application
    # Wrapper Windows NT/2000/XP Service Properties
    # WARNING - Do not modify any of these properties when an application
    #  using this configuration file has been installed as a service.
    #  Please uninstall the service before modifying this section.  The
    #  service can then be reinstalled.
    # Name of the service
    wrapper.name=dbbackup
    # Display name of the service
    wrapper.displayname=dbbackup
    # Description of the service
    wrapper.description=Test Wrapper Sample Application Description
    # Service dependencies.  Add dependencies as needed starting from 1
    wrapper.ntservice.dependency.1=
    # Mode in which the service is installed.  AUTO_START, DELAY_START or DEMAND_START
    wrapper.ntservice.starttype=AUTO_START
    # Allow the service to interact with the desktop.
    wrapper.ntservice.interactive=false
    STATUS | wrapper  | 2010/04/05 19:56:22 |
    STATUS | wrapper  | 2010/04/05 19:56:22 | Launching a JVM...
    INFO   | wrapper  | 2010/04/05 19:56:22 | command: "C:\Program Files\Java\jdk1.5.0_11\bin\java.exe" -Djava.library.path="C:\dbbackup\lib" -classpath "C:\dbbackup\lib\wrapper.jar;C:\Program Files\Java\jdk1.5.0_11\lib\tools.jar;C:\dbbackup\apps\JavaApplication110.jar" -Dwrapper.key="uDobXEdkbmmNM22u" -Dwrapper.port=32000 -Dwrapper.jvm.port.min=31000 -Dwrapper.jvm.port.max=31999 -Dwrapper.pid=584 -Dwrapper.version="3.4.0" -Dwrapper.native_library="wrapper" -Dwrapper.cpu.timeout="10" -Dwrapper.jvmid=1 org.tanukisoftware.wrapper.WrapperSimpleApp
    INFO   | jvm 1    | 2010/04/05 19:56:23 | WrapperManager: Initializing...
    INFO   | jvm 1    | 2010/04/05 19:56:23 |
    INFO   | jvm 1    | 2010/04/05 19:56:23 | WrapperSimpleApp Usage:
    INFO   | jvm 1    | 2010/04/05 19:56:23 |   java org.tanukisoftware.wrapper.WrapperSimpleApp {app_class} [app_arguments]
    INFO   | jvm 1    | 2010/04/05 19:56:23 |
    INFO   | jvm 1    | 2010/04/05 19:56:23 | Where:
    INFO   | jvm 1    | 2010/04/05 19:56:23 |   app_class:      The fully qualified class name of the application to run.
    INFO   | jvm 1    | 2010/04/05 19:56:23 |   app_arguments:  The arguments that would normally be passed to the
    INFO   | jvm 1    | 2010/04/05 19:56:23 |                   application.
    ERROR  | wrapper  | 2010/04/05 19:56:24 | JVM exited while loading the application.
    STATUS | wrapper  | 2010/04/05 19:56:28 | CTRL-C trapped.  Shutting down.
    STATUS | wrapper  | 2010/04/05 19:56:28 | <-- Wrapper Stopped

    I got it to work. Still not sure what I was doing wrong. I just copied a wrapper config I had for launching JBoss and implemented it into my application.
    wrapper.java.command=%JAVA_HOME%/bin/java
    wrapper.java.mainclass=org.tanukisoftware.wrapper.WrapperSimpleApp
    wrapper.java.classpath.1=C:/dbbackup/lib/wrapper.jar
    wrapper.java.classpath.2=%JAVA_HOME%/lib/tools.jar
    wrapper.java.classpath.3=C:/dbbackup/bin/JavaApplication110.jar
    wrapper.java.library.path.1=C:/dbbackup/lib
    # these are the JAVA_OPTS
    wrapper.java.additional.1=-Dprogram.name=%PROGNAME%
    wrapper.java.additional.2=-server
    wrapper.java.additional.3=-Xms128m
    wrapper.java.additional.4=-Xmx512m
    wrapper.java.additional.5=-Dsun.rmi.dgc.client.gcInterval=3600000
    wrapper.java.additional.6=-Dsun.rmi.dgc.server.gcInterval=3600000
    wrapper.app.parameter.1=javaapplication110.Main
    wrapper.logfile=C:/dbbackup/logs/wrapper.log
    wrapper.ntservice.name=DBbackup
    wrapper.ntservice.displayname=DBbackup
    wrapper.ntservice.description=Starts and stops
    wrapper.ntservice.starttype=AUTO_START

  • Anyone familiar with the Mybook external hard drive?

    I'm looking into buying an external hard drive, primarily to house my media: photos, music, shorts, etc. A friend of mine recommended Western Digital's Mybook, especially since I don't need much space (their 80 or 120 gig models sound ideal). I was just wondering if anyone here has used one. Thanks.
    AT

    This is usually a bad idea since solaris makes links in /dev that point to configured devices. A failsafe boot will probably work though. If you really wanted to reconfigure the drive to work on another machine, follow this:
    http://www.riddleware.com/solx86/SCSI_change.html
    I don't think any of this really has changed...

  • Anyone Familiar with The Application Called "Famous", an Oracle Based...

    Need assistance on weak points of the Famous application based on Oracle used for farming. Industry specific against Bus 1.
    Thanks!

    I got it to work. Still not sure what I was doing wrong. I just copied a wrapper config I had for launching JBoss and implemented it into my application.
    wrapper.java.command=%JAVA_HOME%/bin/java
    wrapper.java.mainclass=org.tanukisoftware.wrapper.WrapperSimpleApp
    wrapper.java.classpath.1=C:/dbbackup/lib/wrapper.jar
    wrapper.java.classpath.2=%JAVA_HOME%/lib/tools.jar
    wrapper.java.classpath.3=C:/dbbackup/bin/JavaApplication110.jar
    wrapper.java.library.path.1=C:/dbbackup/lib
    # these are the JAVA_OPTS
    wrapper.java.additional.1=-Dprogram.name=%PROGNAME%
    wrapper.java.additional.2=-server
    wrapper.java.additional.3=-Xms128m
    wrapper.java.additional.4=-Xmx512m
    wrapper.java.additional.5=-Dsun.rmi.dgc.client.gcInterval=3600000
    wrapper.java.additional.6=-Dsun.rmi.dgc.server.gcInterval=3600000
    wrapper.app.parameter.1=javaapplication110.Main
    wrapper.logfile=C:/dbbackup/logs/wrapper.log
    wrapper.ntservice.name=DBbackup
    wrapper.ntservice.displayname=DBbackup
    wrapper.ntservice.description=Starts and stops
    wrapper.ntservice.starttype=AUTO_START

  • In logic Pro, when I open up an audio track and load an audio file, there is no sound. I will finally get a sound out of one of the audio tracks after opening at least 5 of them alternately. Is anyone familiar with this kind of bug? It's really frustratin

    In logic Pro, when I open up an audio track or software track and load an audio file/loop or software file loop, there is no sound. I will finally get a sound out of one of the audio or software tracks after opening at least 5 of them alternately. Is anyone familiar with this kind of bug? It's really frustrating as this takes much time to complete work.
    os x, Mac OS X (10.6)

    I'm not sure I follow your words Fuzzynormal. You've helped by offering the insight that my issue in Logic Pro 9 is not a bug but a feature. But fell short of enlightenment by being a judge of character and of how one should interact in this forum. You insinuate that I haven't tried to solve the issue on my own when in fact I have. These forums are always my last resort. You further suggest that I am complaining. This is not a complaint. It is a genuine issue that I cannot figure out. Then you think that Brazeca is holding my hand and being a nice guy. Brazeca is helping people like me who might not be as adept at using Logic Pro as probably you are.This community forum was established to raise questions, answers and dicussion to help Apple's customers better undertand their operating systems and related issues. You are doing a disservice by not contributing positively and by trying to make this forum what you want it to be. You may have all the time in the world to try figuring out stuff but we are not all like you. We all have different schedules and different levels of understanding. And that is what this forum is for - to help people move forward. If you can't contribute positively then keep silent. And by the way, you say to "read the words that are printed down to explain to you how that works" what words are you talking about? Why don't you be of some help instead of trying to own this forum. 

  • Anyone familiar with Flash Presentations?

    Hi.
    I continue to have problems playing movieclips on certain
    slides of a Flash Presentation.
    If anyone has *reasonable* experience with Flash
    presentations please let me know. You might be familiar with the
    problem, or have suggestions.
    Thanks in advance,
    K

    chez Lou,
    > 1. Would I be better off just placing everything on the
    main
    > timeline, and saving the use of mc for animations that
    can play
    > continously (for instance animations that "accent" the
    content
    > of the slide, vs those used to put the content
    together)?
    Well, that would certainly be one approach, but then you
    lose out on the
    benefit of nested movie clips, not the least of which is
    avoidance of
    timeline sprawl. I played a bit more with the Slide API this
    morning. I
    can see what's going on. Under the hood, each slide is a
    movie clip, and
    they all exist at once, so if you have nested animation on
    any slide ...
    they all start playing even on slide 1, and might in fact
    have played
    through by the time you hit slide 5.
    > 2. Do you know of a way to have an animation stop on the
    last
    > frame, yet replay on slide re-entry?
    Here's what I came up with. Let's assume you have two
    buttons on the
    root presentation slide. By default, Flash gives you a root
    slide named
    "presentation" and a child slide named "slide1". In my
    experiment, I added
    a Next and Previous button to "presentation" and wired them
    up like this:
    btnNext.onRelease = function():Void {
    this._parent.currentSlide.gotoNextSlide();
    btnPrev.onRelease = function():Void {
    this._parent.currentSlide.gotoPreviousSlide();
    This uses the button event handling approach I prefer,
    personally, over
    on() and onClipEvent() -- I'm not sure which approach you're
    using. In this
    approach, the code codes into a keyframe, typically a
    dedicated scripts
    layer, rather than attached to the object itself. The buttons
    have the
    instance names btnNext and btnPrev. A function is assigned to
    the
    Button.onRelease event of each button instance, and the
    functions call
    either Slide.gotoNextSlide() or Slide.gotoPreviousSlide() as
    appropriate.
    In order to target the relevant Slide instance, I use the
    Slide.currentSlide
    property, which I reference via the expression this._parent.
    Let me explain that, real quick. In the above code, the word
    "this"
    refers to the corresponding button instance itself -- in
    btnNext's onRelease
    handler, "this" refers to btnNext. btnNext -- the button
    symbol -- is, by
    nature, an instance of the Button class. Consulting the
    Button class in the
    ActionScript 2.0 Language Reference, I see that all button
    instances have a
    Button._parent property, which points to the object that
    contains the
    button. Cool. Therefore, from a button's point of view,
    this._parent
    refers to the timeline that contains the button. Normally,
    such a reference
    points to a MovieClip instance (which is what timelines are;
    they're movie
    clips). That's the case here, too, but thanks to the way
    object-oriented
    programming works, and because we're inside a Slide
    presentation, the parent
    movie clip of this button is also an instance of the Slide
    class.
    Look up "Slide class" in the Components Language Reference,
    and you'll
    see the full pedigree. Any instance of Slide has the
    following family tree:
    MovieClip > UIObject > UIComponent > View >
    Loader > Screen > Slide. Slides
    *are* movie clips, but they're more than that. They're also
    UIObjects,
    which are objects that contain all the functionality of movie
    clips, and
    then some. They're also UIComponents, which addes even more
    functionality,
    and so on ... all the way through Slide. One of the
    properties of the Slide
    class is Slide.currentSlide. Bingo!
    So ... this._parent (in this context) refers to a Slide
    instance, which
    means this._parent.currentSlide refers to the currently
    showing slide, which
    is obviously also a Slide instance. For that reason, we can
    still invoke
    Slide class methods on the reference, which is why something
    like
    this._parent.currentSlide.gotoNextSlide() works.
    Forgive me, by the way, if you already understand all of
    this. Forum
    replies are searchable, and who knows ... in the future, the
    explanation has
    the potential to help someone else, too. :)
    Okay, so now the issue is, we want each current slide to run
    through any
    nested movie clips it may have, regardless of their instance
    names, and tell
    each movie clip to start again from frame 1 of its own
    timeline. Amend the
    above code to look like this:
    import mx.screens.Slide;
    btnNext.onRelease = function():Void {
    this._parent.currentSlide.gotoNextSlide();
    var slide:Slide = this._parent.currentSlide;
    for (var prop:String in slide) {
    if (typeof(slide[prop] == "movieclip")) {
    slide[prop].gotoAndPlay(1);
    btnPrev.onRelease = function():Void {
    this._parent.currentSlide.gotoPreviousSlide();
    var slide:Slide = this._parent.currentSlide;
    for (var prop:String in slide) {
    if (typeof(slide[prop] == "movieclip")) {
    slide[prop].gotoAndPlay(1);
    The import statement allows us to reference Slide as a
    datatype, which
    happens just below the line in each event handler that was
    already there.
    To save a few keystrokes (basically, to make the code easier
    to read), we're
    creating a temporary variable, slide, and setting it to the
    same
    this._parent.currentSlide expression we already used. Once
    gotoNextSlide()
    or gotoPreviousSlide() is called, the value of
    this._parent.currentSlide
    changes, because now a *new* slide is the current slide. It's
    the new slide
    we're interested in. Using the variable slide as a kind of
    shorthand, we
    use a for..in loop to run through all the properties of the
    current slide.
    If the datatype of a given propery is a movie clip, we tell
    it to go to
    frame 1 of its own timeline and start playing.
    What I've spelled out may or may not fit, exactly, with your
    current
    circumstance, but that's why I spent a bit of time explaining
    the mechanics
    of it. I hope that steers you in a useful direction. :)
    David Stiller
    Co-author, Foundation Flash CS3 for Designers
    http://tinyurl.com/2k29mj
    "Luck is the residue of good design."

  • HT201415 After a months of stable work my new IPad suddenly denies to find cell network under any circumstances.Please advice if anyone familiar with that problem?

    After a months of stable work my new IPad suddenly denies to find cell network under any circumstances.Please advice if anyone familiar with that problem?

    It sounds like there are a couple things going on here.  First check if you have a successful install of SQL Server, then we'll figure out the connection issues.
    Can you launch SQL Server Configuration Manager and check for SQL Server (MSSQLSERVER) if default instance or SQL Server (other name) if you've configured your instance as a named instance.  Once you find this, make sure the service is started. 
    If not started, try to start it and see if it throws an error.  If you get an error, post the error message your hitting.  If the service starts, you can then launch SSMS and try to connect.  If you have a default instance, you can use the machine
    name in the connection dialog.  Ex:  "COWBOYS" where Cowboys is the machine name.  However, if you named the SQL Server instance during install, you'll need to connect using the machine\instance format.  Ex:  COWBOYS\Romo (where Romo
    is the instance name you set during install).
    You can also look at the summary.txt file in the SQL Server setup error logs to see what happened on the most recent install.  Past install history is archived in the log folder if you need to dig those up to help troubleshoot, but the most
    recent one may help get to the bottom of it if there is an issue with setup detecting a prior instance that needs to be repaired.
    Thanks,
    Sam Lester (MSFT)
    http://blogs.msdn.com/b/samlester
    This posting is provided "AS IS" with no warranties, and confers no rights. Please remember to click
    "Mark as Answer" and
    "Vote as Helpful" on posts that help you. This can be beneficial to other community members reading the thread.

  • Anyone familiar with TotalCode for Premiere?

    Anyone familiar with TotalCode for Premiere?
    http://www.rovicorp.com/products/distribution/content-production-tools/totalcode-for-adobe -premiere-pro.htm#overview

    found no reviews on the net - no user experience - no articles in magazines nothing at all...
    GPU accelerated H.264 encoding sounds great if the quality is ok...
    reading and creating Digital Cinema Packages (DCP) direct from the timeline also is a huge timesaver...
    hmm - I'll try the demo if I find the time...
    nw42

  • Anyone familiar with forms and snippets

    anyone familiar with forms and snippets in IWEB?

    An easier way?
    Sir, anything beyond iWeb requires effort.
    Find a form creator, such as wufoo, and display the form in a html snippet with an <iframe>. In the end it's the same, whether you create the form from scratch yourself or use a service :
    http://wufoo.com/
    My webhoster provides a formcreator :
    http://one-docs.com/tools/formmailgen/
    The code is very basic, so one has to dress it up a bit. See if your provider offers a similar service.

  • Anyone familiar with thunderbolt bridge on a mac air?

    Greetings cyber community,
    anyone familiar with Thunder Bolt Bridge on the Mac Air...it seems to be set up on my computer, & I have no clue..
    Thx

    Hi sorry been off for a few days.
    Not a chance you are being hacked through that unless you have a cable attached to that port.
    Is your mac being hacked or your wifi connection?
    Check out the security and privacy system preferences.
    Is your Firewall up and running?
    Check you settings he may be getting in piggy back on an app you are allowing.
    Maybe you should consider using FileVault to encrypt your HD.
    Hope this helps.
    PJRS

  • How do I install a toolbar with the Croatian language

    How do I install a toolbar with the Croatian language.
    Thank you!

    Do you see the menu bar or anything else? As for the missing toolbar, this is the case for 90% of Firefox users, for instance the Google Toolbar. To restore it, you need to install Mozilla's Add-On Compatibility Reporter extension from https://addons.mozilla.org/en-US/firefox/addon/15003 and restart Firefox twice.
    As for the white screen, I am not sure what you mean, but your install looks corrupted, you probably need to uninstall Firefox and reinstall from scratch. You may spend too much time and effort otherwise. Back up your settings first if you have any, like Firefox bookmarks.

  • Can anyone help with the installation of adobe creative suite 4 on windows 7

    can anyone help with the installation of adobe creative suite 4 on windows 7

    You're not going to get any help without providing FULL DETAILS about the problem and your system.
    Bob

  • Please can anyone help with the continuing password rejection problem with email.Ipad and other systems work fine but despite reloading my password on imac it bounces back.Apple store has been visited and I have tried everything they suggest.

    Please can anyone help with the continuing password rejection problem with email on my imac.My Ipad and other systems work fine but despite reloading my password on imac it bounces back.Apple store has been visited and I have tried everything they suggest.

    I use free Yahoo mail webMail access because folders I created in webmail access doesn't get set up in Apple Mail. While I was searching for post about password and keychain issues, I stumbled on several threads that complain about Mail folder issues, so I'm holding off on Apple Mail.
    On the password and keychain issue that your post is all about.  I've been using login keychain to save and automatical fill my login screens for a year or so successfully, with Safari and Chrome. Automatic form fill also works for Facebook login. Unfortunately, about 4 to 6 months ago, automatic password form fill stopped working with Yahoo webmail, while still worked for GMail (Safari and Chrome). I tried deleting the password entry for my two Yahoo email accounts to start fresh, but neither Safari not Chrome will even ask me if I want to save the password. I was so frustrated that I eventually installed the keypassX 0.43 (password manager) that is quite primitive sompare to OS X's keychain (when it works). Probably no surprise to you yet.
    The surprise, to me at least, is that, for whatever reason, password auto form-fill from keychain started working again for Yahoo webmail login on Safari about 5-7 days ago. Still doesn't work on Chrome!
    Two tips I can share, at least with webmail access:
    1. Password is save only for one of my yahoo mail accounts. When I login in with my other yahoo account, I get no prompt to save the password, and form fill doesn't work when I try to log in a second time with my other Yahoo mail account.
    2. On inspection of my login keychain, I see a webform password item saved for my Yahoo account that works with keychain. The name of the password is: login.yahoo.com(MyAccountName1#). When I open the password item and look in the Access Control tab, I see Safari and Chome are listed as allowed to access this password item..
         I also an "Internet password" item with a name of just login.yahoo.com. When I open the the password item, it looks just like the password item created for MyAccountName#1, but the MyAccountName#2 is listed in the Account field. Inside the Access Control tab, no apps are listed in access permission. I added Safari and Chrome to the lists of allowed app, saved the password item.
    Now when I bring up the Yahoo login page(by bookmark) on Safari, form fill fills in MyAccountname#1 for name and the proper password and I can login in. When I change the name to MyAccountName#2, the correct password is retrieved and I can log in! Alas, it still doesn't work on Chrome.
    BTW, I changed the password item type from "Internet password" to "Web Form password" and saw no difference! I also edited the name to be "login.yahoo.com (MyAccountName#2)" to look like the web form password item that works, but it has no effect either.
    From my experimentation, here's my observation:
    1. A Web Form password item is created for the first account name(MyAccountName#1) for login.yahoo.com and typed as Web Form password. When I log in using MyAccountName#2, an Internet Password is created, but no applications are listed as allowed to access the password item, even when the password item was created after just logged in and logged out to yahoo with the account name and password for MyAccountName#2.
    2. Manually adding Safari as an app that is allowed to use the password item works. Doesn't work with Chrome!
    The version of Safari I'm using is Version 5.1.7 (6534.57.2). My installed version of Chrome is Version 21.0.1180.79 beta.

  • When will the Siri with the Russian language?

    when will the Siri with the Russian language?

    All Apple's web states is that in 2012 Siri will support additional languages, including Japanese, Chinese, Korean, Italian, and Spanish. It makes no mention of Russian and therefore we cannot speculate as to when Russian will be included. 

Maybe you are looking for