Project 1999

Go Back   Project 1999 > Blue Community > Blue Server Chat

Closed Thread
 
Thread Tools Display Modes
  #11  
Old 05-13-2013, 12:22 PM
Aeolwind Aeolwind is offline
Developer

Aeolwind's Avatar

Join Date: Oct 2009
Location: Watauga, TN
Posts: 1,641
Send a message via AIM to Aeolwind Send a message via MSN to Aeolwind Send a message via Yahoo to Aeolwind
Default

Quote:
Originally Posted by feanan [You must be logged in to view images. Log in or Register.]
Promising.
__________________
I have walked my way since the beginning of time. Sometimes I give, sometimes I take & it is mine to know which and when.

Quote:
Originally Posted by Nilbog
If all the polls I have done up until now fully counted, you would be playing on some abomination of a PVP server with 2-10 boxing based on votes from people named xcm234nv and adfa234.
  #12  
Old 05-13-2013, 12:24 PM
norova norova is offline
Sarnak

norova's Avatar

Join Date: Jun 2012
Location: Enceladus
Posts: 272
Default

Haven't had to open anything larger than 1GB with this, but try SublimeText
__________________

Fizzlelina Fizzlezalot <Castle> :: Gnome Necromancer :: Green
Welgrim Stoutslammer <Dawn Believers> :: Dwarf Cleric :: Blue
--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- ---
Welgrim's Project 1999 files: https://p99.yourfirefly.com
  #13  
Old 05-13-2013, 12:40 PM
Ephi Ephi is offline
VIP / Contributor

Ephi's Avatar

Join Date: Oct 2012
Location: Rivervale
Posts: 2,795
Default

Quote:
Originally Posted by norova [You must be logged in to view images. Log in or Register.]
Haven't had to open anything larger than 1GB with this, but try SublimeText
Sublime will choke on a large file (loads it all into memory). [You must be logged in to view images. Log in or Register.]

I usually just use less, but then again I'm assuming unix commands don't count.
  #14  
Old 05-13-2013, 12:58 PM
Sadre Spinegnawer Sadre Spinegnawer is offline
Planar Protector

Sadre Spinegnawer's Avatar

Join Date: Dec 2012
Posts: 1,724
Default

I do hope you realize some of us are masturbating to this thread. Just sayin.
__________________
go go go
  #15  
Old 05-13-2013, 01:07 PM
Aeolwind Aeolwind is offline
Developer

Aeolwind's Avatar

Join Date: Oct 2009
Location: Watauga, TN
Posts: 1,641
Send a message via AIM to Aeolwind Send a message via MSN to Aeolwind Send a message via Yahoo to Aeolwind
Default

Quote:
Originally Posted by Sadre Spinegnawer [You must be logged in to view images. Log in or Register.]
I do hope you realize some of us are masturbating to this thread. Just sayin.
3rd bout of trying to open this thing. No one is jonesing for climax more than me I don't think. It will need to be sanitized obviously to protect the innocent.

Unix commands scare me on this file. They corrupted a copy.
__________________
I have walked my way since the beginning of time. Sometimes I give, sometimes I take & it is mine to know which and when.

Quote:
Originally Posted by Nilbog
If all the polls I have done up until now fully counted, you would be playing on some abomination of a PVP server with 2-10 boxing based on votes from people named xcm234nv and adfa234.
  #16  
Old 05-13-2013, 01:42 PM
August August is offline
Fire Giant


Join Date: Sep 2010
Posts: 703
Default

The problem with trying to load a file such as this is that most programs are going to load the entirety of the file into memory. How much memory do you have? IF its not significantly over 4GB, you're hosed.

You could also just stop trying to find the solution and create one yourself:

void ReadAndWrite()
{
System.IO.StreamReader InFile= new System.IO.StreamReader("c:\\myeqlog.txt");



for(int n=0; n<1000; n++)
{
System.IO.StreamWriter OutFile= new System.IO.StreamWriter(@"C:\MyEQLog"+n);
Count = 0;
while((line = file.ReadLine()) != null && Count <1000)
{
Outfile.WriteLine (line);
Count ++;
}
OutFile.Close();
}
InFile.Close();
}

This is purely from general memory. Basically, open a stream on the file. Read in 1000 lines, output a thousand lines, increment your logname - rinse and repeat. This will let you choose how large of file chunks you want ( by changing count). You probably also need to generate a new file name somewhat diffrerently - i'm not sure the way i did it would compile and I'm lazy.

-Tomtee
Last edited by August; 05-13-2013 at 02:06 PM..
  #17  
Old 05-13-2013, 02:20 PM
webrunner5 webrunner5 is offline
Planar Protector

webrunner5's Avatar

Join Date: Nov 2011
Location: Oxford, Ohio
Posts: 4,095
Default

What about some compression zip file scheme? Backed up of course.
  #18  
Old 05-13-2013, 02:25 PM
nilbog nilbog is offline
Project Manager

nilbog's Avatar

Join Date: Oct 2009
Posts: 14,460
Default


http://www.gdgsoft.com/files/gsplits.exe download and install, when prompted, choose to integrate into shell
step 1. make a copy of the file you're working on. create a new folder for testing (i.e. desktop /txttest) paste copy of original there
step 2. load the copy using the menu to the left on gsplit. Original File option
step 3. destination folder. i used the same one i put the copy in
step 4. type and size. size 20.00 in MB
step 5. filenames, you can use your own naming. want .txt. under piece name mask: disk{num}.txt
step 6. split file!

Would try this
  #19  
Old 05-13-2013, 02:31 PM
August August is offline
Fire Giant


Join Date: Sep 2010
Posts: 703
Default

Quote:
Originally Posted by nilbog [You must be logged in to view images. Log in or Register.]

http://www.gdgsoft.com/files/gsplits.exe download and install, when prompted, choose to integrate into shell
step 1. make a copy of the file you're working on. create a new folder for testing (i.e. desktop /txttest) paste copy of original there
step 2. load the copy using the menu to the left on gsplit. Original File option
step 3. destination folder. i used the same one i put the copy in
step 4. type and size. size 20.00 in MB
step 5. filenames, you can use your own naming. want .txt. under piece name mask: disk{num}.txt
step 6. split file!

Would try this
Definitely try this. More than likely a program that does something similar (and much more sophisticated) than the sample above.
  #20  
Old 05-13-2013, 02:36 PM
Lyra Lyra is offline
Fire Giant


Join Date: Jan 2013
Posts: 899
Default

Quote:
Originally Posted by Aeolwind [You must be logged in to view images. Log in or Register.]
It will need to be sanitized obviously to protect the innocent.
This thread made me uncomfortable. What server were you on?
Closed Thread


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 06:41 AM.


Everquest is a registered trademark of Daybreak Game Company LLC.
Project 1999 is not associated or affiliated in any way with Daybreak Game Company LLC.
Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.