W520 SSD Success Story

I have just received my new W520, spec'ed up with all the fruit to replace a Dell Precision workstation. The main bits of the W520 spec:
W520 I7 2920
1920x1080 with colour sensor
16gb RAM
500gb Hard drive
DVD optical drive
Quadro 2000M graphics
etc
I decided I would swap out the HD for a OCZ Vertex 3 250gb.
I must admit I was a bit worried reading all the posts about how hard it could be, but it was easy.
Here's what I did...
First create create some back up discs. I used Control Panel then Lenovo - Factory Recovery Disks onto DVD.
That created a Boot Disk and 3 x Recovery discs.
I then switched off the W520, took out the battery and removed the hard drive. The OCZ fits in the bay perfectly, all you have to do is fit the rubber bumpers. The drive fits in the slot and is kept in place by the cover plate on the W520, it has a bar that keeps the drive in place, no screws needed..
NB with no changes to BIOS, I the switched on the the W520 with the Boot CD. The system then fired up, asked for the Recovery discs and Hey Presto.
The system now boots in 20 secs and reports the following Windows Experience Index:
Processor 7.6
Memory 7.6
Graphics (set to discrete) 6.9
Gaming Graphics 6.9
Hard disc 7.9
I then tweeked the system power setting to stop defrag, turn off hard disc etc. and am I happy or what??
No problems here.
Cheers

PS
When I installed the recovery discs, the SSD and system were set up exactly as the laptop was when I received it from Lenovo. The Lenovo recovery partition was there, all the drivers were installed etc etc. The W520 was basically the same as it was when I received it except it now has a turbo boosted hard drive.
The difference is stunning and worth every single cent of the $500 that the SSD cost.
Cheers

Similar Messages

  • SDN is a best-practice example in a Novell success story

    Regular SDNers might be interested to see SDN used as a "success story" by Novell for their eDirectory product.  Novell produced both a pdf and has the success story easily accessible on the Novell website at http://www.novell.com/success/sap.html  It's nice to see SDN used as an example of a "best practice" ... as regular SDN members know it is, in so many ways.

    Look into using NWDI as your source code control (DTR) and transport/migration from dev through to production.  This also will handle the deployment to your dev system (check-in/activate).
    For unit testing and debugging you should be running a local version (NWDW).  This way once the code is ready to be shared with the team, you check it in (makes it visible to other team members) and activate it (deploys it to development server).
    We are currently using a separate server for WD applications rather than running them on the portal server.  However, this does not allow for the WD app to run in the new WD iView.  So it depends on what the WD app needs to do an have access to.  Of course there is always the Federated Portal Network as an option, but that is a whole other topic.
    For JCo connections, WD uses a connection name and this connection can be set up to point to different locations depending on which server it is on.  So on the development server the JCo connection can point to the dev back-end and in prod point to the prod back-end.  The JCo connections are not migrated, but setup in each system.
    I hope this helps.  There is a lot of documentation available for NWDI to get you started.  See:  http://help.sap.com/saphelp_erp2005/helpdata/en/01/9c4940d1ba6913e10000000a1550b0/frameset.htm
    -Cindy

  • An Oracle Forms Success story

    Hi:
    I believe that in the forum we tend to post "I need help. Please help" "Oracle has issues!", etc, kind of topics. I am going to try to change that and will start posting now and then my "Oracle Forms" success stories that will hopefully help us all in sharing when we do something right and not just sharing when we need assistance. By the way, I do realise that there are plenty of great people in this forum already sharing their positive findings, I just would like all of us to start doing it on a regular basis.
    Having said that, here is my first success story:
    On Friday, I was having a conversation with one of our users and setting her up with our Web based application. Since we are moving her from a character based application, I was emphasizing to her how in the new GUI/Web based application it was important and benefitial to start using the mouse. To this she said "You know Thomas, we use Salesforce and recently we noticed that they have enabled the ability to click on any field and make it editable. Also, she said, you know how in our application we very often find ourselves going to a field and then pressing Ctrl-Y to bring up the full contents of the text. I just think that it would be really great if our new Mouse-enabled application would allows us to simply double click a filed and bring up the full text. Is this now possible? she asked. I paused and ran the request quickly in my head, since I made sure that certain things happened when we converted our Forms from character to Web platforms (i.e. I made sure that we referenced Object Groups to all of our forms), I was able to quickly (within a minute after she finished her question) answer to her that it was possible to accomplish what she described relatively trivially, but that it was still not enabled. Confident in my understanding of the whole app and in the hooks that I had installed during our upgrade, I promissed her that I would have a definite estimate and full answer by Monday.
    I went home Friday and went to a school Carnival with my two beautiful children and awesomely beautiful wife (I have been told by co-workers that she looks a lot like Gina Lollobrigida) so I forgot about the request for the rest of the evening. Saturday morning I woke up and the first tought in my head was: I got it! I turned on my computer, coded and tested the solution against a couple of forms in five minutes and convinced my self I was right with my first tought. I then compiled the rest of the forms (around three hundred) and tested a few selective ones and verified that indeed I had solved the problem. I am now ready not only to tell her how easy it but to have her experience it in our development environment first thing on Monday, hopefully giving her a sense for how great our new platform is.
    The End
    Here is my code:
      IF NOT SUBSTR(RTRIM(RTRIM(GET_ITEM_PROPERTY(NAME_IN('SYSTEM.TRIGGER_ITEM'), PROMPT_TEXT)), ':'), -1) IN ('*', '+') THEN
        DO_KEY('EDIT_TEXTITEM');
      ELSIF :SYSTEM.MOUSE_ITEM IS NOT NULL THEN
        DO_KEY('LIST_VALUES');
      END IF;How did I deliver to all 300+ forms:
    We have a form (called base.fmb) that contains all of our common forms objects and an OLB called common_obj.olb.
    All of our forms have an object group called BASE_TRIGGERS referenced in.
    1) I created a WHEN-MOUSE-DOUBLE-CLICK trigger with PL/SQL above.
    2) I added WHEN-MOUSE-DOUBLE-CLICK to BASE_TRIGGERS objec group.
    3) I copied BASE_TRIGGERS from base.fmb to common_obj.olb to upgrade object group.
    4) I installed common_obj.olb to our UNIX deployment box.
    5) I compiled a few of the modules and tested in the app.
    6) I ran a full recompile.
    Why does it work:
    1) The code above written PSEUDOLLY means:
      IF the prompt associated with the field does not end in * or + THEN
        SHOW THE EDITOR
      ELSE
         Execute KEY-LISTVAL
      END IF2) Somebody very smart in our company introduced this neat notation to place a plus sign (+) at the end of the prompt for every field tha has a list of values. Also, that person had an asterisk (*) placed at the end of field prompts that provided drilled down (calling another form o show detail) to another form.
    3) Oracle, in a great white paper made me aware of the fact that when converting from character to Web all field prompts needed to be converted from Text to the Prompt property and furthermore, in their great wisdom, to make it easy they actually put a button right on the designer to make it trivial to accomplish.
    Hope this is a good start,
    Thomas
    P.S. If I left anything out or you have any questions, please feel free to ask.
    Message was edited by:
    Thomas Morgan
    Message was edited by:
    Thomas Morgan

    Great idea to post success stories. Kudos for giving step-by-step instructions.
    Was the notation using plus or asterisk to signal the user if there's an LOV or drill-down available in place in your character based app or was it implemented during the GUI conversion? This is probably a matter of UI opinion, but does the notation clutter the screen a bit ad did you try other visual prompts? I like the notation because you don't have to click in or tab to the field to see if a LOV is available. That's a big benefit that probably outweighs the issue of screen clutter.

  • Technical Details And Success Story of Adobe LiveCycle Document Security

    First of all I am sorry if my subject is not related to the previous topics.
    I am a master student of Media Informatics in RWTH Aachen University. Now I am taking a seminar course of Digital Management Rights, and I have a topic: Adobe LiveCycle Document Security to be presented next week.
    I do not have details information on how it works/technical aspect about it that I really need to well prepare of my presentation. I have read all the document in adobe website but unfortunately I could not find much more details explanation.
    I also need user stories when they use Adobe LiveCycle Document Security. I read also the success story from adobe web site but it has no success story of customer who use the specific product of Adobe LiveCycle Document Security.
    Thank you for your help.

    There is a good case study on Penn State that would probably make a good addition to your presentation:
    http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productid=101104&loc=en_us

  • Success story with Compaq CQ40 laptop (full A/V support)?

    Hi all!
    Anyone got success story with the HP/compaq CQ40 (-304AX) laptop or the individual components?
    Here is the spec of my laptop:
    - CPU: AMD Athlon X2 QL-64 2100MHz (dual-core)
    - RAM: 3GB (DDR2-800)
    - Video: ATI Mobility Radeon HD 3470 / 256MB RAM
    - Audio: IDT 92HD71B7 @ ATI SB700
    - HD: SATA-2 / SAMSUNG HM500JI / 500GB
    - CD: TSSTcorp CDDVDW TS-L633A SATA DVD-RW
    And the followings are what I need:
    1.External HDMI output
    2.Full 3D acceleration i.e. same performance as on windows (I know nvidia cards can.....)
    3.GPU-accelerated h.x264/blu-ray playing (utilizing ATI UVD)
    4.Sound output
    5.DVD writing
    6.Running skype, oracle 10gand wine/games
    I tried arch x64 two weeks ago, and got frustrated with various weird problems (not all are hw-related)
    Here are my own experiences last week:
    (1,2,3) Video driver problems: (UNRESOLVED)
    * ati-radeon fails on HDMI - after x ends, it would return to console with main monitor off (though I can still type blindly to enter x again)
    * catalyst driver 10.2 with xorg 10.4 can't close laptop screen
    * ati-radeonhd works with HDMI output but no 3d accel and 2d accel appears very slow (for switching chrome tabs - which should be instant)
    (4) Audio driver problems: (RESOLVED FINALLY)
    * ALSA: volume too small, no hardware mixing.... i hate dmix
    * OSS: works perfect after changing the output channels(?) and re-attach vmix
    (5) DVD writing: untested.... anyone got it working?
    (6) no official skype for 64-bit , oracle 10g x64 not installing (missing 32-bit libs), wine: direct3d failed immediately with catalyst driver (but native 3d games did work)
    BTW should I just install 32-bit arch? Is there improvement I can get by installing 64-bit version?
    Last edited by aqd (2010-03-20 15:01:52)

    I have a Compaq Presario CQ60-211DX, exact look as yours, but completely different under the hood. (32-bit, 2GB ram, intel graphics, everything works well).
    Anyway, answering your question about Arch 32 bit vs Arch 64 bit, you should use Arch64 if you plan to use more than 3GB of ram.
    This wiki article may help:
    http://wiki.archlinux.org/index.php/Arch64_FAQ

  • W510 SSD - My Story

    Here's my story:  I've had my W510 for 4 years without problems of any kind.  However, recently bootup times started to be around 4 minutes.  So I decided to get an SSD and put that in to see if performance increased.  I bought a couple of 240 GB HP v300a drives on sale.  They are SATA III drives, with Sandforce 2281 controllers.  I made a disk image using Acronis, then printed that on the SSD and installed it.  It booted up fine, in a fraction of the time, and all was good for several weeks.  Then a very interesting problem popped up.  The only game I play on the W510 is World of Warcraft.  From time to time, the game would completely freeze.  The whole system would lock up, and I would have to press the power button and do a manual cold boot.  The freezing problem was intermittent, and seemed to happen at times when the game was particularly graphics intensive.  Sometimes it would go away for days, only to come back.  Weirdness!  I thought it was the fault of WoW--but when the system froze using Creative Suite 5.5, I put the original HDD back in.  Now I'm back to where I was.  No freezing.  Everything works fine, if sluggish and boot times are 4 minutes.  
    I want to install an SSD in this machine.  I know I can get 4 more years of life out of it if I do.  Perhaps the HP drive isn't as compatible with the W510 as some other brand.  I welcome recommendations.  If I neglected to do something in BIOS, perhaps someone could counsel me.   The HP SSD itself may be defective--I have not tried it in another system.  However, the identical disk went into my Dell laptop and there have been absolutely no problems, and that was a far older system than my W510.  The HP disks were really a stab in the dark.  If someone can direct me to a disk that will work with a disk image (I don't own a full version of Windows 7, just upgrades)--but I do have the Lenovo recovery disks.  Thanks in advance for any counsel you may offer.
    Best regards, Mike
    OS Name Microsoft Windows 7 Professional
    Version 6.1.7601 Service Pack 1 Build 7601
    OS Manufacturer Microsoft Corporation
    System Name MICHAEL-THINK
    System Manufacturer LENOVO
    System Model 4318CTO
    System Type x64-based PC
    Processor Intel(R) Core(TM) i7 CPU Q 720 @ 1.60GHz, 1600 Mhz, 4 Core(s), 8 Logical Processor(s)
    BIOS Version/Date LENOVO 6NET84WW (1.45 ), 10/3/2012
    SMBIOS Version 2.6
    Windows Directory C:\Windows
    System Directory C:\Windows\system32
    Boot Device \Device\HarddiskVolume1
    Locale United States
    Hardware Abstraction Layer Version = "6.1.7601.17514"
    User Name Michael-THINK\Michael
    Time Zone Pacific Daylight Time
    Installed Physical Memory (RAM) 8.00 GB
    Total Physical Memory 7.93 GB
    Available Physical Memory 4.16 GB
    Total Virtual Memory 15.9 GB
    Available Virtual Memory 11.9 GB
    Page File Space 7.93 GB
    Page File C:\pagefile.sys
    Solved!
    Go to Solution.

    Hi,
    @Hackermc:
    As far as I can see the only model that is supported on http://www.crucial.com/store/listparts.aspx?model=​ThinkPad%20W510%20Series is the M500 (not M4!) with 240GB, not 480 GB?!
    Crucial M500 240GB 2.5-inch Internal SSD
    Or is this incorrect?
    I will looking forward of your results with the 480 GB version of the M500.
    @ George
    You said the M4 512 is running well with the W510.
    Which Chipset does your W510 have: Intel 6 or 7 series. And which CPU?
    I think, this will make a big difference.
    My dealer is able to get the M4/512 GB, which is more than sufficient for the W510 Sata II.
    I got around 260 MB/s with the Samsung SSD on the W510 (when it had a 5 minutes of good time).
    This ist the maximum write speed for dem M4, so it fits perfectly.
    Greets
    Axel

  • Win 7 start menu freezes after reboot (W520 + SSD)

    I have day old W520, and the first thing I did was to put an Intel SSD (520) as the internal and mounted the pre-installed 500GB disk in the optical drive bay.
    I then did a clean install of Windows 7 Ultimate 64bit, reinstalled drivers, all Windows updates etc.
    Generally the system runs fine, but I have this very odd thing. After booting the system, the first time I click on the start menu button ie bottom left Windows icon, I get the spinning wheel and explorer hangs for around a minute. Once it comes back to life, everything is fine again, at least until I next reboot.
    Most mysterious. I've tried all the obvious things like SSD firmware. It doesn't seem tied to startup speed ie if I let the system idle for ages before clicking on the start menu it still happens.
    If I hit ctrl-alt-del and look in the tak manager nothing is sucking cpu. The event viewer shows nothing (except and explorer crash if I chose to kill it).
    Has anyone ever seen something like this?
    Cheers
    Nick

    When I first saw this I just installed Win 7, and started installing the drivers from the backup directory for network so I could run System Update. On launching System Update I saw everything freeze for a minute, and then it got going again.
    Now I have VS2008, VS2010 and Photoshop and Illustrator as I need to start getting some work done, but the problem persists. I've been running Process Monitor, looking at services which are starting late, but am not seeing anything obviously wrong.
    It's worth saying it doesn't appear to be just a start menu thing - it is anything to do with the bottom bar, and probably explorer as a whole.
    Nick

  • Success story: NVIDIA 8600M GT graphics card defect repaired at no cost

    This is the story of Apple servicing my MacBook Pro with the NVIDIA graphics card defect.
    I had the NVIDIA 8600M GT graphics card defect in my 2 year old MacBook Pro. The symptoms were pinkish images, scrambled and chopped images, and finally leading to no video, all within a matter of 3 days. I called AppleCare using the old number I remembered from my 100mhz Mac days: 1-800-SOS-APPLE. I was greeted by a real person within 3 minutes. She explained that my 90-day complimentary phone service had expired some 600 days ago.
    After I mentioned the specific Apple Knowledge base article that described the defect (TS2377), and that it was covered up to three years out of warranty, she transferred me to a MacBook Pro specialist. Sheri ran me through several standard resets and reboots. She then suggested that it be taken into an Apple store for a genius to look at. When I explained that the nearest Apple Store was an hour away, she arranged for a mail-in service.
    After the call had ended, I received a simple email with her phone number so that I could contact her if I needed to. Another automated email contained my repair case number and a link to check the status online. The online status center is very easy to use. It displayed three steps: Sending the empty box, service in progress and return. FedEx tracking numbers were included with working links.
    The next day an empty box arrived, completely with graphical IKEA like packaging instructions and form fitting foam for my MacBook Pro. I knew when the FedEx truck came around, so I had my computer ready by my side. As soon as FedEx showed up, I explained that the empty box was for the computer and Marcos helped me apply the pre-paid return label and taped the box expertly with tape from his truck. I also placed in the box a copy of the Apple Knoweldge base article and pictures I had taken of the issue.
    Apple had included a small stack of super adhesive pre-cut tape square, but Macros was already taping it before I figured out what they were. The return label was also pre-paid with overnight service.
    The next day I logged into the online support status at Apple.com and checked my status. The tracking number showed it had arrived in Houston, and the three steps had been updated to "Repairs completed" and "Return in progress."
    The return FedEx tracking number was displayed later in the evening, and it showed that it was guaranteed to arrive by 10:30AM the next day. Speedy service! Sure enough, the next day I had my computer back in my hands, all data perfect and intact. I was very worried since I was not able to make a back up before sending it in, and Apple does not guarantee data safety. Apple had replaced the logic board, valued at $700 on iFixit (http://www.ifixit.com/MacBook-Parts/MacBook-Pro-15-Inch-Core-2-Duo-2-2-GHz-Logic -Board/IF185-073).
    The funny thing is, for the past 5 years, I have always cloned my drive or used time machine, but for the past two months I had cleared the backups to make up extra room on my externals. You really never know when disaster will strike!
    Learned:
    - Apple Customer Care is top notch, speedy and their status site is very easy to use
    - FedEx service was very helpful
    - If you have a NVIDIA graphics card, Mac or PC, check if your model is affected. Just today Sony announced that NVIDIA cards with defects will now be covered for 4 years out of warranty. (http://news.cnet.com/8301-13924_3-10307592-64.html)
    - Back up your stuff NOW. Use a flash drive or email files to yourself for a cheap fix.
    Roland

    ha
    got the same problem with my mbp (dec 2007)
    also no video within 5 hours .... also no external video.
    lucky i had screen sharing on so i could check the system profiler via an other mac.
    It couldn't find the 6800M GT anymore...
    did another backup and went to the local apple store
    took a print out of Apple Knowledge base article that described the defect (TS2377)
    and they replaced the logicboard+gpu for free within 10 days ...
    everything is ok now except for my maxmsp copy which thinks it runs on an other machine and complains about a missing licence ....

  • Happy Mac Day To Me  A Success Story.

    Happy Mac Day To Me!!!
    Its been 4 years since I brought home my G3 Graphite iMac. How time flys. I remember needing a computer. I had lost my job, my wife started working from home, and I was attending college part time. This meant the Gateway was now hers for the purpose of work. I was thinking about another Gateway, maybe a Dell. I also remembered that Comp USA had this neat little section for Apple. This section stood out from the rows of generic pc’s. This section was in a word cool.
    It was different. From the carpeted floor, to Nanosaur on the iMacs to the aura that one would feel a sense of quality. The look and feel of these computers was well, superior. “Just looking” I would say to the helpful sales people. These machines are gorgeous, but a little tough on the budget. But I liked the seamless appearance and interface of the Mac. Even if they were an all in one. The pcs were just clones of each other, take off the manufactures label and you couldn’t tell one from the other. Pcs had no where near the software or extras like on the Macs.
    Then it happened Mac World 2002. The incredible g4 iMac was released to an unsuspecting world. I pounced...on the g3. It was seriously marked down. All that power, speed and all those applications. I just couldn’t resist.
    On January 12th 2002 I brought home my graphite 40 gb, 256 mb 600 mhz iMac. And immediately panicked!!! What was I thinking? I didn’t know Apple! Certainly I didn’t know this OS X stuff! No applications from Windows would work with this this THING! Right? I had seven days to see if I liked this Apple iMac, if not it goes back in the box and I get a nice safe Windows PC running 2000 or better yet XP. Day 1, 2, 3 went by. The box only feet away. Back to Apple store I thought. Back to the Apple store. I’ll just pick it up and put it in the box. Truth be told it almost happened. Divine intervention I speculate.
    Some where around day four, my wife, she’s pretty smart, told me 2 magic words. Learning Curve. The box slowly got pushed aside. My iMac started to become...cool again, I didn’t know it could do that, Wow that was easy! This iTunes is awesome (V. 2), This is really cool!!! Words of praise started to come from my work area in the recently refinished basement. The box disappeared. It got donated to give an old Tangerine iMac that was loaned to me safe passage to a school in need of good working computers. Day 7 came and went. I think I was playing with iTunes, Quicken 2002, Nanosaur, and of course I was online, at the same time! My new trusty friend, my iMac was here to stay!!! The fun had just begun.
    I started to learn and LOVE OS X. I switched back and forth between OS 9 and OS X. I found that I liked the stability of OS X that much more. I do like OS 9. I started to learn then love the applications. Most of my associates degree assignments were done on my iMac. Thank God for spell check!!! My job search changed from knocking on doors and reading the paper to e-mailing resumes and internet searches. Macintosh became an integral part of my life. Even Charlie, my tabby cat is learning OS X. He has the file renaming down to a science. Chelsea, the kitten loves HP printers. Cats! Must be the whole feline theme.
    I look back on these past four years as a wonderful period of my life. My iMac was and is a big part of that. My Mac and my Jeep pick up with plow stand out as the two best purchases I have ever made. It snows a lot in Ma. Since I bought my iMac an iBook found a home here last Christmas. For a birthday present an iPod Photo resides here. My darling wife who after 15 plus years of crashes, viruses, as well as hang ups, and blue death screens from Windows 3.1 to 2000, switched. November 1, 2005 her Mac Mini arrived. Two days later she, (had to go to work due to job change) was saying “What took me so long, this is great” and “I love my Mac!!!” Told you she’s smart. She’s spreading the word. The Gateway has since been put out to pasture. That, by the way arrived on a Halloween. What does that tell you. Scary!
    Now, just after Mac World 2006 the future looks bright. Strong leadership, bold innovation, and a sense of optimism and excitement. So if their is anyone on the fence here is a little advice from a former procrastinator. The question isn’t whether to buy a Mac or not, but which Mac to buy. Go to an Apple store,Comp USA, or other authorized reseller. Talk to them, tell them your wants and needs. No pressure, just a pleasant experience to say the least. Buy what suits YOU. You will not go wrong. You will be very, very happy that a Mac calls your place home.
    Originally posted in the iMac g3 section but i wanted to share with potential switchers.
    Thank you all at Apple and the discussion boards too!
    God Bless,
    Lee Janerico

    Lee:
    What a beautiful story! And how well you tell it!
    In a sense your story is every mac user's story, only the names and details are different. We love our macs, even when they challenge us.
    Thank you for reminding us of the satisfaction and thrill of owning a mac.
    Good luck.
    cornelius
    Pismo400, 100 GB 5400 Toshiba internal, 1 GB RAM; Pismo 500 OS 10.4.3   Mac OS X (10.3.9)   Beige G3 OS 8.6

  • A Flex time success story

    I posted this in the Logic Express section but it's also related to Logic Pro so I wanted to make sure users of Logic Pro who may not check out the LE section hear about this success.
    I’ve run into some surprisingly great Flex results recently. I’m not a professional recording engineer, I’m a gigging multi-instrumentalist musician and home song writer. Over the past decade I’ve been recording on a Korg hard drive 16 track recorder. (Great home equipment for it’s time and expense) Unfortunately I no longer have the unit and the only recordings I have of those songs are mixes of the 16 tracks mastered to stereo. I play mostly Prog-rock and because some of the parts I played on some instruments were a stretch for my abilities some of the timing of some of the parts were not as tight as I would have liked them to be. Still I transferred all my songs to my iMac and Logic Express 9. (BTW Logic Express IS a serious recording program on par with Logic Pro in the majority of it’s functions, it‘s NOT just a better version of Garage Band.) My goal was saving these tunes and also to see if I could help the mix out a bit. I couldn’t totally re-mix because the tracks are mixed stereo and can‘t be separated but I thought I could tweak and compress. ANYWAY … a few songs had parts that were not perfect in regard to timing so I decided for yucks to try FLEX on these stereo tracks. Mind you I’m talking about ONE stereo track that’s a total mix down of 16 tracks from a prior hard drive recorder. I had the track analyzed and quantized It using polyphonic at 1/96 and I’m totally shocked at the results!!! I didn’t think the program would be able to help timing on lets say a guitar part without destroying a drum pattern played in the background or making something sound strange but it did it!!! I actually have a tune played in 15/16th with a LOT of odd timing interplay and Flex fixed all my little guitar timing imperfections without making the underlying instruments sound out. I don’t know how the program did that considering were talking one single stereo track with 16 tracks of instruments all recorded on the track but it worked wonderfully. HECK … I haven’t been happy using Flex and quantize on a simply kick drum part but the function worked wonders on a track that I thought was unfixable.
    Anyway much of what people write are in regard to problems they are having. I thought I would share my GOOD NEWS with you for a change!

    I also has this problem but it didn't happen when undoing a Flex Time edit and it only happens occasionally. I reported this a bug to Apple with the crash report. But the bug you have witnessed might be slightly different than the one I witnessed. Try reporting this bug to Apple via http://bugreport.apple.com/ and attach the crash report with it. The Crash Report is located at Library > Logs > CrashReporter. It will start with GarageBand and then the date. Choose the latest one. Attach it in the report (in the Configuration Information section). You should also include a System Profiler Report:
    To obtain a full System Profiler Report, select "About This Mac" from the Apple Menu and click the "More Info" button. This automatically launches the System Profiler application. Once the System Profiler application has been launched please follow the steps below:
    1. Select "View > Full Profile" from the File menu (cmd-3)
    2. Select "Save" from the File menu (cmd-s)
    3. Keep the format as 'System Profile'
    4. Click the "Save" button
    A System Profiler Report can also be obtained via Terminal using the following command:
    /usr/sbin/system_profiler -detailLevel full -xml >mymachine.spx
    This command will create a full System Profiler Report, named "mymachine.spx", which will open in System Profiler on another machine.
    Please attach the file to your bug report (under Additional Enclosures section). Depending on how your ranked the report, Apple should see it within the next few days. Also note that even though Apple doesn't reply to your report doesn't mean they didn't see it. Apple's Developer section is always busy with bugs that they don't have time to reply to every single report!
    Bo

  • IPhone survived serious water damage. A success story!

    I just wanted to let people know about the survival of my partners' iPhone 5 when faced with a 40 minute cycle in the washing machine at 30degrees.
    We realised that the phone had been accidentally packed into a full load after about 40 minutes. We managed to cancel the wash and drag all the soaking wet clothes out.
    Found the phone and immediately tried turning it back on (something I later read was probably a bad idea - but you don't read this kind of thing until its to late!) the screen remained black with no apparent life whatsoever.
    After looking on the Internet for cures it seemed the most popular thing to do would be to seal the phone in a air tight container full of uncooked rice. We did this and left it on top of the boiler in the boiler cupboard where it would be warm. We were warned against taking a hair dryer to it.
    In the meantime we contacted Apple to see how much repair would cost (we had no AppleCare) and we quoted something like £300.
    After a full 4 days we took the phone and tried turning it on. Still nothing. I'd read somewhere that the phone shouldn't be plugged in to a charger but thought it would be worth a shot. After a couple of seconds the 'empty battery' 'please plug me in' symbol flashed up...there was life.
    10 minutes later we checked the phone and yes, it was charging and yes it turned on! The phone received a load of backed up messages, connected to the Internet and most apps were working fine. Not all was working, the camera shutter wouldn't open and the screen looked very wet or damaged.
    Hanging onto this miracle we decided to unplug the phone to avoid any issues and put it back into hibernation in its box of rice. After 2 more days the camera and all other apps were working perfectly. There was still an issue with the display. It looked better but still not 100%. We called a cowboy phone repair company to ask whether they could do anything with it, they believed there might be a corroded connection in the display and suggested speaking to Apple. Apple would fix it for £150. After further diliberation we decided to give it some more time to dry out.
    Over 10 days we returned to the phone to find an almost perfect screen. Unless you tilt it to an angle there would be no sign of water damage. Success! Lets just hope it holds out in the long run.
    I wanted to give anyone who has taken water damage to their iPhone some hope that with some patience you can save yourself a lot of money by just putting your wet phone in a box of rice in a warm place and leaving it for 2+ weeks. Even after a thrashing around a washing machine.

    Hi WildTort! I would like to know if your phone continued to work? Did the camera ever start working?
    I did the exact same thing: sent my iPhone 5 through a full wash cycle, set it into rice for almost 2 weeks, it's now working (everything except for the camera) although there are a few 'issues' with dropped calls and other blips.
    Do you think I should let it sit for  a longer time without being turned on, or should i take the whole thing apart and try to clean it of corrosion in alcohol?
    (I have only a month to go before my contract expires)
    thanks for your help!

  • Insearch of a BC4J Success Story

    I have a question about BC4J. Are there any success stories of projects developed using BC4J? If there are some then may i know the companies, project domain, complexity, size, duration of such projects? (Only concerned in projects which are successfully deployed and are mission-critical with support for more than 1000 concurrent users)
    I am currently exploring BC4J for a new project. Your help will be highly regarded.
    Thanks
    Shoaib

    I have to swipe  from left to right on the recents bar...does that seem correct?
    The more I work with AP, the more I like it. I picked up an ATV2 just because of AP

  • IDVD 6 Success Story

    I've only tried two rather simple projects but both were successful. I created an imovie project (unlike imovie 5 imovie 6 recognized my Canon ZR 60 camera, it took to updates in imovie 5 to fix that). Noted that under the chapter tab in imovie there is no send to iDVD.
    In opening iDVD i dragged the imovie project file onto a new theme. I got two error notices that iDVD said needed to be fixed before it would burn to a DVD. One of them was because I didn't fill in all the thumbnails. There is an triangle that will give you a cluse as to what's wrong. After that I did a save and then did a save as disc image. That process was the same as idvd 5 EXCEPT that encoding audio now has its own progress bar just like video. Only the progress goes much faster.
    So the error notices are a big help, will undoubtley cut down on the frustration level as well as the audio progress bar.
    I played a bit with various settings but didn't try them yet.
    Gets five stars in my book.
    Bob

    Okay, I must add an important caveat to my claim about a progress bar for audio.
    There is one, but just be aware that it takes several minutes or many many minutes after the progress bar for video is done before the progress bar for audio appears. During the interim, the action is the same as iDVD5/4. The burn whell stops and the progresss bar for video stops.
    Haven't the slightest idea why there is such a long pause.
    Bob

  • Newbie's AEBS success story

    Hi all
    Just wanted to share that I have successfully setup AEBS with Western Digital MyBook USB disk + HP PSC 2210 printer, for anyone with a similar setup. I can connect from my Vista laptop to both the usb shared disk and print to the printer.
    For the printer setup I used Bonjour for Windows, but it initially didn't work. I setup Raw print mode. Event Viewer showed an "access is denied" message. From editing the properties of the printer that was setup by Bonjour (went into Ports and chose Configure Port for the IP port setup by Bonjour) and changed Printer Name or IP Address to the IP address of AEBS, and made sure port number was 9100. Then the printing worked fine via AEBS.
    The MyBook configuration was almost automatic, the only unexpected gotcha was that AEBS created a new toplevel "Shared" folder, and shared that out.
    Anyway hope that helps confirm compatibility of these pieces of hardware
    Airport Extreme base station Windows Vista
      Windows Vista  

    LOL 50.00  I see that not sitting right  Congrats on the nice increase! 

  • Adding an eSATA External Drive Success Story

    Aim: Add an eSATA external drive to a QIP 7232 2.
    Note: Links are to products on Amazon, but other vendors sell the same equipment.
    1. Purchase a Western Digital AV-GP 2 TB AV Hard Drive, 3.5 Inch, SATA II, 64 MB Cache - WD20EURS, $109. Two terabytes, and designed for stressful AV applications.
    2. Purchase a Vantec NexStar 3 NST-360SU-BK External Hard Drive Enclosure, $32. This device comes with an eSATA cable but I used instead an 18" cable I bought on Amazon for $5 (no dust-collecting coils of eSATA cable stuffed behind the DVR!). Eighteen inches is ample.
    3. Insert drive into enclosure. If you don't want a very bright flashing blue light disturbing your television viewing, do not connect the LED power wire to the front panel of the external drive.
    4. Aftermakingsuretheexternaldriveisturnedoff, pluginitspowersupplyand connect the drive to the DVR with the eSATAcable.
    5. Turn on the external drive.
    That's all it took. I can't remember whether the DVR immediately recognized the drive or whether I had to go to Settings/DVR to kick off this process, but whatever happened, it was simple and quick. There was no lengthy disk formatting process -- less than a minute after I turned on the drive it was ready to accept recordings. 
    I was astonished at the simplicity of the whole process and gratified to find that my existing recordings were untouched. I can't imagine any way in which Verizon could have made this process easier or quicker.

    Thanks for the helpful info! I see WD makes a 3TB AV hard drive. Do you think this would work with the Motorola QIP 72322 DVR?

Maybe you are looking for

  • Previewing Templates in Browser

    I'm new to Dreamweaver, working through a book by Heathcote. I can preview normal pages in the IE4 browser no problem but not templates although the book tells me this is possible. I'm using Dreamweaver MX2004.

  • Can I stream a live camera to Apple tv?

    Is it possible to stream a live video camera to Apple TV?  I want to be able to easily send a feed from a video camera when I videotape a musical to a remote room with a TV where the actors and director will be.  There will be wireless network and I

  • How to send a # from Voip to PSTN??

    I'm using a 3102 PSTN port with a 3CX VoIP PBX. On an outgoing call (PBX out to PSTN) I'm trying to send "72#" and "73#" to activate and deactivate my PSTN feature Call Forwarding Fixed.  The 72#/73# is sent by the PBX NOT dialed manually from a phon

  • Bootcamp corrupted Mac OS X partition - need recovery software.

    While I was installing Windows, the display went to sleep. I pressed the space bar to wake it, forgetting it was on the partition select screen. So I opened the Mac OS X partition, corrupting it. The disk won't mount anymore. My question is what is t

  • Inactive objects in ABAP

    All, Can you help me to answer this questions ? Is there anyway to find all the inactive objects on ABAP ? During Enhp4  upgrade, we touched the buffer during ddic activiation and not sure how many objects were in active because of this ? Though the