Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
When will the code bank be fixed?
I've tried to submit my CMD emulator a few times to no avail. I'm not gonna submit it as code anymore until I know it's fixed, I was just wondering if it was something that was being worked on? Here's the emulator for those that may be interested, I just saw a lot of code there to do things where an extremely simple CMD emulator will more than allow you to do the trick:
#include <iostream>
#include <string>
#include <windows.h>
using namespace std;
int main()
{
char path[500];
GetCurrentDirectory(500,path);
std::string command;
start:
cout << path << ">";
getline( cin, command );
system(command.c_str());
goto start;
}
Anyone know if it's a priority to be finished. I think it's been down for quite some time now :|