The W
June 7, 2009 - birthdaybritney.jpg
Views: 178986681
Main | FAQ | Search: Y! / G | Calendar | Color chart | Log in for more!
28.3.24 0447
The W - Internet & Computers - Stupid Browsing Question
This thread has 3 referrals leading to it
Register and log in to post!
Thread rated: 6.19
Pages: 1
(260 newer) Next thread | Previous thread
User
Post (6 total)
Captaincuba
Italian








Since: 25.10.05

Since last post: 3676 days
Last activity: 3551 days
#1 Posted on | Instant Rating: 3.89
I cut and paste data as a side job for a local broker and last week for some reason my Explorer started acting weird.

The data I collect is sometimes set up in a way where there is a main list off of which you click the number of the file you want to look at. So the process usually goes:

1. Click # of main list -> goes to file page
2. Select All (ctrl A)
3. Copy (ctrl C)
4. Go to word doc - Paste (ctrl V)
5. Go back to file page -> Backspace -> goes back to list

Here is where the issue is: Before last week when I was at step 5 and went back to list page, I could just hit (Tab)and it would go to the next # link on the list.

Now, when I backspace and hit (Tab) it goes back to my address line.

It may not seem like much, but it adds significant seconds to my process, which over the course of a few thousand, adds up at the end of the day/week.

So my question is:

Is this something in Explorer that I changed or can change?

I only ask because it isn't just happening on one of the sites I use, it's happening on all of them.

Thanks in advance as always,

CC
Promote this thread!
CRZ
Big Brother
Administrator








Since: 9.12.01
From: ミネアポリス

Since last post: 8 days
Last activity: 3 days
ICQ:  
#2 Posted on | Instant Rating: 8.49
Let me offer my own stupid question in return:

Are you sure your CONTROL key isn't stuck when you're tabbing around?



Captaincuba
Italian








Since: 25.10.05

Since last post: 3676 days
Last activity: 3551 days
#3 Posted on | Instant Rating: 3.89
Not stuck.

CC
rinberg
Boudin rouge








Since: 30.1.02
From: South Georgia

Since last post: 4461 days
Last activity: 743 days
#4 Posted on | Instant Rating: 8.42
I have no clue as to why your browser's behavior changed, but have you considered using web scraping software (en.wikipedia.org) to download the files to a folder on your hard drive and then concatenating the files together?

I can't really recommend a particular web scraping software, since I have no experience in that area, but I can tell you how to concatenate all of the files in a directory together for a Windows machine. Also, since I don't know how savvy you are about batch files and DOS commands and we may have other people find this later that have no experience with this stuff, I will try not to assume that you know anything. Please don't feel insulted if I tell you something that you think *everyone* knows.

First, you should create a folder to put the data files in. I just created a folder called testing on my desktop, but you can use whatever name you want and put it wherever you want also. Within the folder that you created, create a second folder called archive. So, for me (on WinXP, sp2), when I have the archive folder open, the address near the top of the folder looks like this:

C:\Documents and Settings\aerinber\Desktop\testing\archive

Note: aerinber is my login name on this computer, so your address will not match mine exactly, even if you do exactly what I do.

You may prefer to name your data folder data and put it in My Documents. My Documents is actually an alias for something like C:\Documents and Settings\aerinber\My Documents, so if you have trouble finding the *real* name of your My Documents folder, you may want to use some other location. Anyways, If you do put your data folder in My Documents, the address of your archive folder could be similar to this:

C:\Documents and Settings\aerinber\My Documents\data\archive

After you have created your data folder and archive folder, copy and paste the following script into Notepad or WordPad
    Originally posted by archive.bat
    for /f "tokens=1-4 delims=/ " %%a in ('date /t') do (set weekday=%%a& set day=%%b& set month=%%c& set year=%%d)

    del current_data.txt

    type .\*.txt >> data.txt

    move .\*.txt .\archive

    copy .\archive\data.txt .\current_data.txt

    ren .\archive\data.txt "%year%_%month%_%day%_data.txt"
...and save it as "archive.bat" in the data folder that you created. Make sure you use the double quotes around the file name or Windows will think that you want to name the file archive.bat.txt and you need the .bat extension on the end.

Note2: You may need to edit this script if you aren't copying files that end in .txt. For example, if you are copying web pages, they may end in .html. If that is the case, everywhere the script has .txt needs to be replaced with .html before this script will work correctly.

When you set up the web scraper software, designate your data folder as the destination for the files that it creates/downloads or you will need to cut them from the folder that they are created in and paste them to the data folder with archive.bat in it. When you run your web scraper and it the files you want are in the data folder, double click on the icon for archive.bat.

When you run it, archive.bat will
  • delete a file called current_data.txt if it exists
  • concatenate the data from all files that end in .txt in the directory that archive.bat is running in
  • put the concatenated data in a file called data.txt
  • copy all files in that directory that end in .txt into the archive folder
  • add the date to the front of the data.txt filename
  • and copy it back to the data folder with a name of current_data.txt


Note3: If you run archive.bat more than once in a day, it will not be able to rename data.txt to the dated name since that file already exists. That means you will still have a file in the archive directory named data.txt, but it will go away when you run archive.bat on another day, so it's not really a problem or anything.

You probably will still need to open the current_data.txt file and make some minor formatting edits and keep in mind that the archived data file will not have those edits unless you open that file and make the edits there too, but if this works, it would make your job way easier. Good luck and if you decide to try this, let me know if the instructions need clarification.



One of the Thirty-two (or maybe Thirty-four....)!

kaynart. Get yours at flagrantdisregard.com/flickr
Guru Zim
SQL Dejection
Administrator








Since: 9.12.01
From: Bay City, OR

Since last post: 8 days
Last activity: 14 hours
ICQ:  
#5 Posted on | Instant Rating: 8.53
Or you could use wget to download the HTML page and just archive that. There are a ton of ways you can approach this.

None of them probably result in you keeping your job, though.




Sign up for Folding@Home and join our team. PM me for details.

Ignorance is bliss for you, hell for me.
Captaincuba
Italian








Since: 25.10.05

Since last post: 3676 days
Last activity: 3551 days
#6 Posted on | Instant Rating: 3.89
I appreciate all of the help guys. I'm going to try the suggestions in hopes of streamlining my process. I guess my only concern s that on some of the particular pages, the data is out of order and I have to specifically look at each individual listing on each page for the specific data I need.

I hate to bore the board, and/or waste CRZ's and Zim's bandwidth, so if anyone wants to help me out offline with making my little side gig easier through private messages, I'd be more than willing to compensate them for their time via Paypal.

As always, thanks for the guidance...this board amazes me with the stuff I've gotten off of it over the years.

CC
Thread rated: 6.19
Pages: 1
Thread ahead: April Fools worm
Next thread: Anyone having issues with Hotmail?
Previous thread: SQL question (simple, maybe?)
(260 newer) Next thread | Previous thread
I'm thinking of getting one of these when I get my new laptop. Does anyone have one or heard anything from someone who does? http://www.shopping.hp.com/webapp/shopping/store_access.do;jsessionid=EaaMC6zulhfW2lskRlpzcrQPARDVj3BGsltC1KwApmFvSUtqmPTH!
- odessasteps, HP laptop expansion bases (2006)
The W - Internet & Computers - Stupid Browsing QuestionRegister and log in to post!

The W™ message board

ZimBoard
©2001-2024 Brothers Zim

This old hunk of junk rendered your page in 0.144 seconds.