Am I doing this correct..

Hi all,
I have been experimenting with O/C my system and never got anywhere with it.  This is what I have done:
Mem to 166 / 133
Men Volts to 2.7
Mem timings to 2-3-2-6-1T
HTT to 4x
Htt to 230+/-  / 250+/-
CPU Volt to 1.4, 1.425, 1.45 + 3.3% / +5%
fails to boot, so I have to reset CMOS (pain as my SB is in the orange slot so I have to keep removing it to gain access to JBAT1).
Some time if I leave the failed boot it will restart and tell me that I have a failed O/C.
Any ideas
worf105

Thanks Chodi for the reply,
My Mem is rated at 2-3-2-6 @ 200MHz so if I use the 166 in the bios I should be able to raise the HTT up by 34MHz to keep the Mem within spec, but if I use the 166 in the BIOS I never able to O/C the system.  I have tried to O/C my Men only without the CPU (CPU Multi - 6x & HTT Multi - 3x) and I managed to get to 220 at 2-3-2-6-1T @ 2.7v.
I will try as you suggest about running the Men @ cas 2.5 and see what happens.
Cheers,
worf105

Similar Messages

  • Changing feed url from Blogger to Podomatic, using Feedburner...Am I doing this correctly?

    Apologies in advance for my newbie-ness, but I recently started a podcast (Candid Voices) using Blogger and then burning with Feedburner, from which I submitted the feed to the Itunes Store (which was accepted).
    However, I have had to switch to PodoMatic for my podcast hosting. I recently updated my Feedburner source url (just an hour ago), and I believe that should cause the Itunes store to update my Podcast eventually...however, I don't want to wait a few days and then figure out there was another step I was supposed to take to complete the changeover.
    Can someone let me know if I've done this correctly and can expect the Store to reflect the changes within a couple days?
    My PodoMatic url: http://candidvoices.podomatic.com
    My Feedburner url: http://feeds.feedburner.com/candidvoiceswithdonny
    If you need other information, please let me know.
    Thanks in advance for your patience and help!

    Oddly you appear to have two identical feeds:
    http://feeds.feedburner.com/candidvoiceswithdonny
    http://feeds.feedburner.com/CandidVoicesWithDonny
    iTunes is using the latter, but they are the same and are both drawn from the Podomatic feed, so I suppose Feedburner is somehow creating two simultaneously. However on your next update you should make sure that the latter feed is indeed being updated.
    Both episodes appear when subscribing, but the Store hasn't caught up yet - it was only posted today, so it should catch up in 1-2 days. There's no further action you need take.

  • MVC - Am I doing this correctly?

    I am creating a User Enter/Edit app based on the MVC Model 2 Design Pattern.
    The app user goes to the Servlet (doGet) first and determines if this is the first time into the page, and if an User ID was passed in. If the UserID was passed in, then the Servlet instatiates the User Object, passes in the Id, and the User JavaBean gets the data from the database. If NO User ID is then, then we create the User JavaBean anyway, and the attributes are initialized the way I want them.
    Now, what is the best way to pass the data in the User JavaBean to the JSP page?
    I could put the User/Bean into a session, but I don't want to do that.
    I could use .setAttribute to put the User data into the request, and then forward to that JSP page. Then when I get into the JSP page, I could get the data that is there whether it is a new user or an old user. This will work, but is it practical.
    I was thinking of putting the data from the User JavaBean into an XML DOM, and then translating the string to WML or HTML (based upon the client browser), but my User Enter/Edit form needs to get data for a UserRoles List and an Employer List. So, this doesn't seem to work, or will it. I suppose I could create a User XML DOM, and add to the DOM the Employer List and Roles List.
    Anyway, what is the recommended/best practice way of taking data from the JavaBean and forwarding that data to the JSP page?
    Since I do want to keep as much code as possible out of the JSP page, I figured I should really only have my Utils JavaBean there just to get my Lists, but maybe the XML way is the answer.
    Anyway, thanks for any help, and if I can provide any more information, please let me know.
    Thanks.
    Tom

    Ok, I should use Request.setAttribute and put my user object there. Sounds Great!
    What I have been doing until recently was putting the object into session, for example:
    session.setAttribute("user",user);
    But what happens is that the session times out, and then the code crashes because the session is gone.
    Thanks very much for the help, it is much appreciated.
    Tom

  • See if I'm doing this correctly - Starting create an HD 1920 X 1080 Slidesh

    Hello All;
    I'm new to FCP and am using FCP 6 from Final Cut Studio. I need to create a High definition Slideshow that will be shown on both a computer screen and a TV.
    After opening FCP, I select NEW PROJECT and then New Sequence. Then I Then from the sequence menu, I select settings and in there select a frame size of 1920 X 1080 HDV 1080i.
    My photos are at a resultion of 3008 X 2000. Then I import these into the timeline.
    Two questions - First, is this the basic way to set up a HDV video project, and second, will the photos (Which are a higher resolution than HD), scale to fit the screen without changing the aspect ratio ? It looks like it's working correctly but before I get too far, I thought I'd ask the forum. Thanks.
    Tim

    Should I do a custom frame size and set it to 1920 X 1080. Then, select ProRes 422 for the codec ?
    You choose the ProRes 422 EASY SETUP. This adjusts everything. Make a new sequence and that sequence will have those settings.
    Would I set the Pixel Aspect Ratio to square and the field dominance to none ?
    Well, ProRes 422, if you choose a 1080p setting, will have no field dominance and is square pixel.
    I also want to create a smaller DV version for playback on a TV.
    You will compress the master to a smaller format when you are done...with Compressor.
    Shane

  • Am I doing this correctly?

    I am making a smallish website and I am after some clarification/guidance/feedback on if I am properly abstracting out the different functionality, linking it all back together etc?
    In short: am I doing the right thing here?
    I have a JSP page that is an about page attempting to pull some user info from a database. It calls a bean called ProfileProcessBean.
    ProfileProcessBean will make a call to another bean, Databse bean that only handles databse calls. It takes the results set and uses it to fill out another bean that only has information about users, called Profile Bean. For each record in the results set it makes a bean adds it to a linked list. Back in the page, the LinkedList in the bean is iterated over in the JSTL and each ProfileBean is sent to a custom tag, ProfileTag which formats it to the page.
    It uses a Database from MEATA-INF/context.xml
    Examples:
    JSP
    <%-- Iterate over the results (a linked list of Profiles) from the ProfileProsessBean --%>
    <c:forEach var="profileList" items="${ProfileProcessBean.profiles}">
        <%-- Send each Profile to the custom tag for formatting and outputing --%>
        <tmc:profile userProfile="${profileList}"/>
    </c:forEach>The Profile ProcessBean
    package com.mysite.beans;
    import com.mysite.typebeans.ProfileBean;
    import java.io.Serializable;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.util.LinkedList;
    * This is the bean that process a profile.
    * It makes a call to the database and populates profileBeans with the results.
    * @see DatabaseBean
    public class ProfileProcessBean implements Serializable {
        ResultSet result;                       // The results of the database call
        LinkedList<ProfileBean> listOfBeans;    // The list that the results are formatted in to and the Profile Beans
                                                // are put into
        String user;    // The username that can be passed in as an optional argument
        public ProfileProcessBean() {
         * Process the results of a database connection that retuns a ResultSet of a statement into profile beans that are
         * passed to a custom tag for output.
         * <p/>
         * The statment selects a profile(s) and returns them to this method as a ResultSet. The results set is then
         * iterated over and each record is used to populate a ProfileBean. Once populated the ProfileBean is added to a
         * LinkedList and once all records have been processed the list is returned.
         * @return A linked list of ProfileBeans
        public LinkedList getProfiles() {
            DatabaseBean dbaBean = new DatabaseBean();
            try {
                // Check if a username is passed as "user" and if it is amend the stament
                if (user != null) {
                    result = dbaBean.executeQuery("Select * FROM \'users\' WHERE username = " + user + ";"); // Select a specific profile
                } else {
                    // Otherwise use the statment that returns them all.
                    result = dbaBean.executeQuery("SELECT * FROM \'users\';");                             // Select all the profiles as no specific profile was given
                // Iterate over the results set and add each row found as a new ProfileBean
                // Set the properties from the RS
                while (result.next()) {
                    ProfileBean profileBean = new ProfileBean();            // Make a new bean to be populated
                    profileBean.setPseudonym(result.getString("user"));
                    profileBean.setEmail(result.getString("email"));
                    //profileBean.setPicURL(result.getString("picURL"));    // not in test DB, next interation perhaps
                    profileBean.setAbout(result.getString("about"));
                    listOfBeans.add(profileBean);                           // Add the newly populated profile to the list, it could be one or nmany, it doesnt really matter
            catch (SQLException SQLEx) {
                System.out.println("Error in the SQL");
                System.out.println(SQLEx);
            return listOfBeans; // Return the list full of populated beans
    }The Database bean
    package com.mysite.beans;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.sql.DataSource;
    import java.io.Serializable;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    * Contains a collection of database access related functions.
    public class DatabaseBean implements Serializable {
         * Empty constructor
        public DatabaseBean() {
         * Make a connection to the database and executes an SQL query.
         * @param SQLStatementToExecute The SQL statement to execute, as a string.
         * @return A ResultsSet of the result of the executed SQL query.
        public ResultSet executeQuery(String SQLStatementToExecute) {
            System.out.println("now in dbbean");
            // Grap the JDBC context defined in META-INF/context.xml
            // It is setup in  the ennvironment context and referenced as a DataSources "jdbc/mysite
            // Local variables
            Connection conn;                // The connection to the database
            PreparedStatement prepStmt;     // The statment to execute
            ResultSet rs = null;            // The results of the executed statment
            try {
                // Lookup the connection details of the database defined in the context.xml file
                Context initContext = new InitialContext();                             // The details are stored in the context of the conputer
                Context envContext = (Context) initContext.lookup("java:comp/env");     // Get the environmental context that stores the details
                DataSource ds = (DataSource) envContext.lookup("jdbc/mySite");     // Get this specifc context
                System.out.println(ds);
                // Now try to execute the SQL statement
                conn = ds.getConnection();                                  // Get a connection to the database
                prepStmt = conn.prepareStatement(SQLStatementToExecute);    // Build a prepared stement to make things run faster, which can be put into cache
                rs = prepStmt.executeQuery();                               // Execute the statement and put the return into a RS
                conn.close();                                               // Close the connection so it can be returned to the pool
            } catch (NamingException nameEx) {
                System.out.println("There was a naming exception");
                System.out.println(nameEx);
                System.out.println(nameEx.getCause());
            } catch (SQLException SQLEx) {
                System.out.println("There was an SQLException");
                System.out.println(SQLEx);
            // Return the result set to the calling bean
            return rs;
    }The Profile Bean
    package com.mysite.typebeans;
    * This is the bean that repesents an authors profile
    public class ProfileBean {
        private String pseudonym;
        private String email;
        private String picURL;
        private String about;
        private String[] tags;
        // Default Constructor
        public ProfileBean() {
            pseudonym = "Flux Cap";
            email = "[email protected]";
            picURL = "flux";
            about = "Flux keeps the world working. Things would be different without him. " +
                    "Anyone fancy a ride in his Delorian?";
            tags = new String[] {"Time Travel","Science", "Cars"};
        public String getPseudonym() {
            return pseudonym;
        public void setPseudonym(String pseudonym) {
            this.pseudonym = pseudonym;
        public String getEmail() {
            return email;
        public void setEmail(String email) {
            this.email = email;
        public String getPicURL() {
            return picURL;
        public void setPicURL(String picURL) {
            this.picURL = picURL;
        public String getAbout() {
            return about;
        public void setAbout(String about) {
            this.about = about;
        public String[] getTags() {
            return tags;
        public void setTags(String[] tags) {
            this.tags = tags;
    }Again just some feedback on if i'm doing the right thing. Exceptions in the right place? Flow is in the right way? Any other comment. Sorry English is not my best language.

    Yes, but I am asking if it is he 'best' way to do this soft of thing.
    ie I caould do this with scriptlets in each page, but that introduces pretty huge redundancy and the problems with maintaining it.
    Everyone talks about abstracting that functionality out to a bean but never go into more detail about the better ways to do that. So, is this a better way? Are there any glaring ommisions or problems with the way that I am doing it that could be improved?

  • AVCHD Camcorder to DVD Advice Needed - Am I Doing This Right?

    Hi All,
    I have a MacBook Pro 2.4 GHz Intel Core Duo with 2GB memory. I also have a Canon HG10 AVCHD Camcorder. I took a total of 2.5 hours of video footage.
    1. I attached the camcorder to my computer via USB and downloaded the movie off of my camcorder onto my laptop - this took about 2.5 hours to do.
    2. Then I wanted to make a DVD out of the footage and created a DVD in iDVD. I loaded the movie from iMovie and created a DVD - this took about 5 hours.
    3. Then I burned the first DVD - this took over 2 hours.
    4. I burned additional DVDs as gifts - and each of these took about 19 minutes.
    My questions are: Am I doing this correctly? Does one 2.5 hours of filming really need to take so long to decompress or whatever it is doing? Would I have been better off using iMovieHD? I'm sorry to sound so stupid, but I am very new to camcorders and iMovie/iDVD. Many thanks for your help and understanding.

    Let me see if I can describe it easier
    Step 1 - transferred 2.5 hours of video footage from my Canon HG10 to my MacBook Pro (took about 2.5 hours to do) this was put into iMovie '08 with no problem
    Step 2 - I created a DVD in iDVD with 1 song out of iTunes as the Main Screen of the DVD, created 1 chapter for the Movie itself, and 1 Slideshow of pictures with 1 song from iTunes. I then pressed burn DVD - which it took over 5 hours to burn the first DVD
    Step 3 - additional DVDs took 19 minutes to burn after the first one.
    I hope this helps. I might of messed up on my first post. Thanks!

  • Does Aperture Correct Lens Distortion with Panasonic Raw Files?

    I have a Panasonic GF1. When shooting in JPEG I know that the camera adjust for barrel distortion on the saved image. However It does not for RAW images as far as I know.
    I am aware that Adobe reluctantly added the software correction to Adobe Camera Raw for Panasonic cameras that need this for their RAW files to look correct, even though technically the file is no longer RAW after this adjustment. The information needed to do these corrections is encoded in the RAW file. So! I am wondering if Aperture does this correction to imported RAW files now that it supports The GF1?
    Heres a more in depth look at the distortion issue: http://www.dpreview.com/reviews/PanasonicGF1/page19.asp

    As a DMC-G1 owner, I thought that RAW conversions were fully supported now. Turns out that my perception seems to have been only partly true.
    I fired up SilkyPix again (thought I'd seen that for the last time!) and checked what corrections it offers. In the 'Lens aberration controller', there are three controls: Shading (angle and amount), Distortion (distortion rate and centre) and Chromatic Aberration (R rate and B rate).
    Aperture only exposes controls for the [Chromatic Aberration|http://documentation.apple.com/en/aperture/usermanual/index.html#cha pter=17%26section=11|Working with the Chromatic Aberration Controls] (red/cyan and blue/yellow) - this can be applied globally or brushed in selectively.
    There doesn't appear to be any access to shading or distortion as there is in SiklyPix, though - at a quick glance and I could be wrong - Aperture's [Devignette|http://documentation.apple.com/en/aperture/usermanual/index.html#ch apter=17%26section=4|Working with the Devignette Controls] tool appears to provide a similar function to the description of the Shading tool in SiklyPix.
    If there's distortion correction automatically going on behind the scenes - you did mention the embedded correction information in the RAW file - then it's not obvious. There's certainly no user control that I have seen.
    Hope this helps...
    Regards,
    Gary

  • Sending an email from my Ipad I get "receipient was rejected by server because it does not allow relaying". What does this mean and how do I correct it?

    When sending an email from my Ipad. I get "receipient was rejected by server because it does not allow relaying". What does this mean and how do I correct it?

    On the email account's settings (Settings > Mail, Contacts, Calendars and tapping on the account on the right), go into it's outgoing SMTP settings and try putting in your email name and password (they might currently show as 'optional')

  • HT3228 I set up my work e-mail on iphone.  When I try to send an e-mail, an error code says "Cannot Send Mail", "recipient rejected by server because it does not allow relaying".  What does this mean and how do I correct it?

    I set up my work e-mail account on my iphone 4S.  When I try to send an e-mail message from my phone, an error message occurs "Cannot Send Mail" - "recipient was rejected by the server because it does not allow relaying".  What does this mean and how do I correct it?

    Get the correct mail server settings from your IT department.

  • A family member set up my time capsule, promises that it is set up correctly but the light on the capsule isn't green, it is yellow, what does this mean?

    A family member set up my time capsule and sayy it's workign correcly but the light on it isn't green, it is yellow...what does this mean?

    If the Time Capsule is operating normally, the light will be green.
    If the amber light is blinking, something is not adjusted correctly, or there may be an update available for the Time Capsule.
    Do you have the device that was used to set up and configure the Time Capsule there?  Is this a Mac?  If yes, we need to know what operating sysem it is using.
    If you are not sure, click the Apple icon in the upper left corner of the screen and then click About This Mac. Post back with the OS X Version number that you see there.

  • I downloaded and installed the: Mac mini EFI Firmware Update 1.6 on my mac mini running 10.8.1, was I correct in doing this ?

    I downloaded and installed the: Mac mini EFI Firmware Update 1.6 on my mac mini running 10.8.1, was I correct in doing this ?
    I didn't see this update come up in "Software Update"
    If I was not meant to install this update, would it cause ANY damage at all to my mac ( this is my second as I dropped the first )
    If I were to re-install ML would this fix any errors that this may have caused ?
    The bottom of the page I link to says:
    Boot ROM or SMC Version Information: MM51.0077.10
    But when I click on "About this Mac" it says:
    Boot ROM Version:          MM51.0077.B10
      SMC Version (system):          1.75f0
    What does the additional "B" mean?
    My mac mini is the Mid 2011 Model.
    I am sorry if I am sounding super paranoid about this, but I don't want to have caused any permanent damage.

    Hello,
    It's somewhere between almost impossible & impossible to install the wrong EFI Update with all the checks it does!
    Mac mini (Mid 2011) with Intel graphics
    Macmini5,1
    MM51.0077.B10 (EFI 1.6)
    Mac mini (Mid 2011) with Radeon graphics
    Macmini5,2
    MM51.0077.B10 (EFI 1.6)
    Mac mini Server (Mid 2011)
    Macmini5,3
    MM51.0077.B10 (EFI 1.6)
    http://support.apple.com/kb/HT1237
    Not sure what the B means.
    If I were to re-install ML would this fix any errors that this may have caused ?
    No, Firmware is unaffected by any OS change or re-install.

  • In Mac Mail on OS 10.5.8 I am receiving bogus emails which claim to be sent by people in my address book, but actually are not.  How does this happen and how can I correct this problem

    n Mac Mail on OS 10.5.8 I am receiving bogus emails which claim to be sent by people in my address book, but actually are not.  How does this happen and how can I correct this problem

    You said:
    I am receiving bogus emails which claim to be sent by people in my address book, but actually are not.
    ...and:
    Are you saying that my address book has not been hacked into?  That others are getting these email addresses from another source?
    This confuses me.  Are you saying that you are receiving bogus e-mails from some of your contacts, or are you saying that they are receiving bogus e-mails from you?
    If the latter, there are a number of reasons that people might be getting e-mail from you.  Malware, though technically possible, is extremely unlikely.  See Someone is sending messages from my e-mail address!
    If the former, that's rather unusual.  The only decent explanation I can think of is that a bunch of your Windows-using contacts got infected with something and their machines are being used to spam everyone in their contact lists, which would include you.

  • I have typos in my podcast description. Updating the RSS does not correct this. How can I get iTunes to re-read my RSS???

    I have typos in my podcast description. Updating the RSS does not correct this. How can I get iTunes to re-read my RSS???

    Thanks for your help.
    Here are the RSS feeds:
    http://www.solidrockvista.com/Podcasts/Lite/rss.xml
    http://www.solidrockvista.com/Podcasts/Phat/rss.xml
    And here are the iTunes pages:
    http://itunes.apple.com/us/podcast/james-world-lite/id162059136
    http://itunes.apple.com/us/podcast/james-world-phat/id162296074
    Both Podcast Descriptions have typos.

  • Firefox is taking forever to open any website, the little spinning circle is driving me mad. Once it has opened my bookmarks and history haven't loaded. Once in ten attempts it does load correctly but this is happening less frequently...

    I'm running Windows 7x64 and Firefox 6.0.2 is taking forever to open any website, the little spinning circle is driving me mad. Once it has opened my bookmarks and history haven't loaded. Once in ten attempts it does load correctly but this is happening less frequently...

    Try the Firefox SafeMode to see how it works there. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    * You can open the Firefox 4/5/6/7 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    If it is good in the Firefox SafeMode, your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • I just burned to disc an album of photos I created in Pages but I cannot open the file on the disc because "the format is not valid".  What does this mean and how do I correct it ?

    I just burned to disc an album of photos I created in Pages but I cannot open the file on the disc because "the format is not valid".  What does this mean and how do I correct it ?

    There are numerous thread about the same matter in this forum
    I hope you'll find your answer
    https://discussions.apple.com/search.jspa?resultTypes=&dateRange=all&peopleEnabl ed=true&q=the+format+is+not+valid&containerType=14&container=2084&username=&rank By=relevance&numResults=15

Maybe you are looking for

  • Webutil - works in the form but not in the forms menu

    Hi Forms: 11.1.1.3 Dbs: 11.2.0.2 I have some code which calls webutil to do an AS to client file transfer. This works fine when called from a button in the form. If I have a menu on this form, and perform the same code to call webutil I get an error:

  • I have a PDF that it was send to me and I can not print the content

    I have a PDF file send to me to fill the blank , now that I did finish on my print it does not show the content I did typed?

  • How to convert custom XML into PDF?

    Hi all, With the IBR i found the way to convert the custom XML file into PDF but i need to know if it's possible apply an XSL-Trasformation before using Direct PdfExport. Is there a way to achieve my goal in one shoot ? If it's not possible how can I

  • Samsung CLP300 prints via old G4 Power(10.4) but not with MacBook (10.5.5)

    I bought an Airport Express so I wouldn't have to keep my old power-hogging G4 running as a print server. If I try and print wirelessly to my Samsung CLP300 printer with the G4, it works fine. But when I try and print via my MacBook (10.5.5), the pri

  • Missing fonts Photoshop CS3 in Win 7

    Photoshop worked fine in XP Pro SP 3. I reformatted the HD and installed Win 7. I installed some postscript fonts and they don't show up in Photoshop but show up fine in Framemaker and MS Office products. Any suggestions.