|
101
|
Main Area and Open Discussion / General Software Discussion / Re: Bypass internet filtering?
|
on: September 09, 2008, 10:57:25 AM
|
I happen to work in a similar educational setting and the problem will be that students don't pay attention to the lecturer when youtube / facebook / gamessites are open on their pc which will be why they're blocked. IMHO people should learn to take responsibility for themselves (and thus, their education). If they can't do that, it's their problem, and that would hopefully teach a valuable lesson. Thats Right! I am currently taking two subjects that are exceptionally boring since I already know them.  Plus they don't only block it in the classrooms but in the dorms as well. 
|
|
|
|
|
103
|
Main Area and Open Discussion / General Software Discussion / Bypass internet filtering?
|
on: September 08, 2008, 09:36:13 PM
|
|
I am not the type to go on naughty things on the internet, so I thought I would not have a problem with my schools filter system. However, the filtering at this school is set to "academic only" meaning anything that is not needed for research, info, ext... is blocked. examples: You Tube, Facebook, Proxies, game sites ext...
The filtering is twofold. Not only are the sites filtered, but every site that you do go on can be checked through log-in.
Is there a way to get around it?
|
|
|
|
|
105
|
Main Area and Open Discussion / General Software Discussion / Forum 2.0 Suggestion
|
on: September 07, 2008, 09:01:00 PM
|
The forum is, in my mind, an almost perfect form of communication. It has the convenience of an email and it has the potential to reach everyone in the world. I think it is time for someone (DC  ) to pave the way for the next generation of internet communication. Something that combines the ease of email and the power of bookmarking. A super-communicator not bound by the old ways. Feel free to add things to the list. Features I'm hoping Forum 2.0 will have. - All of the amazing features of DC forums: Unread/ Read, Emoticons, Code Highlight, ext...
- The ability for the user to tag posts and threads.
- The ability for me to mark a thread as always read.
- Every post on one page.
- The ability to cycle through posts as easily as photos on picasa.
- Posts are collapsable like gmail.
- Automatic collaps/ summary on posts that you've read.
- Real time preview!
Edit: - Customizable themes
- Powerful and easy filtering
- Chat
Edit2: I am not a web developer, so I have no idea what a project like this entails, maybe we are really far away from this. What do you think?
|
|
|
|
|
108
|
Main Area and Open Discussion / General Software Discussion / Re: Easy remote access to my home pc?
|
on: September 03, 2008, 09:46:02 PM
|
|
CrossLoop - Seems like the best choice except that I would have to call my parents up every time I want to use it. Remote Desktop - Having problems with it. Most likely a firewall but I cant be sure unless I get access to the computer over there. Log me in - Apparently this is blocked on my schools network because it is considered a proxy.
|
|
|
|
|
109
|
Main Area and Open Discussion / General Software Discussion / Easy remote access to my home pc?
|
on: September 03, 2008, 02:19:07 PM
|
|
I am in college in NY and my parents live in Chicago. My Mother has a problem with her computer that I cant explain to her over the phone, so somehow I need gain remote access to my computer. The real problem is my mother is severely computer illiterate so I need to do it with the fewest possible steps on her part. What is the best way to accomplish this?
|
|
|
|
|
119
|
Main Area and Open Discussion / Living Room / What do you do during your free time?
|
on: August 14, 2008, 09:46:24 PM
|
After programming for the past two months, I'm really starting to get into the whole mindset of programming. However, ( now don't take me too seriously ) I wonder how this is going to effect me.  Am I going to slowly turn into an antisocial slob who remains unmarried, plays lots of MMOs, and has more virtual friends than real friends? Or is that all really a mistaken stereotype? If it is, what do coders really do in their free time? If not, why is this so?
|
|
|
|
|
120
|
DonationCoder.com Software / Post New Requests Here / IDEA: Open program minimized with middle click:
|
on: July 03, 2008, 01:35:11 PM
|
|
One of the features I like the most in new browsers is the open link in new tab in the backround on middle click. I would also like to be able to do that for programs on my desktop. It would be even better not to have to deal with title screens and loading dialogs that have no minimize key. Similarly, in internet browsers like Firefox, the closed tabs have loading signs that tell you when loading is complete. It would be just perfect to not have to keep opening up the windows to see if their done processing whatever their doing and just see it on the taskbar. I don't know how easy any of these things are to implement. I assume the last 2 are quite difficult. Tell me what you think.
|
|
|
|
|
121
|
DonationCoder.com Software / Coding Snacks / Re: My first program.
|
on: July 02, 2008, 09:12:21 AM
|
|
Thanks everyone for all your support. By the way, after spending some time looking at the programming resource pages in programming school, I must say that I am truly proud and awed at how far along we've come in the information age. The amount of stuff that you can learn just at the click of a mouse is just amazing. The future holds some very exiting things for us. We should better get ready.
|
|
|
|
|
122
|
DonationCoder.com Software / Coding Snacks / My first program.
|
on: July 01, 2008, 04:33:36 PM
|
Hi everyone. So basically, I just started learning to program this Sunday in c++ (sorry Tinjaw that Python was not my 1st choice, but it is on my list to learn eventually).  So after messing around for a few days I came up with my first program. Its a game where you try and guess the number that the computer comes up with at random. I actually find it a little bit addicting. I'll keep adding to it as my skills progress. Ill post more updates if you guys like it. This might not belong in the coding snacks section and if not I'm sorry. I guess I'm just exited that I finally got around to learning this stuff. OK, The program is attached. or get it here: http://www.mediafire.com/?e0nd9gemgccHere is the source code: [ copy or print] #include <iostream> #include <ctime> #include <cstdlib> using namespace std; int num(); int game (); int x; int y; int a; int answer; int tries; int gp = 0; int gw = 0; int main() { tries = 6; a = 1; srand((unsigned)time(NULL)); answer = num(); cout<<"Games played: "<< gp << " Games Won: "<< gw <<"\n\n"; cout<<"Guess a number 1 through 100: "; game(); } int game() { do { cin>> y; tries--; if ( y > 100 || y < 1 ) { cout<<"Sorry that is not a valid entry\n"; cout<<"Guess another number: "; } else if ( y < answer ) { cout<<"That number is too LOW. Try again.\n"; if ( tries != 0 ) { cout<<"You have " << tries <<" tries left.\n"; } else { cout<<"You are out of tries.\n"; } } else if ( y > answer ) { cout<<"That number is too HIGH. Try again.\n"; if ( tries != 0 ) { cout<<"You have " << tries <<" tries left.\n"; } else { cout<<"You are out of tries.\n"; } } else { cout<<"You got it!"; cout<<"\n\n\n"; gp++; gw++; main(); } if (tries == 0) { cout<<"\nGame Over! Play again.\n\n\n"; gp++; main(); } } while (1); } int num() { return x = (rand() % 99) + 1 ; } As you can see it is still a work in progress. There is one major glitch that I don't know how to correct yet and that is if you type in anything other than a number it flips out. I will fix it as soon as I learn how. For now have fun. I appreciate any comments on how to improve or add to the game. I hope to be able to code more usefull programs in the future.
|
|
|
|
|