Help with alternative treatments

I try to get a handel on parallel processes.  The attached VI, I started with the design of producer/consumer model (events).  I want to start two independent processes with two separate button pushes.  Each process works, but not independently.  The second process is the first process to finish executing before the second process begins.  Can anyone recommend what changes I need to do to be able to do the two processes run independently at the same time?

Thanks in advance.

Use two queues and two loops of consumer.

Lynn

Tags: NI Software

Similar Questions

  • Satellite A300-202 - problems with alternating current

    Hello

    I bought a Satellite A300-202 a few months ago and I'm having intermittent problems with alternating current.

    Sometimes I plug the AC power and it does not start (the led are off and windows says that it is on battery) charge. Other times, he is in charge and suddenly stops.

    I suspected it might be the cord broken inside, but it seems to happen also when no one touches it. Usually, when it stops to load, I unplug the wall, wait a few seconds and plug in again, and it starts to load correctly never stop again.

    Someone at - it had a similar problem? I wonder if is it possible to just replace the parts to AC power so I won't have to send the laptop for repair.

    Thank you

    Pedro

    Hello

    I've never had a problem with my Toshiba Chargers but an old non - Toshiba power adapter died after 6 months of use. After the replacement, it works without any problem.

    I think you should check the update of the BIOS as mentioned by Akuma, but for me, it looks more like a problem with the AC adapter.
    So if the BIOS update help t doesn't, the adapter should be checked permanently.

  • Need help with windows defender. all my files folders pictures everythiing disappeared and I find myself with this black screen and it is not all good: o)

    Need help with windows defender. all my files folders pictures everythiing disappeared and I find myself with this black screen and it is not all good: o)

    I don't know why vista windows no longer charge, or when the files and folders disappeared

    How Windows Defender is on this problem?

    Follow these steps to try to solve your problems of boot.

     

     

    Restore point:

    Try typing F8 at startup and in the list of Boot selections, select Mode safe using ARROW top to go there > and then press ENTER.

    Try a restore of the system once, to choose a Restore Point prior to your problem...

    Click Start > programs > Accessories > system tools > system restore > choose another time > next > etc.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

     

    If restore work not and you do not have a Vista DVD from Microsoft, do a repair disc to do a Startup Repair:

    Download the ISO on the link provided and make a record of repair time it starts.

    Go to your Bios/Setup, or the Boot Menu at startup and change the Boot order to make the DVD/CD drive 1st in the boot order, then reboot with the disk in the drive.

    At the startup/power on you should see at the bottom of the screen either F2 or DELETE, go to Setup/Bios or F12 for the Boot Menu.

    When you have changed that, insert the Bootable disk you did in the drive and reboot.

    http://www.bleepingcomputer.com/tutorials/tutorial148.html

    Link above shows what the process looks like and a manual, it load the repair options.

    NeoSmart containing the content of the Windows Vista DVD 'Recovery Centre', as we refer to him. It cannot be used to install or reinstall Windows Vista, and is just a Windows PE interface to recovering your PC. Technically, we could re-create this installation with downloadable media media freely from Microsoft (namely the Microsoft WAIK, several gigabyte download); but it is pretty darn decent of Microsoft to present Windows users who might not be able to create such a thing on their own.

    Read all the info on the website on how to create and use:

    http://NeoSmart.net/blog/2008/Windows-Vista-recovery-disc-download/

    ISO Burner:http://www.snapfiles.com/get/active-isoburner.html

    It's a very good Vista startup repair disk.

    You can do a system restart tool, system, etc it restore.

    It is NOT a disc of resettlement.

    And the 32-bit is what normally comes on a computer, unless 64-bit.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Data recovery:

    1. slave of your hard drive in another computer and read/save your data out there.

    2. put your Hard drive in a USB hard drive case, plug it into another computer and read/save from there.

    3 Alternatively, use Knoppix Live CD to recover data:

    http://www.Knopper.NET/Knoppix/index-en.html

    Download/save the file Knoppix Live CD ISO above.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://isorecorder.alexfeinman.com/isorecorder.htm

    Download the Vista software from the link above.

    After installing above ISO burning software, right click on the Knoppix ISO file > copy the Image to a CD.

    Knoppix is not installed on your PC; use only the resources of your PC, RAM, graphics etc.

    Change the boot order in YOUR computer/laptop to the CD/DVD Drive 1st in the boot order.

    Plug a Flash Drive/Memory Stick, BOOT with the Live CD, and you should be able to read the hard drive.

    When the desktop loads, you will see at least two drive hard icons on the desktop (one for your hard drive) and one for the USB key.

    Click on the icons of hard drive to open and to understand which drive is which.

    Click the icon for the USB drive and click on "Actions > Change the read/write mode" so you can write to disk (it is read-only by default for security reasons).

    Now to find the files you want to back up, just drag and drop them on the USB. When you're done, shut down the system and remove the USB key.

    See you soon.

    Mick Murphy - Microsoft partner

  • Help with displaying a URL in the body of the email

    Version: Oracle Database 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production

    Hello

    I hope I could get help with displaying a URL embedded in an email. "The URL < a href ="http://projectstatus"> click here to connect to status tool < /a >, appears what looks like text. .

    If it's important the e-mail client is Outlook 2010.

    The procedure will query a table to send reminders to project managers to update their project status each week.

    The application must include a link to the application, so they can access the e-mail application without having to go through their browser etc.

    FOR email_recipients_rec IN email_recipients_cur
    LOOP
        v_recipient := 'email_recipients_rec.resource_email';
        v_subject   := NVL(email_recipients_rec.proj_name||' Status Needs To Be Updated', '(no subject)');
        v_message   := 'The Status for '||email_recipients_rec.proj_name||' on the '||email_recipients_rec.report_date||' '||email_recipients_rec.dashboard_name||
                       ' was not updated as of '||TRUNC(email_recipients_rec.last_updated)||'.'|| utl_tcp.crlf
                        ||'Please update the Status on this Project.'||utl_tcp.crlf||utl_tcp.crlf
                        ||'<a href="http://projectstatus">Click Here to Log into the Status Tool</a>';
    
        sendmail( p_recipient      => v_recipient
                 ,p_subject        => v_subject
                 ,p_message        => v_message
                                );
    END LOOP;
    
    PROCEDURE sendmail( p_recipient      IN VARCHAR2
                       ,p_subject        IN VARCHAR2
                       ,p_message        IN VARCHAR2
                      ) IS
    
        l_mail_conn     utl_smtp.connection;
        v_sender        VARCHAR2(40) := c_default_mail;
    BEGIN
        l_mail_conn := utl_smtp.open_connection(c_mailhost, 25);
        utl_smtp.helo(l_mail_conn, c_mailhost);
        utl_smtp.mail(l_mail_conn, v_sender);
        utl_smtp.rcpt(l_mail_conn, p_recipient);
    
        utl_smtp.open_data(l_mail_conn);
    
        utl_smtp.write_data(l_mail_conn, 'From: ' || nvl(v_sender, 'SendMail Procedure') || utl_tcp.crlf);
        utl_smtp.write_data(l_mail_conn, 'To: ' || nvl(p_recipient, c_default_mail) || utl_tcp.crlf);
        utl_smtp.write_data(l_mail_conn, 'Subject: ' || nvl(p_subject, '(no subject)') || utl_tcp.crlf || utl_tcp.crlf);
    
        utl_smtp.write_data(l_mail_conn, p_message);
        utl_smtp.write_data(l_mail_conn, utl_tcp.crlf || utl_tcp.crlf);
    
        utl_smtp.close_data(l_mail_conn);
        utl_smtp.quit(l_mail_conn);
    
        EXCEPTION
        WHEN OTHERS THEN
          -- catches all errors
          RAISE_APPLICATION_ERROR(-20001, 'SENDMAIL: ' || SQLERRM);
    END sendmail;
    
    
    
    
    
    
    
    
    
    

    I hope it's clear. If not, please let me know what is not clear.

    Can what information I provide?

    Thank you

    Joe

    See the link now, but now the message is not displayed. Only the link.

    Of course.

    Your e-mail client displays only the HTML part.

    It is the purpose of MIME multipart/alternative type, if HTML is not supported, the customer returns to the plain text version.

    Today, most of the mail clients Enterprise supports HTML content (Outlook is of of them), just so place all the message in the HTML part and add the link according to your rules.

  • Hello need help with the opacity mask.

    Hello need help with the opacity mask. I hope someone out there can help

    I inherited a logo that appears to use a Logo of OM has a shape with a grad. This grad at first sight is not used in the Grad scheme and there is not editable.  Looking at the transparency palette I find an OM (pic1) output option. If I choose what the grad on separates it from the page of the form, that is from there I can change/remove as required (Note2).

    However, sometimes (he did no change), I'll be back to the same original form and output option is grayed out and is no longer available. Or I go to the similar shape that has the same treatment and I can't go out OM (pic3)

    The only difference is the thumbnail in the transparency palette, which is strong in pic1 and rated on pic3. What Miss me?    I'm not clear what the advantage is simply OM using the Grad palette to apply a grad in my form, but until I can get rid of OM who is there, I can't comfortably apply to the grad I want.

    The white gradient LHS I have no problem with. I choose fortunately only and each time get the possibility of release of OM.

    Screen Shot 2015-08-06 at 12.26.48.pngScreen Shot 2015-08-06 at 12.00.10.pngScreen Shot 2015-08-06 at 12.01.16.png

    The other thing weird. When I select the white gradient. Sometimes, the exit option is in the palette without going through the drop-down list (Fig 4).

    Other times seems not that OM has already been applied, because the palette gives me the ability to mask rather than liberation (5 photos). Until I go to the drop down and then I find Release is an option after all.

    What is the difference here?   Not much of a problem, because either way I can release OM to be able to change the grad.

    The file is passed through several hands and play anywhere to try to resolve issues, and many stops and save slot, so something along the line was of course done a logo and not the other because of the difference, but I can't for the life of me see what that.

    Screen Shot 2015-08-06 at 12.44.21.pngScreen Shot 2015-08-06 at 12.44.36.png

    I hope someone can help. Very appreciated


    See you soon

    Dave

    Dave,

    I've (mis) understanding the issues, you can account for the box to the right in the main palette transparency (called thumbnail) here.

    Illustrator help | Transparency and blending modes

    represents the masking objects.

    Some of your screenshots show no object mask, so it only is not really a mask even if do the opacity mask has been clicked and there seems to be one in the layers palette, wherever you look.

    I think that it is perhaps the issue.

  • How to get help with conversion ROCK on the export of PDF?

    How can I get help with the quality of the PDF documents converted to word format export.

    Not likely to have, you're doing a "happy dance" but a scanned image is "the ear of the sow" and (Yes, I'll say).

    You can't have a scholarship of silk in one ear of the sow.

    Make you a picture of the text content. You get a result of OCR of all that is recognized. The character by character recognition accuracy is generally quite good. But - No image/photo file actually holds information on format, layout, fonts, etc. - it's just a picture. Acrobat OCR makes some assumptions about all this.

    -You have a bunch of each of the characters being exported to Word. Individual characters, not paragraphs, sentences no, no words, no values "white space", etc.

    So you get an export that is a "best estimate" of the less desirable source. Sometimes, it isn't so bad. Sometimes it's just awful. In all cases, you will need to do some cleanup of the exported content that landed in the Word file.

    The alternative is to transcribe the hardcopy to the Word file.
    In fact it can often be higher as a workflow rather than the scanning-ocr-export-cleanup shuffle

    .

    For really nice export "spot - we ', you must start with a PDF file from an application of creation (not a scanned image) which is a well-formed tag PDF (for example ISO 14289-1, PDF/UA-1).
    The purpose of the tagged PDF document is not only Accessible PDF is also how PDF supports actively the re-use of content (for example, export).

    Be well...

  • Making the ear of corn and need help with the ball.

    I do some corn on the COB for an illustration and I need help with the texture of the ball. I've been slowly making progress with gradient for kernels mesh, but I can't seem to recreate the look of the ball at all. I tried to recreate it in a rectangle by using the option in the menu object (1 row, 50 columns) gradient mesh and I'm trying with the fusion in object mode, but not lucky yet. Can someone help to put me on the right track to make the texture:

    http://images.clipartof.com/sweet-corn-on-the-cob-with-husk-royalty-free-vegetable-stock-photo-by-kennygadams-4501068853.jpg

    http://image.shutterstock.com/display_pic_with_logo/660550/660550,1298544740,8/stock-photo-ripe-corn-vector-illustration-on-white-background-71847955.jpg

    http://static5.depositphotos.com/1012047/533/v/950/depositphotos_5336961-Corn-oil.-Stylized-drop-of-oil-and-corn-cob..jpg

    I've been slowly making progress with gradient for kernels mesh, but I can't seem to recreate the look of the ball at all.

    Tank,

    You have published three images stylistically very different. The first is photographic and call probably (but not necessarily) for graduates of mesh. The other two are graphical treatments (and frankly, they're both rather flat; lack of depth).

    Illustration style extends the range of cartoonish in sketchy photo-realism and all the rest. The problem is you didn't show your own attempt so that anyone can have an idea of what you're trying to achieve the stylistic point of view.

    I just need to put in place so that the final step does not appear the whole box. The problem now is trying to make the style of the good brush to reproduce the effect...

    You seem to think you have to build a kind of linear construction and then find a way to reshape the shape of each part of the leaf. Yes, you pouvez approach it this way, but Illustrator users has often tend to be what aunt Molly would call "too clever by half."

    Not everything must be something semi intelligent auto or complex and tedious consruct involving brushes, envelopes, masks, etc, etc. Much can be accomplished by thinking that he just thanks to measure you draw directly economic paths and constructions, which take no more time (often less) and result in very tidy, simple files. Again, a lot depends on what you are trying to achieve the stylistic point of view. But here's an example that only took a few minutes to draw:

    If the above consists of:

    Three roads closed, 8 points each, with ordinary linear degrees

    Three mixtures of open path with three anchor points for each key path

    Six paths closed for shadows / highlights, with 19 points in total

    Mixtures being directly from the paths drawn comic forms, the spacing of the veins 'automatically' and intuitively follows the width from point of view of the worksheet.

    Rather than to build a boilerplate brush, colouring and the weight of each of the three main paths of the vein mixtures can be set individually at any time, simply directly by selecting the key path.

    JET

  • Help with the session variable PHP CS5.5 - Please

    Hi all

    I am needing a little help with the help of a session variable, and I hope someone can point me in the right direction.

    I created a PHP page that uses the Dreamweaver 'User authentication' feature and the basics of this works very well, to direct a user to the correct page depending on whether they are or are not a valid user. I want to customize the page 'user valid' with people, user name entered in the authentication of the user table... a seemingly simple task using a session variable, but I just seem not to be able to make it work!

    The generated code for the AU on page 1 is the following:

    <? PHP

    Validate request to connect to this site.

    If (! isset {})

    session_start();

    }

    $loginFormAction = $_SERVER ['PHP_SELF'];

    If (isset($_GET['accesscheck'])) {}

    $_SESSION ['PrevUrl'] = $_GET ['accesscheck"];

    }

    If (isset($_POST['txtfirst_name'])) {}

    $loginUsername = $_POST ['txtfirst_name'];

    $password = $_POST ['txtsurname'];

    $MM_fldUserAuthorization = "";

    $MM_redirectLoginSuccess = "member_update.php";

    $MM_redirectLoginFailed = 'login.php ';

    $MM_redirecttoReferrer = false;

    @mysql_select_db ($database_panto, $panto);

    $LoginRS__query = sprintf ("SELECT firstname, name OF web_access WHERE firstname = %s AND family name = %s",

    GetSQLValueString ($loginUsername, "text"), GetSQLValueString ($password, "text"));

    $LoginRS = mysql_query ($LoginRS__query, $panto) or die (mysql_error ());

    $loginFoundUser = mysql_num_rows ($LoginRS);

    If {($loginFoundUser)

    $loginStrGroup = "";

    If (via PHP_VERSION > = 5.1) {session_regenerate_id (true) ;} else {session_regenerate_id() ;}

    Declare two session variables and assign them

    $_SESSION ['MM_Username'] = $loginUsername;

    $_SESSION ["MM_UserGroup"] = $loginStrGroup;

    If (isset($_SESSION['PrevUrl']) & & false) {}

    $MM_redirectLoginSuccess = $_SESSION ["PrevUrl"];

    }

    Header ("Location:".) $MM_redirectLoginSuccess);

    }

    else {}

    Header ("Location:".) $MM_redirectLoginFailed);

    }

    }

    ? >

    First of all, the text highlighted in red above seems to be setting the session variable that I need. Is this correct?

    If so, what is the code that I need to put on page 2 to use this session variable? or

    I have to do something else on the page 1 to correctly assign the session variable?

    Would be very grateful for your expertise

    Mark

    It seems that you put the columns incorrectly in the user authentication server behavior. This is the SQL query that checks the credentials of the user:

    $LoginRS__query = sprintf ("SELECT firstname, name OF web_access WHERE firstname = %s AND family name = %s",

    GetSQLValueString ($loginUsername, "text"), GetSQLValueString ($password, "text"));

    You are looking for first name and last name, while you should look for the user name and password of the user.

    $_SESSION ['MM_Username"] is a session variable that stores the login name of the user. To use it in a page, all that is needed is the page start with session_start(). You can then echo the value to display.

    If you want to display the person's true name, you must create a recordset in the second page, use of $_SESSION ['MM_Username'] to search for the first name and the patronymic. Alternatively, you can change the code like this (I copied only part of it):

    $LoginRS__query = sprintf ("SELECT firstname, surname OF web_access WHERE firstname = %s AND password is %s",

    GetSQLValueString ($loginUsername, "text"), GetSQLValueString ($password, "text"));

    $LoginRS = mysql_query ($LoginRS__query, $panto) or die (mysql_error ());

    $loginFoundUser = mysql_num_rows ($LoginRS);

    If {($loginFoundUser)

    $loginStrGroup = "";

    $row = mysql_fetch_assoc ($LoginRS);

    $_SESSION ['full_name'] = $row ["FirstName"]. ' ' . $row ['name'];

    If (via PHP_VERSION > = 5.1) {session_regenerate_id (true) ;} else {session_regenerate_id() ;}

    Declare two session variables and assign them

    $_SESSION ['MM_Username"] = $loginUsername;

    $_SESSION ["MM_UserGroup"] = $loginStrGroup;

    You can then use $_SESSION ['full_name'] in a page which begins with session_start().

  • Help with check boxes and actions

    Hello

    I just downloaded a trial version of LiveCycle Designer ES2 to see if this program works for the company that I work for. I need to create order forms for our products that our customers can fill out online and then send an e-mail to our sales department.

    I have imported our current order form to LiveCycle as a work of art and have inserted check boxes on the form. I want the form to automatically add the price of the option they checked off the retail price of total at the bottom of the form. Do you have any suggestions for me?

    Thank you!

    Stefan

    Hello Stefan,

    LC Designer is a very powerful application. While you can drag and drop objects on the form, for things really move you need to put a script in objects. This allows to control the way in which the form will be according to the users actions.

    To begin with there is help. If you have a look at the Action Builder in the Tools menu, you can select an object, then use the plain instructions accumulates the desired interaction. When you click OK, LC Designer will insert the necessary script.

    Therefore, there may be a steep learning curve, so it depends on how comfortable you are to roll up your sleeves and do some scripts.

    First, you must configure your workspace. This tends to be a personal preference, but here's a basic layout.

    It is a bit small, because of the scale, but you get the idea. At any time, you should be able to see the page, the hierarchy and the script editor. The object library and the range of the object and other palette must be close to hand as well.

    I am NOT inclined to import the form existing as work. This can limit the built-in options in LC Designer later. You can save your form existing in JPEG format and then in a new form to use the image object (value size full page) to display the image of the existing form.

    [ALTERNATIVE: you can also add fields to a PDF in Acrobat].

    Regarding scripting, the following JavaScript code should work in the click event of the checkbox (on the ground that the other field is named totalPrice).

    If (this.rawValue == 1)

    {

    totalPrice.rawValue = totalPrice.rawValue + 10;

    }

    on the other

    {

    totalPrice.rawValue = totalPrice.rawValue - 10;

    }

    This should take into account if the user changes of opinion and unticks the box.

    One thing to keep in mind about forms developed in the LC Designer, it is only the functions that will be available in the form (such as submit by e-mail in PDF format) will depend on whether the user has Acrobat or Reader, and also on whether the form has been active player (and how it has been activated). There is more information here: http://assure.ly/gYyYc2.

    I highly recommend JP Terry on LC Designer which is excellent - book "create dynamic with Adobe LiveCycle Designer Forms. It starts at the beginning and clearly sets out the key learning points. In the end, there are a few good examples that you can copy anywhere in your forms.

    We have solutions and blog posts on our website http://www.assuredynamics.com.

    There are also a range of online resources. You can find these resources useful:

    http://www.Adobe.com/go/learn_lc_scriptingBasics

    http://www.Adobe.com/go/learn_lc_scriptingReference

    http://www.Adobe.com/go/learn_lc_formCalc

    http://www.Adobe.com/devnet/LiveCycle/articles/Adobe_XML_Form_Object_M odel_Refer ence.pdf

    http://www.Adobe.com/devnet/Acrobat/PDFs/lc_migrating_acrobat_xmlform. PDF

    And a very convenient resource (and even if it's for version 6, it is still very good because of the way it is presented):http://partners.adobe.com/public/developer/en/tips/CalcScripts.pdf

    The HelpFile in the LC designer can also help with the syntax and LC designer itself comes with some great models and examples.

    Finally, discover the network of the developer on http://www.adobe.com/devnet/livecycle/

    A book that does not deal with the scripts at all, but is very good on the formatting is also ""does this work " by Caroline Jarrett and Gerry Gaffney."

    The Adobe "PDF forms Bible" is OK, but focuses mainly on AcroForms.

    WindJack Solutions have a service on subscription for the scripts and solutions tohttp://www.pdfscripting.com. There a lot of AcroForm script which can be modified according to LC designer and a growing library of LC Designer solutions.

    I hope this helps,

    Niall

  • Need help with Macbook

    Hello, I recently bought a Macbook from a friend and since I got the Mac it's very very slow at doing things like browsing the internet using Safari, it takes forever to load, web pages and all sorts of things that I'd like to get help with this problem maybe a few recommendations and also on how to speed up... If you need to care about Macbook, I can give these thx.

    To sell or transfer ownership of a Mac, even to a member of your family, you must follow these instructions. So far, you will have continuous problems.

    Refer to what to do before you sell or give away your Mac

    1. If you have enabled FileVault, disable it in system preferences > Security and privacy.
    2. "Remove" your iTunes account. Ditto for Audible if you have one.
    3. System Preferences > iCloud > deselect 'Back to My Mac' and 'find my Mac '.
    4. Disconnect from iCloud. Select "Delete from Mac" when it appears.

    Next: delete all of your personal information by erasing the internal storage of the Mac completely.

    1. If your Mac comes with a grey system installation DVD, start up your Mac with this disc in the optical drive, all holding the key c to boot from it instead of its internal volume, which must be erased before selling.
      • Apple stopped Macs shipment requiring these discs in August 2011.
    2. If your Mac does not comes with disks, boot OS X Internet Recovery:
      • using three fingers press on and hold the following keys: (command), optionand R.
      • With a fourth finger, press the power button to turn on the Mac.
      • Keep the other three fingers here where they are until you see the icon "spinning globe.
      • This method force the Mac to download BONES initially installed from Apple servers, that won't require not an Apple ID install.
    3. Remove any password Open Firmware, if you created a: select utility password firmware in the Utilities menu and remove.
    4. Select disk utility from the utilities menu.
    5. Delete all partitions that can be created.
    6. Select the icon for the hard drive to the Mac, and then select the tab "delete".
    7. Click on the 'Security Options' button and erase the drive.
      • More "robustly" you erase the disc, the longer it will.
      • The fastest method is sufficient, since all but the techniques more expensive and equipment will be able to recover data deleted safely.
    8. When he finishes, quit disk utility.
    9. In the utility menu, select Install Mac OS X .
      • An identifier Apple won't be necessary. If a prompt for an Apple ID, return to step 5.
      • Do not create user accounts.
    10. When he finishes, shut down the computer.
    11. If you want to install the bundled apps that have been included with your Mac, restart using your DVD Applications if it was included and install the bundled apps.
      • Apps, delivered with the new Macs sold without disks cannot be transferred. His new owner must buy them from the Mac App Store with its own Apple ID.

    If the Mac is sold to someone outside the family, consider the following additional information:

    1. System provided with your Mac installation DVD must stay with him forever and be included in the sale.
    2. Consider including your AppleCare certificate if you bought it, documents printed, same box if you have.
      • AppleCare remains with the equipment and can be transferred.
    3. Run an invoice indicating the serial number of the Mac.
    4. Once is no longer in your possession, remove the Mac of your devices in my support profile.
  • Help with horror? El Capitan Mac

    Hello, I have major issues with horror.  It interferes with almost all of the process: navigation (Firefox or Chrome), MS Office, Adobe Pro, Finder...  I ran a report EtreCheck (see below) and the major problem seems to be Firefox.  I was wondering if someone could take a look at this and make other suggestions.

    Thank you!

    EtreCheck version: 3.0 (300)

    Report generated 2016-08-12 12:44:23

    Download https://etrecheck.com EtreCheck

    Time 06:53

    Performance: average

    Click the [Support] links to help with non-Apple products.

    Click the [details] links for more information on this line.

    Problem: Beachballing

    Description:

    Beach ball with Firefox, Chrome, MS Office, Adobe Pro, Finder

    Hardware information: ⓘ

    MacBook Pro Intel Core i5, Intel Core i7, 13 "(mid-2012)"

    [Technical details] - [User Guide] - [warranty & Service]

    MacBook Pro - model: MacBookPro9, 2

    1 2.5 GHz Intel Core i5 CPU: 2 strands

    8 GB of RAM expandable - [Instructions]

    BANK 0/DIMM0

    OK 4 GB DDR3 1600 MHz

    BANK 1/DIMM0

    OK 4 GB DDR3 1600 MHz

    Bluetooth: Good - transfer/Airdrop2 taken in charge

    Wireless: en1: 802.11 a/b/g/n

    Battery: Health = Normal - Cycle count = 38

    Video information: ⓘ

    Graphics Intel HD 4000

    LED Cinema Display 1920 x 1200

    System software: ⓘ

    OS X El Capitan 10.11.6 15G (31) - since the start time: about 3 days

    Disk information: ⓘ

    HTS545050A7E362 disk HARD APPLE disk0: (500,11 GB) (rotation)

    EFI (disk0s1) < not mounted >: 210 MB

    Macintosh HD (disk0s2) /: 499,25 (Go 150,27 free)

    Recovery HD (disk0s3) < not mounted > [recovery]: 650 MB

    MATSHITADVD-R UJ - 8À8)

    USB information: ⓘ

    RD Slim BUP Seagate 2 TB

    EFI (disk1s1) < not mounted >: 210 MB

    SEAGATE External 2 to (disk1s2) Volumes/external Seagate 2 Tb: 2.00 TB free 1.20

    Apple Inc. Apple LED Cinema Display

    ISight Apple Display Inc.

    Apple Inc. Apple's USB audio device

    Apple Inc. FaceTime HD camera (built-in)

    Apple Inc. Apple keyboard / Trackpad

    Computer, Inc. Apple IR receiver.

    Apple Inc. BRCM20702 hub.

    Apple Inc. Bluetooth USB host controller.

    Hub keyboard Apple, Inc.

    Logitech USB-PS/2 optical mouse

    Apple Inc. Apple Keyboard

    Information crush: ⓘ

    Apple Inc. Thunderbolt_bus.

    Goalkeeper: ⓘ

    Mac App Store and identified developers

    Kernel Extensions: ⓘ

    / Library/Extensions

    [loading] com.sophos.kext.sav (9.4.52 - SDK 10.9 - 2016-08-05) [Support]

    [loading] com.sophos.nke.swi (9.4.53 - SDK 10.9 - 2016-08-05) [Support]

    Launch system officers: ⓘ

    [loaded] 8 tasks Apple

    [loading] 152 tasks Apple

    [operation] 65 tasks Apple

    [killed] 13 tasks Apple

    13 killed process lack of RAM

    Demons of launch system: ⓘ

    [loaded] 46 tasks Apple

    [loading] 150 tasks Apple

    [operation] 89 tasks Apple

    [killed] 6 tasks Apple

    6 killed process lack of RAM

    Launch officers: ⓘ

    [no charge] com.adobe.AAM.Updater - 1.0.plist (2016-05-02) [Support]

    [operation] com.brother.LOGINserver.plist (2016-03-10)

    [loading] com.gog.galaxy.commservice.plist (2016-04-24) [Support]

    [failure] com.maintain.PurgeInactiveMemory.plist (2016-06-09) [Support]

    com.maintain.Restart.plist [no charge] (2016-06-09) [Support]

    com.maintain.ShutDown.plist [no charge] (2016-06-09) [Support]

    [operation] com.maintain.SystemEvents.plist (2016-06-09)

    [operation] com.sophos.uiserver.plist (2016-05-12)

    Launch of the demons: ⓘ

    [performance]    BESAgentDaemon.plist (2016-05-16)

    [loading] com.adobe.fpsaud.plist (2016-06-28)

    [loading] com.gog.galaxy.clientservice.plist (2016-04-24) [Support]

    com.maintain.HideSpotlightMenuBarIcon.plist [no charge] (2016-06-09) [Support]

    [loading] com.microsoft.office.licensing.helper.plist (2010-08-25)

    [operation] com.prey.agent.plist (2016-05-17)

    [operation] com.sophos.common.servicemanager.plist (2016-05-12)

    Launch User Agents: ⓘ

    [loading] com.adobe.ARM. [...]. plist (2016-04-22)

    [loading] com.bittorrent.uTorrent.plist (2016-04-19) [Support]

    [loading] com.google.keystone.agent.plist (2016-07-11)

    [operation] com.spotify.webhelper.plist (2016-08-10) [Support]

    [loading] com.valvesoftware.steamclean.plist (2016-07-14)

    org.Hola.VPN.plist [no charge] (2016-08-01) [Support]

    User login items: ⓘ

    iTunesHelper Application (/ Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)

    ClipMenu application (/ Applications/ClipMenu.app)

    Agent application of file transfer Android (~/Library/Application Support/Google/Android File transfer/Android File Transfer Agent.app)

    MightyText application (/ Applications/MightyText.app)

    Internet Plug-ins: ⓘ

    AdobeAAMDetect: AdobeAAMDetect 1.0.0.0 - SDK 10.6 (2016-05-02) [Support]

    FlashPlayer - 10.6: 22.0.0.209 - SDK 10.9 (2016-07-13) [Support]

    QuickTime Plugin: 7.7.3 (2016-07-29)

    AdobePDFViewerNPAPI: 11.0.15 - SDK 10.6 (2016-05-02) [Support]

    AdobePDFViewer: 11.0.15 - SDK 10.6 (2016-05-02) [Support]

    Flash Player: 22.0.0.209 - SDK 10.9 (2016-07-13) [Support]

    Default browser: 601 - SDK 10.11 (2016-07-29)

    SharePointBrowserPlugin: 14.6.6 - SDK 10.6 (2016-07-28) [Support]

    Silverlight: 5.1.50428.0 - SDK 10.6 (2016-07-29) [Support]

    The internet user Plug-ins: ⓘ

    Picasa: 1.0 - SDK 10.6 (2015-10-13) [Support]

    3rd party preference panes: ⓘ

    Flash Player (2016-06-28) [Support]

    Time Machine: ⓘ

    Automatic backup: YES

    Volumes to back up:

    Macintosh HD: Disc size: 499,25 GB disc used: 348,98 GB

    Destinations:

    TB external Seagate 2 [Local]

    Total size: 2.00 TB

    Total number of backups: 29

    An older backup: 15/05/16, 06:27

    Last backup: 12/08/16, 11:45

    Size of backup drive: Excellent

    Size of backup 2.00 TB > (disk size 499,25 GB X 3)

    Top of page process CPU: ⓘ

    35% firefox

    11% kernel_task

    7% mdworker (13)

    4% WindowServer

    2% BESAgent

    Top of the process of memory: ⓘ

    GB firefox 3.08

    Kernel_task 848 MB

    180 MB mdworker (13)

    90 MB Microsoft Word

    Finder 82 MB

    Information about virtual memory: ⓘ

    24 MB of free RAM

    7.98 GB RAM (1.31 GB being cached) used

    3.01 GB used Swap

    Diagnostic information: ⓘ

    August 12, 2016, 12:24:55 PM/Library/Logs/DiagnosticReports/SophosWebIntelligence_2016-08-12-122455_ [redact ed] .crash

    / Library/Sophos Anti-Virus/SophosWebIntelligence.bundle/Contents/MacOS/SophosWebIntelligence

    August 12, 2016, 12:00:06 PM/Library/Logs/DiagnosticReports/SophosWebIntelligence_2016-08-12-120006_ [redact ed] .crash

    August 11, 2016, 01:40:07 PM/Library/Logs/DiagnosticReports/SophosWebIntelligence_2016-08-11-134007_ [redact ed] .crash

    August 11, 2016, 10:17:21 /Library/Logs/DiagnosticReports/tcosrj_2016-08-11-101721_[redacted].hang

    / Volumes/VOLUME / * / Romeo & Juliet.app/Contents/MacOS/tcosrj

    August 11, 2016, 06:33:30 /Library/Logs/DiagnosticReports/_2016-08-11-063330_[redacted].crash

    ???

    August 10, 2016, 13:44:38 /Library/Logs/DiagnosticReports/firefox_2016-08-10-134438_[redacted].cpu_resour ce.diag [details]

    /Applications/Firefox.app/Contents/MacOS/Firefox

    August 10, 2016, 06:43:13 AM/Library/Logs/DiagnosticReports/SophosWebIntelligence_2016-08-10-064313_ [redact ed] .crash

    9 August 2016, 15:17:53 self-test - spent

    First uninstall Sophos. Anti virus apps are not necessary and may cause problems. Remove the bittorrent as well. It can be a source od malware.

  • How to get help with Add ons and extensions that stop working

    I have saved passwords and it has stopped working. It's so hard to get help with Moxilla

    rosemarybales said

    I still don't know why the extension button passwords saved with the key icon has stopped working.

    This button displays the saved passwords in Firefox's built-in password manager, is no separate passwords that record you in Dashlane. Can you save passwords in both places? (Well, I guess you do.)

    I have a guess on why it has stopped working. Firefox 40 has some changes to how extensions can work with the user interface, so quite a few extensions that have been more than one year must be updated for Firefox 40. It has been updated on January 10, 2012.

    Anyway, the way of 'long' to display the passwords saved in Firefox is through the Options page, the Security Panel, the saved passwords button.

  • What is the correct way to ask for help with the forum, rather than product, questions?

    I can't find the right way to ask a question about the forums themselves.

    PAGulley said

    I can't find the right part of the forum to ask questions about the forum itself and its features. I wonder what the right place and the way is to get help with the forum system itself. I can find the place to ask questions about specific Mozilla products very well.

    Look up where it says contributor tools and select Contributor Forums. Make sure that you scroll to the top or you'll get a bar with different links instead,

    The forum is https://support.mozilla.org/forums where you question would be better in the SUMO community discussions.

  • help with a lazy slow macbook pro

    Hi, I was wondering if someone with a good understanding of the EtreCheck might be able to help me with my old powerbook, rusty.

    Here is the report copied and pasted from the EtreCheck diagnosis that I just ran (lots of red type):

    Thank you!

    EtreCheck version: 2.9.13 (267)

    Report generated 2016-07-30 19:29

    Download EtreCheck from https://etrecheck.com

    Time 09:23

    Performance: Below average

    Click the [Support] links to help with non-Apple products.

    Click [details] for more information on this line.

    Verify the signatures of Apple: enabled

    Problem: Beachballing

    Hardware Information:

    MacBook Pro (15-inch, mid 2009)

    [Data sheet] - [User Guide] - [warranty & Service]

    MacBook Pro - model: MacBookPro5, 3

    1 3.06 GHz Intel Core 2 Duo CPU: 2 strands

    8 GB of RAM expandable - [Instructions]

    BANK 0/DIMM0

    OK 4 GB DDR3 1067 MHz

    BANK 1/DIMM0

    OK 4 GB DDR3 1067 MHz

    Bluetooth: Old - transfer/Airdrop2 not supported

    Wireless: en1: 802.11 a/b/g/n

    Battery: Health = Normal - Cycle count = 342

    Video information:

    NVIDIA GeForce 9400M - VRAM: 256 MB

    Color LCD 1440 x 900

    Cinema HD Display 1920 x 1200

    NVIDIA GeForce 9600M GT - VRAM: 512 MB

    Software:

    OS X El Capitan 10.11.6 15G (31) - since the start time: about 3 days

    Disc information:

    ST9500420ASG disk0: (500,11 GB) (rotation)

    EFI (disk0s1) < not mounted >: 210 MB

    ShiftySeven II (disk0s2) /: 499,25 GB (56,75 GB free)

    Recovery HD (disk0s3) < not mounted > [recovery]: 650 MB

    MATSHITADVD-R UJ-868)

    USB information:

    Built-in ISight from Apple Inc..

    Hub keyboard Apple, Inc.

    Apple, Inc. Apple Keyboard

    Card reader Apple

    Apple Inc. Apple keyboard / Trackpad

    Computer, Inc. Apple IR receiver.

    Apple Inc. BRCM2046 hub.

    Apple Inc. Bluetooth USB host controller.

    Guardian:

    Mac App Store and identified developers

    Kernel extensions:

    /Applications/AirParrot.app

    com.squirrels.airparrot.framebuffer [no charge] (1.4 - SDK 10.8 - 2014-04-19) [Support]

    / Applications/Caplio Mounter.app

    [no charge] jp.co.ricoh.kext.caplio - 10.3 (4.0 - 2008-11-21) [Support]

    [no charge] jp.co.ricoh.kext.caplio - 10.4 (4.0 - 2008-11-21) [Support]

    DiskWarrior.app

    com.alsoft.Preview [no charge] (4.1 - 2007-12-31) [Support]

    / Service.app incompatible software/Parallels

    com.parallels.kext.prl_hid_hook [no charge] (4.0 3844.408728 - 2012-12-27) [Support]

    com.parallels.kext.prl_hypervisor [no charge] (4.0 3844.408728 - 2012-12-27) [Support]

    com.parallels.kext.prl_netbridge [no charge] (4.0 3844.408728 - 2012-12-27) [Support]

    com.parallels.kext.prl_usb_connect [no charge] (4.0 3844.408728 - 2012-12-27) [Support]

    com.parallels.kext.prl_vnic [no charge] (4.0 3844.408728 - 2012-12-27) [Support]

    / Library/Application Support/Avast/components/fileshield/not signed

    [loading] com.avast.AvastFileShield (3.0.0 - SDK 10.10 - 2016-07-21) [Support]

    / Library/Application Support/Avast/components/proxy/not signed

    [loading] com.avast.PacketForwarder (2.1 - SDK 10.10 - 2016-07-21) [Support]

    / Library/Extensions

    [loading] com.squirrels.driver.AirParrotSpeakers (1.8 - SDK 10.8 - 2016-07-26) [Support]

    [loading] net.telestream.driver.TelestreamAudio (1.1.1 - SDK 10.8 - 2016-07-26) [Support]

    / System/Library/Extensions

    [no charge] com.beceem.BeceemAppleWiMAXAdapter (5.2.56d16 - 2016-07-26) [Support]

    com.devguru.driver.DIFMCDFree [no charge] (1.1.0 - 2016-07-26) [Support]

    com.devguru.driver.DIFMSerial [no charge] (1.1.0 - 2016-07-26) [Support]

    com.fklt.driver [no charge] (1.8.0 - 2016-07-26) [Support]

    [no charge] com.novatelwireless.driver.3G (v2.2.8 (3)-2016-07-26) [Support]

    com.novatelwireless.driver.DisableAutoInstall [no charge] (1.2 - 2016-07-26) [Support]

    [no charge] com.sierrawireless.driver.SierraDevSupport (2.0.6.0 - 2016-07-26) [Support]

    [no charge] com.sierrawireless.driver.SierraFSCSupport (2.0.6.0 - 2016-07-26) [Support]

    /System/Library/Extensions/NovatelWireless3G.kext/contents/plugins

    [no charge] com.novatelwireless.driver.3GData (v2.2.8 (3)-2011-11-05) [Support]

    Startup items:

    ParallelsDesktopTransporter: Path: / Library/StartupItems/ParallelsDesktopTransporter

    Startup items are obsolete in OS X Yosemite

    Launch system officers:

    [operation] com.apple.Finder.plist (2016-02-19) -invalid signature!

    [loading] com.apple.FollowUpUI.plist (2016-02-11) -invalid signature!

    [loading] com.apple.ScreenReaderUIServer.plist (2016-02-16) -invalid signature!

    [loading] com.apple.powerchime.plist (2016-02-22) -invalid signature!

    [loading] com.apple.quicklook.32bit.plist (2016-02-04) -invalid signature!

    [operation] com.apple.quicklook.plist (2016-02-04) -invalid signature!

    [loading] com.apple.quicklook.ui.helper.plist (2016-02-04) -invalid signature!

    [loaded] 9 tasks Apple

    [loading] 149 tasks Apple

    [operation] 64 tasks Apple

    [killed] 16 tasks Apple

    16 killed processes lack of RAM

    Launch system demons:

    [loaded] 45 tasks Apple

    [loading] 153 tasks Apple

    [operation] 78 tasks Apple

    [killed] 14 tasks Apple

    14 killed process lack of RAM

    Launch officers:

    [no charge] com.adobe.AAM.Updater - 1.0.plist (2016-06-14) [Support]

    [failure] com.adobe.ARMDCHelper.cc24aef4a1b90ed56a... plist (2016-07-13) [Support]

    [failure] com.adobe.AdobeCreativeCloud.plist (2016-04-27) [Support]

    [loading] com.adobe.CS5ServiceManager.plist (2010-06-17) [Support]

    [operation] com.avast.secureline.update - agent.plist (2016-06-29) [Support]

    [loading] com.avast.secureline.userinit.plist (2016-06-29) [Support]

    [operation] com.avast.update - agent.plist (2016-07-22) [Support]

    [loading] com.avast.userinit.plist (2016-07-22) [Support]

    [operation] com.brother.LOGINserver.plist (2013-10-06) [Support]

    [no charge] com.oracle.java.Java - Updater.plist [Support]

    com.TeamViewer.TeamViewer.plist [no charge] (2016-02-14) [Support]

    com.TeamViewer.teamviewer_desktop.plist [no charge] (2016-02-14) [Support]

    Launch demons:

    [loading] com.adobe.ARMDC.Communicator.plist (2016-07-13) [Support]

    [loading] com.adobe.ARMDC.SMJobBlessHelper.plist (2016-07-13) [Support]

    [loading] com.adobe.SwitchBoard.plist (2011-12-14) [Support]

    [loading] com.adobe.agsservice.plist (2015-11-02) [Support]

    [failure] com.adobe.fpsaud.plist (2016-05-09) [Support]

    com.adobe.versioncueCS3.plist [loading] (2008-06-22) [Support]

    [loading] com.avast.init.plist (2016-07-22) [Support]

    [loading] com.avast.secureline.init.plist (2016-06-29) [Support]

    [loading] com.avast.secureline.uninstall.plist (2016-06-29) [Support]

    [loading] com.avast.secureline.update.plist (2016-06-29) [Support]

    [loading] com.avast.uninstall.plist (2016-07-22) [Support]

    [loading] com.avast.update.plist (2016-07-22) [Support]

    [loading] com.microsoft.office.licensing.helper.plist (2011-03-10) [Support]

    [loading] com.oracle.JavaInstallHelper.plist (2016-04-21) [Support]

    [no charge] com.oracle.java.Helper - Tool.plist [Support]

    [loading] com.roamingclient.cell.mac.roamingclient.plist (2011-11-05) [Support]

    [loading] com.rogueamoeba.instanton - agent.plist (2016-06-23) [Support]

    [operation] com.sierrawireless.SWoCMon.plist (2010-05-20) [Support]

    com.sierrawireless.SierraReset.plist [no charge] (2010-05-20) [Support]

    [loading] com.teamviewer.Helper.plist (2015-09-29) [Support]

    com.TeamViewer.teamviewer_service.plist [no charge] (2016-02-14) [Support]

    User launch officers:

    [loading] com.adobe.AAM.Updater - 1.0.plist (2010-06-28) [Support]

    [failure] com.adobe.ARM. [...]. plist (2010-06-22) [Support]

    [failure] com.adobe.ARM. [...]. plist (2009-10-26) [Support]

    [failure] com.adobe.ARM. [...]. plist (2011-12-15) [Support]

    [operation] com.amazon.music.plist (2014-10-18) [Support]

    [failure] com.apple.MobileMeSyncClientAgent.plist (2011-06-14) -/System/Library/PrivateFrameworks/DotMacSyncManager.framework/Resources/mobilem esyncclient: Executable not found!

    [failure] com.apple.SafariBookmarksSyncer.plist (2009-09-14) -/Applications/Safari.app/Contents/SafariSyncClient.app/Contents/MacOS/SafariSyn customer: Executable not found!

    [loading] com.avast.home.userinit.plist (2016-07-22) [Support]

    [loading] com.avast.secureline.home.userinit.plist (2016-06-29) [Support]

    [loading] com.google.keystone.agent.plist (2016-07-11) [Support]

    [operation] com.spotify.webhelper.plist (2015-05-30) [Support]

    info.lokiware.attachmenttamer.cleanup.plist [no charge] (2013-01-07) [Support]

    [failure] info.lokiware.attachmenttamer.setupagent.plist (06-01-2013) [Support]

    Items in user login:

    iTunesHelper Application (/ Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)

    Dropbox application (/ Applications/Dropbox.app)

    Application of Google Reader (Google Drive.app/Applications /)

    Hidden AdobeResourceSynchronizer Application (/ Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Helpers/AdobeResourceSynchronizer.app)

    Garmin Express Service application (/ Applications/Garmin Express.app/Contents/Library/LoginItems/Garmin Express Service.app)

    Request for EvernoteHelper (/ Applications/Evernote.app/Contents/Library/LoginItems/EvernoteHelper.app)

    Other applications:

    [ongoing] com.adobe.CCLibrary.166112

    com.apple.BKAgentService [killed]

    com.apple.MailServiceAgent [loading]

    com.Apple.mail.80352 [loading]

    com.avast.account [loading]

    [ongoing] com.avast.daemon

    [ongoing] com.avast.FileShield

    [ongoing] com.avast.helper

    [ongoing] com.avast.proxy

    com.avast.secureline.Burger [loading]

    [ongoing] com.avast.secureline.service

    [ongoing] com.avast.service

    [ongoing] com.brother.utility.NETserver.157792

    [ongoing] com.brother.utility.USBserver.137312

    [ongoing] com.evernote.EvernoteHelper.66912

    [ongoing] com.Garmin.Renu.service.3552

    [ongoing] com.getdropbox.dropbox.134752

    [loading] 421 tasks Apple

    [operation] 184 tasks Apple

    [killed] 33 tasks Apple

    Plug-ins Internet:

    DirectorShockwave: 11.6.6r636 (2012-08-09) [Support]

    Unity Web Player: UnityPlayer version 4.1.3f3 (2013-05-30) [Support]

    Default browser: 601 - SDK 10.11 (2016-07-26)

    Flip4Mac WMV Plugin: 2.3.8.1 (2011-01-13) [Support]

    AdobeAAMDetect: 3.0.0.0 - SDK 10.9 (2016-04-27) [Support]

    FlashPlayer - 10.6: 21.0.0.242 - SDK 10.6 (2016-05-13) [Support]

    AdobePDFViewerNPAPI: 15.017.20050 - SDK 10.11 (2016-07-13) [Support]

    Silverlight: 5.1.50428.0 - SDK 10.6 (2016-07-10) [Support]

    QuickTime Plugin: 7.7.3 (2016-07-26)

    Flash Player: 21.0.0.242 - SDK 10.6 (2016-05-13) obsolete! Update

    iPhotoPhotocast: 7.0 - 10.8 SDK (2013-04-30)

    NP_2020Player_IKEA: 5.0.93.0 - SDK 10.6 (2011-10-03) [Support]

    AdobePDFViewer: 15.017.20050 - SDK 10.11 (2016-07-13) [Support]

    GarminGpsControl: 4.0.2.6 Beta - SDK 10.6 (2012-09-11) [Support]

    SharePointBrowserPlugin: 14.6.6 - SDK 10.6 (2016-07-25) [Support]

    JavaAppletPlugin: 15.0.1 - 10.7 (2016-05-04) check the version of the SDK

    User Plug-ins internet:

    WebEx: 1.0 (2010-04-06) [Support]

    Safari extensions:

    AdBlock - BetaFish, Inc. - https://getadblock.com (2016-07-30)

    DuckDuckGo - DuckDuckGo - http://duckduckgo.com (2015-07-11)

    Save on Pocket - Read It Later, Inc. - http://getpocket.com/ (2015-11-07)

    3rd party preference panes:

    Adobe Version Cue CS3 (2008-06-22) [Support]

    Flash Player (2016-05-09) [Support]

    Flip4Mac WMV (2011-01-13) [Support]

    Growl (2013-12-20) [Support]

    MacFUSE (2008-12-19) [Support]

    Time Machine:

    Skip system files: No.

    Automatic backup: YES

    Volumes to back up:

    ShiftySeven II: Disc size: 499,25 GB disc used: 442,50 GB

    Destinations:

    Toshiba Time Machine [Local]

    Total size: 999,86 GB

    Total number of backups: 40

    An older backup: 23/04/15, 16:45

    Last backup: 25/07/16, 20:34

    Backup disk size: too small

    Backup size GB 999,86 < (disc 442,50 GB X 3)

    Top of page process CPU:

    11% NotificationCenter

    iTunes 11%

    5% WindowServer

    5% coreaudiod

    3% kernel_task

    Top of page process of memory:

    919 MB kernel_task

    688 MB com.apple.WebKit.WebContent (4)

    Mdworker (13) 238 MB

    Safari of 205 MB

    Mds_stores 156 MB

    Virtual memory information:

    131 MB free RAM

    8.12 used GB RAM (4.05 GB being cached)

    176 MB used Swap

    Diagnostic information:

    July 30, 2016, 18:49:37 ~/Library/Logs/DiagnosticReports/Install_2016-07-30-184937_[redacted].crash

    com.adobe.Install - Applications/Utilities/Adobe Creative Cloud / * / Creative Installer.app/Contents/MacOS/Install Cloud

    July 27, 2016, 16:21:32 /Library/Logs/DiagnosticReports/Kernel_2016-07-27-162132_[redacted].panic [details]

    July 27, 2016, 16:18:59 /Library/Logs/DiagnosticReports/Kernel_2016-07-27-161859_[redacted].panic [details]

    Uninstall Avast. It's a worthless scam that don't do anything useful. The only thing it does is a lot more then what it claims, that he you will protect from.

  • Help with this

    Help with this

    Help with what?

Maybe you are looking for