Execution times and other issues in changing TextEdit documents

(HNY -- back to terrorize everyone with off-the-wall questions)
--This relates to other questions I've asked recently, but that may be neither here nor there.
--Basically, I want to change a specific character in an open TextEdit document, in text that can be pretty lengthy. But I don't want pre-existing formatting of the text to change.
--For test purposes the front TextEdit document is simply an unbroken string of letters (say, all "q's") ranging in number from 5 and upwards. Following are some of the results I've gotten:
--1) Using a do shell script routine (below), the execution is very fast, well under 0.1 second for changing 250 q's to e's and changing the front document. The problem is that the formatting of the first character becomes the formatting for the entire string (in fact, for the entire document if there is subsequent text). So that doesn't meet my needs, although I certainly like the speed.
--SCRIPT 1
tell application "TextEdit"
set T to text of front document
set Tnew to do shell script "echo " & quoted form of T & " | sed 's/q/e/g'"
set text of front document to Tnew
end tell
--END SCRIPT 1
--The only practical way I've found to change a character AND maintain formatting is the "set every character where it is "q" to "e"" routine (below). But, for long text, I've run into a serious execution speed problem. For example, if the string consists of 10 q's, the script executes in about 0.03 second. If the string is 40 characters, the execution is 0.14 second, a roughly linear increase. If the string is 100 characters, the execution is 2.00 seconds, which doesn't correlate to a linear increase at all. And if the string is 250 characters, I'm looking at 70 seconds. At some point, increasing the number of string characters leads to a timeout or stall. One interesting aspect of this is that, if only the last 4 characters (example) of the 250-character string are "q", then the execution time is again very quick.
--SCRIPT 2
tell application "TextEdit"
set T to text of front document
tell text of front document
set every character where it is "q" to "e"
end tell
end tell
--END SCRIPT 2
--Any insight into this issue (or workaround) will be appreciated.
--In the real world, I most often encounter the issue when trying to deal with spaces in long text, which can be numerous.

OK, Camelot, helpful but maddening. Based on your response. I elected to look at this some more, even though I'm stuck with TextEdit on this project. Here's what I found, not necessarily in the order I did things:
1) I ran your "repeat" script on my usual machine (2.7 PPC with 10.4.6)) and was surprised to consisently get about 4.25 seconds -- I didn't think it should matter, but I happened to run it with Script Debugger.
2) Then, curious as to what a slower processor speed would do, I ran it at ancient history speed -- a 7500 souped up to 700 MHz. On a 10.4.6 partition, the execution time was about 17 seconds, but on a 10.3.6 partition it was only about 9.5 seconds. (The other complication with this older machine is that it uses XPostFacto to accommodate OS X.) And I don't have Script Debugger for 10.3.x, so I ran the script in Script Editor on that partition.
3) That got me wondering about Script Editor vs. Script Debugger, so (using 10.4.6) I ran the script on both the old machine and my (fast) usual machine using Script Editor. On the old machine, it was somewhat faster at about 14 seconds. But, surprise!, on the current machine it took twice as long at 8.6 seconds. The story doesn't end here.
(BTW, I added a "ticks" routine to the script, so the method of measuring time should be consistent. And I've been copying and pasting the script to the various editors, so there shouldn't be any inconsistencies with it. I've consistently used a 250-character unbroken string of the target in a TextEdit document.)
4) Mixed in with all these trials, I wrote a script to get a list of offsets of all the target characters; it can be configured to change the characters or not. But I found some intriguing SE vs. SD differences there also. In tests on the fast machine, running the script simply to get the offset list (without making any changes), the list is generated in under a second -- but sometimes barely so. The surprise was that SE ran it in about half the time as SD. although SD was about twice as fast with a script that called for changes. Go figure.
5) Since getting the offset list is pretty fast in either case, I was hoping to think up some innovative way of using the offset list to make changes in the document more quickly. But running a repeat routine with the list simply isn't innovative, and the result is roughly what I get with your repeat script coupled with an added fraction of a second for generating the list. Changing each character as each offset is generated also yields about the same result.
My conclusion from all this is that the very fast approaches (which lose formatting) are changing the characters globally, not one at a time as occurs visibly with techniques where the formatting isn't lost. I don't know what to make of SE vs. SD, but I repeated the runs several times in each editor, with consistent results.
Finally, while writing the offset list script, I encountered a couple AS issues that I've seen several times in the past (having nothing specifically to do with this topic), but I'll present that as a new post.
Thanks for your comments and any others will be welcome.

Similar Messages

  • Logviewer 1.14 showing incorrect times, and other issues.

    Couple of issues with running LogViewer, wondering if anyone can help.
    First, and seems to be the most frustrating, is that the LogViewer screen is showing incorrect times for the events. I am in Mountain Time zone in the US, which is GMT-7. When looking at the log from a web browser, my router is displaying the correct time. The text file that LogViewer saves on the local computer shows the same correct time. The LogViewer screen, however, shows a time 7 hours into the future. IE, if I type out the log from a DOS window, the last event will say something like "Mar 28 1:15:05 2008", but that same event number will be listed on the logviewer screen as "Mar 28 8:15:05" Any ideas on what may be wrong and how to correct it?
    Second, all events seem to be grouped exactly 3 minutes apart. I realize this is probably an effect of the router sending the information every three minutes. Anyone know of a way of changing that period?
    Hm, just noticed a third, but very minor issue. The text file written has the wrong day of week on it. It's listing Mar 28 2008 as a Wednesday...
    Thanks in advance for any advice.
    OK, the tech info. I am running LogViewer 1.14 on a Windows XP machine, contacting an WRT55AG with firmware 1.20. The connection is through a Cat 5 cable, not through the wireless.

    Couple of issues with running LogViewer, wondering if anyone can help.
    First, and seems to be the most frustrating, is that the LogViewer screen is showing incorrect times for the events. I am in Mountain Time zone in the US, which is GMT-7. When looking at the log from a web browser, my router is displaying the correct time. The text file that LogViewer saves on the local computer shows the same correct time. The LogViewer screen, however, shows a time 7 hours into the future. IE, if I type out the log from a DOS window, the last event will say something like "Mar 28 1:15:05 2008", but that same event number will be listed on the logviewer screen as "Mar 28 8:15:05" Any ideas on what may be wrong and how to correct it?
    Second, all events seem to be grouped exactly 3 minutes apart. I realize this is probably an effect of the router sending the information every three minutes. Anyone know of a way of changing that period?
    Hm, just noticed a third, but very minor issue. The text file written has the wrong day of week on it. It's listing Mar 28 2008 as a Wednesday...
    Thanks in advance for any advice.
    OK, the tech info. I am running LogViewer 1.14 on a Windows XP machine, contacting an WRT55AG with firmware 1.20. The connection is through a Cat 5 cable, not through the wireless.

  • Some songs in my Ipod classic get get off after a few seconds of playing, but they work fine in ITunes and other Ipods.  I have reset the classic several times and same issue happens, any ideas?

    Some songs in my Ipod classic get get off after a few seconds of playing, but they work fine in ITunes and other Ipods.  I have reset the classic several times and same issue happens, any ideas?

    I have that exact same problem! It plays albums fine. But individual songs including ones downloaded from iTunes either skip or play the music of another totally different song. All play fine on iTunes and my iPhone... Got this one to replace my dying 5th gen classic.
    I hope there is a fix for this, cause it *****!!!!

  • SAP BO Report Execution time and Record count

    Hi All,
    We have a requirement to set the limits on report execution time and record count centrally. Can you please help me to identify where exactly we have to define the settings in CMC for BO4.
    Thanks in advance,
    Shalini

    Hi Shalini,
    Please follow these steps, also check in for any more details if any;
    Step 1: Launch CMC
    Step 2: Select Servers
    Step 3: Select Web Intelligence processing Server, right click and Goto Properties
    Step 4: Maximum List Of Values Size (entries) default value is 50000.
    Step 5: Increase this value if your "LOVS" greater than this value.
    Step 6: Save and close.
    Step 7: Restart the server.
    Hope this helps.
    - Ram

  • Tell me what is ******* going on!!!????! The time and date issues!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Every times I went to Apple store, the phone automatically works good time, but when I came back, my phone is working very slow with wrong time!

    The time and date issues!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Every times I went to Apple store, the phone automatically works good time, but when I came back, my phone is working very slow with wrong time!
    I want to get a new iPhone to replace this defective phone. I am gonna be crazzzzzzzyyyyyyyy with anger,!!!,!,,,!  I takes2 hours to go to Regent street apple stores for three times!!!!!. It is a lot of transport fees !
    PLz tell me why! How to deal with it !

    Unless it's confirmed officially that your phone is defective, then you can ask for a replacement. Or you have to live with you. However you can trade it for a new one if you don't care the price drop.

  • Elite Pro, CMSS-3D not working and other issues after driver update

    DElite Pro, CMSS-3D not working and other issues after driver update <font face="arial,helvetica,sans-serif" size="4">Elite Pro CMSS-3D control (on I/O console)no longer controls CMSS-3D.
    The only time it works is if the original drivers are installed from the installation CD.
    ANY other drivers stop the control on the Elite Pro I/O console from having any effect on CMSS-3D.
    Also at one time when I cotrolled volume, CMSS-3D(original drivers), EAX and Crystalizer from the Elite Pro I/O controls then I had on screen display of said control that was being moved(on I/O console).
    Now regardless of what drivers are installed, there?are no longer any on screen indicators.
    The indicators looked like the ones that show when using the remote controller.
    Anyone have any ideas?

    Hello friends, if any body have problem with "Creative Sound Blaster X-Fi series Driver 2.8.003" then you can download previews "Creative Sound Blaster X-Fi series Driver 2.8.0008" from above direct Links :
    http://rapidshare.com/files/252388832/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part0.rar
    http://rapidshare.com/files/25239047/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part02.rar
    http://rapidshare.com/files/252397989/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part03.rar
    http://rapidshare.com/files/252397990/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part04.rar
    http://rapidshare.com/files/25239799/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part05.rar
    http://rapidshare.com/files/25240785/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part06.rar
    http://rapidshare.com/files/25240787/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part07.rar
    http://rapidshare.com/files/252405003/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part08.rar
    http://rapidshare.com/files/252408540/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part09.rar
    http://rapidshare.com/files/252408542/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part0.rar
    http://rapidshare.com/files/2524409/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part.rar
    http://rapidshare.com/files/25244020/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part2.rar
    http://rapidshare.com/files/2524402/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part3.rar
    http://rapidshare.com/files/25244022/[email protected]7.254.6.0

  • Why are some of my calendar appointments synching, some synch multiple times and others not at all?

    why are some of my calendar appointments synching, some synch multiple times and others not at all?

    iTunes: May be unable to transfer videos to iPhone, iPad, or iPod - http://support.apple.com/kb/TS1497

  • Hello,i have updated to the new 11,and now i tunes will not open,error pops up,says Data Execution Prevention,and other error we can not complete ur i tune request,unknown error 4002,i have uninstalled and reinstalled ,has been not help.

    hello,i have updated to the new 11,and now i tunes will not open,error pops up,says Data Execution Prevention,and other error we can not complete ur i tune request,unknown error 4002,i have uninstalled and reinstalled ,has been no help.

    - Try restoring on another computer.
    -  Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Does anyone know what's up with the iPhone 4s' battery life? Some days it last a long time and other days it drains extremely fast.

    Does anyone know what's up with the iPhone 4s' battery life? Some days it last a long time and other days it drains extremely fast.

    Not to point out the obvious, but battery life depends very much on what is running and how much the device is being used.
    If the battery lasts longer on a day you make no phone calls, but lasts less the day you make 5 hour long calls, this is to be expected.
    If however the iPhone has the same level of use on both days, with different power consumption, this would infer a background process (or App) is trying to do something (connecting to server or creating a back up etc).
    I switched off all thrid party apps from being included in my iCloud backup, which saves a huge amount of space on the cloud and allows the back up to take barely a couple of minutes.
    Battery life seems ok so far on my 64GB 4S (Bluetooth on, Wi-Fi on, Location Services on, Push notifications on, Screen set to just under half brightness with Auto Adjust on)

  • Failed Hardware Scan and other issues E440

    Hi all,
    This is probably more rant than anything, but I wanted to give a heads up to others too.
    I have a ThinkPad E440 that is a year old. From the very first time I turned it on, there have been issues. The first hardware scan (via Lenovo Solution Center - LSC) showed a warning for the Intel Dual Band Wireless-AC 7260 Local Connection Test. There were also tons of System Events that always show up in the "Configuration History" part of the LSC. You can look at the calendar and tell exactly which days I used the computer because there will be System Events generated each day. Things like app crashes and failed drivers.
    In July 2014, I got the first warning for the 16 GB SSD - the SMART Short Self-Test. By February this year it showed as failed for each hardware scan (these were initially set up to run monthly).
    Also the whole time I've had it the touch screen would just stop working at some point and I would have to reboot to get it working again.
    I finally called Lenovo on March 30th, before my warranty expired. When I called that time, I didn't realize the hard drive failure was the SSD. So they sent me a new 500 GB drive. I also added the other things into the case when I talked to them. For the wireless issue they suggested making sure the driver was up to date. I did this and let them know when I called back that it was up to date and still having the warning. So I called them to tell them to tell them about the wireless and also that I realized it was the SSD having the failure, not the main drive. The first case had already been closed even though none of the other items were addressed.
    So they opened another case (this is #2). They said to mail them the laptop since the wireless issue would probably be on the board and it wasn't something I could fix myself. They sent a box with a prepaid overnight shipping label. I was very sick for a few days so I sent it back to them on April 10th (a Friday). Via UPS I saw it was delivered on Saturday. Work was performed on it Monday, April 13th and sent back to me that very day. I received it on April 14th. This part of the service has been excellent - very fast response.
    Being in IT, I included a letter with the laptop that outlined the issues that should have been in the case. I also printed the hardware scans and what the system events looked like.
    When I got the laptop back, the sheet inside said they had replaced the Speaker because of Distorted Sound. This was not even on the list even though I had noticed it. I didn't even power up the laptop before calling them again - yes, I was furious! Plus our power was out...
    So this was noon on the 14th. They opened case #3 and sent me ANOTHER BOX so I could send it back.
    After our power came back on the 15th, I powered up my laptop. I opened the browser (I have it set to restore the previous session) and there was a sexually explicit video on YouTube. I opened the other browser and there was a different video on YouTube. So this person was watching YouTube instead of fixing my laptop. I looked through both browser histories and there was quite a bit of activity while my laptop was at the repair center... I ran the hardware scan - still failed and a warning for the wireless. They really hadn't done anything.
    I also found two pictures of the repair person in the recycle bin...
    So I called back. I was LIVID! They opened another case (this is #4). And sent me ANOTHER BOX. I finally learned the other day that once a case is opened, it cannot be edited or added to at all. Instead, they close the other case and open a new one. I guess their turnaround time for closing cases is excellent! I've never seen a system like that - and I've used a lot of them.
    I got a really nice, patient fellow on the line. He took all my info (again). I emailed him the pictures, screen captures of the YouTube videos, the letter I had sent - everything. He entered as much into the new case as he could - he talked to one of the supervisors to make sure he did it right. Somehow he flagged it so that the laptop would get more attention (time) at the repair facility. He also opened a separate case (an escalation ticket?) for a supervisor to call me regarding the person's conduct at the repair facility. He said they would call me that day. (It's now the 25th and I've never heard from anyone)
    So, he sent me ANOTHER BOX. I've built up quite a stack of them.
    Our power was out AGAIN from the 17th through the 19th (don't get me started).
    I noticed a hardware scan had now gotten a failure on the main hard drive. So I called them on the 21st to add this to the case before sending the laptop back. The girl said they can't add anything to an existing case or edit it at all once it's opened. She would have to open a new case and SEND ME ANOTHER BOX. I told her to forget it because I was ready to send it in and didn't want to wait for another box. I also asked for a status on that "escalation case" where the supervisor was supposed to call me. In order to do this she, yes, wait for it, had to open ANOTHER CASE!! So they would know I wanted a status. I'm completely dumbfounded.
    So I sent it back on the 21st. This time I practically wiped it. I had already removed all my files the last time, but I had left my bookmarks and browser history intact.  I set up a guest logon with admin privileges. I updated my letter and printed off more stuff to include with the box. On one sheet I had only the case number, the serial number and machine type. On another sheet I had "DO NOT SEPARATE THIS PAPERWORK FROM THE LAPTOP" and the case number. I put this sheet on top (The guy on the 15th said my letter and stuff may have gotten separated from the laptop once it was delivered to the repair facility). I used a ton of staples so it would all stay together. I included in my letter the failure on the main hard drive and asked if they could look at it. I wrote about having to open a new case if I wanted to include it.
    They received it on the 22nd. A nice gentleman from the repair facility called me that day asking about the password. that. was. written. on the sheet they have you fill out. I told him what happened last time and also mentioned the hard drive failure and asked if he could look into it. He said they would.
    I received my laptop back yesterday morning.The sheet that came with it said they had "replaced the following parts to complete the repair of your laptop."
    Part Description                                           Symptom
    IMAGE                                                             Replaced due to engineering change
    System board                                                 Network card error
    Hard disk drive                                                Network card error
    ECA-WIRELESS                                            <no symptom listed>
    There was also a sheet saying they had installed a factory preload of software and I needed to install Lenovo and Windows updates.
    When I booted it up, the first thing I noticed, in the lower right corner was:
    Windows 8.1
    SecureBoot isn’t configured correctly
    Build 9600
    I ran a hardware scan. Well, I tried. It stopped part way through and said it finished successfully but most of the tasks showed up as cancelled. I tried to run it again - issues - rebooting ensued. It said the LSC wasn’t available and that I should try again or reboot.
    Tried several times. Then got what I guess is the new BSOD - kinder, gentler:
    Your PC ran into a problem and needs to restart. We're just
    collecting some error info, and then we'll restart for you. (xx% complete)
    If you'd like to know more, you can search online later for this error: DRIVER_CORRUPTED_EXPOOL
    Even though the LSC said my Lenovo files were all up to date, I ran the Update. And first I had to download a new version of Update. Then I downloaded all of the Lenovo updates and installed them (there were quite a few). The BIOS update failed. While I was doing the Lenovo downloads, I got a light blue screen but no text (I was out of the room so I'm not sure what happened). Did CTRL-ALT-DEL and it shows only IE and Task Manager as applications that are running. Could not “Switch to” IE. Hitting window key to go to start didn't do anything. So I had to restart.
    By 3pm yesterday there were 34 system events in the configuration history.
    I ran the hardware scan again after I updated the Lenovo files, and you guessed it! Failure on the SSD (SMART Short Self-Test) and warning on the wireless. Nothing had changed. Except hardware scan is acting different than it did before I sent in the laptop for repairs. When it finishes, it instantly closes and just shows 100% complete. When I click on "see last results" it shows a screen called
    Log Information,
    Canceled 04/24/2015 n:nn pm 
    You have not done a hardware test on your computer
    And the calendar in LSC only shows the very first hardware scan I did on Friday. Even the hardware scan screen shows the date and time of the last scan. It also shows the error code. In order to see exactly what is failing, I have to sit there and watch it very closely and snap a picture of the screen as soon as the error (or warning) shows up.
    When I would try to run Windows update, it would hang up PC Settings. I couldn't even kill it using task manager because it didn't show up as a task. During this, I got a flag saying the firewall wasn't turned on. I tried to turn it on, but clicking on Turn on Windows Firewall didn't do anything. I tried to setup my Microsoft account but that just hung too.
    I ended up running Windows Update FOUR TIMES to get all the updates installed. Every time I ran it, it said "Done!" and I would run it again and more would show up. The last time was this morning.
    At some point, the error about SecureBoot went away.
    Then, I created a bootable BIOS update disk. Following the ReadMe instructions, I went through ThinkPad Setup and verified several values. Of note:
    Secure Boot was DISABLED. According to the ReadMe file, this should be ENABLED in Windows 8.1. I enabled it.
    Under Startup/Boot, according to the ReadMe that came with the BIOS update, UEFI/Legacy Boot is supposed to be set at UEFI Only for Windows 8.1. Mine was set to "Both". I changed it.
    In Startup, OS Optimized Defaults was DISABLED, even though it says right there (and in the BIOS update ReadMe) it should be ENABLED to meet Microsoft Windows 8 Certification Requirement.
    After these updates, I flashed the new BIOS.
    Then, I ran hardware scan again...
    Now I have TWO failures on the SSD: Random Seek Test and SMART Short Self-Test. Great.
    In the Event Viewer (that I recently discovered), it says my disk has a bad block. It just says The device, \Device\Harddisk\DR1, has a bad block. I assume this is the SSD...
    There are 867 events in the event viewer - Critical, Error, and Warning...
    Fifty-two of these are from October 7, 2013 - before my little laptop was a glimmer.
    The rest are from when Lenovo had it and yesterday and today.
    64 of them are the disk error.
    341 are from DeviceSetupManager. 65 of those are from failed driver installs. 69 are for not being able to establish a connection to the windows update service. 64 are from not being able to establish a connection to the Windows Metadata and Internet Services (WMIS).
    3 times it's rebooted without cleanly shutting down
    60 of them are from Service Control Manager and say The TDKLIB service failed to start due to the following error: The system cannot find the file specified.
    One of them says {Registry Hive Recovered} Registry hive (file): '\??\C:\Users\Default\NTUSER.DAT' was corrupted and it has been recovered. Some data might have been lost.
    16 are warnings that various processors in Group 0 are being limited by system firmware.
    12 say the certificate for local system with thumbprint <bunch of hex numbers> is about to expire or already expired.
    108 are warnings for failure to load the driver \Driver\WUDFRd for various devices
    16 are application errors
    One is for the computer rebooting from a "bug check"
    15 are for name resolutions timing out after none of the configured DNS servers responded.
    10 are for SecureBoot being disabled.
    14 for services terminating unexpectedly
    15 are for WLAN Extensibility Module has stopped
    61 are for applications not being able to be restarted because the application SID does not match Conductor SID
    12 are for activation of CLSID timing out waiting for the service wuauserv to stop
    So, I'll call them on Monday and open. a. new. case (#5?) - but really 7. And get A NEW BOX.
    I'll keep you updated!

    Hi amycdero and welcome to the HP Forum,
    I understand that you are having scanning and printing issues after upgrading to Mavericks OS X v10.9.1. I will try my best to help you resolve this issue.
    In this document for Mac OS X: Scanning Software Does Not Open or Stops Responding are steps the may help you with your scanning issue.
    This document for Fixing Ink Streaks, Faded Prints, and Other Common Print Quality Problems should help with the streaking printing issue.
    I hope this information is helpful. Please let me know.
    Thank you,
    I worked on behalf of HP.

  • WRT54G Wireless Setup page won't load and other issues.

    Well I have had quite the mess the last 24 hours. I'll start from the beginning and attempt to spell out the issues I am having. I have had this router for 4 years or so and have never had a problem.
    I recently purchased a PS3 and started using the wireless feature that it offeres. Well I was having problems staying connected and was running in to IP address conflicts with my laptop. So I thought I would cure that by moving the router to the ps3 and using a wired connection for its internet. So that is what I did and that is when the problems started snowballing!!  After I got the router moved and everything set up, all seemed well at first.
    Shortly thereafter I realized I was still getting IP conflicts. So i did some research and saw where I could dedicate an address for the ps3 and also change some of the wireless settings on the router homepage. I previously had never password protected my network. I'm in a rural area and there aren't many people around that would be trying to get on it. But I figured since I was there I would rename the network and password protect it and all of that. Well that didn't help either. I was still having problems.
    I then did all of the resets. Online, on the unit and also a power cycle. So I was back to square one with the settings at this point. So today I noticed that my connection would go from its norm of 54mbps down to1 and then lose connection. I did the resets and restarts and all of that, to no avail. Then it got to the point where it wouldn't connect at all. I checked the actual connection by connecting my computer directly to the modem and it worked flawlessly. So I know it is a router problem. I also tried using 2 seperate laptops and they both responded the same.
    I think part of the issue I had then was that the modem and router were on my entertainment center and weren't very high and were in a shelf. Also, my surround sound receiver does use a wireless connection to 2 of its speakers. I didn't know the proper placement of a router until I had this problem. Now that it is back in its previous location the connection seems to be normal, although once in the last hour I did drop down to 1mbps and have to disconnect and reconnect. But it hasn't happened again so far.
    However, I am unable to access the wireless page on the router setup page. I did yesterday but it won't load today. On either computer. So I am unable to change the name of my network or assign a password or change any other wireless setting. And again, I've tried every reset method and it still don't work.
    Also, does anyone have any advice on the conflicting IP addresses with the ps3? They sent me an email stating that it may be a port or firewall issue? After doing some online research it seems this particualr router has had a lot of problems getting along with the ps3.
    I hope I haven't put in too much information but I was just trying to make sure I had any questions I could think of answered ahead of time. I've tried about every avenue I could already. I tried the chat help and was told I didn't qualify and was sent to the phone assistance who after a half hour realized I didn't qualify for that help either. So, here I am!!! Thanks ahead of time!

    Make sure that there is no static IP address on any of your computer. You can assign a static IP address on Play station.
    Connect the computer to the router with the Ethernet cable.
    Download t he latest firmware from Linksys website and save it on your computer.
    Open the setup page of the router. Go to Administration tab and click on Firmware upgrade sub tab. Browse the firmware file that you have already downloaded and upgrade it on your router.
    After upgrading the firmware on your router, it is recommended that you should reset the router and reconfigure it. Press and hold the reset button on the router for 30 seconds. Release the reset button and wait for 30 seconds. Power cycle the router and reconfigure it.
    Change the MTU size on the router to 1365.
    Go to Wireless tab and change the wireless network name and channel to 11. Also change the wireless security settings.

  • HP Spectre x360 13-4002dx active pen and other issues

    Hi, I'm havng issues with my active pen, but wasn't sure if it's an issue with my laptop or stylus (or if it's a software/driver issue). Is there an easy way to tell?Also, I've been using my laptop for a month now, and recently have had other issues, listed below. I wrote them down below in case that could provide some information, and/or if those issues are something I should be concerned about and should try to fix. To begin with, after doing some research, I bought a Synaptic active stylus (the Dell one), which worked very well for the first two weeks until last week. All of a sudden, it started to respond very awkward and randomly, sometimes it's too sensitive and draw lines even when the pen was off the screen, and sometimes it didn't draw anything at all even though I see the small circle following my pen tip. I initially thought it was due to low battery, but it's the same issue after I replaced the battery. Right now, the laptop doesn't respond to pen touching the screen (no clicks, no writings), although the pointer follows the pen. Any ideas on how to resolve this issue? How do I know if it's the pen that is faulty or if it's the laptop? Other issues I had or am having:1. Today, I had a BAD_POOL_HEADER error and blue screen of death. After reboot, everything seems to still work, but the login is now much slower. It's very fast to reach to the login screen, but it takes 2-3 minutes to bring up the desktop and other startup applications after I enter my password (I think it used to take less than 10 seconds). I tried rebooting 2-3 times, and it was always the same. 2. The laptop seems to gain heat very easily. With moderate workload (example, some websites with flash advertisements or videos), it can easily go above 70 degrees Celsius on either core (according to CPUID HWMonitor). One time, the system actually failed and forced hibernated due to overheating. (To me, the screen went blank all of a sudden. I turn the laptop back on, and the screen printed a message for a while saying it forced shutdown due to overheating. I realized it was hibernation after I logged in since I see all my windows) 3. On the second day of use of this laptop, the laptop just shutdown for no good reason, and then couldn't boot, saying it cannot find boot image or something like that. I looked up the web and found that it could be a BIOS issue. It said to try reseting the BIOS setting, and then it worked. I also upgraded the BIOS image to the latest after this incident. 4. This is probably more a router issue, but I initially had problems connecting wireless to my router. It was solved after changing my router. For those who are interested, the details is as the following: my old router supported up to 802.11n , but not 802.11ac, That shouldn't matter, but all wireless connections get disconnected once in every several hours if my HP Spectre x360 is trying to use the wireless. However the wired connections stayed ok when this happens, so the router is only "partially" killed. The fact that all wireless connections are getting killed seemed to me that the router didn't like something from my HP laptop. To be fair, I didn't try not using my HP laptop to see if the issue goes away, so it could be  a coincidence that the router started to go faulty at the same time I bought and used my HP laptop. Anyways, it seemed it's a router issue, so after replacing the router. the issue went away. Thanks. 

    Will investigate and let you know what I can find out.
    Although I am an HP employee, I am speaking for myself and not for HP.
    Please click the little thumbs-up dealybopper to the lower right if my reply was helpful to you. Please mark Accept As Solution if it solves your problem. This will help others, too!

  • DNS and other issues with SBS Server 2003

    I see a lot of excellent information out here in the discussion group but I understand little of it. I am technology savvy but not an IT man, so please be patient when I ask questions to clarify your responses.
    My first question should be an easy one to answer. Has anyone told you all that they appreciate your help today?
    I DO !!! Thank you for your kind nature and your choice to help others (like me)!
    Our 2003 SBS server has multiple issues. The server has two NICs; one for the WAN connection and one for the LAN.
    Windows IP Configuration
       Host Name . . . . . . . . . . . . : mathewsserver01
       Primary Dns Suffix  . . . . . . . : MathewsElectricalInc.local
       Node Type . . . . . . . . . . . . : Unknown
       IP Routing Enabled. . . . . . . . : Yes
       WINS Proxy Enabled. . . . . . . . : Yes
       DNS Suffix Search List. . . . . . : MathewsElectricalInc.local
    Ethernet adapter Mathews Local Area Connection:
       Connection-specific DNS Suffix  . : 
       Description . . . . . . . . . . . : Broadcom NetXtreme Gigabit Ethernet #1
       Physical Address. . . . . . . . . : 00-1E-C9-CE-C5-E7
       DHCP Enabled. . . . . . . . . . . : No
       IP Address. . . . . . . . . . . . : 192.168.16.2
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Default Gateway . . . . . . . . . : 
       DNS Servers . . . . . . . . . . . : 192.168.16.2
       Primary WINS Server . . . . . . . : 192.168.16.2
    Ethernet adapter Network Connection to Router:
       Connection-specific DNS Suffix  . : 
       Description . . . . . . . . . . . : Broadcom NetXtreme Gigabit Ethernet #2
       Physical Address. . . . . . . . . : 00-1E-C9-CE-C5-E6
       DHCP Enabled. . . . . . . . . . . : No
       IP Address. . . . . . . . . . . . : 10.yyy.xxx.10
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Default Gateway . . . . . . . . . : 10.yyy.xxx.1
       DNS Servers . . . . . . . . . . . : 192.168.16.2
       Primary WINS Server . . . . . . . : 192.168.16.2
       NetBIOS over Tcpip. . . . . . . . : Disabled
    #1 In Event Viewer (Local) Application I have recurring event Source=Userenv Event 1053 every 9 minutes.
    #2 In Event Viewer Directory Service I have recurring event Source=NTDS General Event 1126 every hour.
    #3 In Event Viewer DNS Server I have recurring event Source=DNS Event 6702.
    Also, I am surprised that the LAN NIC #1 is not set up as DHCP!
    What information may you require to assist me?
    tmath2 in Houston

    Hi,
    Could you type “route print“ on CMD, and post the result here?
    It would be helpful if you may describe the phenomenon of the problem? such as changes before the problem occurs, any prompt error message, related operations except for these logged Event ID.
    You may reference the link below for reference.
    Event Source Userenv and Event ID 1503:
    http://www.microsoft.com/technet/support/ee/transform.aspx?ProdName=Windows+Operating+System&ProdVer=5.2&EvtID=1053&EvtSrc=Userenv&LCID=1033
    Event Source NTDS and Event ID 1126:
    http://support.microsoft.com/kb/305837
    DNS 6702:
    http://technet.microsoft.com/en-us/library/cc735806(v=WS.10).aspx
    Best Regards,
    Eve Wang
    Thanks Eve! I appreciate your attempt to help. I inadvertently posted my reply for the Route table without quoting you first. Sorry about that.
    As far as the problems go, time to logon to server > 5 minutes. Group Policy issues abound. DNS issues (as mentioned). Thought I had an easy one for you. Sorry about that.
    I have one client computer running Windows 7x64 (call it My Workstation) that I back the server and other client PC's up to. The clients have no problem, but after a day or two, the server can no longer "see" the My Workstation and the backup fails.
    But then when I reboot the My Workstation, the server "sees" it again!
    Furthermore, I backup a 10TB RAID 6 array on
    My Workstation to yet another client for redundancy (Call it WORKSTATION2-PC), but if I try to click on the computer icon in Windows Explorer for WORKSTATION2-PC, I get the error "Windows cannot access \\WORKSTATION2-PC. However if I type in
    the ip address or WORKSTATION2-PC, I have no problems.
    tmath2 in Houston

  • I'm having issues Buying my ALBUM from iPhoto. I think Pop Ups and other issues (on my MAC) are blocking me from Ordering?

    I was able to BUY/ORDER an Album before. Last time was Feb. BUT since then I am having issues with annoying Sites that Pop Up when I click within a website that I'm on. i.e. Trip Advisor>another website will open and then another and then another! VERY Frustrating! I need the pop ups to run Netflix or other programs.
    1) I'm not sure this is the issue that is preventing me from Buying my Album?
    2) I tried to EXPORT my Album over to my iPad thru iCloud but it ONLY exports the individual jpegs.
    After hours and hours of creating this Album I don't want to start again on another device ;-(

    Helpful Links Regarding Malware Problems
    If you are having an immediate problem with ads popping up see The Safe Mac » Adware Removal Guide, AdwareMedic, or Remove unwanted adware that displays pop-up ads and graphics on your Mac - Apple Support.
    Open Safari, select Preferences from the Safari menu. Click on Extensions icon in the toolbar. Disable all Extensions. If this stops your problem, then re-enable them one by one until the problem returns. Now remove that extension as it is causing the problem.
    The following comes from user stevejobsfan0123. I have made minor changes to adapt to this presentation.
    Fix Some Browser Pop-ups That Take Over Safari.
    Common pop-ups include a message saying the government has seized your computer and you must pay to have it released (often called "Moneypak"), or a phony message saying that your computer has been infected, and you need to call a tech support number (sometimes claiming to be Apple) to get it resolved. First, understand that these pop-ups are not caused by a virus and your computer has not been affected. This "hijack" is limited to your web browser. Also understand that these messages are scams, so do not pay any money, call the listed number, or provide any personal information. This article will outline the solution to dismiss the pop-up.
    Quit Safari
    Usually, these pop-ups will not go away by either clicking "OK" or "Cancel." Furthermore, several menus in the menu bar may become disabled and show in gray, including the option to quit Safari. You will likely have to force quit Safari. To do this, press Command + option + esc, select Safari, and press Force Quit.
    Relaunch Safari
    If you relaunch Safari, the page will reopen. To prevent this from happening, hold down the 'Shift' key while opening Safari. This will prevent windows from the last time Safari was running from reopening.
    This will not work in all cases. The shift key must be held at the right time, and in some cases, even if done correctly, the window reappears. In these circumstances, after force quitting Safari, turn off Wi-Fi or disconnect Ethernet, depending on how you connect to the Internet. Then relaunch Safari normally. It will try to reload the malicious webpage, but without a connection, it won't be able to. Navigate away from that page by entering a different URL, i.e. www.apple.com, and trying to load it. Now you can reconnect to the Internet, and the page you entered will appear rather than the malicious one.

  • Transaction execution time and block size

    Hi,
    I have Oracle Database 11g R2 64 bit database on Oracle Linux 5.6. My system has ONE hard drive.
    Recently I experimented with 8.5 GB database in TPC-E test. I was watching transaction time for 2K,4K,8K Oracle block size. Each time I started new test on different block size, I would created new database from scratch to avoid messing something up (each time SGA and PGA parameters ware identical).
    In all experiments a gave to my own tablespace (NEWTS) different configuration because of oracle block-datafile size limits :
    2K oracle block database had 3 datafiles, each 7GB.
    4K oracle block database had 2 datafiles, each 10GB.
    8K oracle block database had 1 datafile of 20GB.
    Now best transaction (tranasaction execution) time was on 8K block, little longer tranasaction time had 4K block, but 2K oracle block had definitly worst transaction time.
    I identified SQL query(when using 2K and 4K block) that was creating hot segments on E_TRANSACTION table, that is largest table in database (2.9GB), and was slowly executed (number of executions was low compared to 8K numbers).
    Now here is my question. Is it possible that multiple datafiles are reasone for this low transaction times. I have AWR reports from that period, but as someone who is still learning things about DBA, I would like to asq, how could I identify this multi-datafile problem (if that is THE problem), by looking inside AWR statistics.
    THX to all.

    >
    It's always interesting to see the results of serious attempts to quantify the effects of variation in block sizes, but it's hard to do proper tests and eliminate side effects.
    I have Oracle Database 11g R2 64 bit database on Oracle Linux 5.6. My system has ONE hard drive.A single drive does make it a little too easy for apparently random variation in performance.
    Recently I experimented with 8.5 GB database in TPC-E test. I was watching transaction time for 2K,4K,8K Oracle block size. Each time I started new test on different block size, I would created new database from scratch to avoid messing something up Did you do anything to ensure that the physical location of the data files was a very close match across databases - inner tracks vs. outer tracks could make a difference.
    (each time SGA and PGA parameters ware identical).Can you give us the list of parameters you set ? As you change the block size, identical parameters DON'T necessarily result in the same configuration. Typically a large change in response time turns out to be due to changes in execution plan, and this can often be associated with different configuration. Did you also check that the system statistics were appropriately matched (which doesn't mean identical cross all databases).
    In all experiments a gave to my own tablespace (NEWTS) different configuration because of oracle block-datafile size limits :
    2K oracle block database had 3 datafiles, each 7GB.
    4K oracle block database had 2 datafiles, each 10GB.
    8K oracle block database had 1 datafile of 20GB.If you use bigfile tablespaces I think you can get 8TB in a single file for a tablespace.
    Now best transaction (tranasaction execution) time was on 8K block, little longer tranasaction time had 4K block, but 2K oracle block had definitly worst transaction time.We need some values here, not just "best/worst" - it doesn't even begin to get interesting unless you have at least a 5% variation - and then it has to be consistent and reproducible.
    I identified SQL query(when using 2K and 4K block) that was creating hot segments on E_TRANSACTION table, that is largest table in database (2.9GB), and was slowly executed (number of executions was low compared to 8K numbers).Query, or DML ? What do you mean by "hot" ? Is E_TRANSACTION a partitioned table - if not then it consists of one segment, so did you mean to say "blocks" rather than segments ? If blocks, which class of blocks ?
    Now here is my question. Is it possible that multiple datafiles are reasone for this low transaction times. I have AWR reports from that period, but as someone who is still learning things about DBA, I would like to asq, how could I identify this multi-datafile problem (if that is THE problem), by looking inside AWR statistics.On a single disc drive I could probably set something up that ensured you got different performance because of different numbers of files per tablespace. As SB has pointed out there are some aspects of extent allocation that could have an effect - roughly speaking, extents for a single object go round-robin on the files so if you have small extent sizes for a large object then a tablescan is more likely to result in larger (slower) head movements if the tablespace is made from multiple files.
    If the results are reproducible, then enable extended tracking (dbms_monitor, with waits) and show us what the tkprof summaries for the slow transactions look like. That may give us some clues.
    Regards
    Jonathan Lewis

Maybe you are looking for

  • How can I set the DEFAULT setting on an effect to be MY default setting, not Garagebands default setting?

    Hey I usually use the same settings of reverb for most vocals I record (Just a small amount) and I have this saved as a setting, but is there anyway to make MY setting be the default setting whenever I add reverb and not be Garagebands default reverb

  • In internal tables ?

    Hi experts, I am creating a BAPI,in that i have to get name1 from lfa1 and remaining 5 fields form ekko table.after declaring 3 rd internal table for accessing the above two tables in a single internal table.I got a problem here while accessing the n

  • How to manage the GUI timeout issue in LSMW

    Hi all, we are running into an issue with our LSMW loads. That issue is that the load process runs in the SAP GUI and the GUI will timeout if someone doesn't generate an SAP transaction in the GUI session every so often. Since we are estimating that

  • Backward- Forward  and Forward- Backward

    Hi, all! Can you explainfor me about +Backward- Forward  and Forward- Backward+ in General Setting-> Inventory tab-> Planning. I don'nt understand it, can you make clealy Thank you!

  • Tasks are missing in Approval inbox

    Dear Experts We are using SRM 7.0 Version 701. we are facing a problem in approval inbox. The Total tasks are shown as 35 but we are able to see only 33 tasks (33/35). there is no trace about the remaining two tasks in approval link in portal. We che