Need a geek? Geeks to Go offers free, quality tech support -- in terms anyone can understand. Volunteers are waiting to help, friendly, technology experts who have knowledge to share, and enjoy helping others. Feel free to browse the site as a guest. However, you must log in to reply to existing topics, or to start a new topic of your own. Other benefits of joining include richer forum features, and removal of all advertising. Learn more in our Welcome Guide Infected? Malware and Spyware Cleaning Guide. What are you waiting for? Click here to join for free today!
 
Reply to this topicStart new topic
Big school project
drmoneejd
post Oct 31 2009, 11:43 PM
Post #1


Member
***
Posts: 164
From: united states
OS: XP Pro SP2



I have to do a big project called a capstone project for my tech center i attend. it has to have a strong connection to anytype of computer technologies. i thought about writing a website in HTML (a very basic one of course, as i have never learned about HTML before now), or maybe a simple program in C++, although i know nothing about that either, just seems like something interesting. oh, and i am a junior in high school, so im not extremely advanced, but willing to work. So if you have any advice on these (i have been reasearching HTML at W3schools.com ) or a suggestion of something i could do please post it. Please Understand, I am NOT trying to cheat on this, i am simple looking for ideas on what to do, or advice on one above and am simply trying to use my resources.
Go to the top of the page
 
+Quote Post
bartblaze
post Nov 1 2009, 03:15 AM
Post #2


Geek in Training
**
Posts: 61
From: Flanders, Belgium
OS: Vista



If you do not have knowledge in C++, I would not advise you to do your project about it, as it is much harder than HTML wink.gif .

What you might do is for example a webpage in HTML, or a forum or ... There are many possibilities smile.gif
Go to the top of the page
 
+Quote Post
drmoneejd
post Nov 1 2009, 08:44 AM
Post #3


Member
***
Posts: 164
From: united states
OS: XP Pro SP2



thanks for your input. i had considered a forum, because then i could explain the roles each person plays in it, like administrator, moderator, etc. but i wasn't to sure how to write one or how hard it would be, because we cant use any software to help us, like adobe's dreamweaver.
Go to the top of the page
 
+Quote Post
bartblaze
post Nov 2 2009, 09:44 AM
Post #4


Geek in Training
**
Posts: 61
From: Flanders, Belgium
OS: Vista



Sure, no problem.

I remember I had the same project as you actually, and I already had a forum... so that came in handy biggrin.gif

You may use Proboard software, personally I think it's the best one out there ( www.proboards.com )

There are others out there as well obviously, just pick the one that best suits you smile.gif
(if you plan on doing the forum)

good luck -
Go to the top of the page
 
+Quote Post
drmoneejd
post Nov 2 2009, 04:43 PM
Post #5


Member
***
Posts: 164
From: united states
OS: XP Pro SP2



oh okay. So is there a special HTML template code for forums?
Go to the top of the page
 
+Quote Post
edge2022
post Nov 2 2009, 08:41 PM
Post #6


Member 2k
*****
Posts: 2,000
From: Cerritos, CA (USA)
OS: Windows XP SP3, Linux (Ubuntu, DSL)



I suggest you write a simple C++ program... although the learning curve is steep, keep with it.
Here is a prog to generate "random" numbers:

// Random Seed Program Using Function.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>
using namespace std;
static unsigned long nSeed ;
char choice;
unsigned int PRNG()
{



// Take the current seed and generate a new value from it
// Due to our use of large constants and overflow, it would be
// very hard for someone to predict what the next number is
// going to be from the previous one.
nSeed = (8253729 * nSeed + 2396403);

// Take the seed and return a value between 0 and 32767
return nSeed % 32767;
}

void Complete ()

{cout << "Enter starting seed count" <<endl;
cin >> nSeed;
cout << endl;
// Print 100 random numbers
for (int nCount=0; nCount < 2000; ++nCount)
{
cout << PRNG() << "\t";

// If we've printed 5 numbers, start a new column
if ((nCount+1) % 5 == 0)
cout << endl;
}
cout << "These are 100 random numbers derived from your chosen seed" << endl;
cout << "Press enter to continue." << endl;
cin.ignore ();
cin.get ();
}
int main()
{
do
{
Complete ();
cout << "Do you want to try again? (Y or N) ";
cin >> choice;
}while (choice != 'N');
return 0;
}
Enter it in Visual C++ and compile... it took me about a week to really understand the code here.
Go to the top of the page
 
+Quote Post
drmoneejd
post Nov 3 2009, 03:30 PM
Post #7


Member
***
Posts: 164
From: united states
OS: XP Pro SP2



i would love to write in c++, even if not for the project, just because i think itd be cool to know ho to do. but i dont know where to go to learn it. do you know of a good website. also, i don't know how to run it. do you have to have a special program to run it?
Go to the top of the page
 
+Quote Post
edge2022
post Nov 3 2009, 10:05 PM
Post #8


Member 2k
*****
Posts: 2,000
From: Cerritos, CA (USA)
OS: Windows XP SP3, Linux (Ubuntu, DSL)



This is a good website: http://www.learncpp.com/
You use a program like Visual C++ or Dev-C++ to write, and compile your programs.
Go to the top of the page
 
+Quote Post
drmoneejd
post Nov 5 2009, 02:34 PM
Post #9


Member
***
Posts: 164
From: united states
OS: XP Pro SP2



Thanks for your input smile.gif
i have been reading some, and downloaded Windows 2008 express last night. i hope to start working soon. anymore suggestions? maybe on a simple program i could build?
Go to the top of the page
 
+Quote Post
drmoneejd
post Nov 5 2009, 02:36 PM
Post #10


Member
***
Posts: 164
From: united states
OS: XP Pro SP2



oh and thank you bartblaze for trying to help, and i do like this site. however, someone else chose to do HTML before me and sadly it is kind of looked down upon to do the same project.
Go to the top of the page
 
+Quote Post
bartblaze
post Nov 5 2009, 03:02 PM
Post #11


Geek in Training
**
Posts: 61
From: Flanders, Belgium
OS: Vista



Sure, no problem.

In regard of what you can code: how about a calculator ? It ain't that hard and it's useful .

(of course with proper design and functionality)
Go to the top of the page
 
+Quote Post
edge2022
post Nov 5 2009, 08:25 PM
Post #12


Member 2k
*****
Posts: 2,000
From: Cerritos, CA (USA)
OS: Windows XP SP3, Linux (Ubuntu, DSL)



You can program a TI-84... try writing a program to automatically do the quadratic equation... its really easy.
For C++ start by writing a simple "Hello World" program.
Go to the top of the page
 
+Quote Post
drmoneejd
post Nov 6 2009, 05:05 PM
Post #13


Member
***
Posts: 164
From: united states
OS: XP Pro SP2



that does seem like it would look good, and i actually did break my TI-83+ last week, well i don't know what happened, but none of the buttons work on it now. So that could be a good idea. i kinda did the hello world thing, but it was just copy and paste. im still reading though. smile.gif
Go to the top of the page
 
+Quote Post
Chopin
post Nov 8 2009, 08:54 PM
Post #14


In love with Chopin!
Group Icon
Posts: 2,619
From: My piano?
OS: Windows XP Professional SP2



You BROKE a TI-80 series graphing calculator! Shame on you! ph34r.gif angry.gif

laughing.gif
Go to the top of the page
 
+Quote Post
drmoneejd
post Nov 9 2009, 04:06 PM
Post #15


Member
***
Posts: 164
From: united states
OS: XP Pro SP2



i agree, i was actually very sad, and didn't even know it was broke till the middle of a pre-calculus test. i don't think i really did anything, just slowly all the buttons stopped working. i really don't want to have to buy one, but i guess that's just how the cookie crumbles sometimes. but if i don't buy one before i really get into this project(because i don't have a hundred bucks to just go spend on it, especially near Christmas time), then i will probably try to write a calculator for it. simple, or somewhat, and universally used.
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 

Collapse

> Similar Topics

    Topic Title Replies / Views Topic Information
No New Posts   9 / 296 10th September 2007 - 10:31 AM
tiroshii started - last by tiroshii
No New Posts   0 / 392 31st May 2009 - 09:27 PM
kwheeler2025 started - last by kwheeler2025
No New Posts   0 / 45 22nd October 2009 - 08:41 PM
bambam511 started - last by bambam511
No New Posts   2 / 74 23rd October 2009 - 07:52 PM
MSconfigBitMe2 started - last by MSconfigBitMe2

RSS Time is now: 21st November 2009 - 04:19 AM

Advertisements do not imply our endorsement of that product or service. The forum is run by volunteers who donate their time and expertise. We make every attempt to ensure that the help and advice posted is accurate and will not cause harm to your computer. However, we do not guarantee that they are accurate and they are to be used at your own risk. All trademarks mentioned on this page are the property of their respective owners.

© Geeks to Go, Inc. | All Rights Reserved | Privacy Policy | Advertising