EventListeners, SwingTimer - Find whats slowing down this 20 lines of code!

Hi, the code below is a very simple way to detect user input, and also have multiple keys pressed at the same time. However, what I implemented this, my program began to slow down quite a bit.
I'm wondering if anyone sees any problems in this code which would slow my program down.
Thanks,
Nate
     // Detect user input
     class userinput implements ActionListener, KeyListener{
          public userinput(){
               Timer whew = new Timer(50, this);
               whew.start();
               addKeyListener(this);
               setFocusable(true);
     public void keyPressed(KeyEvent e) {
          int keyCode = e.getKeyCode();
        if (keyCode == KeyEvent.VK_DOWN){
             //y = y + speed;
             goingbackwards = true;
        if (keyCode == KeyEvent.VK_UP){
             //y = y - speed;
             //goingforward = true;
             gof = true;
        if (keyCode == KeyEvent.VK_LEFT){
             //x = x - speed;
             goingleft = true;
        if (keyCode == KeyEvent.VK_RIGHT){
             //x = x + speed;
             goingright = true;
        if (keyCode == KeyEvent.VK_SPACE){
             spacedown = true;
     public void keyReleased(KeyEvent e) {
          int keyCode = e.getKeyCode();
          if (keyCode == KeyEvent.VK_DOWN){
              goingbackwards = false;
          if (keyCode == KeyEvent.VK_UP){
               gof = false;
          if (keyCode == KeyEvent.VK_LEFT){
         goingleft = false;
          if (keyCode == KeyEvent.VK_RIGHT){
         goingright = false;
          if (keyCode == KeyEvent.VK_SPACE){
              spacedown = false;
     public void keyTyped(KeyEvent e) {     
     @Override
     public void actionPerformed(ActionEvent ac) {
        if (gof && y >= 15){
             y = y - speed;
             //break;
             if (goingleft && x >= 15){
             x = x - speed;
             //break;
             if (goingright && x <= 920){
                  x = x + speed;
                 //break;
             if (goingbackwards && y <= 665){
                  y = y + speed;
                 //break;
             if (spacedown && health >= 1){
                sx = x + 36;            
                sy = y - 19;
                fire();
                 //break;
     Thanks for reading,
Nate

MeMo_HI wrote:
WOW jeje i just notice your code looks like a game
since i'm not an expert in games dont take this as an advice this is only a question: why would you need to slow down the x=x-speed? cant you use a smaller value for speed?
all the events run inside a single Thread called ThreadDispatcher so if you are calling events a lot then your calling fire() a lot and if the fire() method is
a long task the other events have to wait until the fire method finished to get their time.
Edited by: MeMo_HI on Feb 1, 2009 12:30 AM
dispatch thread yes that is
Edited by: MeMo_HI on Feb 1, 2009 12:30 AM
sorry i confuse the words sometimesMuch to learn he has. Hmmmm.
~~ Yoda

Similar Messages

  • Slow down after my line was upgraded to ADSL2+

    Hi there
    a couple months ago BT upgraded our line from ADSL 1 to ADSL2+ now it all sounds good but I have experienced some major slow downs since they have done it and constant calls to CS have just resulted in my line getting tested and then having a different person phone back to give the results but just end up getting another line test done and it is starting to get very annoying.
    Before the upgrade I was downloading at around 8.1Mb/s, uploading at 1.1Mb/s and had a ping of around 15. Now it is this.
    Is there anything else i could do that could improve my speed?
    Thanks for reading my wall of text.
    P.S my line stats are:
    Connection information
    Line state
    Connected
    Connection time
    10 days, 6:53:35
    Downstream
    2,268 Kbps
    Upstream
    888 Kbps
    ADSL settings
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    ITU-T G.992.5
    Latency type
    Interleaved
    Noise margin (Down/Up)
    13.1 dB / 12.6 dB
    Line attenuation (Down/Up)
    21.5 dB / 9.5 dB
    Output power (Down/Up)
    0.0 dBm / 12.5 dBm
    Solved!
    Go to Solution.

    Hi there
    I am using BT home hub 2.0
    and the rest of my line stats
    Line state
    Connected
    Connection time
    10 days, 7:16:00
    Downstream
    2,268 Kbps
    Upstream
    888 Kbps
    ADSL settings
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    ITU-T G.992.5
    Latency type
    Interleaved
    Noise margin (Down/Up)
    13.1 dB / 12.5 dB
    Line attenuation (Down/Up)
    21.5 dB / 9.5 dB
    Output power (Down/Up)
    0.0 dBm / 12.5 dBm
    Loss of Framing (Local)
    0
    Loss of Signal (Local)
    0
    Loss of Power (Local)
    0
    FEC Errors (Down/Up)
    898476782 / 0
    CRC Errors (Down/Up)
    202 / 2147480000
    HEC Errors (Down/Up)
    nil / 0
    Error Seconds (Local)
    143

  • What is the error in this one line of code!

    s=s-(s/28)*[1-(s/28)*(29/s+1)*(21-q/11)];
    I am using this line of code in my programe but i am getting the following error.
    C:\shahzad\Easter.java:28: illegal start of expression
    s=s-(s/28)*[1-(s/28)*(29/s+1)*(21-q/11)];
    Please help me solvingg this problem
    thanks.

    s=s-(s/28)*[1-(s/28)*(29/s+1)*(21-q/11)];
    [] brakets ae used to index arrays, are you using an array somewhere????
    arr=5; for example....
    in either event youl need to make changes.
    assuming no array is involved simply change [] to ()
    if still causing problems try adding extara()
    s= (s-(s/28))*( (1-(s/28)) * ( (29/s)+1) * (21-(q/11)) );

  • Whats slowing down my page loading times?

    So i've been plagued recently with a terrible connection that just won't seem to go away, and has been getting worse.
    At first we thought it was the router in our building (out of our control) but apon talking to the other residents (in a floor below and above ours) they've been having no connection problems what so ever. I watched a guy open Google, and it sprang open no problem, no waiting time.
    I've since reset my Airport to default factory settings (fearing i've changed a setting I didn't mean to) and created a new Ethernet connection with the default DHCP. I really don't think its an issue with my airport, because even when I plug the Cat 5 straight into my computer, it still loads slow/not at all.
    Its not throughput, because i've ran several speed tests on speedtest.net (never failed me before) and both my husband and I are getting 47,000 kb/s download and varying between 400-1100 kb/s upload speeds.
    With all of that in mind, we consistently get 403 forbidden, and DNS errors when trying to connect to pages that usually work fine, such as gmail, apple.com and google. Known working sites, and they won't work. If i open a lot of pages, eventually one out of 7 or 8 will work, and when that one works theres no issues with it.
    I feel really out of my element, because I'm not sure if its a proxy issue or what, because i don't have a proxy. It seems to come and go, and no one else has issue with it in my building.
    Sorry if this really doesn't belong here, but we don't know where else to go.
    Note, i can't contact my ISP because I don't speak there language, and I can barely talk to my landlords...we live in Korea.
    link to my speed test: http://www.speedtest.net/result/412690208.png

    Update:
    Apon attempting to check this very post, I got a 403 forbidden (quite ironic).
    I tried a new setting I was thinking of playing around with, which is to change my Airport from being a Bridge, to setting up a DHCP with my husbands computer getting his own IP... Seems to be working a little better now, but if anyone has anything to input I would be very appreciative.

  • My iMac crashes and reboots 9/10 times when Iog off an account. I looked at the Console for a log but I am not sure what I am looking for. What is the best way to try to find what is causing this?

    Hello,
    I have an issue where my iMac crashes and reboots 9/10 times when I log my wife's account off. I'd like to get it resolved as it is very annoying. We switch between accounts all the time and everytime it crashes I lose a bunch of info from my account. Can anyone help me understand how to fix this issue?
    After the reboot a window tells me that my system has recovered from a seriour issue (sounds much like Window$ to me...) and a crash report is show:
    Sun Nov  3 11:03:50 2013
    panic(cpu 3 caller 0xffffff8022edc19e): Kernel trap at 0xffffff80231d38ae, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000170, CR3: 0x000000042a49c043, CR4: 0x00000000000606e0
    RAX: 0xffffff8046d5f590, RBX: 0x0000000000000000, RCX: 0x00000000031f0000, RDX: 0xffffff8044427800
    RSP: 0xffffff81f4343870, RBP: 0xffffff81f4343880, RSI: 0x0000000000000000, RDI: 0xffffff8044427800
    R8:  0xffffff80655b0c00, R9:  0x0000000000000000, R10: 0xffffff81f4343780, R11: 0xffffffffffffffff
    R12: 0xffffff80655b0c00, R13: 0xffffff80461be808, R14: 0x0000000000000000, R15: 0x0000000000000002
    RFL: 0x0000000000010246, RIP: 0xffffff80231d38ae, CS:  0x0000000000000008, SS:  0x0000000000000000
    Fault CR2: 0x0000000000000170, Error code: 0x0000000000000000, Fault CPU: 0x3
    Backtrace (CPU 3), Frame : Return Address
    0xffffff81f4343500 : 0xffffff8022e22f69
    0xffffff81f4343580 : 0xffffff8022edc19e
    0xffffff81f4343750 : 0xffffff8022ef3606
    0xffffff81f4343770 : 0xffffff80231d38ae
    0xffffff81f4343880 : 0xffffff7fa37fcf61
    0xffffff81f43438b0 : 0xffffff7fa37fd6a8
    0xffffff81f43438f0 : 0xffffff80231b38f4
    0xffffff81f4343950 : 0xffffff80231bc5e4
    0xffffff81f43439a0 : 0xffffff80231bc2e5
    0xffffff81f4343a00 : 0xffffff80231ca2d1
    0xffffff81f4343f50 : 0xffffff802323de23
    0xffffff81f4343fb0 : 0xffffff8022ef3e06
          Kernel Extensions in backtrace:
             com.webroot.driver.SecureAnywhere(104.0)[4516877C-BD60-3F95-93D2-D2A9EC8F0A00]@ 0xffffff7fa37fb000->0xffffff7fa37fffff
                dependency: com.apple.iokit.IOHIDFamily(2.0.0)[1185D338-98A5-345E-84F8-E59DF819A61B]@0xffff ff7fa3776000
    BSD process name corresponding to current thread: loginwindow
    Mac OS version:
    13A603
    Kernel version:
    Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
    Kernel UUID: 1D9369E3-D0A5-31B6-8D16-BFFBBB390393
    Kernel slide:     0x0000000022c00000
    Kernel text base: 0xffffff8022e00000
    System model name: iMac12,2 (Mac-942B59F58194171B)
    System uptime in nanoseconds: 196008980876705
    last loaded kext at 71419521029131: com.apple.driver.AppleUSBCDC          4.2.1b2 (addr 0xffffff7fa5341000, size 20480)
    last unloaded kext at 71479557418411: com.apple.driver.AppleUSBCDC          4.2.1b2 (addr 0xffffff7fa5341000, size 16384)
    loaded kexts:
    com.webroot.driver.SecureAnywhere          104
    com.logmein.driver.LogMeInSoundDriver          1.0.0
    com.apple.filesystems.smbfs          2.0.0
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AGPM          100.14.11
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleBluetoothMultitouch          80.14
    com.apple.iokit.IOBluetoothSerialManager          4.2.0f6
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AppleUpstreamUserClient          3.5.13
    com.apple.driver.AppleHDA          2.5.2fc2
    com.apple.kext.AMDFramebuffer          1.1.4
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.AMDRadeonX3000          1.1.4
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.2.0f6
    com.apple.driver.AppleMikeyDriver          2.5.2fc2
    com.apple.driver.AppleIntelHD3000Graphics          8.1.8
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleHWAccess          1
    com.apple.driver.AppleSMCLMU          2.0.4d1
    com.apple.kext.AMD6000Controller          1.1.4
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleBacklight          170.3.5
    com.apple.driver.AppleMCCSControl          1.1.12
    com.apple.driver.AppleIntelSNBGraphicsFB          8.1.8
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleLPC          1.7.0
    com.apple.driver.AppleThunderboltIP          1.0.10
    com.apple.driver.AppleIRController          325.7
    com.apple.iokit.SCSITaskUserClient          3.6.0
    com.apple.driver.AppleUSBCardReader          3.3.5
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          35
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.4.0
    com.apple.driver.AppleUSBHub          650.4.4
    com.apple.driver.AirPort.Atheros40          700.74.5
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.iokit.AppleBCM5701Ethernet          3.6.9b9
    com.apple.driver.AppleAHCIPort          2.9.5
    com.apple.driver.AppleUSBEHCI          650.4.1
    com.apple.driver.AppleACPIButtons          2.0
    com.apple.driver.AppleRTC          2.0
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          2.0
    com.apple.driver.AppleACPIEC          2.0
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          216.0.0
    com.apple.nke.applicationfirewall          153
    com.apple.security.quarantine          3
    com.apple.driver.AppleIntelCPUPowerManagement          216.0.0
    com.apple.kext.triggers          1.0
    com.apple.driver.IOBluetoothHIDDriver          4.2.0f6
    com.apple.driver.AppleMultitouchDriver          245.13
    com.apple.iokit.IOSerialFamily          10.0.7
    com.apple.driver.DspFuncLib          2.5.2fc2
    com.apple.vecLib.kext          1.0.0
    com.apple.iokit.IOAudioFamily          1.9.4fc11
    com.apple.kext.OSvKernDSPLib          1.14
    com.apple.iokit.IOSurface          91
    com.apple.iokit.IOAcceleratorFamily          98.7.1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.2.0f6
    com.apple.iokit.IOBluetoothFamily          4.2.0f6
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.kext.AMDSupport          1.1.4
    com.apple.AppleGraphicsDeviceControl          3.4.12
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.driver.AppleSMBusPCI          1.0.12d1
    com.apple.driver.AppleHDAController          2.5.2fc2
    com.apple.iokit.IOHDAFamily          2.5.2fc2
    com.apple.iokit.IONDRVSupport          2.3.6
    com.apple.iokit.IOGraphicsFamily          2.3.6
    com.apple.driver.AppleSMC          3.1.6d1
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.5.1d27
    com.apple.driver.AppleThunderboltEDMSink          1.2.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.6.0
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.driver.AppleUSBHIDKeyboard          170.15
    com.apple.driver.AppleHIDKeyboard          170.15
    com.apple.iokit.IOAHCISerialATAPI          2.6.0
    com.apple.driver.AppleThunderboltDPOutAdapter          2.5.0
    com.apple.driver.AppleThunderboltDPInAdapter          2.5.0
    com.apple.driver.AppleThunderboltDPAdapterFamily          2.5.0
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.4.0
    com.apple.iokit.IOUSBHIDDriver          650.4.4
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.6.0
    com.apple.iokit.IOUSBMassStorageClass          3.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.6.0
    com.apple.driver.AppleUSBMergeNub          650.4.0
    com.apple.driver.AppleUSBComposite          650.4.0
    com.apple.driver.AppleThunderboltNHI          1.9.2
    com.apple.iokit.IOThunderboltFamily          2.8.5
    com.apple.iokit.IOUSBUserClient          650.4.4
    com.apple.iokit.IO80211Family          600.34
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOEthernetAVBController          1.0.3b3
    com.apple.driver.mDNSOffloadUserClient          1.0.1b4
    com.apple.iokit.IONetworkingFamily          3.2
    com.apple.iokit.IOAHCIFamily          2.6.0
    com.apple.iokit.IOUSBFamily          650.4.4
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.iokit.IOHIDFamily          2.0.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          278.10
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.AppleKeyStore          2
    com.apple.driver.DiskImages          371.1
    com.apple.iokit.IOStorageFamily          1.9
    com.apple.iokit.IOReportFamily          21
    com.apple.driver.AppleFDEKeyStore          28.30
    com.apple.driver.AppleACPIPlatform          2.0
    com.apple.iokit.IOPCIFamily          2.8
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.pthread          1
    com.apple.kec.corecrypto          1.0

    If you think getting your web pages to appear OK in all the major browsers is tricky then dealing with email clients is way worse. There are so many of them.
    If you want to bulk email yourself, there are apps for it and their templates will work in most cases...
    http://www.iwebformusicians.com/Website-Email-Marketing/EBlast.html
    This one will create the form, database and send out the emails...
    http://www.iwebformusicians.com/Website-Email-Marketing/MailShoot.html
    The alternative is to use a marketing service if your business can justify the cost. Their templates are tested in all the common email clients...
    http://www.iwebformusicians.com/Website-Email-Marketing/Email-Marketing-Service. html
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • Slow down/upsteam + noisy line

    Evening,
    First time on these here forums so be gentle
    Recently I have noticed that the down/upstream on our BT Connection has dramtically dropped, we average 17+ MB in our area and have been for a long time; however recently either due to bad weather or the recent HomeHub 4 update our speed has severely dropped and our line is very noisy (see below for HomeHub 4 Event Log):
    04:04:04, 05 Dec.
    ( 1376.580000) PPP LCP Send Configuration Request
    04:04:02, 05 Dec.
    ( 1374.540000) ETHoA is up - VPI: 0, VCI:35
    04:04:02, 05 Dec.
    ( 1374.540000) DSL is up
    04:04:01, 05 Dec.
    ( 1373.080000) DSL noise margin: 27.80 dB upstream, 20.90 dB downstream
    04:04:00, 05 Dec.
    ( 1372.170000) DSL line rate: 443 Kbps upstream, 8128 Kbps downstream
    04:03:12, 05 Dec.
    ( 1323.940000) DSL is down after 20 minutes uptime
    04:03:12, 05 Dec.
    ( 1323.940000) ETHoA is down after 20 minutes uptime
    04:03:11, 05 Dec.
    ( 1323.560000) PPPoA is down after 20 minutes uptime [Waiting for Underlying Connection (WAN DSL - Up)]
    04:03:07, 05 Dec.
    ( 1319.710000) PPP LCP Send Termination Request [User request]
    03:43:01, 05 Dec.
    ( 111.990000) WAN operating mode is DSL
    03:43:01, 05 Dec.
    ( 111.990000) Last WAN operating mode was DSL
    03:43:01, 05 Dec.
    ( 111.940000) PPPoA is up - VPI: 0, VCI:38
    03:43:00, 05 Dec.
    ( 110.980000) PPP IPCP Receive Configuration ACK
    03:43:00, 05 Dec.
    ( 110.970000) PPP IPCP Send Configuration Request
    03:43:00, 05 Dec.
    ( 110.970000) PPP IPCP Receive Configuration NAK
    03:43:00, 05 Dec.
    ( 110.960000) PPP IPCP Send Configuration ACK
    03:43:00, 05 Dec.
    ( 110.960000) PPP IPCP Receive Configuration Request
    03:43:00, 05 Dec.
    ( 110.960000) PPP IPCP Send Configuration Request
    03:43:00, 05 Dec.
    ( 110.960000) CHAP authentication successful
    03:43:00, 05 Dec.
    ( 110.900000) CHAP Receive Challenge
    03:43:00, 05 Dec.
    ( 110.900000) Starting CHAP authentication with peer
    03:43:00, 05 Dec.
    ( 110.900000) PPP LCP Receive Configuration ACK
    03:43:00, 05 Dec.
    ( 110.900000) PPP LCP Send Configuration Request
    03:43:00, 05 Dec.
    ( 110.900000) PPP LCP Receive Configuration Reject
    03:43:00, 05 Dec.
    ( 110.900000) PPP LCP Send Configuration ACK
    03:43:00, 05 Dec.
    ( 110.900000) PPP LCP Receive Configuration Request
    03:42:59, 05 Dec.
    ( 110.760000) PPP LCP Send Configuration Request
    03:42:57, 05 Dec.
    ( 108.730000) ETHoA is up - VPI: 0, VCI:35
    03:42:57, 05 Dec.
    ( 108.730000) DSL is up
    03:42:56, 05 Dec.
    ( 107.250000) DSL noise margin: 5.90 dB upstream, 3.00 dB downstream
    03:42:55, 05 Dec.
    ( 106.330000) DSL line rate: 1163 Kbps upstream, 20664 Kbps downstream
    03:41:56, 05 Dec.
    ( 47.190000) WAN Auto-sensing running.
    03:40:43, 05 Dec.
    (402029.490000) PPP LCP Send Termination Request [User request]
    12:02:02, 30 Nov.
    ( 111.640000) WAN operating mode is DSL
    12:02:02, 30 Nov.
    ( 111.640000) Last WAN operating mode was DSL
    12:02:02, 30 Nov.
    ( 111.600000) PPPoA is up - VPI: 0, VCI:38
    12:02:01, 30 Nov.
    ( 110.860000) PPP IPCP Receive Configuration ACK
    12:02:01, 30 Nov.
    ( 110.860000) PPP IPCP Send Configuration Request
    12:02:01, 30 Nov.
    ( 110.850000) PPP IPCP Receive Configuration NAK
    12:02:01, 30 Nov.
    ( 110.850000) PPP IPCP Send Configuration ACK
    12:02:01, 30 Nov.
    ( 110.850000) PPP IPCP Receive Configuration Request
    12:02:01, 30 Nov.
    ( 110.840000) PPP IPCP Send Configuration Request
    12:02:01, 30 Nov.
    ( 110.840000) CHAP authentication successful
    12:02:01, 30 Nov.
    ( 110.770000) CHAP Receive Challenge
    12:02:01, 30 Nov.
    ( 110.770000) Starting CHAP authentication with peer
    12:02:01, 30 Nov.
    ( 110.770000) PPP LCP Receive Configuration ACK
    12:02:01, 30 Nov.
    ( 110.760000) PPP LCP Send Configuration Request
    12:02:01, 30 Nov.
    ( 110.760000) PPP LCP Receive Configuration Reject
    12:02:01, 30 Nov.
    ( 110.760000) PPP LCP Send Configuration ACK
    12:02:01, 30 Nov.
    ( 110.760000) PPP LCP Receive Configuration Request
    12:02:01, 30 Nov.
    ( 110.630000) PPP LCP Send Configuration Request
    12:01:59, 30 Nov.
    ( 108.580000) ETHoA is up - VPI: 0, VCI:35
    12:01:59, 30 Nov.
    ( 108.580000) DSL is up
    12:01:58, 30 Nov.
    ( 107.380000) DSL noise margin: 5.90 dB upstream, 3.10 dB downstream
    12:01:56, 30 Nov.
    ( 106.160000) DSL line rate: 1151 Kbps upstream, 20344 Kbps downstream

    Afternoon,
    It has now been just over three days now (with Power Outages in between since last post), will I now start to see an improvement in my Noise Margin and Line Speed over night or can a BT Mod reset my profile?
    Thanks in advance,
    Tom
    ADSL Stats:
    Line state:
    Connectedppp0_0
    Connection time:
    3 days, 05:01:04
    Downstream:
    7.938 Mbps
    Upstream:
    443.9 Kbps
    BT HomeHub 4 Stats:
    1. Product name:
    BT Home Hub
    2. Serial number:
    +068340+NQ31571993
    3. Firmware version:
    Software version 4.7.5.1.83.8.130.1.17 (Type A) Last updated 04/12/13
    4. Board version:
    BT Hub 4A
    5. ADSL uptime:
    3 days, 04:59:01
    6. Bandwidth:
    443 / 8128
    7. Data sent/received:
    891.4 MB / 3.7 GB
    8. Broadband username:
    [email protected]
    9. BT FON:
    Yes
    10. 2.4 GHz Wireless network/SSID:
    BTHub4-3873
    11. 2.4 GHz Wireless connections:
    Enabled (802.11 b/g/n (Recommended)) 20 MHz, WPS disabled
    12. 2.4 GHz Wireless security:
    WPA and WPA2
    13. 2.4 GHz Wireless channel:
    Automatic / 11
    14. 5 GHz Wireless network/SSID:
    BTHub4-3873-5GHz
    15. 5 GHz Wireless connections:
    Enabled (802.11 n 40 MHz (Recommended)) 20/40 MHz, WPS disabled
    16. 5 GHz Wireless security:
    WPA2
    17. 5 GHz Wireless channel:
    Automatic / 40
    18. Firewall:
    Default
    19. MAC Address:
    2c:39:96:b3:d5:08
    20. VPI/VCI:
    0 / 38
    21. Modulation:
    G.992.5 Annex A
    22. Latency type:
    Fast
    23. Software variant:
    24. Boot loader:

  • Internet slow down after installing airport extreme.

    I would like to know if there is a reason this slow down occurred. I have tried a locked setting and now have an unlocked setting. Unlocked because that was the only way I could get nintendo ds to work online. Any suggestions would be appreciated.

    Beanziez, Welcome to the discussion area!
    Unfortunately the Nintendo DS only supports WEP and not the much more secure WPA2 or WPA.
    What slow down? You gave no information on this except asking the question.

  • Unexpected slow down in VI

    I have a large VI that is running data aquisition and control on our system.  Recently it has been have some troubles.  After running for a period of time (anywhere from a couple hours to several days) it stops updating once a second, and begins to update once every 25 seconds.  The data updates are from a UDP stream that is pulled from our system every second.  Some version of this VI has been running for on and off for about 9 years and we have never observed this problem before.  In this state it also does not respond to the built in 'stop command' - which gracefully stops the whiles loops/data files, however, it can be stopped using the hard execution stop.  Starting the VI again after stopping it and it is back to normal with no problems. 
    This started occuring after we rebuilt the laptop that the VI was running on.  We backed up the VI and are running the same version that was running before the system was rebuilt.  The slow down does not occur after any set number of data points or time, just randomly.  A VI running simultaneously pulling data from the same source as this one does not have any trouble/slow down - this VI is always running concurrently, so it is not a source of the problem.  The task manage doesn't indicate that the CPU is bogged down, or that any other applications are running in the background.  The computer is on an isolated network with about 5 other machines, all of which are pulling data from different sources.
    Is there a way to determine where the VI in it execution while it is running?  Anyone else had problems with a VI slowing down after rebuilding a computer?  Any hints as to where I should start looking for my problem.

    What is the OS? What are the firewall settings? Do you have an updated driver for the network card?
    25 seconds is suspiciously similar to the default UDP timeout for UDP read. This might give you a clue where to look.
    LabVIEW Champion . Do more with less code and in less time .

  • JMS Queue slows down after time

              Hi,
              Our system makes use of queues extensively. We, pumps trhough tens of thousands
              of messages every day . Every few days, our Weblogic 7 SP5 JMS queue slows down
              with very little activity. After restarting the instance, everything goes back
              to normal. We have about 14 queues in our system with a very high rate of throughput.
              Any ideas as to what slows down the queue requiring a restart.
              The JMS file store is excluded from anti-virus and backup software.
              Kevin
              

              Hi Tom, The memory usage is fine. 1Gb is available to the JVM and the memory usage
              is usually about 1/4th of that when we experience the issues below
              Tom Barnes <[email protected].bea.com>
              wrote:
              >Another thing to look at is server CPU usage before and
              >during the slowdown.
              >
              >Also memory usage. There may be a memory leak
              >somewhere that expands JVM memory to the point
              >where the operating system begins to page...
              >
              >Kevin Sharfman wrote:
              >
              >> Hi Tom, We are able to measure a slowdown by the time it takes to post
              >messages
              >> to a queueas well as the time for a message to be delievered off the
              >queue. Our
              >> throughput just drops dramatically. During this time, the number of
              >messages in
              >> the queues are quite low, due to the slow duration of posting a message.
              >I will
              >> try and obtain thread drumps. However, the are no error messages nor
              >logs that
              >> point to any problem. Restarting the instance, immediatly solves the
              >performance
              >> problem. This problem occurs intermittedly - sometimes once a week
              >or once every
              >> 2 weeks or even twice a week.
              >>
              >>
              >> Tom Barnes <pleasereplyinnewsgroup.weblogic.developer.interest.jms@newsgrou
              >>
              >> ps.bea.com> wrote:
              >>
              >>>Hi Kevin,
              >>>
              >>>Is the number of messages in the destination higher at
              >>>these times?
              >>>
              >>>If there is "very little activity" how can you
              >>>measure a slowdown?
              >>>
              >>>Can you force server side thread-dumps the next
              >>>time this occurs?
              >>>
              >>>Tom
              >>>
              >>>Kevin Sharfman wrote:
              >>>
              >>>
              >>>>Hi,
              >>>>
              >>>>Our system makes use of queues extensively. We, pumps trhough tens
              >>>
              >>>of thousands
              >>>
              >>>>of messages every day . Every few days, our Weblogic 7 SP5 JMS queue
              >>>
              >>>slows down
              >>>
              >>>>with very little activity. After restarting the instance, everything
              >>>
              >>>goes back
              >>>
              >>>>to normal. We have about 14 queues in our system with a very high
              >rate
              >>>
              >>>of throughput.
              >>>
              >>>>Any ideas as to what slows down the queue requiring a restart.
              >>>>
              >>>>The JMS file store is excluded from anti-virus and backup software.
              >>>>
              >>>>Kevin
              >>>
              >>
              >
              

  • Flash html5 - How can i make an internal movie clip slow down and stop when it get to a certain frame?

    I am creating an automotive braking system using flash and have a wheel turning. I want the wheel to slow down and stop after the brake pedal is pushed at a certain frame. I know I could do this with frame by frame animation but was hoping there was a short cut - javascript?? If not the slowing down portion then is there code for just making the internal movie clip (wheel turning) to stop when it gets to a frame.? Thanks

    you can use the ticker class to create a loop that you use to control the wheel's rotation or frame, TweenJS v0.6.0 API Documentation : Ticker

  • FCP slowing down in timeline

    FCP is slowing down in the timeline. In other words, it does not respond instantly as I jump around on the timeline (it does fine in the viewer.) Yet, I have very little in the timeline. I've closed other sequence tabs and reduced the display to its most basic (no waveform display, et cetera.) Why would FCP slow down so easily? What slows down FCP the most?
    thanks,
    m

    There are many possible cause that can affect performance.
    Please do not refrain from posting more info about your settings, format you are working with etc.
    Problems may occur when for example your preferences get corrupted ([FCPRescue|http://www.macupdate.com/info.php/id/14729] usually can help in such case) or in a completely different scenario when your audio is not 48khz 16bit but lower or when using audio files or video files that FCP does not like very much.
    Running several demanding applications (i.e. Motion) with low RAM availability can cause slow performance. Using an external drive via USB is another bad idea.
    G.

  • Computer slows down and locks up after installing Xtreme Mu

    I recently upgraded my Audigy 2 to the new Xtreme Music soundcard. The music sounds great!? Before install, I uninstalled all drivers from the Audigy 2. Now, my computer behaves differently. Before the login screen (Windows XP), my video flashes multiple colors for about 2 seconds. After logging into Windows, applications have slowed down (this is after installing the drivers for the sound card and updating the software to the latest from the website). For example, Email took some time to come up (outlook), and then a word attachment refused to come up. IE took considerable amount of time to launch. This is after running the computer with the sound card for a week.
    The problems aren't consistent. I returned the card, and the salesman asked if I plugged in the external power (floppy dri've connector). I read the instructions, and they did not state to do this, but I will give it a try. I swapped the card for a brand new one and brought it home. This time, I plugged in the external power. Same symptoms, if not worse. It is sporadic, and sometimes worse than others.
    This morning, my computer was working extremely slow opening IE or Outlook and reading email. I pulled the sound card and all is great again. Bummer!? I really like the sound this card produces. My fear is, will ANY X-Fi card do this or just the Xtreme Music?I have an ASUS P4P800 Deluxe (onboard sound has always been disabled). I didn't have any problems with the Audigy 2. 550W power supply, Gig memory, Pentium 4 2.8 GHz processor, and and ATI X600 video card. No other cards are installed in the system.

    I tried it is 2 separate slots. Same symptoms. I am looking to see if it is a power issue (not enough juice from a 550w power supply), or if there is a conflict. I still have the creative drivers and software loaded without the soundcard installed and no problems (So I'm ruling out the creative sound software).

  • How to find out what is slowing down your wireless speed

    The first thing you need to do is when setting up your wireless internet is do it right from the beginning. For starters unplug and remove the batteries from all the cordless phones. If you have a wireless door bell or a repeater shut it off and unplug it.. Anything that is wireless in your house needs to be turned off. This also includes cell phones, Ipad's and Ipod's.This thing of telling the homeowner that the mircowave is causing problem is hog wash. But don't have it running while you are setting this up. In other words nothing in your house should be running including the AC and heat. Anything that is pulling hi amperage should be shut down during the set up. Now unplug all cables on the router except for your computer cable and power supply to the router. Hold the reset button in long enough to clear all settings. Now you are ready to set this up right. Sign into your router and go to My Network, if it is showing something other that your main frame computer you still have something on that the router is picking up. Find it and turn if off and reset the router again. Once everything is cleaned and the only this showing up is the computer you are ready. Now go to Speed Net or what ever you check your speed with and write down your average speed. Do three or four speed test to get the average reading. BTW, clear all cookies before you check your speed. Now go back into your router settings and rename you computer to what ever so you won't get that IP address confused with the rest of your hook up. Next take only one of your wireless devices and turn it on. Once the router picks it up rename it and put the security code on for that device to connect to the wireless device. It should also show it as being a wireless device. Also if all your devices can except performance mode go for it because the speeds will always be faster. Also start selecting one channel at a time to find the one that has the fastest speed. Try doing this close to the router, like in the same room. If you are using the performance mode your upload and download should be close to your wired connection. Now go to different parts of the house. You will see some drops but that is normal. Don't do this test on a PS3 or a WII because those speeds will always be slow no matter what you do. All Apple products won't work with Speed Net. Once you get connected to the internet it is always better to go back into your router and write down the assigned IP address and the IP address to the router sign in and manually put them in to each device. Always remember the higher security setting you can set you the faster the speed will be. Do each device as said in the above way. Something else you also might want to do is after you have set up each wireless device go back into your router setting under Wireless settings and disable SSID Broadcast. Only thing this will do is make it to where nobody can see your wireless connection. That way when someone wants to hack your router they won't be able to see it...ya can't hack what ya can't see....lol. Once you get all said wireless devices set up and connected then go back and start turning on phones...ect..ect. If you are truly getting interference you will be able to change the channel on either that device or change the channel on the router for that device. Most of the devices in this day and time should be able to except the 802.11n or the next letter down.The bad thing about the newest Verizon router is the security is still outdated for the PS3. Part two of this is Sony is still using a crap-o-la wireless internet receiver, as a result I don't care what cha do unless you hard wire it in and that still only helps some. Also this thing of putting your router on the window seal or up near the ceiling is also poo poo. If this was a true case why not just hook up a High Def antenna in the room...lol Also this thing of stating don't put the router near a wall is also doo doo. Their would have to be a load of copper wire in that wall to prevent a signal from going through it. If you think about it all wall electrical outlets are wired low to the floor. They take one room and wire them all together. They don't wire it up and down the walls. So most rooms have the wiring a foot from the floor.The most wire you will find in a house at one location is at the circuit breaker box and the box should be on a outside wall in the garage. In older homes like the 40's and 50's some are in the kitchen or a bedroom closet. On the older homes try and steer clear of those locations. Now if you are getting interference from something in your home this will be a easy way to find it. One thing Verizon needs to stop telling it's customer and that is if you get a faster speed which is more money it will correct your wireless problem...hog wash Once you spend your hard earned money and sign the contract, they forget to tell you they only guarantee that speed if it is hard wired...lol for some reason they always forget that part.

    I forgot to suggest one more thing. On your computer go to start/ run/ type in MSCONFIG and go all the way to the right and click start up and then at the bottom select disable all and then reboot. Windows will only load what it need to operate. After that go back into MSCONFIG and go back to the start up and put a check into what ever security program you are using and reboot. Everything will still work fine. The only thing you are doing here is not running all the programs each time you turn your computer on.What this will do if you do this is it will start programs faster and it also is less wear and tear on your pooter. If you want to see what I am talking about go here>> http://www.blackviper.com/ and he will explain and show in full detail what I am talking about as far as being robbed by unnecessary programs running in the back ground. He will also explain the correct way of disabling things that you will never use. MS is set up for remote operation. Like calling your pooter from a phone which I am pretty sure most don't use that feature. If you want to see what happens when you go to any site while surfing download the free copy of CrapCleaner, run it and let it remove all the internet clutter and cookies, then go to one site and close IE down and rerun CrapCleaner again. You will then see what is really slowing down your internet speed. If you are using Windows 7 or 8 you need to go to Control Panel/ Taskbar and Start Menu/ then select Start menu again/ Customize/ and scroll down to Run Command and check it. Now you will be able to see the run command. I don't know why MS removed that feature.

  • I have noticed iOS6 slow down browser and email client, I really hope Apple will find solution for this. Junaid

    I have noticed iOS6 slow down browser and email client, I really hope Apple will find solution for this. Junaid

    We need to know more about your system, please download EtreCheck and run the report and please post it on your next reply. Then we can see how your system is configured, what apps are on it and look for anything obvious. We will look forward to seeing your report.

  • I'm about to buy a 27" i-Mac. I would like to connect my 30" Cinema Display to it as a second monitor. What will I need to do that? Will this slow down the overal performance?

    I'm about to buy a 27" i-Mac. I would like to connect my 30" Cinema Display to it as a second monitor. What will I need to do that? Will this slow down the overall performance?

    The new iMacs do not come with a MiniDisplayPort, they have Thunderbolt, so unless you are talking about purchasing one of the previous generation iMacs such as this refurbished model in the online Apple store, it won't work. And yes, if you are going to get the full range of video resolutions you will need the Dual-Link version.
    For details see the store's web page on the Dual-Link display adapter.

Maybe you are looking for