Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - dubblea13

Pages: [1]
1
Hacking and Security / Re: Bypass School Security Filter
« on: May 04, 2011, 08:10:21 am »
When I was in school, I just installed the Tor Browser Bundle to a flash drive on a PC. Then, I'd plug the drive into a school computer, click "Start Tor" or something like that, and you're good to go.
This is assuming your school runs windows btw.

Here's a link:
https://www.torproject.org/projects/torbrowser

EDIT: My school also filtered any website with the word proxy in the URL or content.

2
C - C++ / Re: [C++] do/while help!
« on: April 15, 2011, 02:40:48 am »
i think this will work. I haven't tried to compile though.

Code: [Select]
using namespace std;

int main()
{
int cleo = 100;
int daphne = 100;
int count = 1;

while(cleo < daphne)
{
cleo += 10;
daphne *= 1.05;
count++;
}
cout << "Balance after " << count << " years: ";
cout << "\nCleo: " << cleo << endl;
cout << "Daphne: " << daphne\n\n";
system("pause");
return 0;
}

Pages: [1]