My sudoku program, any comments, improvements appreciated

Hi all,
So I've been refining my amateur-ish programming skills for around a month, and have been writing a C++ program that solves sudoku. (My background is in physics.) I realize there are a lot of mathematical sides in sudoku, but I'm concentrating on the programming side and not too much on the math/brain side. Now the program is basically finished (I hope!) and I just thought the hackers here can have a look and see if there are any things I can improve.
The link is here: http://ifile.it/jkr56v8/Sudoku.tar
Basically, a sudoku is an instance of Board, an abstract base class with the pure abstract function Go(). Any concrete class derived from it is essentially a strategy. I think this design pattern is called strategy?
I've implemented two basic strategies, BruteForce and Priority. BruteForce does the good old sudoku brute force algorithm, which use trial-and-error from the top left box to the bottom right box all possibilitiies until the correct one is found. Priority does basically the same as BruteForce, except instead of trying from top left to bottom right, it plugs numbers in the box that has the most filled "associated" boxes.
To accommodate "composite strategies," I implemented the prototype pattern, so for example, I can write
void HyperBF::Go(void)
BruteForce::Go();
When a solution is found, I throw an exception to notify the main program, am I correct in that this is a clear and elegant use? Or is it a misuse and an alternative should be considered?
To actually choose a strategy, I created an abstract factory, a singleton. I'm aware there are all the advice out there that says don't use a singleton unless absolutely necessary? So, should I use a singleton in this case? Also, I think my implementation of the singleton leads to a bug, which is the only known bug: when I put a completed sudoku as input, it gives the output as usual, but gives a segmentation fault afterwards:
./Sudoku Puzzle/test_1_Basic.psv BruteForce | tail -n 12 | head -n9 | tee completed
|5|1|8|2|9|6|7|3|4|
|3|9|7|8|4|1|2|6|5|
|6|4|2|5|7|3|1|9|8|
|1|5|6|4|2|7|3|8|9|
|4|7|9|3|6|8|5|1|2|
|8|2|3|9|1|5|6|4|7|
|7|8|4|1|3|2|9|5|6|
|2|3|5|6|8|9|4|7|1|
|9|6|1|7|5|4|8|2|3|
./Sudoku completed BruteForce
Starting configuration:
|5|1|8|2|9|6|7|3|4|
|3|9|7|8|4|1|2|6|5|
|6|4|2|5|7|3|1|9|8|
|1|5|6|4|2|7|3|8|9|
|4|7|9|3|6|8|5|1|2|
|8|2|3|9|1|5|6|4|7|
|7|8|4|1|3|2|9|5|6|
|2|3|5|6|8|9|4|7|1|
|9|6|1|7|5|4|8|2|3|
Final configuration:
|5|1|8|2|9|6|7|3|4|
|3|9|7|8|4|1|2|6|5|
|6|4|2|5|7|3|1|9|8|
|1|5|6|4|2|7|3|8|9|
|4|7|9|3|6|8|5|1|2|
|8|2|3|9|1|5|6|4|7|
|7|8|4|1|3|2|9|5|6|
|2|3|5|6|8|9|4|7|1|
|9|6|1|7|5|4|8|2|3|
Number of attempts: 0.
Time elapsed: 0.00 s.
Segmentation fault
So what's wrong here?
Having implemented the basic functionalities, I tried to play around and gain some simple experience in some optimization. I looked at the Go() function and saw probably the expensive operation is IsConsistent(), so I optimized it by only checking the consistency of changed boxes. By doing so, I reduced the computational time to around 1/3 the original time. Is this the right move, or bad move, or are there better moves?
As a last question, I defined the number of attempts as a global variable. My reason is that, although it is possible to put it in class Board, I just think it doesn't "naturally belong" there, and putting it in a restricted scope would mean a lot of passing of parameters, slowing the program down unnecessarily. So, is this global variable fine?
Lastly, please have a look at my Makefile. This is the first Makefile I wrote, and it took me 3 solid days to get all the .o files in Release/ ! Are there things I've left out?
I realize the Generator is a joke, but at this moment I don't care too much about that, unless anyone has some good ideas.
Any comments would be greatly appreciated! Thanks in advance!

Grazz256 wrote:
Just looking over your code a little I have a couple of comments about your coding style. Please keep in mind that these are just comments...
I think you need to comment your code more. I know its a pain and I'm horrible about it as well but it really does help when/if you go back to read your code in a couple of years.
I try to avoid lines like these:
  fprintf( stdout, "Starting configuration:\n" ); a->Write(stdout);
  start = clock(); a->Go();
by putting two commands on one line it makes the code harder to read. with one command on each line I can quickly scan through and know
generally what each line does, with two I have to actually read each line fully so that I don't miss anything.
Descriptive variable names can also help with readability, I've always been taught the convention of using the first character to indicate type then
using a short descriptive name. For instance you have a function that returns a long value, the value would be decalred like this:
long lRetVal;
so looking through the code I would know thats a long value that represents a return value.
This is an area I'm all over the place with, I always try to stick to one convention but never seem manage it...
As far as your problem goes, where are the boards normally deleted? ie if an incomplete sudoku is inputed?
One possible solution is to run an IsComplete check before you start processing the board. so you would have...
if (a->IsConsistent()) {
if (a->IsComplete()) {
a->Go()
I'll be honest in that I don't really understand the flow of your code, but instead of having the board deleted within strategy or within win why not just delete it on the next line... eg:
start = clock(); a->Go();
delete a;
the downside to this approach is that you would have to delete it within each exception as well but this is relatively minor.
Cheers
Thanks for your comments. At my present level of programming skills, any comments will help.
I thought all my code was basically concise and self-explanatory, and each function is small enough that a quick skim through the definition and declaration would be enough to understand. As the project grew, however, things got slightly more complicated. I have added more comments in my source files, trying to comment why rather than how. I thought the flow of the code was fairly obvious though, by inspecting the main loop. It takes care of the input, bark if anything's wrong, trigger a.Go(), and try to catch a Win. Do you mean the flow within Go()? Anyway, it is very true I need clearer coding style.
Yeah I now solved the segfault problem. The reason a completed sudoku was deleted twice is because the original sudoku is meant to be deleted by the abstract factory, while the solved sudoku is meant to be deleted by Win. When a solved sudoku is inputted it would be deleted twice. Due to lack of programming experience, I failed to see the obvious way is to, as Grazz256 said, check in the beginning whether the inputted sudoku is already solved. If it is, then I duplicate the inputted sudoku and throw the win exception.
By the way, I think I'm beginning to understand why some people are obsessed wtih optimization. I did 3 optimization techniques in my program. First, I thought the most expensive procedure is the IsConsistent() method. By evaluating it lazily I reduced the time to 1/3 the original time. Then following http://www.acm.org/crossroads/xrds1-4/ovp.html, I used initialized the 2D vector within each sudoku via constructor rather than as statements. Doing so gave a 20% time boost. Using a friend procedure while copying sudokus boost another 5%. Doing a right move and getting positive feedback through better performance can be so satisfying.
EDIT:
I found out there was memory leak after all, which I finally solved.
What happens is with all my brute force algorithms I keep creating new Board's and call the Board's Go() recursively. To delete all Board's in the heap I need to have, within each Board::Go(), instead of
Board* a = Clone(); // return new derived Board(*this);
a->Put(x,y,'0'+k);
a->Go();
delete a; // if an exception is thrown this line never gets executed
this
Board* a = Clone();
a->Put(x,y,'0'+k);
try {a->Go(); }
catch( const Win& e) {
delete a;
throw(e);
delete a;
But this deletes the winning sudoku too. This means I have to keep the result in Win, either by duplicating the winning sudoku or storing the string. In the end I overloaded Board::Write(File* f) to also have Board::Write(std::string& p) to sprintf on the reference of a string, so Win just stores the solution in string format. Finally, no memory leak, no need to do a first check to see if the inputted sudoku is already solved, and no pointer deleted twice.
So in the end, to manage pointers I recursively threw exceptions. That made me ask, is using exceptions worth it, or should I stick to the more conventional methods, such as have Go() return a boolean value, then deleting pointers which would give an implementation that is essentially the same as recursive exceptions?
I still think exceptions is the way to go, the reasons being:
1) Exception mechanism provide a natural place to hold the result. Throwing exceptions recursively and the traditional way is essentially the same, but where should the result be stored in the latter case?
2) Arguing over the dictionary, an exception is not necessarily an "error." Winning is an exception in this algorithm, because failure is the norm (as in life).
3) Exception arguably gives better presentation in the main loop, to my "unbiased" eyes at least. Board* a->Go() is triggered in the try block in the main(), with all (foreseeable) possible results caught as exceptions. It is true that this might be a bit unconventional, but given proper comments I still think it is at least as good as the conventional way, in terms of presentation.
So what do you think?
Last edited by dumas (2009-12-21 12:37:47)

Similar Messages

  • New to programming (any help is appreciated)

    Hello, I am having trouble with the following program, any help is appreciated! I am having trouble figuring out the MONTHMATRIX (code is below).
    Initially all locations are set to zero. The column indices 0 through 6 represent the days Sunday through Saturday, respectively.
    I am trying to complete the code ion MonthMatrix class. The constructor, MonthMatrix will set the matrix to all zeros. The setMonth() method replaces the appropriate positions in the matrix with the dates for the month. For example, if MonthMatrix M = new MonthMatrix(); then the call M.setMonth(2,30) would change the Display matrix to :
    0 0 1 2 3 4 5
    6 7 8 9 10 11 12
    13 14 15 16 17 18 19
    20 21 22 23 24 25 26
    27 28 29 30
    and return the value 4, indicating the day of the week that the next month will start on.
    MONTHMATRIX ( ONE IM HAVING RPOBLEMS ON)
    public class MonthMatrix {
    int [][] date = new int[6][7];//six weeks, 7 days
    * post: for all (i, 0<=r<6, for all (c, 0<=c<7, date[r][c]==0))
    public MonthMatrix(){
    for (int r=0; r != 6; r++)
    for (int c=0; c != 7; c++)
    date[r][c]=0;
    * pre: startDayOfWeek is in the range 0..7
    * pre: noOfDays is in the range 28..31
    public int setMonth(int startDayOfWeek, int noOfDays){
         //include assert statements to test the preconditions
    int counter = 1;
    for ( int r=0; r!=6; r++) {
    for (int c=0; c !=7 ;c++){
    date[r][c] = counter;
    counter++;
    return counter;
    * pre: dayOfWeek is in the range 0..7
    * pre: weekOfMonth is in the range 0..6
    public int getDate(int weekOfMonth, int dayOfWeek){
         //include assert statements to test the preconditions
    return date[weekOfMonth][dayOfWeek];
    DRIVER PROGRAM:
    import java.io.*;
    import java.util.*;
    class MatrixDriver {
    public static void main(String args[]) throws IOException {
    BufferedReader kbBuffer = new BufferedReader(new InputStreamReader(System.in));
    MonthMatrix M = new MonthMatrix();
    String DoW = "Enter start day, 0=Sunday: ";
    String length = "Enter no of days in the month: ";
    System.out.print (DoW);
    int dayOfWeek = Integer.parseInt(kbBuffer.readLine());
    while ((dayOfWeek>=0)&&(dayOfWeek<7)){
    System.out.print(length);
    int lengthOfMonth = Integer.parseInt(kbBuffer.readLine());
    System.out.println("next month begins on "+M.setMonth(dayOfWeek, lengthOfMonth));
    for(int r=0;r<6;r++){
    for(int c=0; c<7; c++){
    System.out.print(M.getDate(r, c)+"\t");
    System.out.println();
    System.out.print(DoW);
    dayOfWeek = Integer.parseInt(kbBuffer.readLine());

    public int setMonth(int startDayOfWeek, int noOfDays){
    //include assert statements to test the preconditions
    int counter = 1;
    for ( int r=0; r!=6; r++) {
    for (int c=0; c !=7 ;c++){
    if((c>=startDayOfWeek || r>0) && (counter<=noOfDays))
         date[r][c] = counter++;

  • My time machine 3 TB HD was encryption enabled and it took forever.  I tried reformattiing, it is online, but, get this Partition map repair failed while adjusting structures to fit current whole disk size.  Any comments appreciated.

    My time machine 3 TB HD was encryption enabled and it took forever.  I tried reformattiing, it is online, but, get this Partition map repair failed while adjusting structures to fit current whole disk size.  Any comments appreciated.

    This issue has been in discussion (actively) since last August here:
    https://discussions.apple.com/thread/4218970?start=0&tstart=0
    After months and months of new reports, it's pretty clear that this is an Apple Mountain Lion problem and one that Apple needs to address.  As one frsutrated user noted :
    >>There is no consistent solution for a user.  Apple has to supply it.  All you can do is submit a bug report to
    >> http://www.apple.com/feedback    
    Please, if you are encountering this problem you will save yourself a lot of wasted time and energey simple by joining me and others in asking Apple to fix this problem: Make a bug report.
    Thanks!

  • All Java Processes crash on RH Linux 7.3 / 6.3 without any comment

    We have the following Problem on two Machines. We installed j2sdk1.4.0 first, then jdk-1.3.1_04 (Because of other Problems with 1.4.0).
    Now all running java Processes crash after up to two hours without any comment, any error file. Looks like they were killed by the 'kill' Command. The running java Processes are different Programs, that do very different things.
    The OS on the two machines are RH Linux 7.3 and 6.3 - normal installation without any essential changes.
    I would be very happy, if someone have an idea, how to solve this Problem. If you need additional Information, ask for.
    Holger

    ... if someone have an idea, how to solve this Problem.Seems like I remember seeing a problem like that.
    It turned out that indeed it was the 'kill' command. Another process was running, looking for the app, and killing it when it found it.
    We spend quite a bit of time trying to figure out why our app was 'crashing' before deciding to look elsewhere (when we discovered the other process.)

  • Trying to download CS5 extended on a new laptop with no disk drive.  Do not have my old activation serial number to do it online...any help much appreciated.

    trying to download CS5 extended on a new laptop with no disk drive.  Do not have my old activation serial number to do it online...any help much appreciated.

    you need your serial number to activate.
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Why can't I enlarge safari bar and bookmarks bar so the print is larger.  I can only do this if I change resolution on display.  I do not want to make my 27" smaller.  Any comments?

    After just installing Mountain Lion on mid 2011 iMac 27" I find it does not allow increasing size of font for Safari bar and Bookmarks bar.  The print is so small it is difficult to see.  I can change resolution of screen but the the size of the screen becomes smaller.  Not what I had in mind when I bought this iMac.  Is there any fix out there and is Apple working on this problem?  Any comments would be appreciated.  Thanks.

    Safari – Enlarge browsers toolbar text
    Firefox

  • I am having trouble syncing photos with lightroom mobile. Lightroom (on computer) tells me that it's syncing but nothing appears on my I pad. Any comments?

    I am having trouble syncing photos with lightroom mobile. Lightroom (on computer) tells me that it's syncing but nothing appears on my I pad. Any comments?

    however when I try to sync my older ipod with it and upload some new music to it, Itunes keeps telling me that all the previous songs will be erased
    Yes, that's correct. If you don't have the songs that are currently on your iPod also in your new iTunes installation, they will be erased from the iPod if you sync it. Best to start afresh by first transferring all the music on your iPod back to your new computer/iTunes library.
    For iTunes version 7 or later, then you can transfer purchased iTunes store music from the iPod to an authorized computer by using the "file/transfer purchases from iPod" menu. Note that the maximum of 5 authorized computers applies here.
    Find out how to do that here.
    How to copy iTunes purchases from an iPod or iPhone to a computer.
    For all other non purchased content (your own CDs etc), check out the instructions/suggestions here.
    Music from iPod to computer (using option 2). This a manual method using "hidden folders" and although it works, it is a little more involved than other methods.
    Much easier ways are to use one of the many 3rd party programs that copy music from the iPod to the computer.
    One of the most recommended is Yamipod. This is a free program that transfers music from iPod back to the computer. However, it does not transfer playcounts/ratings etc.
    Other free programs are Pod Player, SharePod and Floola.
    If you want to recover just the structure of playlists from the iPod (and not the actual song files themselves), there's iRepo for Windows. which I understand has this feature along with all the standard features for these programs.
    iPodRip also has the feature enabling you to reconstruct playlists.
    There is also CopyTrans. This does preserve ratings/playcounts etc if those are important to you but this program is not free. It also supports video transfer.
    Once all the music is safely back in your new iTunes library, you can sync your iPod as normal.

  • Etrecheck results, any comments?

    Hello,  My 2010 iMac has been virtually unusable for a few weeks and I am looking for solutions to fix at home before taking into the Geniuses.
    I have just run the following Etrecheck and received the following results.  Any comments or suggestions to improve performance?
    Many Thanks, Jeremy
    Hardware Information:
                      iMac (21.5-inch, Mid 2010)
                      iMac - model: iMac11,2
                      1 3.2 GHz Intel Core i3 CPU: 2 cores
                      4 GB RAM
    Video Information:
                      ATI Radeon HD 5670 - VRAM: 512 MB
    Audio Plug-ins:
                      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
                      AirPlay: Version: 1.9 - SDK 10.9
                      AppleAVBAudio: Version: 2.0.0 - SDK 10.9
                      iSightAudio: Version: 7.7.3 - SDK 10.9
    Startup Items:
                      HP IO: Path: /Library/StartupItems/HP IO
    System Software:
                      OS X 10.9 (13A603) - Uptime: 0 days 0:46:59
    Disk Information:
                      Hitachi HDS722020ALA330 disk0 : (2 TB)
                                        EFI (disk0s1) <not mounted>: 209.7 MB
                                        Macintosh HD (disk0s2) /: 2 TB (1.24 TB free)
                                        Recovery HD (disk0s3) <not mounted>: 650 MB
                      OPTIARC DVD RW AD-5680H
    USB Information:
                      Apple Internal Memory Card Reader
                      Apple Inc. BRCM2046 Hub
                                        Apple Inc. Bluetooth USB Host Controller
                      Apple Computer, Inc. IR Receiver
                      Apple Inc. Built-in iSight
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
                      com.rim.driver.BlackBerryUSBDriverInt           (0.0.68)
    Problem System Launch Daemons:
                      [failed]    com.apple.wdhelper.plist
    Problem System Launch Agents:
                      [failed]    com.apple.AddressBook.abd.plist
    Launch Daemons:
                      [loaded]  com.microsoft.office.licensing.helper.plist
                      [loaded]  com.rim.BBDaemon.plist
    Launch Agents:
                      [loaded]  com.hp.help.tocgenerator.plist
                      [loaded]  com.orange.BEWLauncher.plist
                      [loaded]  com.orange.HotspotAuthentication.plist
                      [failed]    com.orange.SmsNotifier.plist
                      [loaded]  com.orange.Update.plist
                      [loaded]  com.rim.BBAlbumArtCacher.plist
                      [loaded]  com.rim.BBLaunchAgent.plist
    User Launch Agents:
                      [loaded]  com.google.keystone.agent.plist
    User Login Items:
                      iTunesHelper
                      Microsoft Database Daemon
                      Dropbox
                      BlackBerry Device Manager
                      HP Product Research
                      HPEventHandler
                      HP Scheduler
    3rd Party Preference Panes:
                      Growl
    Internet Plug-ins::
                      FlashPlayer-10.6: Version: 10.2.153.1
                      QuickTime Plugin: Version: 7.7.3
                      Flash Player: Version: 10.2.153.1 Outdated! Update
                      Default Browser: Version: 537 - SDK 10.9
                      OfficeLiveBrowserPlugin: Version: 12.3.0
                      SharePointBrowserPlugin: Version: 14.1.2
                      FlashPlayer-10.4-10.5: Version: 10.2.153.1
                      iPhotoPhotocast: Version: 7.0 - SDK 10.8
    Bad Fonts:
                      None
    Old applications:
                      Epson Printer Utility 4:         Version: 9.14 - SDK 10.5
                                        /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/Epson Printer Utility 4.app
                      Keynote:                  Version: 5.3 - SDK 10.5
                                        /Applications/iWork '09/Keynote.app
                      Numbers:                 Version: 2.3 - SDK 10.5
                                        /Applications/iWork '09/Numbers.app
                      Pages:    Version: 4.3 - SDK 10.5
                                        /Applications/iWork '09/Pages.app
                      TNEF's Enough:    Version: 3.1.0 - SDK 10.0
                                        /Users/jezpeek/Documents/Server/TNEF's Enough.app
    Time Machine:
                      Time Machine not configured!
    Top Processes by CPU:
    8%     sharingd
    1%     WindowServer
    1%     EtreCheck
    0%     Dropbox
    0%     BBLaunchAgent
    Top Processes by Memory:
                      1.12 GB  CalendarAgent
                      1.09 GB  sharingd
                      106 MB   Google Chrome
                      49 MB      Finder
                      47 MB      Google Chrome Helper
    Virtual Memory Statistics:
                      53 MB      Free RAM
                      1.53 GB  Active RAM
                      1.48 GB  Inactive RAM
                      517 MB   Wired RAM
                      1.03 GB  Page-ins
                      7 MB        Page-outs

    Hello Linc Davis,
    First of all, thanks very much for your support with this.  I have copied all the recent messages from Console, you can see them below.  During the past 48 hours,I used the computer only two times. Yesterday, to sync a few items to my iphone5 and today, I opened a few photos on an SD card.
    I see several panic/kernel reports related to AddressBookSync. This process is often using large amounts of CPU.
    Let me know if you see any problem areas.
    Many Thanks, Jeremy
    13/12/2013 08:35:53.139 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 4 seconds
    13/12/2013 08:36:05.101 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 3 seconds
    13/12/2013 08:36:09.492 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:36:20.096 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:36:30.465 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:36:31.612 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:36:42.126 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:36:50.695 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 08:37:03.813 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:37:13.173 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:37:14.319 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:37:23.655 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:37:34.024 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:37:42.466 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 1 seconds
    13/12/2013 08:37:47.000 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=13364[GoogleSoftwareUp] final status 0x0, allow (remove VALID)ing page
    13/12/2013 08:37:47.102 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 7 seconds
    13/12/2013 08:37:55.368 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:37:56.511 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:38:11.134 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 4 seconds
    13/12/2013 08:38:16.439 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:38:18.467 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 7 seconds
    13/12/2013 08:38:33.124 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 3 seconds
    13/12/2013 08:38:37.296 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:38:52.150 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 5 seconds
    13/12/2013 08:38:59.574 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:39:08.954 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:39:10.091 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:39:20.579 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:39:31.050 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:39:40.413 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:39:43.062 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 7 seconds
    13/12/2013 08:39:56.347 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 4 seconds
    13/12/2013 08:40:01.637 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:40:16.148 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 5 seconds
    13/12/2013 08:40:23.666 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:40:32.991 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:40:43.360 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:40:44.498 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:40:53.873 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:40:55.020 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:41:04.339 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:41:05.247 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:41:14.620 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:41:15.755 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:41:26.493 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:41:38.109 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 7 seconds
    13/12/2013 08:41:46.449 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:41:56.821 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:41:57.016 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:42:07.414 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:42:08.495 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:42:19.027 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:42:28.381 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:42:29.507 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:42:38.834 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:42:39.980 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:42:54.143 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 4 seconds
    13/12/2013 08:42:59.500 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:43:01.090 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:43:10.344 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:43:11.486 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:43:19.693 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 08:43:21.820 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:43:31.209 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:43:32.348 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:43:47.145 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 4 seconds
    13/12/2013 08:43:52.599 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:44:04.035 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:44:13.418 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:44:14.104 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:44:23.800 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 08:44:24.437 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:44:34.773 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:44:34.879 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:44:45.235 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:44:55.619 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:44:56.766 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:45:06.087 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:45:06.230 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:45:16.588 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:45:17.737 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:45:26.543 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 08:45:28.637 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:45:38.001 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:45:53.134 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 5 seconds
    13/12/2013 08:46:05.541 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 3 seconds
    13/12/2013 08:46:11.063 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:46:21.931 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:46:31.279 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:46:32.420 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:46:41.786 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:46:43.072 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:46:51.486 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 08:46:52.635 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:47:03.006 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:47:04.156 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:47:13.484 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:47:23.862 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:47:26.621 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 6 seconds
    13/12/2013 08:47:33.932 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:47:36.467 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 7 seconds
    13/12/2013 08:47:44.722 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:47:46.038 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:47:55.404 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:48:09.210 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 6 seconds
    13/12/2013 08:48:16.582 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:48:17.698 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:48:26.808 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:48:34.038 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 2 seconds
    13/12/2013 08:48:37.405 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:48:38.536 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:48:49.166 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:48:58.537 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:48:58.957 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:49:09.333 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:49:10.245 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:49:19.605 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:49:20.753 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:49:30.091 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:49:41.589 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:49:50.925 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:49:51.040 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:50:01.599 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:50:11.970 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:50:13.085 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:50:21.329 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 08:50:23.455 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:50:31.873 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 08:50:32.952 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:50:44.435 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:50:54.063 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:51:04.357 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:51:04.460 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:51:15.937 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:51:25.278 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:51:26.595 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:51:37.102 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:51:46.252 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:51:46.656 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:51:57.051 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:51:58.191 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:52:07.519 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:52:08.661 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:52:18.043 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:52:19.193 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:52:34.150 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 4 seconds
    13/12/2013 08:52:39.443 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:52:39.610 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:52:51.063 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:53:01.558 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:53:12.030 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:53:21.353 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:53:31.718 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:53:32.628 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:53:41.985 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:53:43.125 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:53:52.470 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:53:53.586 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:54:02.723 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 08:54:04.111 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:54:13.434 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:54:14.557 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:54:24.412 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:54:37.639 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 6 seconds
    13/12/2013 08:54:44.735 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 08:54:46.150 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:55:01.132 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 4 seconds
    13/12/2013 08:55:06.497 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:55:14.632 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 1 seconds
    13/12/2013 08:55:17.705 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:55:27.360 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 08:55:29.189 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:55:37.841 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 08:55:44.652 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 3 seconds
    13/12/2013 08:55:48.713 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 08:55:52.490 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 6 seconds
    13/12/2013 08:55:59.601 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:56:00.952 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:56:13.320 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 6 seconds
    13/12/2013 08:56:20.651 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:56:21.769 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:56:31.143 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:56:32.270 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:56:41.500 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:56:47.816 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 3 seconds
    13/12/2013 08:56:52.207 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:56:53.345 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:57:08.141 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 4 seconds
    13/12/2013 08:57:15.753 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 7 seconds
    13/12/2013 08:57:22.992 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 08:57:24.844 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:57:35.239 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:57:36.389 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:57:46.370 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:57:56.748 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:57:57.861 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:58:07.228 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:58:07.870 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:58:18.179 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:58:19.324 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:58:28.661 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:58:36.592 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 1 seconds
    13/12/2013 08:58:39.004 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:58:50.544 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:59:01.034 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:59:10.410 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:59:10.578 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:59:21.983 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:59:31.733 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:59:42.111 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 08:59:43.256 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 08:59:52.625 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:00:00.831 com.apple.time[172]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    13/12/2013 09:00:04.128 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:00:13.459 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:00:23.834 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:00:24.950 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:00:33.193 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:00:34.357 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:00:45.845 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:00:55.942 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:01:06.403 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:01:17.913 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:01:26.485 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:01:37.966 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:01:52.146 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 5 seconds
    13/12/2013 09:02:07.149 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 1 seconds
    13/12/2013 09:02:09.403 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:02:09.581 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:02:19.951 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:02:31.439 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:02:40.119 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:02:41.965 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:02:51.285 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:03:00.422 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:03:12.367 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:03:22.720 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:03:24.542 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 7 seconds
    13/12/2013 09:03:32.882 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:03:39.176 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 3 seconds
    13/12/2013 09:03:43.561 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:03:47.009 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 6 seconds
    13/12/2013 09:03:54.356 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:03:55.482 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:04:05.991 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:04:15.353 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:04:15.759 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:04:25.633 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:04:26.000 kernel[0]: full wake (reason 1) 45541778 ms
    13/12/2013 09:04:26.290 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:04:26.339 WindowServer[100]: CGXDisplayDidWakeNotification [65073741983504]: posting kCGSDisplayDidWake
    13/12/2013 09:04:26.340 WindowServer[100]: handle_will_sleep_auth_and_shield_windows: Deferring.
    13/12/2013 09:04:27.501 xpcproxy[13691]: assertion failed: 13A603: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    13/12/2013 09:04:30.572 storeagent[258]: multibyte ASN1 identifiers are  not supported.
    13/12/2013 09:04:31.766 secd[237]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    13/12/2013 09:04:31.767 secd[237]:  securityd_xpc_dictionary_handler AddressBookSourc[13689] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    13/12/2013 09:04:31.905 AddressBookSourceSync[13689]: [AOSAccounts] : [IsAccountKeyChainActive] : had error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Remote error : The operation couldn‚Äôt be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call))
    13/12/2013 09:04:31.906 secd[237]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    13/12/2013 09:04:31.906 secd[237]:  securityd_xpc_dictionary_handler AddressBookSourc[13689] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    13/12/2013 09:04:31.907 AddressBookSourceSync[13689]: [AOSAccounts] : [IsAccountKeyChainActive] : had error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Remote error : The operation couldn‚Äôt be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call))
    13/12/2013 09:04:35.569 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:04:37.223 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:04:43.801 WindowServer[100]: disable_update_timeout: UI updates were forcibly disabled by application "Microsoft Outlook" for over 1.00 seconds. Server has re-enabled them.
    13/12/2013 09:04:44.622 WindowServer[100]: common_reenable_update: UI updates were finally reenabled by application "Microsoft Outlook" after 1.82 seconds (server forcibly re-enabled them after 1.00 seconds)
    13/12/2013 09:04:46.869 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:04:54.980 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 2 seconds
    13/12/2013 09:04:57.302 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:05:07.887 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:05:18.715 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:05:29.794 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:05:39.000 kernel[0]: hfs: mounted Recovery HD on device disk0s3
    13/12/2013 09:05:40.195 fseventsd[50]: Logging disabled completely for device:1: /Volumes/Recovery HD
    13/12/2013 09:05:40.659 mds[39]: (Normal) Volume: volume:0x7f8dea80a000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    13/12/2013 09:05:41.000 kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    13/12/2013 09:05:47.196 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 2 seconds
    13/12/2013 09:05:49.903 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:06:00.519 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:06:01.371 parentalcontrolsd[13735]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    13/12/2013 09:06:11.185 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:06:21.789 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:06:32.469 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:06:43.074 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:06:53.727 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:07:00.000 kernel[0]: memorystatus_thread: idle exiting pid 24 [wdhelper]
    13/12/2013 09:07:00.235 com.apple.launchd[1]: (com.apple.wdhelper[24]) Exited: Killed: 9
    13/12/2013 09:07:00.000 kernel[0]: memorystatus_thread: idle exiting pid 187 [com.apple.audio.]
    13/12/2013 09:07:00.454 com.apple.launchd[1]: (com.apple.audio.DriverHelper[187]) Exited: Killed: 9
    13/12/2013 09:07:00.000 kernel[0]: memorystatus_thread: idle exiting pid 164 [xpcd]
    13/12/2013 09:07:00.704 com.apple.launchd[1]: (com.apple.xpcd.C8000000-0000-0000-0000-000000000000[164]) Exited: Killed: 9
    13/12/2013 09:07:00.000 kernel[0]: memorystatus_thread: idle exiting pid 257 [xpcd]
    13/12/2013 09:07:00.955 com.apple.launchd[1]: (com.apple.xpcd.37000000-0000-0000-0000-000000000000[257]) Exited: Killed: 9
    13/12/2013 09:07:01.000 kernel[0]: memorystatus_thread: idle exiting pid 242 [CloudKeychainPro]
    13/12/2013 09:07:01.209 com.apple.launchd.peruser.501[169]: (com.apple.security.cloudkeychainproxy3[242]) Idle-exit job was jettisoned. Will bypass throttle interval for next on-demand launch.
    13/12/2013 09:07:01.209 com.apple.launchd.peruser.501[169]: (com.apple.security.cloudkeychainproxy3[242]) assertion failed: 13A603: launchd + 39476 [C35AEAF6-FCF6-3C64-9FC8-38829064F8A8]: 0x9
    13/12/2013 09:07:01.270 secd[237]:  handle_xpc_event >>>>> handle_connection_event via event_handler <<<<<, ***?
    13/12/2013 09:07:01.000 kernel[0]: memorystatus_thread: idle exiting pid 186 [xpcd]
    13/12/2013 09:07:01.461 com.apple.launchd[1]: (com.apple.xpcd.CA000000-0000-0000-0000-000000000000[186]) Exited: Killed: 9
    13/12/2013 09:07:01.000 kernel[0]: memorystatus_thread: idle exiting pid 539 [com.apple.audio.]
    13/12/2013 09:07:01.717 com.apple.launchd[1]: (com.apple.audio.SandboxHelper[539]) Exited: Killed: 9
    13/12/2013 09:07:01.000 kernel[0]: memorystatus_thread: idle exiting pid 2476 [periodic-wrapper]
    13/12/2013 09:07:01.967 com.apple.launchd[1]: (com.apple.periodic-daily[2476]) Idle-exit job was jettisoned. Will bypass throttle interval for next on-demand launch.
    13/12/2013 09:07:01.967 com.apple.launchd[1]: (com.apple.periodic-daily[2476]) assertion failed: 13A603: launchd + 39476 [C35AEAF6-FCF6-3C64-9FC8-38829064F8A8]: 0x9
    13/12/2013 09:07:04.373 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:07:15.020 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:07:25.691 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:07:36.318 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:07:47.445 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:07:57.175 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:07:58.520 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:08:06.969 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:08:12.960 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 4 seconds
    13/12/2013 09:08:17.292 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:08:21.192 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 6 seconds
    13/12/2013 09:08:28.559 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:08:37.903 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:08:38.935 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:08:48.223 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:08:49.487 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:08:58.772 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:09:00.033 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:09:09.364 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:09:10.379 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:09:19.718 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:09:20.916 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:09:30.194 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:09:31.260 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:09:40.564 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:09:41.635 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:09:51.025 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:09:52.110 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:10:02.403 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:10:04.150 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:10:13.533 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:10:13.693 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:10:23.999 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:10:25.082 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:10:34.151 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:10:35.151 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:10:45.530 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:10:46.125 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:10:56.642 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:11:07.961 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:11:11.298 AddressBookSourceSync[13800]: CoreData: error: (1) I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables'
    13/12/2013 09:11:11.588 AddressBookSourceSync[13800]: Core Data: error: -executeRequest: encountered exception = I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables' with userInfo = {
        NSFilePath = "/Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb";
        NSSQLiteErrorDomain = 1;
    13/12/2013 09:11:17.380 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:11:17.992 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:11:19.044 AddressBookSourceSync[13800]: CoreData: error: (1) I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables'
    13/12/2013 09:11:19.248 AddressBookSourceSync[13800]: Core Data: error: -executeRequest: encountered exception = I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables' with userInfo = {
        NSFilePath = "/Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb";
        NSSQLiteErrorDomain = 1;
    13/12/2013 09:11:27.394 AddressBookSourceSync[13800]: CoreData: error: (1) I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables'
    13/12/2013 09:11:27.607 AddressBookSourceSync[13800]: Core Data: error: -executeRequest: encountered exception = I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables' with userInfo = {
        NSFilePath = "/Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb";
        NSSQLiteErrorDomain = 1;
    13/12/2013 09:11:32.143 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 5 seconds
    13/12/2013 09:11:35.781 AddressBookSourceSync[13800]: CoreData: error: (1) I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables'
    13/12/2013 09:11:36.029 AddressBookSourceSync[13800]: Error fetching ABCDContact in context <ABManagedObjectContext: 0x7fb6527085a0>: Error Domain=NSCocoaErrorDomain Code=256 "The file “AddressBook-v22.abcddb” couldn’t be opened." UserInfo=0x7fb63cefc040 {NSFilePath=/Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb, NSSQLiteErrorDomain=1, NSUnderlyingException=I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables'} {
        NSFilePath = "/Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb";
        NSSQLiteErrorDomain = 1;
        NSUnderlyingException = "I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables'";
    13/12/2013 09:11:38.486 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:11:38.648 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:11:49.070 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:11:50.230 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:11:51.220 AddressBookManager[13807]: CoreData: error: (1) I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables'
    13/12/2013 09:11:51.648 AddressBookManager[13807]: Core Data: error: -executeRequest: encountered exception = I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables' with userInfo = {
        NSFilePath = "/Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb";
        NSSQLiteErrorDomain = 1;
    13/12/2013 09:11:51.658 AddressBookManager[13807]: Validate metadata timed out, cancelling
    13/12/2013 09:11:59.607 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:11:59.969 AddressBookManager[13807]: CoreData: error: (1) I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables'
    13/12/2013 09:11:59.991 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:12:00.181 AddressBookManager[13807]: Core Data: error: -executeRequest: encountered exception = I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables' with userInfo = {
        NSFilePath = "/Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb";
        NSSQLiteErrorDomain = 1;
    13/12/2013 09:12:08.044 AddressBookManager[13807]: CoreData: error: (1) I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables'
    13/12/2013 09:12:08.248 AddressBookManager[13807]: Core Data: error: -executeRequest: encountered exception = I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables' with userInfo = {
        NSFilePath = "/Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb";
        NSSQLiteErrorDomain = 1;
    13/12/2013 09:12:09.903 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:12:16.689 AddressBookManager[13807]: CoreData: error: (1) I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables'
    13/12/2013 09:12:16.939 AddressBookManager[13807]: Error fetching ABCDContact in context <ABManagedObjectContext: 0x7f9089428700>: Error Domain=NSCocoaErrorDomain Code=256 "The file “AddressBook-v22.abcddb” couldn’t be opened." UserInfo=0x7f90613b72a0 {NSFilePath=/Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb, NSSQLiteErrorDomain=1, NSUnderlyingException=I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables'} {
        NSFilePath = "/Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb";
        NSSQLiteErrorDomain = 1;
        NSUnderlyingException = "I/O error for database at /Users/jezpeek/Library/Application Support/AddressBook/AddressBook-v22.abcddb.  SQLite error code:1, 'too many SQL variables'";
    13/12/2013 09:12:20.770 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:12:22.720 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:12:34.261 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 7 seconds
    13/12/2013 09:12:47.029 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 5 seconds
    13/12/2013 09:12:53.404 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:12:54.328 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:13:03.720 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:13:04.864 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:13:14.228 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:13:15.132 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:13:24.506 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:13:32.131 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 2 seconds
    13/12/2013 09:13:35.474 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:13:36.611 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:13:46.196 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:13:56.086 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:13:57.708 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:14:07.082 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:14:18.115 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:14:28.140 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:14:39.356 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:14:39.483 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:14:48.729 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:14:50.828 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:15:00.211 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:15:01.561 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:15:10.466 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:15:11.506 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:15:21.671 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:15:23.024 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:15:32.412 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:15:33.557 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:15:42.922 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:15:44.070 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:15:53.412 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:15:54.101 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:16:04.494 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:16:04.881 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:16:15.258 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:16:16.135 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:16:24.735 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:16:26.381 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:16:35.742 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:16:36.832 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:16:46.228 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:16:47.378 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:16:56.460 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:16:57.860 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:17:07.242 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:17:08.385 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:17:17.706 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:17:17.816 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:17:28.143 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:17:28.258 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:17:38.743 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:17:48.317 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 10 seconds
    13/12/2013 09:18:02.580 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 6 seconds
    13/12/2013 09:18:09.944 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:18:11.092 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:18:20.478 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:18:21.614 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:18:30.996 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:18:32.095 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 8 seconds
    13/12/2013 09:18:41.440 com.apple.launchd.peruser.501[169]: (com.hp.help.tocgenerator) Throttling respawn: Will start in 9 seconds
    13/12/2013 09:18:

  • I have a first generation ipod touch. I use a wireless router to get on the internet. My connection has frozen and I can not get out of a google search screen. Any help is appreciated. Ray.

    I have a first generation ipod touch. I use a wireless router to get my internet connection. It is frozen on opening up a website and will not release. Even when I power down and restart it goes back to the same failed connection. Any ideas greatly appreciated. Ray.

    - Try resetting the iPod. Nothing will be lost.
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Go to Settings>Safari and delete cookies, cach and history.
    - Restore the iPod

  • TS2755 My husband and I have a linked apple account and i cloud. Now he is receiving all of my text messages. How can I fix it to where he only receives his messages and not mine? Any help is appreciated!

    My husband and I both have iphones and both are linked to the app store and i cloud. Now my husband is receiving all of my text messages and has all my contacts. How can we get it to where he does not receive my messages anymore? Any help is appreciated!

    Best way is to get your own Apple ID, but until then have him go to Settings > Message > Receive at and remove your phone number.

  • I have installed the latest version of iTunes for Windows 8 but when I try to open it, it says Windows has an error and I simply can't open it any longer.  Any help is appreciated!

    I have installed the latest version of iTunes for Windows 8 but when I try to open it, it says Windows has an error and I simply can't open it any longer.  Any help is appreciated!

    Hey socestlavie,
    Thanks for the question. I understand you are experiencing issues with iTunes for Windows. The following resource may help to resolve your issue:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/TS1717
    Thanks,
    Matt M.

  • How do I sync my iPhone 5 to my new PC? iTunes will not recognize it even when plugged in the USB port. Settings General iTunes wifi sync is still my old laptop. Any help is appreciated.

    How do I sync my iPhone 5 to my new PC? iTunes will not recognize it even when plugged in the USB port. Settings>General>iTunes wifi sync is still my old laptop. Any help is appreciated.

    See also Recover your iTunes library from your iPod or iOS device.
    tt2

  • As a new Macbook Pro user I was saddened to find that the feature of using keywords in iPhoto '11 does not allow showing same under each photo.  I understand this was available in earlier versions.  Any comments?

    As a new Macbook Pro user I was saddened to find that the feature of using keywords in iPhoto '11 does not allow showing same under each photo.  I understand this was available in earlier versions.  Any comments?

    Against TOU which you "agreed" to in order to post in these user to user forums.  If you want to "suggest" something to Apple, do so in the Product Feedback area.

  • When updating my ipod Nano, I get the error message Unknown Error 9006. Any help is appreciated.

    When updating my iPod Nano, I get the error message: Unknown Error 9006.  Any help is appreciated. 

    See this
    http://support.apple.com/kb/TS3694#9006

  • I need to access (Ultra) scsi-2 drives but the card is dead. Is there an adapter/converter out there somewhere like my IDE to USB for this? Any other suggestions appreciated.

    I need to access (Ultra) scsi-2 68 pin drives but the card is dead. Is there an adapter/converter out there somewhere like my IDE to USB for this? Any other suggestions appreciated.

    Might be hard to find, but long ago there were a couple of Firewire<->SCSI adapters, if you have USB2 those might be available also...
    http://www.ratocsystems.com/english/products/FR1SX.html
    http://www.ratocsystems.com/english/products/U2SCX.html
    http://www.ebay.com/sch/i.html?_sacat=0&_nkw=scsi+to+firewire&_frs=1
    I think Belkin made one also.
    Might be far cheaper to buy an old Mac or even PC with SCSI.

Maybe you are looking for

  • IPod connects to windows, not to Mac HELP PLZ

    I had my ipod connected to my windows for a couple of months, then i started downloading from my mac computer so in order to get the songs from my mac onto my ipod i connected it to the mac .... i recieved the message" would you like to authorize thi

  • Change field from read only and override calculation based on radio button

    Hi, I have a form in which one of the fields has a simple sum calculation and is set to read only so the user can't change it as it sets a print amount as well. But if one of the radio buttons is ticked there is a chance that the print amount needs c

  • Glyph panel not displaying font character sets in cs5.5

    Hi I'm having issues with accessing font character sets & glyphs in ID cs5.5. I have all my fonts in fontbook and can see the full font character sets displayed but when I go to my glyph panel to access any additional character or glyphs sets there i

  • Using X3500 as a Wireless Extender DHCP issue iPhone 6

    Hi Hopefully a simple question with a simple answer. Background: I've transitioned away from my ADSL ISP to a cable provider (VirginMedia). My new ISP comes with a cable modem (SuperHub 2 ac) and I've connected the two devices together to extend my h

  • Can't find any BPF function in BPC for ADMIN for NW 7.0

    Hi experts, I am studying BPC for NW 7.0. and can't find any BPF function option at Action pane in BPC for ADMIN for NW 7.0. Can anyone help me? any thanks.