Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar Mark Forums Read
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 01-31-2012, 01:17 PM   #1
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,351
any easy way of loading a text file full of urls and loading browser to them?

i have a list of urls i want to visit, to check, anyway to do this?
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


WP Stuff
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 01:21 PM   #2
EddyTheDog
Just Doing My Own Thing
 
EddyTheDog's Avatar
 
Industry Role:
Join Date: Jan 2011
Location: London, Spain, New Zealand, GFY - Not Croydon...
Posts: 25,041
How long is the list?

Will it take longer to code a script or to cut and paste?
__________________
-

Chaturbate Script - https://gfy.com/fucking-around-and-b...er-issues.html - Now supports White Labels
EddyTheDog is online now   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 01:23 PM   #3
Fletch XXX
GFY HALL OF FAME DAMMIT!!!
 
Fletch XXX's Avatar
 
Join Date: Jan 2002
Location: that 504
Posts: 60,840
save as html file then import into browser and open all in tabs
__________________

Want an Android App for your tube, membership, or free site?

Need banners or promo material? Hit us up (ICQ Fletch: 148841377) or email me fletchxxx at gmail.com - recent work - About me
Fletch XXX is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 01:23 PM   #4
sixsax
Confirmed User
 
Industry Role:
Join Date: Aug 2006
Location: Denmark
Posts: 213
Hmm, something like this?

<script type="text/javascript">
urls = ["http://google.com/", "https://gfy.com/", "http://goatse.info/"];
for(var i = 0; i < urls.length; i++) {
window.open(urls[i], "_blank");
}
</script>
sixsax is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 01:27 PM   #5
WiredGuy
Pounding Googlebot
 
Industry Role:
Join Date: Aug 2002
Location: Canada
Posts: 34,461
You can batch script it. I can't recall off hand, but there's a dll file that will process url's from the command line to your default browser. Similiar to opening a webpage by double clicking in explorer, it will open your default browser with the url from the command line. I can't for the life of me remember the name of the dll, google it. Then put a sleep timer between requests and you're good.
WG
__________________
I play with Google.
WiredGuy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 01:58 PM   #6
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,351
Quote:
Originally Posted by WiredGuy View Post
You can batch script it. I can't recall off hand, but there's a dll file that will process url's from the command line to your default browser. Similiar to opening a webpage by double clicking in explorer, it will open your default browser with the url from the command line. I can't for the life of me remember the name of the dll, google it. Then put a sleep timer between requests and you're good.
WG
Ya I ended up doing some scripting.

here is the final code for anyone that is interested.

Code:
inputFile = "test.txt"

Set WshShell = WScript.CreateObject("WScript.Shell")
Set fso = WScript.CreateObject("Scripting.Filesystemobject")
Set urls = fso.OpenTextFile(inputFile)
 
Do Until urls.AtEndOfStream
  url = urls.ReadLine
  WshSHell.Run url
Loop
urls.Close()
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


WP Stuff
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 02:20 PM   #7
PAR
Confirmed User
 
PAR's Avatar
 
Industry Role:
Join Date: May 2005
Posts: 1,835
All I do is load everything in to excel and then copy past it all in text pad remove the "tab" save as html file..
If you know the path to the html file on your pc/laptop/mac you can set this as your home page if needed or a bookmark.


final html
<a href="http://www.site1.com">site1.com</a><br></br>
<a href="http://www.site1.com">site1.com</a><br></br>

in excel it just looks like
Row 1 Row 2 Row 3 Row 4 Row 5
<a href="http://www. site.com "> site.com </a><br><br/>
*spaces used in example in excel copy past = tabs*

for multi site testing I change the code so that it just loads 50 sites all on 1 page in Iframes and just test and scroll down to the next site..
PAR is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 03:01 PM   #8
Tom_PM
Porn Meister
 
Industry Role:
Join Date: Feb 2005
Posts: 16,443
So many "test.txt"'s must be out there. When aliens come, they're going to think test.txt's rule the world, hehe.
Cool solutions.
__________________
43-922-863 Shut up and play your guitar.
Tom_PM is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 03:20 PM   #9
AVS_Adult
Registered User
 
AVS_Adult's Avatar
 
Join Date: Aug 2009
Location: Europe
Posts: 69
Create a batch file with the URL's as followed:

start http://www.domain1.com
start http://www.domain2.com
start http://www.domain3.com
............
start http://www.domain100.com

Will open each URL in a separate tab in your default browser.
AVS_Adult is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 03:25 PM   #10
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,351
Quote:
Originally Posted by AVS_Adult View Post
Create a batch file with the URL's as followed:

start http://www.domain1.com
start http://www.domain2.com
start http://www.domain3.com
............
start http://www.domain100.com

Will open each URL in a separate tab in your default browser.
ya got a big list, so this one works loads in default in new tab
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


WP Stuff
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 03:26 PM   #11
raymor
Confirmed User
 
Join Date: Oct 2002
Posts: 3,745
Just for fun, another way. You may know that Firefox can group bookmarks and you can open a whole group at once. You may also know Firefox stores it's bookmarks as a .html file. So, generate the html, add it to bookmarks.html, then open that bookmark group.
__________________
For historical display only. This information is not current:
support&#64;bettercgi.com ICQ 7208627
Strongbox - The next generation in site security
Throttlebox - The next generation in bandwidth control
Clonebox - Backup and disaster recovery on steroids
raymor is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 03:30 PM   #12
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,351
ya the info is stored in a txt file not from bookmarks or anything
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


WP Stuff
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 04:10 PM   #13
livexxx
Confirmed User
 
livexxx's Avatar
 
Industry Role:
Join Date: May 2005
Location: UK
Posts: 1,201
firefox can save all open tabs in one go as a bookmark folder, then in the bookmarks folder you can also open them all in one go. "Open all in tabs"
__________________
http://www.webcamalerts.com for auto tweets for web cam operators
livexxx is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 04:39 PM   #14
V_RocKs
Damn Right I Kiss Ass!
 
Industry Role:
Join Date: Dec 2003
Location: Cowtown, USA
Posts: 32,405
Open Firefox bookmark list. Notice the... brain fart... way it is written... then write something or just search and replace line breaks with needed code. format...

Then restart Firefox and go to bookmarks.. Open all in tabs...

Or google for convert text file to firefox bookmarks
V_RocKs is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 04:58 PM   #15
geel
Registered User
 
Industry Role:
Join Date: Aug 2011
Posts: 19
Send it to yourself by email.
geel is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 04:58 PM   #16
livexxx
Confirmed User
 
livexxx's Avatar
 
Industry Role:
Join Date: May 2005
Location: UK
Posts: 1,201
try Flem, imports txt/csv to firefox bookmarks, its a plugin
https://addons.mozilla.org/en-US/firefox/addon/flem/
__________________
http://www.webcamalerts.com for auto tweets for web cam operators
livexxx is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 06:36 PM   #17
u-Bob
there's no $$$ in porn
 
u-Bob's Avatar
 
Industry Role:
Join Date: Jul 2005
Location: icq: 195./568.-230 (btw: not getting offline msgs)
Posts: 33,063
perl :

Code:
open(INPUTFILE, "<urls.txt");
while(<INPUTFILE>)
 {
 my($line) = $_;
 chomp($line);
 system("start $line");
 }
u-Bob is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 08:21 PM   #18
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,351
Quote:
Originally Posted by u-Bob View Post
perl :

Code:
open(INPUTFILE, "<urls.txt");
while(<INPUTFILE>)
 {
 my($line) = $_;
 chomp($line);
 system("start $line");
 }
not on icq anymore?
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


WP Stuff
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 08:30 PM   #19
cooldude7
Confirmed User
 
cooldude7's Avatar
 
Industry Role:
Join Date: Nov 2009
Location: Heaven
Posts: 4,306
i used previously this as a remote cron for my 500 cron jobs.,


Code:
#!/bin/bash

for id in $(cat /root/data/unames.txt);do
echo $id
curl http://blahblah.com/user/refresh/home
done
i remove some lines., but i guess you get the idea.,
cooldude7 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2012, 09:17 PM   #20
uno
RIP Dodger. BEST.CAT.EVER
 
uno's Avatar
 
Industry Role:
Join Date: Dec 2002
Location: NYC Area
Posts: 18,450
Uh, i just put them in a text file, open it in my browser and then click "Open Links in New Tabs".

That last Open Links in New Tabs may or may not be a feature of Tabs Mix Plus. And Linkification... another great plugin/extension
__________________
-uno
icq: 111-914
CrazyBabe.com - porn art
MojoHost - For all your hosting needs, present and future. Tell them I sent ya!
uno is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 02-01-2012, 06:34 AM   #21
u-Bob
there's no $$$ in porn
 
u-Bob's Avatar
 
Industry Role:
Join Date: Jul 2005
Location: icq: 195./568.-230 (btw: not getting offline msgs)
Posts: 33,063
Quote:
Originally Posted by fris View Post
not on icq anymore?
not on a regular basis.

just got your msg and replied.
u-Bob is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks
Thread Tools



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.