Pretty stuck

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
User avatar
tajdadon
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 6
Joined: Wed Jan 27, 2010 12:08 am

Pretty stuck

Post by tajdadon »

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?
User avatar
short
ES Beta Backer
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

Post by short »

uhhhhhhhhhhhhhhhhhhhhhhhhhhh

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
User avatar
tajdadon
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 6
Joined: Wed Jan 27, 2010 12:08 am

Re: Pretty stuck

Post by tajdadon »

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
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.

I'll try to be more thorough if you need me to.
User avatar
Bakkon
Chaos Rift Junior
Chaos Rift Junior
Posts: 384
Joined: Wed May 20, 2009 2:38 pm
Programming Language of Choice: C++
Location: Indiana

Re: Pretty stuck

Post by Bakkon »

tajdadon wrote:I'll try to be more thorough if you need me to.
Just start thinking of simple idea and crank out code until you get a good hold on the language.
- random number guessing game
- mad libs
- function solver
- Fibonacci sequence
- calculator
- etc. etc.
Live-Dimension
Chaos Rift Junior
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

Post by Live-Dimension »

Bakkon wrote:
tajdadon wrote:I'll try to be more thorough if you need me to.
Just start thinking of simple idea and crank out code until you get a good hold on the language.
- random number guessing game
- mad libs
- function solver
- Fibonacci sequence
- calculator
- etc. etc.
If you want to do games, get the XNA development kit and use their tutorials.

Pretty much, the only way to "learn" a language once you know how to read it is to..... program it.
Image
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: Pretty stuck

Post by avansc »

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"
User avatar
tajdadon
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 6
Joined: Wed Jan 27, 2010 12:08 am

Re: Pretty stuck

Post by tajdadon »

avansc 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.
I had to learn that the hard way :cry:
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: Pretty stuck

Post by avansc »

tajdadon wrote:
avansc 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.
I had to learn that the hard way :cry:
meh dont be too hard on your self. i think everyone goes through that. i know i did.

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"
User avatar
Falco Girgis
Elysian Shadows Team
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

Post by Falco Girgis »

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?
Yeah. Now is clearly the time where you sit the fuck down, put down the book, and actually start coding things on your own.
User avatar
dandymcgee
ES Beta Backer
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

Post by dandymcgee »

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! :twisted:
User avatar
RyanPridgeon
Chaos Rift Maniac
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

Post by RyanPridgeon »

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.
Ryan Pridgeon
C, C++, C#, Java, ActionScript 3, HaXe, PHP, VB.Net, Pascal
Music | Blog
User avatar
tajdadon
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 6
Joined: Wed Jan 27, 2010 12:08 am

Re: Pretty stuck

Post by tajdadon »

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.
Post Reply