Pretty stuck
Moderator: Coders of Rage
Pretty stuck
Alright guys, I'm at the point in where I've learnt all the syntax (c#) but I never really got around to practicing the language and while I do know all the syntax I have no idea how to use the language. Are there any tips that could be given to me to help move me forward?
- short
- ES Beta Backer
- Posts: 548
- Joined: Thu Apr 30, 2009 2:22 am
- Current Project: c++, c
- Favorite Gaming Platforms: SNES, PS2, SNES, SNES, PC NES
- Programming Language of Choice: c, c++
- Location: Oregon, US
Re: Pretty stuck
uhhhhhhhhhhhhhhhhhhhhhhhhhhh
please be more vague? Look I'm sorry but I have no idea what you are asking for. Please be more specific
please be more vague? Look I'm sorry but I have no idea what you are asking for. Please be more specific
My github repository contains the project I am currently working on,
link: https://github.com/bjadamson
link: https://github.com/bjadamson
Re: Pretty stuck
Sorry, for some reason It's really hard for me to word this correctly. Basically I'm stuck with all the knowledge of Syntax and how they work in C# but I had no idea on how to actually use C# and my knowledge of the Syntax to create programs. What I'm asking for now is for any tips on how I could learn how to actually use the language.short wrote:uhhhhhhhhhhhhhhhhhhhhhhhhhhh
please be more vague? Look I'm sorry but I have no idea what you are asking for. Please be more specific
I'll try to be more thorough if you need me to.
- Bakkon
- Chaos Rift Junior
- Posts: 384
- Joined: Wed May 20, 2009 2:38 pm
- Programming Language of Choice: C++
- Location: Indiana
Re: Pretty stuck
Just start thinking of simple idea and crank out code until you get a good hold on the language.tajdadon wrote:I'll try to be more thorough if you need me to.
- random number guessing game
- mad libs
- function solver
- Fibonacci sequence
- calculator
- etc. etc.
-
- Chaos Rift Junior
- Posts: 345
- Joined: Tue Jan 12, 2010 7:23 pm
- Favorite Gaming Platforms: PC - Windows 7
- Programming Language of Choice: c++;haxe
- Contact:
Re: Pretty stuck
If you want to do games, get the XNA development kit and use their tutorials.Bakkon wrote:Just start thinking of simple idea and crank out code until you get a good hold on the language.tajdadon wrote:I'll try to be more thorough if you need me to.
- random number guessing game
- mad libs
- function solver
- Fibonacci sequence
- calculator
- etc. etc.
Pretty much, the only way to "learn" a language once you know how to read it is to..... program it.
Re: Pretty stuck
It is so common for people to focus on syntax, thinking that thats where the magic happens, while I'll agree that you need to know the syntax, it is not really what programming is about. Syntax is useless if you don't understand the underlying issues.
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
Dad, "Yea well I have a fan belt in street fighting"
Re: Pretty stuck
I had to learn that the hard wayavansc wrote:It is so common for people to focus on syntax, thinking that thats where the magic happens, while I'll agree that you need to know the syntax, it is not really what programming is about. Syntax is useless if you don't understand the underlying issues.
Re: Pretty stuck
meh dont be too hard on your self. i think everyone goes through that. i know i did.tajdadon wrote:I had to learn that the hard wayavansc wrote:It is so common for people to focus on syntax, thinking that thats where the magic happens, while I'll agree that you need to know the syntax, it is not really what programming is about. Syntax is useless if you don't understand the underlying issues.
when you have done thins long enough you will be able to pick up code written in any language, and understand it. the syntax kinda fades away. you will see im most books about scientific programming, they use pseudo code, all they want you do get is the programming, they could not give two shits about syntax.
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
Dad, "Yea well I have a fan belt in street fighting"
- Falco Girgis
- Elysian Shadows Team
- Posts: 10294
- Joined: Thu May 20, 2004 2:04 pm
- Current Project: Elysian Shadows
- Favorite Gaming Platforms: Dreamcast, SNES, NES
- Programming Language of Choice: C/++
- Location: Studio Vorbis, AL
- Contact:
Re: Pretty stuck
Yeah. Now is clearly the time where you sit the fuck down, put down the book, and actually start coding things on your own.tajdadon wrote:Alright guys, I'm at the point in where I've learnt all the syntax (c#) but I never really got around to practicing the language and while I do know all the syntax I have no idea how to use the language. Are there any tips that could be given to me to help move me forward?
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Pretty stuck
Attempt.. something.. anything. Then post the results of your experience here. We're more than willing to help with issues, but you must first try to apply your knowledge.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
- RyanPridgeon
- Chaos Rift Maniac
- Posts: 447
- Joined: Sun Sep 21, 2008 1:34 pm
- Current Project: "Triangle"
- Favorite Gaming Platforms: PC
- Programming Language of Choice: C/C++
- Location: UK
- Contact:
Re: Pretty stuck
Just start with some nice simple console applications.
Here's some suggestions(in order of difficulty):
- Number guessing game (enter number, program tells you if its higher or lower until you get the right answer)
- Fibonacci Sequence (you can do this using recursion aswell as loops)
- Hangman (this will improve your knowledge of using arrays and strings)
And maybe try implementing some common data structures such as linked lists and tree structures.
Here's some suggestions(in order of difficulty):
- Number guessing game (enter number, program tells you if its higher or lower until you get the right answer)
- Fibonacci Sequence (you can do this using recursion aswell as loops)
- Hangman (this will improve your knowledge of using arrays and strings)
And maybe try implementing some common data structures such as linked lists and tree structures.
Re: Pretty stuck
Thanks for all the positive feedback guys, as of late I've been working on a game named Ninjinda in C# using XNA. It's going pretty smooth right now and i'll post pictures and soon as I'm able to, I don't know how but just the responses you guys gave me almost gave me an enlightenment.