Update on my K8N and a question about voltage

Well,
I've read all the threads in this and several other forums about the k8n.  I have tried everything (including putting my raid on sata 3 & 4).  I cannot go above 235 - 240 HTT and that's with an 8x multiplier (also tried 10, 9, 7, 6, 5, 4) and memory set to 166.  This is using clockgen (also tried through the bios).  
I can run 220 HTT 11x multiplier (3400+) with 1:1 memory and it is 100% stable.  I have the 1.2b5 bios.  So I'm still pretty bummed about the lack of OCing.
Anyway, on to my question.  When I bring up CPU-Z and look at the CPU tab. The voltage jumps around a bit.  I have it set to 1.55 the bios and CPU-Z will display 1.552, 1.568, 1.552, 1.536, 1.552, etc. back and forth jumping every few seconds or so. Also the core speed fluxuates by about 0.1 MHz for each jump. So..... Is this normal or is my power supply wacked?  I've just never seen this before on my previous computers.
Thanks!

My voltages do the same thing. Since it's not a huge percentage of the total voltage, I wasn't too worried about it and attributed it to tolerance.

Similar Messages

  • I'm looking to buy a new Macbook Pro, and have questions about the Applecare extended warranty?

    I'm looking to buy a new Macbook Pro, and have questions about the Applecare extended warranty? I want to know if the 3 year extended warranty covers what damage. Like water damage, accidental damage, lost or stolen macbook, manufactory defects, or any other kind of damage, maybe be even cosmetic damage. Can anyone help me?

    If you are talking about features of the MBP itself, as long as you are not looking at  the Retina models, then the memory you can upgrade yourself for a lot less than Apple charges, and that does not affect the warranty as Apple considers memory a user permitted upgrade.  Great sources are Crucial and OWC, both are Mac specialists and have on-line videos on how to do the install.
    If the 15" is what you are looking at, a good upgrade is the 7200 rpm hard drive, gives a little better performance over the standard 5400 rpm drive.
    The Hi Res screen is good if you do a lot of graphics work.
    Comparing the 13" amd 15" you will notice the 15" has a second, discrete graphic processor...helps when you get into heavy duty videos, games, graphics...but keep in mind that kicking in the second processor uses a lot of power and will run the battery down faster.
    If you are looking at the Retina models, then keep in mind there are no post-purchase upgrade options...you have to buy with everything you want at the start.
    Just some thoughts.

  • Going Abroad - Question About Voltage Converter Stuff

    Hello, so I am going abroad for a few months (the Netherlands), and I have a question about voltage converter stuff. All of the voltage converters I can find say powers heat-producing appliances rated 500-1600 and converts foreign voltage of 220-240 volts to U.S. voltage 110-120. However, it says not to use on appliances under 500 watts such as computers. So first, off does anyone know how many watts an ibook g4 14" puts off. Secondly, I read that laptops have a dual adapter and that they can work on the 220-240 volts converter. Does anyone have any ideas about these issues; any help would be greatly appreciated!

    Hi Brandon,
    Welcome to the Discussions.
    Your iBook's power adapter is rated for 100-240v. All you need is an adapter for the plug so it will fit in a European outlet. You can find them at travel stores or online for a few dollars.
    John

  • Quick (and urgent) Question about Intel G5's

    Just a quick question about the new intel G5's.
    I currently have bunch of software for my PPC G5 which is a Dual 2ghz. Software includes Adobe CS2, Macromedia Studio, Quark 6, etc, etc.
    If I purchase the new intel mac, would I be able to use the same software? or would I be forced to purchase a whole new set of everything I currently have?
    If the software will work on the intel G5, would it perform at the same rate/better than how it performs now on my PPC g5?
    Thanks in advance for any help.

    Rosetta:
    Most of the time you get a real 'hit' when a program first opens that is PPC. Very sluggish. They will require and use more memory than otherwise, too.
    Tests from last August aren't as helpful, there have been improvements, letting the Mac Pro pull even further ahead.
    http://www.barefeats.com/quad06.html
    Comparison Mac Models shows scores of all models. So there is 2x as much or more processing power, bandwidth, better video, as well as disk drives. A 'base' configuration would be 4-6GB RAM.
    And there are differences, more than between G4 and G5.
    People with experience would be Mac Pro Discussions
    Don't use Migration Assistant, and upgrade to CS3 etc. reinstall all your applications fresh.
    There are some drivers and plug-ins, that can be problems, and known.
    Mac Pro 2GHz 4GB 10K Raptor RAID Cinema HD   Mac OS X (10.4.9)   WD RE RAID Aaxeon FW800 PCIe MDD-G4 APC RS1500 Vista

  • TrackControl, Change Track, and others questions about AvTransmit

    Hi there,
    I've got multiples questions about JMF and AvTransmit, hope you will help
    For a small student project, i'm developing a streaming server using JMF, i have used the AvTransmit example.
    Streaming, etc... everything work fine, i stream music over web
    But i need help with "playlist" :
    // Get the tracks from the processor
    TrackControl[] tracks = processor.getTrackControls();
    First Question :
    The Processor use a MediaLocator to get one track, is there a way to indicate multiples tracks, such as a directory containing multiples audio file ?
    At this time, i can only set 1 file in the MediaLocator.
    I'm using a simple class as Playlist (a File[]), and, when i want to change song, i stop the thread, change the MediaLocator with another file, and restart the thread.
    It works on a Lan, but on Internet, Player (I use VLC for my test) lost the connection, i need to restart VLC to get audio again.
    Second Question
    Is there a more "elegant" way to change tracks ?
    Last Question
    I have think about building my own object Playlist... gasp...
    I've look at the javadoc... but i'm a bit lost... does my class have to implement TrackControl ? what are the object inside etc...
    If someone knows information about this...
    That's all ;)
    Thanks !
    Tommy, french student (sorry for the english)

    First Question :
    The Processor use a MediaLocator to get one track, is there a way to indicate multiples tracks, such as a directory containing multiples audio file ?
    At this time, i can only set 1 file in the MediaLocator.No. The processor uses a MediaLocator to get one file. Files (can) contain multiple tracks.
    You can, in fact, combine the tracks of multiple files together, but, there's no need to do that with your application. AVTransmit2 sends each track as a separate RTP stream, so you'd just be sticking them together just to pull them apart again.
    In general, you want to keep your architecture as one processor per file, one RTP stream per track.
    Second Question
    Is there a more "elegant" way to change tracks ?Yes. It's what I refer to as a jukebox DataSource. I discuss it / explain the concept on this previous thread.
    [http://forums.sun.com/thread.jspa?forumID=28&threadID=5400318]
    What you're essentially doing when you change the MediaLocator is starting over from scratch. You end up with a whole new DataSource, whole new Processor, whole new RTP session. On the LAN, this isn't an issue because it looks like you paused the RTP session (because the IP/PORTs don't change).
    Over the internet, though, when you stop sending and restart, you're very likely going to get a new public NAT port. And so when your stream gets to the client, it's going to look like it's from a different person than the original.
    The solution is to use the jukebox datasource to change the media without restarting the Processor or the RTP streams. That'll ensure that your stream won't move between files from the perspective of the client...
    Last Question
    I have think about building my own object Playlist... gasp...
    I've look at the javadoc... but i'm a bit lost... does my class have to implement TrackControl ? what are the object inside etc...
    If someone knows information about this...Ummmm, your "Playlist" object should just be a Jukebox datasource, so follow the link and figure out how that's supposed to work. If you have questions about it, just ask 'em here (rather than on the older thread)...

  • Voltage specs and international question about Airport Extreme (802.11n)

    I'm about to travel to Korea to teach English for a year so I'm preparing all my electronic gear for the journey and I've come to a curious question involving the Airport Extreme with 802.11n.
    First of all, I'm worried about voltage (Korea runs on 220v / 60Hz). For most hard drives (and Apple hardware in general it seems) the power supply is auto-switching 100-240v 50/60 Hz, but when I looked at the official specs for the Airport Extreme (hereafter AEBS) this info is conspicuously absent. The AEBS itself runs on 12V DC power, which is listed in the specs, but the input tolerance for the AC adapter isn't mentioned. I checked the specs for the Time Capsule since the hardware is presumably very similar and it is explicitly 100-240v. Likewise the replacement power supply available from Apple is listed as 100-240v, but since it is a replacement part I'm not sure if it is the exact same make as the adapter that ships with the AEBS in North America. If someone knows the definitive specs, I would appreciate an answer.
    Secondly, when I tried searching the Korean Apple site (www.apple.co.kr) for specs on the Korean version of the AEBS to see if it was the same, I discovered that the Airport Extreme isn't available in Korea (although the Airport Express and Time Capsule). Does anyone know why this is? Is it possible the Airport Extreme doesn't comply with Korean wireless standards (I know the iPhone isn't being released in Korea because of laws about middleware that must be installed on cellular phones in Korea)? It seems safe given the availability of the Time Capsule in Korea, but does anyone have any specific knowledge about the Airport Extreme or Wi-fi regulations in Korea?
    Sorry if this is a strange question, but I'd appreciate insight from the more experienced/advanced Apple users out there.
    -Matt Tranquada

    Thanks for the response. I guess what I would like to know is if I am closer to the newer 802.11n AE base station with my laptop, will it ignore the older base station and communicate directly with the stronger signal, or does it communicate with the weaker, more distant signal. Does the laptop automatically determine which base station has a stronger signal and choose it, or is it fixed which base station the laptop communicates with?

  • ODI and Essbase - question about updating structure (temp otls)

    Hi,
    versions:
    ODI 11.1.1
    essbase 11.1.2.2.1 (linux)
    I'm running an interface that intends to update a dimension structure with the data from my respective dimension in Oracle relational. Actually a pretty simple interface using the KM "IKM SQL to
    Hyperion Essbase (METADATA)". The execution is running fine with no errors and the structure is updated as expected, however we noticed that there are otl files being created in a tmp folder and they're never deleted. This folder is in the essbase server (/tmp). If I run this interface many times in a day, I'll have as many files in this folder as executions I did. So my question is if anybody knows why those files are being created and why they are not removed from there when the interface execution ends.
    Thinking ahead, I'll have to create a shell script to clean up this folder in order to never have storage issues with those temporary otl files.
    Thanks in advance for any contributions
    Eduardo

         Agreed.     
         I also think those files were created by the java APIs. Just for testing purposes, I ran the rule manually and those otls were not created. This is one more reason for me to believe on this theory.
         However, what makes me think is: no one else got this issue? What are you guys doing with those files?
         Maybe there is some setup I have to do and those files will not be created anymore.
    Thanks,
    Eduardo

  • A quick and simple question about MSI K8N Neo 2 Platinum

    I want to overclock my 3500+ but when I go like to 2.4GHZ, the computer isn't stable and sometimes even corrupt some of my Windows files.
    My HTT is alright so my mobo stays around 800MHZ
    My memory is at 166MHZ so it doesn't go too high
    My Vcore is 1.4v but this overclock is so minimal it doesn't cause a problem
    Last thing.... AGP and PCI Locks
    AGP, no problem, it is locked to 66MHZ, but what about PCI?
    I downloaded CoreGen and when I increased the HTT, AGP stood at 66, but PCI increased with it.
    Some told me that when you lock AGP to 66, it will also lock PCI, well I have to say that it ain't true 'cause I experienced it myself.
    Why isn't PCI Clock not in the motherboard, or is it? and any other motherboard have it???

    Never mind, I just noticed I had to put the AGP to 67MHZ to lock both, BUT, I think my comp just sucks in overclocking.....
    I set it to 2400MHZ
    220x11 with memory at 183MHZ using A64Tweaker so that make my memory set to right on 200MHZ.
    My motherboard is set to 880MHZ (800MHZ Origin) so I set HTT to 3 to make 660MHZ and still doesn't work.
    When I say it doesn't work it is because my PC doesn't pass Super PI test, it freezes completly after the first LOOP but if I do not run Super PI, the PC won't crash. Is it a Super PI problem or what?

  • Verizon iPhone - mobile hotspot and other questions about the data options

    I just ordered the Verizon iPhone. Can anyone explain the options here:
    1) Unlimited corporate email & Web (business and personal email) vs. Unlimited email and web for smartphones (personal email) - what's the difference?
    2) "3G Mobile Hotspot 2GB" - does this mean that there's no way I can share my 3G connection via wifi without paying the extra $20/month?? How about tethering to a single computer (USB, BT, or WiFi) - does that also require this extra option?
    3) equipment protection - what's the difference between Extended Warranty, Asurion Wireless Phone Protection, and Total Equipment Coverage?
    thanks in advance,
    Mike

    Hi
    Regarding your #2 question; yes, you must pay $20/mo to use the 3G Hotspot aspect of the iPhone, same as with any of Verizon's phones that offer this feature such as the Droid X, HTC phones, etc. And, there is NO additional charge to tether it to your computer; it's $20/mo regardless. You can still use the iPhone's WiFi feature to search the web which is part of the regular data plan. We're only talking about paying the $20/mo for the "up to 5 devices" jumping on your phone as a hot spot.
    I'm an Apple fan, have my MacBook Pro, but my phone is a Droid X. I've been a Verizon member since a year before they became Verizon. Additionally, I am part of the Verizon & Motorola test forum; testing new software updates as they come along.
    Something you should know about Verizon's 3G Hot Spot feature; it has issues. Those of us in the Motorola & HTC forums have experienced identical issues with regard to the 3G Hot Spot feature; it disconnects every 2 minutes, even when you are actively surfing the net. Verizon & Motorola Support have been very helpful to provide what they believe are fixes, including: changing the channel, hard resets, clearing cache, etc. It does not work. Most of us believe, this is NOT a Verizon issue, but a phone maker issue.
    I also have Verizon's MiFi 2200. It costs $59/mo and is purely a hot spot device; again up to 5 devices. I use it at home, for my lap top and for those who need connectivity. It outperforms the 3G hot spot feature of the Motorola & HTC phones by leaps & bounds, and I suspect it will out perform the 3G hot spot feature on the iPhone. Additionally, you get 5GB of download with the MiFi which Verizon is planning on offering increases to 8GB & 10GB. There is NO plan to increase the 2GB download limitation on the 3G Hot spot of the iPhone & other phones, and anyone who does basic software downloads & pics, knows 2GBS is not a lot space.
    So, I would recommend not paying the $20 until this is resolved. If you do, you could pay $39 more for a total of $59/mo for the MiFi, download the software to you home computer & notebook, and end up canceling your home internet service. I did this and have saved $70/mo in my total utilities.
    One other important note: Verizon's VZManager Software for their phones & MiFi. If you did pay the $20/mo for the iPhone and decided to tether to your USB port (for power while using) and you were to use the 3G hot spot feature, it will NOT work on 64 Bit computers, regardless if you are using the WiFi feature or directly using VZManager. The MiFi has this same issue. It will only work on 32 Bit when tethered. So, you'd have to reboot your computer to 32 Bit, if you have that ability. On a Macbook Pro, simply restart holding down the "3" & "2" keys.
    I have no idea why Verizon can't simply upgrade the firmware, even recent firmware upgrades have not resolved this. Most new computers are 64 Bit now.
    Despite this, I use my MiFi 100% untethered and carry my charge cord in my bag as it also works on my Droid, and I presume they may do the same for the iPhone; reduces the need for multiple power cords.
    I really looked forward to the 3G feature of the Motorola & HTC phones, but honestly, it's just not there yet; mine was slower than Dial Up, and I'm not kidding.

  • New to mac and iphoto, questions about photo structure & organization

    I bought a new Macbook Pro a couple of days ago and am still figuring things out. I wasn't displeased with windows...I just decided to try a mac anyway, So far, I adore it except for one thing, the pictures.
    I spent hours researching whether to download and use picasa 3 for mac or iphoto. I decided on picasa....and now I've changed my mind. (Mostly because I tried to take pictures of the moon tonight, and they looked great in camera, but Picasa could only pick up a black screen whearas iphoto actually saw and defined the moon- and with the editing software on the two, the picasa auto-edit looked like a picture that was created in microsoft paint, and iphoto came out with a beautifully contrasted photo).
    Now that I decided to use iphoto, I have been researching how to switch and still seem to have a lot of questions. (I've poked around numerous forums but have found conflicting answers on different sites).
    1) I organize my pictures by folders with the month and year. I know iphoto organizes events, which it seems to determine based on photo similarity. Will my photo structure still appear in finder -> pictures?
    2) Is it possible to stop iphoto from organizing my pictures and just trust me on what I want?
    3) All of my friends and family use PCs, and there is a chance that due to financial concerns, when I eventually replace my macbook pro (far in the future) I could switch to a pc. Does iphoto make transferring pictures more difficult? (If I understand correctly, it does not change the photo file, a jpeg is still a jpeg but I want to be sure)
    4) I do not want iphoto to duplicate all of the pictures already in my library....if I import from finder-users-pictures, will it simply use those, or duplicate all 150gb worth of pictures?
    5) Any other tips for someone completely new to macs and iphoto?
    6) This is very silly, but how do I uninstall picasa (I know how to uninstall on a windows but want to make sure I do things correctly on my mac!)
    Also, just a "bonus"- regarding events vs. files I create, will iphoto create events within the program but leave my file structure in the library it imports from alone? If I use finder to go to where I store my photos, will I still see my file structure regardless of what iphoto does?(Does that make sense? I'm having a hard time trying to describe it)
    I apologize if this question is foolish or misplaced- I did read many other posts but didn't see the answers I was looking for.

    Your questions are neither foolish nor misplaced.
    The first thing I strongly suggest is that you make a trial iPhoto Library. Import 100 or 200 pics and explore. Iphoto isn't right for everybody, and if you're going to use it you will need to rethink things a little.
    1) I organize my pictures by folders with the month and year. I know iphoto organizes events, which it seems to determine based on photo similarity. Will my photo structure still appear in finder -> pictures?
    A: Events are based entirely on Date and Time not on 'photo similarity' You can set the interval for what makes an Event in the iPhoto Preferences: iPhoto Menu -> Preferences -> General Pane: Autosplit into Events... And select from the drop down menu.
    Will my photo structure still appear in finder -> pictures?
    Yes or no, depending... iPhoto can run as a Referenced or Managed Library. In the former case, yes you files will be visible in the Finder, in the latter case they won't.
    Note that Referenced or Managed refers +only to file storage+ It offers no extra functionality, it does nothing at all. App like iPhoto are your go-to app for your photos. If you use it, then you never access the photos via the Finder. Ever. It's always via iPhoto or the many, many hooks into the OS that it has.
    I'll detail more on Referenced v Managed below.
    2) Is it possible to stop iphoto from organizing my pictures and just trust me on what I want?
    I'm not sure what you mean by this. Iphoto does basic date and time organisation by default. You can change it, you can change the location of the photos in Events, merge them and then using the other tools available - Albums, Smart Albums, Faces, Places etc you can organise your photos whatever way you want.
    But what do you mean by pictures. There is a distinction between Photos - the image of your child holding his dog - and files: A Jpeg is just a file. Iphoto is designed for you to +forget about the jpeg+ and get on with the interesting bit: the pics of your younger and his pet.
    3) All of my friends and family use PCs, and there is a chance that due to financial concerns, when I eventually replace my macbook pro (far in the future) I could switch to a pc. Does iphoto make transferring pictures more difficult? (If I understand correctly, it does not change the photo file, a jpeg is still a jpeg but I want to be sure)
    A Jpeg is a Jpeg is a Jpeg. If you migrate to another app or an entire OS you can export the photos plus any and all metadata you've added to the Finder and move it on. (Caveat: You cannot export Faces. There is no agreed standard on any system for exchanging this info.)
    4) I do not want iphoto to duplicate all of the pictures already in my library....if I import from finder-users-pictures, will it simply use those, or duplicate all 150gb worth of pictures?
    It can do either. And this brings me back to the Referenced v Managed discussion above. By default, iPhoto will Manage the files, that is, it will copy them into the Library. You can choose not to, but I strongly recommend that you don't:
    *How to do it:*
    Simply go to iPhoto Menu -> Preferences -> Advanced and uncheck 'Copy Files to the iPhoto Library on Import'.
    *What Happens:*
    Now iPhoto will not copy the files, but rather simply reference them on your HD. To do this it will create an alias in the Originals Folder that points to your file. It will still create a thumbnail and, if you modify the pics, a Modified version within the iPhoto Library Folder.
    *Some things to consider:*
    1. Importing and deleting pics are more complex procedures. You have to to put the files where they will be stored before importing them. When you delete them you'll need to remove the files from the HD yourself.
    2. You cannot move or rename the files on your system or iPhoto will lose track of them on systems prior to 10.5 and iPhoto 08. Even with the later versions issues can still arise if you move the referenced files to new volumes or between volumes.
    3. Most importantly, migrating to a new disk or computer can be much more complex.
    4. Because iPhoto has no tools for managing Referenced Files, if, for some reason, the path to the photos changes then you could find yourself resolving aliases for +each photo in the Library+ one by one.
    My own opinion:
    I've yet to see a good reason to run iPhoto in referenced mode unless you're using two photo organisers
    If disk space is an issue, you can run an entire iPhoto Library from an external disk:
    1. Quit iPhoto
    2. Copy the iPhoto Library as an entity from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    If you're concerned about accessing the files, There are many, many ways to access your files in iPhoto:
    *For Users of 10.5 and later*
    You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    You can access the Library from the New Message Window in Mail:
    Uploaded with plasq's Skitch!
    *For users of 10.4 and later* ...
    Many internet sites such as Flickr and SmugMug have plug-ins for accessing the iPhoto Library. If the site you want to use doesn’t then some, one or any of these will also work:
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. However, if you're using Gmail you can use iPhoto2GMail
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    *If you want to access the files with iPhoto not running*:
    For users of 10.6 and later:
    You can download a free Services component from MacOSXAutomation which will give you access to the iPhoto Library from your Services Menu. Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and later:
    Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    *If you want to edit the photo in another application:*
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    5) Any other tips for someone completely new to macs and iphoto?
    *To Push Home a point*
    For someone inexperienced with Macs and inexperienced with iPhoto I cannot stress enough that Managed Library is the way to go. I understand there is comfort in seeing all those folders. But inside the Library that's all there is: all those folders, stored so that an inexperienced user can't grub things up!
    The iPhoto Library Folder is a Package File. This is simply a folder that looks like a file in the Finder. The change was made to the format of the iPhoto library because many users were inadvertently corrupting their library by browsing through it with other software or making changes in it themselves. Want to see inside?
    Go to your Pictures Folder and find the iPhoto Library there. Right (or Control-) Click on the icon and select 'Show Package Contents'. A finder window will open with the Library exposed.
    Standard Warning: Don't change anything in the iPhoto Library Folder via the Finder or any other application. iPhoto depends on the structure as well as the contents of this folder. Moving things, renaming things or otherwise making changes will prevent iPhoto from working and could even cause you to damage or lose your photos.
    Now close that window and forget about it.
    So, once you've imported your photos to iPhoto in a Managed Library, the surplus duplicates are +your folders+. Of course, in time, trash them to get back the wasted disk space. But don't do it today or tomorrow. There's no hurry. When you feel confident that you understand how iPhoto is working and that's it's working for you, theat's the time to reclaim the space.
    I organize my pictures by folders with the month and year.
    If you want to duplicate your Folder Tree in iPhoto:
    Start at the bottom of the hierarchy and drag a folder of images to the Album Heading in iPhoto. The pics will be imported and an Album of the same name created.
    You can then create the Enclosing Folders in the iPhoto Window (File -> New Folder) and drag the Album to it. Folders can contain other Folders (Nested Folders) and Albums.
    However, is your folder system date based? Then this form of organisation is a bit pointless in iPhoto when Smart Albums or the Calendar tool (Click on the wee magnifying glass in the Search Box) mean you can find the photos taken on any day, month or year at a click. With Smart Albums it's easy to find photos from specific range - say, June 3 to August 25, 2009 etc.
    If your folder system is theme based - Xmas pics, Birthday pics etc, then you'll find Keywords are much more flexible, and can be used in conjunction with other criteria for making Smart Albums and searches.
    6) This is very silly, but how do I uninstall picasa (I know how to uninstall on a windows but want to make sure I do things correctly on my mac!)
    Drag the app to the trash and empty it.
    Regards
    TD
    v

  • ILife 08 to 09 iWeb question (and a question about DW while I'm here)

    I was thinking of upgrading to iLife 09 for just a couple of reasons:
    (1) The iPhoto face recognition feature looks cool and I want to try it. I have tens of thousands of photos of friends from nearly 30 years in my iPhoto and it might be fun.
    (2) I basically like iWeb 08, but hate the way it deals with multiple sites. I always have to publish everything, but in iWeb 09 it looks like I can single out just a single site for publishing, even via FTP. is that right?
    Recently I also acquired Dreamweaver because of some work I'm doing for a company. But I find I can't even do basic simple things, like drag around text or insert a web widget (some HTML in a box) to move around and position - like I can do in iWeb.
    Are things like that possible in Dreamweaver?
    I can't even figure out how to add new text somewhere on a blank page in Dreamweaver. And everything I create looks boxy, plain and clunky. I am obviously not a web designer - I am a web application programmer.
    With Dreamweaver I feel like I stepped into some 20th century web authoring tool. With iWeb everything I create looks nice even though I have no artistic talent myself.
    doug

    I don't mind publishing to a folder and uploading using my FTP client, but it seems I have to publish ALL the sites each time to the folder and then just upload the one site's folder I was editing. So it takes a long time each time I publish to the folder. There is no way around that, is there?
    About my DW question, it was "in comparison to iWeb". If I asked in a Dreamweaver forum if DW could do this thing that iWeb could do, somebody would probably say, "Why don;t you ask your question on an iWeb forum?"
    Thanks,
    doug@hoping this discussion doesn't digress into whether I should post my question here or not

  • Default values and other questions about MIO-PCI-16E-1

    Hi, I have a few questions involving the above mentioned board.
    First: When doing a data acquisition using an external digital trigger and an external clock, which edge of the clock signal is read by default?
    What is the delay between a STARTSCAN signal being received and a CONVERT signal being generated (signifying an ADC convertion taking place?)
    Finally, what exactly is the sample interval counter? What does it do? This is mentioned on page 4-32 in the E Series DAQ user manual.
    Hopefully these questions aren't too stupid We're designing some custom circuitry to work with the DAQ, and for things to work the timing must be precise. We need ALL the timing details about a single data acquisition t
    hat we can get.
    The system we're running on has Labview 6.0.2, and we are only acquiring data from one analog input.
    Thanks a ton!
    --Randall Cameron

    Hey Randall,
    The internal Scan Clock is a rising edge clock, if you are interested in having the rising edge clock output as high until a scan is complete, please refer here. The internal Convert Clock is always falling edge clock.
    If you are using an external signal, you can specify the polarity of the signal by selecting PFI pin, high to low, or low to high, if you are using the Clock Config VI. The method for setting the polarity changes based on the method of programming the card. And again, I do not know what the digital trigger defaults to, but you can select either polarity.
    The delay between a Scan and a Convert is based on the Convert Clock.
    Ideally, the delay is in the nanosecond range, and then the Convert Clock determines the spacing between any further samples.
    As for the sample interval counter, the following is pasted from page 4-35.
    �The sample interval counter on the PCI E Series device normally generates
    the CONVERT* signal unless you select some external source. The counter
    is started by the STARTSCAN signal and continues to count down and
    reload itself until the scan is finished. It then reloads itself in preparation for
    the next STARTSCAN pulse.�
    So just let us know if you have any questions on getting the polarity set up, or if anything is not fully explained.
    Best regards,
    Justin T.
    National Instruments

  • Fan problem on L645-S4036 (temporary fix and a question about it)

    Ok, after some days of usage on this laptop, I have found that the fan only goes to 95% of usage when I'm playing, which is normal I think... BUT also goes crazy when I turn on the laptop, and I don't use for about 15 minutes, even if the temp is just fine, with no software running on the background.
    If I use it, the problem doesn't show up at all...
    The only way to turn it off and lower it to about 45% (if the computer is not hot), or 0% (is so nice like that... No noise at all), is suspending the laptop, and turning it up again. Really strange thing.
    I guess is a problem with the BIOS, or the temp calculation of it. Do anyone know if Toshiba is working on a BIOS update for this issue?
    I'm happy with this laptop, the battery which is faulty, lasts about 2.3 hours, not 3.9 hours as said at the specifications (not a problem, warranty is supposed to bring me a working replacement... Doing it tomorrow) and the fan noise are the only problems I have found after a month of use.
    I hope the temporary fix helps a bit...If anyone knows another way to fix it, reply me, because third party software didn't worked for me.
    Thanks a lot!

    I have TOSHIBA Sattelite L300. I have same problem. I installed SpeedFan to monitor CPU temp. I found something CRAZY about toshiba conception on temp. regulation!!! The fan stops when temperature of CPU goes under 30 degrees !!!!!!!! UN BELIEVABLE!!! It's very hard to be done... I can achieve this VERY HARD! In the room temp is 20 degr., outside is 10 deg. the laptop is on the table... cpu usage 1-2% !!!! Fan goes on AND NEVER STOPS, temp of cpu stays constantly at 35 deg. I pickup the laptop in air, or put a remote control of TV under front side, and miracle!!!! after a few minutes the temp goes to 29 deg and fan stops (of course if you standby and resume, fan stops too). But not for long... the temp. of cpu starts growing. first the temp grows fast, then it almost stops growing about 45 deg. and you say wow super! But than suddenly fan start (about 45 deg.) if it didn't start... the cpu temp wouldn't rise above 55 deg.
    I have another LAPTOP, Sony Vaio, I installed SpeedFan to monitor CPU temp too... This machine has a very different conception about cooling... I can't hear it FAN ever... Tha speedfan shows this: When you use machine actively, the cpu stays about 70 deg. tha fan speed varies very smooth (not on a steps like the toshiba laptop) and when you not using CPU actively, the fan speed drops to a very slow level, almost can't hear it... have to put my ear near to where the air goes out... and from this quiet speed, the cpu temps goes down slowly, and when it's about 60 deg. tha fan stops at all... and what I see in speedfan is that cpu temps raise very slowly to about 65 deg. (this is when the laptop is over me (not on the table with remote control for more air :-) ) the fan never start if I'm not using CPU actively and the temp stays about 65 deg., when I start using cpu a little more activily the fan starts at 74 deg (at lowest speed, not like the toshiba "Buuuu... buu... bbb" - on a few steps to the lowest level starting from high) and can't hear the fan is working, just see how the temp starts falling... and when achieves 60 deg. STOPS (but you can't hear it at all). So the concept is that when you are not using a CPU actively... the CPU can cool WITHOUT FAN RUNNING (at about 50-60 deg. PLEASE TEST IT). So I think TOSHIBA MUST DO SOMETHING ABOUT IT... I can't believe that engineers thinks that every 5 min. temp. jumps from 30 to 45 deg, from 45 to 30 and this is 24/7 (if you put your remote control under laptop and you live in a cool country where outside is 10 deg. and inside is 20). Instead of CPU at constant (or at least slowly changing) temp. This is not good for any machine (cooling, heating, cooling, heating... this is bad for machinery). The problem could be solved just by changing fan on temp to 74 and fan off to 65 deg. for an example...
    So I wait for a new BIOS version SOON, with updated values...
    Thank you! in advance...
    Other wise... NO CHOICE... change your laptop with a one with a better cooling concept...
    If any one needs more info or what ever, please feel free to contact me...

  • Slim, a problem with virtual consoles and a question about reboot

    hi, just installed slim but now when I switch to the virtual consoles my session on X starts firing keyboard events on the consoles I have there, how can I fix that?
    I'm using xmonad, my terminal is sakura and I'm starting slim from /etc/inittab and xmonad from ~/.xinitrc
    also, it seems slim uses special usernames to halt and reboot however those ask me for the root password, is there a way to avoid that?
    thanks all.
    Last edited by Samus_ (2008-11-23 18:19:49)

    Samus_ wrote:hi, just installed slim but now when I switch to the virtual consoles my session on X starts firing keyboard events on the consoles I have there, how can I fix that?
    this http://developer.berlios.de/bugs/?func= … up_id=2663 might be related.  out of curiosity, why are you starting slim from /etc/inittab and not as a daemon in /etc/rc.conf?
    Samus_ wrote:also, it seems slim uses special usernames to halt and reboot however those ask me for the root password, is there a way to avoid that?
    the flippant answer is, "yes, fix slim."  but so as not to be a jerk, 'man slim' turns up this:
    The 'halt' and 'reboot' commands need the root password, this may change in future releases.
    so i was about to say, "no."  then i decided to hit google with 'slim "special usernames" password'.   unfortunately, your post here is the fourth result, so no love there.
    *but* there's this:
    http://developer.berlios.de/bugs/?func= … up_id=2663
    and this:
    http://developer.berlios.de/patch/?func … up_id=2663
    and the abs.
    so if you really want it, read the wiki page on the abs, add the patch to the pkgbuild, makepkg, and pacman -U.  if you don't want pacman to replace your patched version when there's an update, add slim to the IgnorePkg line in /etc/pacman.conf.  you'll have to re-makepkg and re-pacman -U whenever there's an update, but it ain't that hard.
    if it works, i might like a copy of yr pkgbuild.  hth!

  • Best MMORPG for Iphone 3G and a question about gps maps

    Hi there,
    Could anyone tell me what are the best free and paid iphone 3G MMORPG games? And please tell me some positive and negative things in the games.
    I didn't know where i could ask this so, i came here to apple forum, because i have subsribed to internet on iphone today. This topic doesn't have anything illegal.
    Another thing, does anyone knows if using gps maps through 3g internet, spends a lot of internet trafic? today i've used gps maps for about 12km and it spend me 80kb of trafic. Is this possible? because someone told me that iphone gps spend a lot, but really lot internet trafic. I didn't used sattelite view.

    The sattelite view uses far more data, of course - because of the photography it has to download. But the regular map is still a bitmapped image that has to be updated. It's not a massive amount of data, but not insignificant either.

Maybe you are looking for

  • Help me! i lost safari

    I tried everything but my favorite browser will not open ... install the new version of Safari 6.0.2. macbook was wrong and try to return to the previous version and well ... lost safari can someone help please?! Process:         Safari [447] Path:  

  • Help! I figured out the problem - sort of.

    So I posted my problem two days ago. I found that only some of my pages were loading in Firefox 3. I didn't know why (see below for original posting). With a little experimenting, I have found that republishing the pages that "work" actually causes t

  • Serious problem!!

    I've been using the same apple ID for many years but I've stopped using the email address used for it so I decided to update it to my current email, I did this but now however when I try to sign in on my iPad it says 'this apple ID has not yet been u

  • JDBC driver 10.02: error messages always English?

    When changing from JDBC driver 9 to 10.02 the error messages are not presented in the preferred national language any more but always in English. The classes12.jar contains the property files for different languages, but even when the parameter -Duse

  • Show Report Variable in the title

    Hi all, I need to know if it's possible to show in a title of Answer a report variable and, if it's possible, how can I do. Thanks a lot Steve