Can anyone improve my VI?

Hi,
I posted a couple of questions yesterday that I want to get the one period out of the toothsaw type signals automatically.
Here is what I came up with; however, I still need to improve on this VI. For example, this vi has technical problem since there were some unexpected signal shape that I did not think about.
I attached the diagram of the signal. My VI is based on the min and max of the signal and due to the false minimum, my vi does not function properly.
If you can help me to solve this problem, I would really appreciate.
Thank you and have a great day!!
Mike.
Attachments:
ScreenShot049.gif ‏2 KB
Final_Automatic_XY_graph.vi ‏269 KB

Repost VI by converting it to 7.0 or lower version so all can see esle it will require 7.1 version only to open.
Ajay
Ajay Shankar

Similar Messages

  • Iptables configuration.. can anyone improve this for me?

    mostly put together using quicktables... problem i am having is weird. In order to use IE/MSN messenger i need to have squid running... but then i can disable squid and it keeps working fine.. very strange.. I would like to run without using squid perferably. Strange thing is Firefox works fine all the time... any hints / suggestions??
    # set a few variables
    echo ""
    echo "  setting global variables"
    echo ""
    export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
    iptables="/usr/sbin/iptables"
    EXT_IP=`/sbin/ifconfig eth0 | grep "inet addr" | cut -d : -f 2 | cut -d " " -f 1`; export EXT_IP
    INT_IP=`/sbin/ifconfig eth1 | grep "inet addr" | cut -d : -f 2 | cut -d " " -f 1`; export INT_IP
    # adjust /proc
    echo "  applying general security settings to /proc filesystem"
    echo ""
    if [ -e /proc/sys/net/ipv4/tcp_syncookies ]; then echo 1 > /proc/sys/net/ipv4/tcp_syncookies; fi
    if [ -e /proc/sys/net/ipv4/conf/all/rp_filter ]; then echo 1 > /proc/sys/net/ipv4/conf/all/rp_filter; fi
    if [ -e /proc/sys/net/ipv4/ip_forward ]; then echo 1 > /proc/sys/net/ipv4/ip_forward; fi
    # load some modules
    if [ -e /lib/modules/`uname -r`/kernel/net/ipv4/netfilter/ip_nat_irc.o ]; then modprobe ip_nat_irc; fi
    if [ -e /lib/modules/`uname -r`/kernel/net/ipv4/netfilter/ip_conntrack_irc.o ]; then modprobe ip_conntrack_irc; fi
    if [ -e /lib/modules/`uname -r`/kernel/net/ipv4/netfilter/ip_conntrack_ftp.o ]; then modprobe ip_conntrack_ftp; fi
    if [ -e /lib/modules/`uname -r`/kernel/net/ipv4/netfilter/ip_nat_ftp.o ]; then modprobe ip_nat_ftp; fi
    # flush any existing chains and set default policies
    $iptables -F INPUT
    $iptables -F OUTPUT
    $iptables -P INPUT DROP
    $iptables -P OUTPUT ACCEPT
    # setup nat
    echo "  applying nat rules"
    echo ""
    $iptables -F FORWARD
    $iptables -F -t nat
    $iptables -P FORWARD DROP
    $iptables -A FORWARD -i eth1 -j ACCEPT
    $iptables -A INPUT -i eth1 -j ACCEPT
    $iptables -A OUTPUT -o eth1 -j ACCEPT
    $iptables -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT
    $iptables -t nat -A POSTROUTING -s 192.168.1.0/24 -o eth0 -j SNAT --to-source $EXT_IP
    # allow all packets on the loopback interface
    $iptables -A INPUT -i lo -j ACCEPT
    $iptables -A OUTPUT -o lo -j ACCEPT
    # allow established and related packets back in
    $iptables -A INPUT -i eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT
    # icmp
    echo "  applying icmp rules"
    echo ""
    $iptables -A OUTPUT -p icmp -m state --state NEW -j ACCEPT
    $iptables -A INPUT -p icmp -m state --state ESTABLISHED,RELATED -j ACCEPT
    $iptables -A INPUT -p icmp --icmp-type echo-request -i eth0 -j DROP
    # apply icmp type match blocking
    echo "  applying icmp type match blocking"
    echo ""
    $iptables -I INPUT -p icmp --icmp-type redirect -j DROP
    $iptables -I INPUT -p icmp --icmp-type router-advertisement -j DROP
    $iptables -I INPUT -p icmp --icmp-type router-solicitation -j DROP
    $iptables -I INPUT -p icmp --icmp-type address-mask-request -j DROP
    $iptables -I INPUT -p icmp --icmp-type address-mask-reply -j DROP
    # open and forward ports to the internal machine(s)
    echo "  applying port forwarding rules"
    echo ""
    $iptables -t nat -A PREROUTING -i eth0 -p tcp -d $EXT_IP --dport 80 -j DNAT --to-destination 192.168.1.120:80
    $iptables -t nat -A PREROUTING -i eth0 -p tcp -d $EXT_IP --dport 22 -j DNAT --to-destination 192.168.1.120:22
    $iptables -t nat -A PREROUTING -i eth0 -p tcp -d $EXT_IP --dport 8080 -j DNAT --to-destination 192.168.1.120:22
    $iptables -t nat -A PREROUTING -i eth0 -p udp -d $EXT_IP --dport 53 -j DNAT --to-destination 192.168.1.120:53
    $iptables -A FORWARD -i eth0 -p tcp --dport 80 -j ACCEPT
    $iptables -A FORWARD -i eth0 -p tcp --dport 22 -j ACCEPT
    $iptables -A FORWARD -i eth0 -p udp --dport 53 -j ACCEPT
    echo "  applying bittorrent forwarding rules"
    echo ""
    ## atlantis bittorrent ###           
    $iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 6881:6999 -j DNAT --to-destination 192.168.1.150
    $iptables -A FORWARD -p tcp -d 192.168.1.150 --dport 6881:6999 -j ACCEPT
    $iptables -t nat -A PREROUTING -i eth0 -p udp --dport 6881 -j DNAT --to-destination 192.168.1.150
    $iptables -A FORWARD -p udp -d 192.168.1.150 --dport 6881 -j ACCEPT
    echo "  applying World of Warcraft rules"
    echo ""
    ## atlantis blizzard ##
    $iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 3724 -j DNAT --to-destination 192.168.1.150:3724               
    $iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 6112 -j DNAT --to-destination 192.168.1.150:6112               
    $iptables -A FORWARD -p tcp -d 192.168.1.150 --dport 3724 -j ACCEPT
    $iptables -A FORWARD -p tcp -d 192.168.1.150 --dport 6112 -j ACCEPT
    # drop all other packets
    echo "  applying default drop policies"
    echo ""
    $iptables -A INPUT -i eth0 -p tcp --dport 0:65535 -j DROP
    $iptables -A INPUT -i eth0 -p udp --dport 0:65535 -j DROP
    echo "### quicktables is loaded ###"
    echo ""
    also, if anyone can provide insite.. I would like to be able to log iptables to syslog-ng.. any suggestions on this? right now i cant figure out where its logging... if it is..?!
    Thanks

    phrakture wrote:
    cactus wrote:I'm at work right now, so I can't really devote a lot of time to this...i will check back when i get home.
    in the meantime, here is my iptables firewall setup. Maybe you can divine some useful knowledge out of it.
    iptables.txt
    Woah... is your box directly wired to the internet?  I just rely on my router to do all this stuff... now, if it was an OpenWrt router, then I'd have something like this...
    well this is a secured linux box doing the router work.. so yes it is open to the world.

  • Need Help, i have an Ipad2 after 6.3.1 update, i have no cameras, or e-mail, I already reset, multiple times, but no improvment, can anyone help?

    Need Help, i have an Ipad2 after 6.3.1 update, i have no cameras, or e-mail, I already reset, multiple times, but no improvment, can anyone help?

    When you say reset, do you mean a reboot by holding both the power and home buttons until the apple logo appears, ignoring the red slider if it appears?

  • Can anyone tell me some tips to improve my pro's boot speed??

    can anyone tell me some tips to improve my pro's boot speed??

    Often a 'clean install' will reduce the boot time of a MBP.  Please look at these instructions and decide if this will be right for you.  Note that user data should be backed up before exercising this option.
    http://osxdaily.com/2012/07/25/how-to-clean-install-os-x-mountain-lion/
    Ciao.

  • My Iphone 3g is so slow, can anyone help by giving suggestions on how to improve speed?

    Can anyone help?My Iphone 3g is so slow and can you help by giving suggestions?

    hi guys...i have managed to do this but i think there is still something wrong...can any kind soul point out the mistakes? thanx!
    class Lab_04
         public static int wrongans = 0;
         public static int score = 100;
         public static double probability1 = 0.81;
         public static double probability2 = 0.3;
         public static double probability3 = 0.95;
         public static double probability4 = 0.13;
         public static double probability5 = 0.79;
         public static double probability6 = 0.83;
         public static double probability7 = 0.32;
         public static double probability8 = 0.68;
         public static void main(String[] args) {
              if (Math.random() >= probability1) {
    System.out.print("O");}
    else {
         wrongans++;
    System.out.print("X");
              if (Math.random() >= probability2) {
    System.out.print("O");}
    else {
                   wrongans++;
    System.out.print("X");
              if (Math.random() >= probability3) {
    System.out.print("O");}
    else {
                   wrongans++;
    System.out.print("X");
              if (Math.random() >= probability4) {
    System.out.print("O");}
    else {
                   wrongans++;
    System.out.print("X");
              if (Math.random() >= probability5) {
    System.out.print("O");}
    else {
                   wrongans++;
    System.out.print("X");
              if (Math.random() >= probability6) {
    System.out.print("O");}
    else {
                   wrongans++;
    System.out.print("X");
              if (Math.random() >= probability7) {
    System.out.print("O");}
    else {
                   wrongans++;
    System.out.print("X");
              if (Math.random() >= probability8) {
    System.out.print("O");}
    else {
                   wrongans++;
    System.out.println("X");
         System.out.println ("Score (out of 100):" + (score-(20*wrongans)));
    }

  • Why is PS CC2014 crashing all the time? Can anyone with experience help?

    Hi there
    I have had relentless problems with all versions of PS CC and PS CC 2014. It crashes almost every time I use it. Some days I get away with it, but mostly I don't. It is basically becoming unusable which is a nightmare because I rely on it for my work. I lose time and work frequently. I have to manually save my files every few minutes for fear of losing everything. A classic cause of it crashing is just opening a file, grabbing a folder of layers, holding down shift to restrain vertical / horizontal direction and dragging with the move tool to reposition in the document. Bam, APPCRASH. A typical fault message is this, which I just generated now, by doing just that:
    Problem signature:
      Problem Event Name:    APPCRASH
      Application Name:    Photoshop.exe
      Application Version:    15.2.0.236
      Application Timestamp:    542531ba
      Fault Module Name:    ntdll.dll
      Fault Module Version:    6.1.7601.18247
      Fault Module Timestamp:    521eaf24
      Exception Code:    c0000005
      Exception Offset:    0000000000027b0b
      OS Version:    6.1.7601.2.1.0.256.48
      Locale ID:    2057
      Additional Information 1:    f116
      Additional Information 2:    f1169e5949b625e6ff320471dc2e63c2
      Additional Information 3:    ca58
      Additional Information 4:    ca58819a9254a4ddaed3ec0fe7f101b2
    I have looked up this C0000005 code and it suggests that the application is trying to address illegal blocks of memory. If that helps.
    Another classic is when I try to SAVE AS and the dialogue fails to display the folder structure in the window so I cannot select a location. Once this happens, we're heading into crash land.
    Only PHOTOSHOP does this. I have plenty of professional software and tools on my system.
    BEFORE ANYONE SUGGESTS I UPDATE MY VIDEO CARD DRIVERS, PLEASE READ:
    I have a Radeon HD7750 card, which is approved for use with PS.
    I have the very latest drivers for it (not the BETA release, but the very latest stable drivers and latest Catalyst Control Centre update). I have had problems with all versions of PS CC and CC 2014 and that's through various video card driver updates.
    I have completely uninstalled PS CC2014 and all other versions of PS and uninstalled Creative Cloud and reinstalled both from scratch to try to solve this but it hasn't helped.
    I have no third party plugins in PS
    I have done regular and recent comprehensive checks on all my hardware and updated drivers, from BIOS, to CHIPSET and everything else.
    I have no IRQ conflicts, no problems in device manager
    I have monitored my system temperatures and they are fine
    I have done 16 hours of MEMTEST+ on my 16GB of DDR3 RAM - over 4 complete passes, with no errors
    I have stress-tested my video card with FUTUREMARK and it is perfectly fine within its capabilities
    I have even installed Steam and the a PC game (which I don't normally do) and it stands up just fine, no crashes.
    I have run a Windows System Health Check and his shows green lights for everything
    I have done a file system integrity check and no errors are found
    No other software on my system crashes like this, but PS does it all the time
    I use Adobe Bridge, and I've never had it crash. I use Adobe Reader, it's fine. I use Adobe Premier Elements 12 sometimes, it's fine. Adobe Photoshop CC / 2014 is not fine.
    I don't want to moan, I really need a solution and if anyone experienced can suggest something that goes beyond doing the the above I would be very grateful for your help
    PERFORMANCE SETTINGS:
    PS SYSTEM INFO:
    Adobe Photoshop Version: 2014.2.0 20140926.r.236 2014/09/26:23:59:59  x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:9 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, AVX, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 3500 MHz
    Built-in memory: 16268 MB
    Free memory: 9930 MB
    Memory available to Photoshop: 14551 MB
    Memory used by Photoshop: 70 %
    3D Multitone Printing: Disabled.
    Windows 2x UI: Disabled.
    Highbeam: Enabled.
    Image tile size: 1024K
    Image cache levels: 4
    Font Preview: Medium
    TextComposer: Latin
    Display: 1
    Display Bounds: top=0, left=0, bottom=1080, right=1920
    Display: 2
    Display Bounds: top=0, left=1920, bottom=1024, right=3200
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    AIFCoreInitialized=1
    AIFOGLInitialized=1
    OGLContextCreated=1
    NumGLGPUs=1
    NumCLGPUs=1
    glgpu[0].GLVersion="3.0"
    glgpu[0].GLMemoryMB=1024
    glgpu[0].GLName="AMD Radeon HD 7700 Series"
    glgpu[0].GLVendor="ATI Technologies Inc."
    glgpu[0].GLVendorID=4098
    glgpu[0].GLDriverVersion="14.301.1001.0"
    glgpu[0].GLRectTextureSize=16384
    glgpu[0].GLRenderer="AMD Radeon HD 7700 Series"
    glgpu[0].GLRendererID=26687
    glgpu[0].HasGLNPOTSupport=1
    glgpu[0].GLDriver="aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atium d64.dll,atidxx64.dll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm6 4.dll"
    glgpu[0].GLDriverDate="20140915000000.000000-000"
    glgpu[0].CanCompileProgramGLSL=1
    glgpu[0].GLFrameBufferOK=1
    glgpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="4.40"
    glgpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[2147 483647]
    glgpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[8]
    glgpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[192]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[32]
    glgpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[32]
    glgpu[0].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[16384]
    glgpu[0].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[16384]
    glgpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[128]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[29]
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_PROGRAM]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_PROGRAM]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_SHADER]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_SHADER]=1
    glgpu[0].extension[AIF::OGL::GL_EXT_FRAMEBUFFER_OBJECT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_RECTANGLE]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_FLOAT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_OCCLUSION_QUERY]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_BUFFER_OBJECT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_SHADER_TEXTURE_LOD]=1
    clgpu[0].CLPlatformVersion="1.2 AMD-APP (1573.4)"
    clgpu[0].CLDeviceVersion="1.2 AMD-APP (1573.4)"
    clgpu[0].CLMemoryMB=1024
    clgpu[0].CLName="Capeverde"
    clgpu[0].CLVendor="Advanced Micro Devices, Inc."
    clgpu[0].CLVendorID=4098
    clgpu[0].CLDriverVersion="1573.4 (VM)"
    clgpu[0].CUDASupported=0
    clgpu[0].CLBandwidth=5.25736e+010
    clgpu[0].CLCompute=379.453
    License Type: Subscription
    Serial number: {REMOVED FOR PRIVACY}
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014\
    Temporary file path: C:\Users\Em\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      K:\, 221.6G, 221.2G free
      J:\, 244.1G, 233.8G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\Plug-Ins\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Plug-ins\
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112 
       ACE.dll   ACE 2014/08/12-23:42:09   79.557478   79.557478
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdbePM.dll   PatchMatch 2014/09/07-21:07:38   79.558079   79.558079
       AdobeLinguistic.dll   Adobe Linguisitc Library   8.0.0 
       AdobeOwl.dll   Adobe Owl   5.2.4 
       AdobePDFL.dll   PDFL 2014/08/18-15:13:12   79.512424   79.512424
       AdobePIP.dll   Adobe Product Improvement Program   7.2.1.3399 
       AdobeXMP.dll   Adobe XMP Core 2014/08/20-09:53:02   79.156797   79.156797
       AdobeXMPFiles.dll   Adobe XMP Files 2014/08/20-09:53:02   79.156797   79.156797
       AdobeXMPScript.dll   Adobe XMP Script 2014/08/20-09:53:02   79.156797   79.156797
       adobe_caps.dll   Adobe CAPS   8,0,0,13 
       AGM.dll   AGM 2014/08/12-23:42:09   79.557478   79.557478
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31 
       amtlib.dll   AMTLib (64 Bit)   8.0.0.122212002 BuildVersion: 8.0; BuildDate: Wed Jul 30 2014 15:59:34)   1.000000
       ARE.dll   ARE 2014/08/12-23:42:09   79.557478   79.557478
       AXE8SharedExpat.dll   AXE8SharedExpat 2013/12/20-21:40:29   79.551013   79.551013
       AXEDOMCore.dll   AXEDOMCore 2013/12/20-21:40:29   79.551013   79.551013
       Bib.dll   BIB 2014/08/12-23:42:09   79.557478   79.557478
       BIBUtils.dll   BIBUtils 2014/08/12-23:42:09   79.557478   79.557478
       boost_date_time.dll   photoshopdva   8.0.0 
       boost_signals.dll   photoshopdva   8.0.0 
       boost_system.dll   photoshopdva   8.0.0 
       boost_threads.dll   photoshopdva   8.0.0 
       cg.dll   NVIDIA Cg Runtime   3.0.00007 
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007 
       CIT.dll   Adobe CIT   2.2.6.32411   2.2.6.32411
       CITThreading.dll   Adobe CITThreading   2.2.6.32411   2.2.6.32411
       CoolType.dll   CoolType 2014/08/12-23:42:09   79.557478   79.557478
       dvaaudiodevice.dll   photoshopdva   8.0.0 
       dvacore.dll   photoshopdva   8.0.0 
       dvamarshal.dll   photoshopdva   8.0.0 
       dvamediatypes.dll   photoshopdva   8.0.0 
       dvametadata.dll   photoshopdva   8.0.0 
       dvametadataapi.dll   photoshopdva   8.0.0 
       dvametadataui.dll   photoshopdva   8.0.0 
       dvaplayer.dll   photoshopdva   8.0.0 
       dvatransport.dll   photoshopdva   8.0.0 
       dvaui.dll   photoshopdva   8.0.0 
       dvaunittesting.dll   photoshopdva   8.0.0 
       dynamiclink.dll   photoshopdva   8.0.0 
       ExtendScript.dll   ExtendScript 2014/01/21-23:58:55   79.551519   79.551519
       icucnv40.dll   International Components for Unicode 2013/02/25-15:59:15    Build gtlib_4.0.19090 
       icudt40.dll   International Components for Unicode 2013/02/25-15:59:15    Build gtlib_4.0.19090 
       igestep30.dll   IGES Reader   9.3.0.113 
       imslib.dll   IMSLib DLL   7.0.0.154 
       JP2KLib.dll   JP2KLib 2014/06/28-00:28:27   79.254012   79.254012
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A) 
       libiomp5md.dll   Intel(R) OpenMP* Runtime Library   5.0 
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0 
       LogSession.dll   LogSession   7.2.1.3399 
       mediacoreif.dll   photoshopdva   8.0.0 
       MPS.dll   MPS 2014/08/18-23:43:19   79.557676   79.557676
       pdfsettings.dll   Adobe PDFSettings   1.04 
       Photoshop.dll   Adobe Photoshop CC 2014   15.2 
       Plugin.dll   Adobe Photoshop CC 2014   15.2 
       PlugPlugExternalObject.dll   Adobe(R) CEP PlugPlugExternalObject Standard Dll (64 bit)   5.0.0 
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit)   5.2.0.46 
       PSArt.dll   Adobe Photoshop CC 2014   15.2 
       PSViews.dll   Adobe Photoshop CC 2014   15.2 
       SCCore.dll   ScCore 2014/01/21-23:58:55   79.551519   79.551519
       ScriptUIFlex.dll   ScriptUIFlex 2014/01/20-22:42:05   79.550992   79.550992
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0 
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 2, 2013, 1114 
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 2, 2013, 1114 
       TfFontMgr.dll   FontMgr   9.3.0.113 
       TfKernel.dll   Kernel   9.3.0.113 
       TFKGEOM.dll   Kernel Geom   9.3.0.113 
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113 
       updaternotifications.dll   Adobe Updater Notifications Library   8.0.0.14 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   8.0.0.14
       VulcanControl.dll   Vulcan Application Control Library   5.0.0.82 
       VulcanMessage5.dll   Vulcan Message Library   5.0.0.82 
       WRServices.dll   WRServices Fri Mar 07 2014 15:33:10   Build 0.20204   0.20204
       wu3d.dll   U3D Writer   9.3.0.113 
    Required plug-ins:
       3D Studio 15.2 (2014.2.0 x001)
       Accented Edges 15.2
       Adaptive Wide Angle 15.2
       Angled Strokes 15.2
       Average 15.2 (2014.2.0 x001)
       Bas Relief 15.2
       BMP 15.2
       Camera Raw 8.6
       Camera Raw Filter 8.6
       Chalk & Charcoal 15.2
       Charcoal 15.2
       Chrome 15.2
       Cineon 15.2 (2014.2.0 x001)
       Clouds 15.2 (2014.2.0 x001)
       Collada 15.2 (2014.2.0 x001)
       Color Halftone 15.2
       Colored Pencil 15.2
       CompuServe GIF 15.2
       Conté Crayon 15.2
       Craquelure 15.2
       Crop and Straighten Photos 15.2 (2014.2.0 x001)
       Crop and Straighten Photos Filter 15.2
       Crosshatch 15.2
       Crystallize 15.2
       Cutout 15.2
       Dark Strokes 15.2
       De-Interlace 15.2
       Dicom 15.2
       Difference Clouds 15.2 (2014.2.0 x001)
       Diffuse Glow 15.2
       Displace 15.2
       Dry Brush 15.2
       Eazel Acquire 15.2 (2014.2.0 x001)
       Embed Watermark 4.0
       Entropy 15.2 (2014.2.0 x001)
       Export Color Lookup Tables NO VERSION
       Extrude 15.2
       FastCore Routines 15.2 (2014.2.0 x001)
       Fibers 15.2
       Film Grain 15.2
       Filter Gallery 15.2
       Flash 3D 15.2 (2014.2.0 x001)
       Fresco 15.2
       Glass 15.2
       Glowing Edges 15.2
       Google Earth 4 15.2 (2014.2.0 x001)
       Grain 15.2
       Graphic Pen 15.2
       Halftone Pattern 15.2
       HDRMergeUI 15.2
       HSB/HSL 15.2
       IFF Format 15.2
       IGES 15.2 (2014.2.0 x001)
       Ink Outlines 15.2
       JPEG 2000 15.2
       Kurtosis 15.2 (2014.2.0 x001)
       Lens Blur 15.2
       Lens Correction 15.2
       Lens Flare 15.2
       Liquify 15.2
       Matlab Operation 15.2 (2014.2.0 x001)
       Maximum 15.2 (2014.2.0 x001)
       Mean 15.2 (2014.2.0 x001)
       Measurement Core 15.2 (2014.2.0 x001)
       Median 15.2 (2014.2.0 x001)
       Mezzotint 15.2
       Minimum 15.2 (2014.2.0 x001)
       MMXCore Routines 15.2 (2014.2.0 x001)
       Mosaic Tiles 15.2
       Multiprocessor Support 15.2 (2014.2.0 x001)
       Neon Glow 15.2
       Note Paper 15.2
       NTSC Colors 15.2 (2014.2.0 x001)
       Ocean Ripple 15.2
       OpenEXR 15.2
       Paint Daubs 15.2
       Palette Knife 15.2
       Patchwork 15.2
       Paths to Illustrator 15.2
       PCX 15.2 (2014.2.0 x001)
       Photocopy 15.2
       Photoshop 3D Engine 15.2 (2014.2.0 x001)
       Photoshop Touch 14.0
       Picture Package Filter 15.2 (2014.2.0 x001)
       Pinch 15.2
       Pixar 15.2 (2014.2.0 x001)
       Plaster 15.2
       Plastic Wrap 15.2
       PLY 15.2 (2014.2.0 x001)
       PNG 15.2
       Pointillize 15.2
       Polar Coordinates 15.2
       Portable Bit Map 15.2 (2014.2.0 x001)
       Poster Edges 15.2
       PRC 15.2 (2014.2.0 x001)
       Radial Blur 15.2
       Radiance 15.2 (2014.2.0 x001)
       Range 15.2 (2014.2.0 x001)
       Read Watermark 4.0
       Render Color Lookup Grid NO VERSION
       Reticulation 15.2
       Ripple 15.2
       Rough Pastels 15.2
       Save for Web 15.2
       ScriptingSupport 15.2
       Shake Reduction 15.2
       Shear 15.2
       Skewness 15.2 (2014.2.0 x001)
       Smart Blur 15.2
       Smudge Stick 15.2
       Solarize 15.2 (2014.2.0 x001)
       Spatter 15.2
       Spherize 15.2
       Sponge 15.2
       Sprayed Strokes 15.2
       Stained Glass 15.2
       Stamp 15.2
       Standard Deviation 15.2 (2014.2.0 x001)
       STL 15.2 (2014.2.0 x001)
       Sumi-e 15.2
       Summation 15.2 (2014.2.0 x001)
       Targa 15.2
       Texturizer 15.2
       Tiles 15.2
       Torn Edges 15.2
       Twirl 15.2
       U3D 15.2 (2014.2.0 x001)
       Underpainting 15.2
       Vanishing Point 15.2
       Variance 15.2 (2014.2.0 x001)
       Virtual Reality Modeling Language | VRML 15.2 (2014.2.0 x001)
       Water Paper 15.2
       Watercolor 15.2
       Wave 15.2
       Wavefront|OBJ 15.2 (2014.2.0 x001)
       WIA Support 15.2 (2014.2.0 x001)
       Wind 15.2
       Wireless Bitmap 15.2 (2014.2.0 x001)
       ZigZag 15.2
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Libraries
       Adobe Color Themes
    Installed TWAIN devices: NONE
    Can anyone help me resolve this issue, with suggestions beyond those I've already listed above?
    I'm getting pretty stuck...
    Thanks

    Hi Chris
    Like I said in the OP I had the very latest AMD drivers installed before submitting that crash report.
    Since our conversations, I have completely removed my Radeon HD7750 GPU, uninstalled the drivers for it and the Catalyst Control Centre, and have resorted to using to my motherboard's integrated Intel HD graphics. I have the very latest drivers for the Intel HD graphics installed. Still, today I have had another crash event in Photoshop. So this cannot be the fault of the AMD card or drivers, because they are no longer present on the system.
    CRASH:
    Faulting application name: Photoshop.exe, version: 15.2.0.236, time stamp: 0x542531ba
    Faulting module name: ntdll.dll, version: 6.1.7601.18247, time stamp: 0x521eaf24
    Exception code: 0xc0000005
    Fault offset: 0x0000000000027b0b
    Faulting process id: 0x1fd8
    Faulting application start time: 0x01cfe7c41d6b75d0
    Faulting application path: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Photoshop.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: a9fd0b69-53c1-11e4-8d80-bc5ff43517ae
    Fault bucket , type 0
    Event Name: APPCRASH
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: Photoshop.exe
    P2: 15.2.0.236
    P3: 542531ba
    P4: ntdll.dll
    P5: 6.1.7601.18247
    P6: 521eaf24
    P7: c0000005
    P8: 0000000000027b0b
    P9:
    P10:
    Additional files: - I have a report file I am trying to post but this forum tells me I am spamming when I try to submit. I will try to post it separately...

  • How can I flip my iphone videos on my PC? My videos from my iphone are horrible when I transfer them to my PC. How can I improve the video on my PC? Can I just convert the files to WMV? When the video plays the speed is off, it's half slow-motion

    My videos from my iphone are horrible when I transfer them to my PC. How can I improve the video on my PC? Can I just convert the files to WMV? When the video plays the speed is off, it's half slow-motion and staggers into normal play. The clips are slightly cut as well, the clips do not roll continuously.  I'm taling about videos that are no more than 2 minutes long.  I'm frustrated and I could really use some advice-my kids basketball games is what I'm recording and I'm trying to send them to my family (they are not very tech savvy). Thanks

    Not it's only function but one for which it was most admirably suited, which is why I really hope someone can find a work around. I am hoping my post to the Apple feedback may prompt a useful response from Apple and I live in hope that my post here will elicit a useful response from another user. I did not miss the the text at the top of the feedback form but you presumably missed my initial text, 'someone here can explain' or my subsequent 'work around from another user'
    Just in case anyone reading this has a large collection of music videos, video podcasts or iTunes U then DO NOT upgrade your iPad to iOS 5. If you are considering purchasing the iPad as a useful mobile device to experience these media organised in your iTunes please don't as you will be wasting your money. (unless someone on this forum knows of a way to undo the mess created by those infallible folks at Apple)
    Yes I know it does other things but the purpose I bought it for doesn't work anymore

  • Help!  Can anyone be my Obi-Wan?  (CRASHES GALORE!)

    Hi! Thanks for taking the time to check this out whoever you are.
    Here is my situation.
    I've had Logic Studio for about a year now, but I have stuck with LIVE and Garageband.. Logic has just always been very "crashy" for me.. it's at the point where I can open the program, but after choosing a project I pretty much immediately get "Logic Pro has unexpectedly quit"
    Can anyone help me figure this out? Here are facts..
    1. My copy is bought.
    2. I have in the past been able to at least do some work before a crash.. now it's usually after my first or second action.
    3. If I can manage to pull up my mixer, I can see that all of my Logic effects are unavailable.
    4. I have disabled all of my 3rd party plugins (AU/VST/MAS/etc..).
    4a. I used AudioFinder to do this, but the crashiness has existed long before I ever acquired this wonderful app.
    5. Here's the beginning of my last crash report.. maybe there's something there?
    Command: Logic Pro
    Path: /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Parent: WindowServer [101]
    Version: 8.0.2 (1502.22)
    Build Version: 9
    Project Name: Logic
    Source Version: 15022200
    PID: 8299
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x74537373
    I guess that's all I can think of...
    Can anyone give me any ideas here? I would really actually like to start using this **** program.
    Thanks in advance for any help!
    Ciao,
    Kris

    Hi,
    First: The fact that your plugs are unavailable can have two causes: you opened a project that uses plugs you have either disabled or uninstalled.
    Or, more likely, CoreAudio isn't enabled in the Audio preferences. But that is most probably the result of the same problem, not the cause.
    You have ruled out 3rd party plugins, which is good.
    The beginning of the crash report is of little use. Get the crash report from the beginning up to and including the *crashed thread*. Like this (one of mine):
    Process: Logic Pro [620]
    Path: /Applications/Muziek/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: com.apple.logic.pro
    Version: 8.0.2 (1502.22)
    Build Info: Logic-15022200~9
    Code Type: PPC (Native)
    Parent Process: launchd [103]
    Date/Time: 2008-08-05 19:15:19.579 +0200
    OS Version: Mac OS X 10.5.4 (9E17)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNPROTECTIONFAILURE at 0x00000000bf7fff70
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x90049218 _CFArrayReplaceValues + 48
    1 com.apple.CoreFoundation 0x9004a1b0 CFArrayInsertValueAtIndex + 224
    2 com.apple.HIToolbox 0x92472aac SaveQDDrawingState + 272
    3 com.apple.HIToolbox 0x924ddb68 HIView::DrawNonComposited(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned long) + 240
    4 com.apple.HIToolbox 0x9248fba4 ActivateControl + 32
    5 com.apple.HIToolbox 0x92430bdc HandleWindowEvent(OpaqueEventRef*) + 1420
    6 com.apple.HIToolbox 0x9248f6e4 StandardWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 180
    7 com.apple.HIToolbox 0x924093c8 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1484
    8 com.apple.HIToolbox 0x92408560 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 464
    9 com.apple.HIToolbox 0x9240837c SendEventToEventTargetWithOptions + 52
    10 com.apple.HIToolbox 0x9248fb5c SendWindowEvent(OpaqueWindowPtr*, unsigned long, double, Point*, unsigned long, short, unsigned long) + 200
    11 com.apple.HIToolbox 0x92430bb8 HandleWindowEvent(OpaqueEventRef*) + 1384
    12 com.apple.HIToolbox 0x9248f6e4 StandardWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 180
    13 com.apple.HIToolbox 0x924093c8 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1484
    14 com.apple.HIToolbox 0x92408560 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 464
    15 com.apple.HIToolbox 0x9240837c SendEventToEventTargetWithOptions + 52
    16 com.apple.HIToolbox 0x9248f4bc PostActivateEvent + 332
    17 com.apple.HIToolbox 0x9248ef90 HiliteAndActivateWindow + 352
    18 com.apple.HIToolbox 0x924e4d24 PostWindowActivateEvent + 44
    19 com.apple.HIToolbox 0x924e4cd8 ActivateWindow + 48
    20 com.zplane.audiounit.vielklang 0x3f1aa18c
    ...here in line 20 the Culprit appeared. But often, no culprit appears. In that case, try refreshing Logics' preferences:
    0. Export your custom Key Commands (if you have any) from the Key Command window
    1. Quit Logic.
    2. Find the file com.apple.logic.pro.plist here: 'yourdisk'/Users/'you'/Library/Preferences/
    3. Drag it to the Desktop
    4. Start Logic. It'll create a fresh .plist file. Now see if your problem is gone or not. If it is, you can trash the .plist file on the desktop. If it isn't, you can quit Logic and put the old .plist file back if you want.
    Another question: *how full is your startup disk?* Try to have at least 15GB free on it. Also you should watch your memory, if you use any big sample libraries, 2 GB (effectively ± 1,3 GB for Logic) is gone very quickly. When physical RAM runs out, RAM content is written to disk (known as paging or *page swapping* ) to free it up. It works well for a lot of applications, but not for audio. So if you use memory heavy sampled instruments, try to add at least 1 GB - it will improve things.
    You can use the simple free app MenuMeters http://www.pure-mac.com/diag.html#menumeters to monitor memory, paging activity, disk activity etc and thus also learn what happens when loading things in Logic.
    regards, Erik.

  • I just bought a new iMac and am having troubles downloading creative cloud installer.  Its coming up with error 214 - I can't find any solutions for this.  Can anyone help me?  Im on mac OS 10.9.4

    I just bought a new iMac and am having troubles downloading creative cloud installer.  Its coming up with error 214 - I can't find any solutions for this.  Can anyone help me?  Im on mac OS 10.9.4

    Meg81 error 214 indicates a download data validation error.  This means that the update you downloaded became corrupted likely during the download process.  I would recommend utilizing the suggestions listed in Error downloading Creative Cloud applications - http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html to attempt to improve the stability of your Internet connection.
    You can also find information on how to review your download logs which may provide additional information regarding the failure of the download.

  • My ipod reset the menu can anyone help me

    i went to a friends house and before i went my ipod battery waz very low and wen i waz out my dad charged it for me (so wen i got back it would be fully charged and i could use it)but wen i got back i turned my ipod on and all the settings had been reset..???? all of my songs were still there but the menu waz completly reset i think its just because the battery ran flat before he charged it therefore causing it to reset the menu but i waz wondering if theres any other cause and if it damaged the ipod and is it a problem..??? can anyone help me with this
    thanx

    so does updating it improve its battery life or
    restoring it because im getting rubish battery time
    from my nano!
    I assume you know that the backlight kills your battery and that the quoted battery life is for operation under perfect conditions. I just posted this in another thread and I'm reposting it here for you....
    Specially about the battery, it lasts very little of
    I expected. (About 4-6 hours, ligh off, equalizer
    rock, moderate volume).
    Is it actually running out, or are you going by the meter? The vast majority of people who have this problem aren't actually running out of power. They only think they are. The meter is very inaccurate. After my iPod reaches zero, my iPod continues to work for five hours or more.
    If you want the meter to be more accurate, let the iPod run down completely, but don't do this too often. Just once in a blue moon. This will calibrate the meter but has nothing to do with the battery itself.
    The "life-use" of Li-ion batteries is to little too
    (about 500 cycle-charges)
    If you don't like Li-ion, the bad new for you is that Li-ion batteries are now used in all products by all manufacturers. ALL rechargeable batteries, no matter what type they are have a limited number of charge cycles - your phone, your laptop, everything. The only difference with Apple is that they're telling you this up front.
    Do you know or somebodys knows some way to extend
    battery charge?
    No, but if you follow the advice above, hopefully this won't be an issue.

  • HT201209 Since updating ios7 I can't do FaceTime can anyone out there give me some guidance pleeeeaaaase

    Can anyone help me since updating with the latest iOS for my iPad I can't do FaceTime and also when I go to camera I can't do video recording anymore been to settings to see if ther have been any obvious changes can't find anything that would cause this any help greatly appreciated

    You are waiting for an apology to something that happened over a year ago? Really? This is why there is a manager in the store. You have a problem with an employee you speak to the manager. Just like you did on the phone. You would have gotten your apology in July 2013.
    Here is the information about your upgrade fee.
    Upgrade Fee
    It is because when you have a problem you (customers) go running to the store and want to take up the time of the reps to fix it. Other carriers have third parties that deal with technical support and those locations are few and far between. VZW provides this directly through their stores. Also, when you subsidize a $650 and pay $200 VZW has to pay $400. Your monthly service fee doesn't begin to scratch the surface of paying that back. Not with all the money that is put into the network and its improvements.
    Then over a year later you get someone on the phone who apologized and offered to waive the fee on your phone and you didn't take it? That offer won't come down the pike again.
    One thing you should know is that all these employees are people and as such they sometimes come off cross. I doubt that you speak to everyone so sweetly all the time. Cut them a little slack and put this whole thing behind you after 15 months. Either upgrade with VZW or move on.

  • Can anyone identify this part?

    Very early on after getting my Mac I noticed a creaking noise, it didn't bother me and thought nothing of it. A couple of months ago I decided to clean it out as it was getting rather sluggish and to be honest that with a declutter, I have seen an improvement, however upon closing the creaking disappeared. Again I thought nothing of it. I decided to open it today and have noticed that one of the plastic clips? That connects the board to the metal prongs on the case is broken can anyone identify it so I can look for a replacement.
    Many thanks
    Jordan

    Oops sorry forgot to add the photo!
    The bit just under the battery and next to the memory.
    Macbook Pro 17 inch early 2011

  • How can I Improve the Performance using Global Temo Tables ??

    Hi,
    Can anyone tell me , How can i make use of Global Temporary Tables to improve the Performance.
    I have few sample scripts ,
    Say i have the View based on some Complex query like ,
    CREATE OR REPLACE VIEW Profile_values_view AS
    SELECT d.Profile_option_name, d.Profile_option_id, Profile_option_value,
    u.User_name, Level_id, Level_code
    FROM Profile_definitions d, Profile_values v, Profile_users u
    WHERE d.Profile_option_id = v.Profile_option_id
    AND ((Level_code = 'USER' AND Level_id = U.User_id) OR
    (Level_code = 'DEPARTMENT' AND Level_id = U.Department_id) OR
    (Level_code = 'SITE'))
    AND NOT EXISTS (SELECT 1 FROM PROFILE_VALUES P
    WHERE P.PROFILE_OPTION_ID = V.PROFILE_OPTION_ID
    AND ((Level_code = 'USER' AND
    level_id = u.User_id) OR
    (Level_code = 'DEPARTMENT' AND
    level_id = u.Department_id) OR
    (Level_code = 'SITE'))
    AND INSTR('USERDEPARTMENTSITE', v.Level_code) >
    INSTR('USERDEPARTMENTSITE', p.Level_code));
    Now i have created the Global temp Table as ,
    CREATE GLOBAL TEMPORARY TABLE Profile_values_temp
    Profile_option_name VARCHAR(60) NOT NULL,
    Profile_option_id NUMBER(4) NOT NULL,
    Profile_option_value VARCHAR2(20) NOT NULL,
    Level_code VARCHAR2(10) ,
    Level_id NUMBER(4) ,
    CONSTRAINT Profile_values_temp_pk
    PRIMARY KEY (Profile_option_id)
    ) ON COMMIT PRESERVE ROWS ORGANIZATION INDEX;
    Now I am Inserting the Records into Temp table as
    INSERT INTO Profile_values_temp
    (Profile_option_name, Profile_option_id, Profile_option_value,
    Level_code, Level_id)
    SELECT Profile_option_name, Profile_option_id, Profile_option_value,
    Level_code, Level_id
    FROM Profile_values_view;
    COMMIT;
    Now what my doubt is, when do i need to execute the Insert Statement.
    Say , if the View returns few millions of records , then loading such a data into Global Temporary table takes lot of time.
    Then what is the use of Global Temporary tables and how can i improve the Performance using the same.
    Raj

    Thanks for the responce ,
    There are 2 to 3 complex views in our database, and there always be more than 5000+ users will be workinf on the application and is OLTP application. Those complex views are killing the application performance.
    I what i felt was, if i create the Global Temporary tables for thow views and will be able to load the one third million of records returned by the views in to cache and can improve the application performance.
    I have created the Global Temporary tables for 2 views with the option On Commit Preserve , But after am inserting the records into the Temp table and when i Issue the commit statement, the Temp table is getting Cleared.
    I really got surpised of this behaviour as i know that with the Option On Commit Preserve , the rows should retain in the Temp Table, Instead , it's getting cleared.
    Pelase suggest , what to do ??
    Raj

  • Can anyone help - LR5.3 won't start after only 2 successful days!!

    2 days ago installed LR5.3 trial on my new PC bought to run LR and CS6 - Win 7 Pro, Xeon E3-1230, 32gb memory, SSDs etc (the works).
    Worked great for 2 days, cataloging a big trip, lots of adjustments made. Yesterday I found LR had unexplained errors and dropped/closed but I was able to restart it and my catalogs opened and allowed further actions, and all was well.
    Now today the PC doesn't run LR5.3 from the desktop icons or from the .exe files which I locate via Explorer. I tried repair of LR5.3 from Adobe installer program - no improvement after the repair - and then did a full reinstall from the Adobe installer but again no recognition/operation of LR, either when I click on the desktop icon or go to the .exe files.
    My other software (minimal, no conflicts there) works fine from the programs' exe files and my internet browsers are fine.
    I now have brand new computer with no LR after two positive days.
    Can anyone help out there?

    Reply to Rikk and Geoff
    Thank you. Went to .lrcat in WinExplorer and it opened and brought in all my previews and camera calibrations etc
    Now I'll seek to remember whatever the preferences were.
    2 Questions for you
    1. Geoff the big catalog guy - if I decide to use one catalog I imagine it will be simple to import and merge other catalogs into the big catalog (probably 200k images to assemble into the catalog)
    2. For both of you - given the weird location of the prefs, are there any other quirks I need to remember in my backup regime - I already have my lrcat and lrdata (previews) as well as images on another backup pc. anything else I should be offline backingup?

  • Can anyone tell me what the following error code means? 4MOT/2/40000004: BOOSTA-1235

    Can anyone tell me what the following error code means? 4MOT/2/40000004: BOOSTA-1235
    Fans are running permanantly and this is the error I get when running apple hardware test.

    SNS is a sensor error. The sensors read actual temperatures at several points inside the Mac chassis to decide when things are heating up, and which fan or fans speed up to improve cooling.
    Some of those sensrs are just a thermal-sensitive transistor mounted to a surface that conducts heat, and replacement does not run into big money. Disconnected wires are sometimes a possibility, especially if things were changed nearby, e.g., new heatsink.

Maybe you are looking for

  • Printing from my iPhone to Kodak 310 printer

    My iPhone says it does not detect an air printer to print from. How do I get it to detect my new printer? The printer is a Kodak ESP c310.

  • Escaping the pipe (|) character in java

    Hi, I am trying to run the following command in java ps -ef -o pid,args | grep init | grep -v grep The code is        try {                 Runtime rt = Runtime.getRuntime();                 Process pr = rt.exec("ps -ef -o pid,args \\| grep init \\|

  • Mcrypt librarie

    Hello, Description; SunOS server4 5.10 Generic sun4u sparc SUNW I've pb with mcrypt librarie: 1. I've recently installed Apache, Mysql, Php successfully. 2. even for PhpMyAdmin but it requieres mcrypt librarie, 4. mcrypt has been downloaded & unzippe

  • How to update the Process-Instance Variable Using Process API in OBPM 10.3?

    Hi All, I have a requirement to update the the process Instance variable from another process, but I am unable to find any method to update or set variable? I try the same using Process API also but no luck. Please provide me the code or link to impl

  • Email de registro da HP laser jet m1132

    Preciso do email da impressora HP laserjet m1132,para poder usar o aplicativo de impressão google cloud print