|
Possible Duplicate:
Getting started with .NET
How to get started on .NET, where to start, what are the best resources
Answer Snippets (Read the full thread at stackoverflow):
Through the different tracks, the site will also assist you in choosing .
CHeck out the http://asp.net/ site
I would start here and download one of the free editions start at the appropriate level.
|
|
How do I get started in Agile and TDD. I have learnt a bit about Agile, but finding it difficult to get started. How do I get started.
Started by Azagu on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
AgileI think you can start ....
To get started with Agile, there's a couple of really good books.
I used John Boodhoo's other methods than TDD.
A practical guide
That would be enough to get you started on XP at least.
|
|
Can someone suggest some good tutorials for getting started with JAX-WS? Using various tools like wsgen etc...
Started by Java Guy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Of tutorials are available, e.g.:
Getting Started with JAX-WS Web Services Glen Mazza's has written plenty can start here:
Introducing JAX-WS 2.0 With the Java SE 6 Platform, Part 1 Introducing JAX-WS 2.0.
|
Ask your Facebook Friends
|
I have a profound knowledge of the .NET framework - except ASP.NET. What would be a good book for getting started with ASP.NET that maybe also covers the latest buzz like ASP.NET AJAX and ASP.NET MVC?
Started by bitbonk on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
I think you'll get more out of that than sitting down-where-do-i-start-from....
See these questions:
http://stackoverflow.com/questions/458245/what-is-the-best-way-to-get-started other tutorial on MVC, and start playing.
|
|
Has somebody a good guide for getting started using Darwin Streaming Server and Darwin Proxy Server? I've searched in the Internet with no success.
Started by victor hugo on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
The only advice I have is that, depending on the OS, you will probably need to try out both... .
No instrumentation, no decent low-level docs, not much community around it .
I've been using it for about a year and a half now, and it appears to be a black box .
|
|
Hi can anyone suggest ways of getting started with OpenRasta?
Perhaps articles, tutorials, sample apps & documentation?
Started by ambuletz on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://trac.caffeine-it.com/openrasta/wiki/Doc
Are you looking for something else?
Have some blog posts:
OpenRasta Introduction OpenRasta - How to speak REST Whats so good about OpenRasta OpenRasta Introduction Handlers and OperationResults in OpenRasta... .
|
|
As you can see here I'm about to start work on a 3d project for class.
Do you have any useful resources/websites/tips/etc. on someone getting started with OpenGL for the first time? The project will be in C++ and accessing OpenGL via GLUT. Thanks!
Started by Bryan Denny on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
If you don't like the editor, which comes with processing, you can also use and man glDrawElements will get you started (look at the references at the bottom for other functionsThe OpenGL....
It's an easy way to get started..
|
|
Can anyone recommend any documentation, article, or blog to get started with ASP.NET MVC?
Started by Galilyou on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Another good site.
Start here:-
http://www.asp.net/learn/mvc/
Blog: Scott Hanselman - he is the MVC guy.
Or just.
Stephen Walther on ASP.NET MVC
Simple tasklist application to get started here .
On his blog.
|
|
I want to do some custom drawing in a NSView subclass where should I get started?
Started by nanochrome on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Lots of examples there....
Apple's Introduction to Cocoa Drawing Guide is the best place to start.
You'll probably want to get started with are things such as:
Filling basic rectangles (usingYou should start at the beginning .
|
|
I have just started learning python and am getting caught up. I come from mostly C background.
class Alarm: def timer(): def main(): print ("Timer has Started") main()
I always get a silly error when I try to run this code::
alarm > python alarm.py...
Started by Recursion on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
To timer and define an init method:
class Alarm(): def __init__(self): print ("Timer has Started def main(self): print ("Timer has Started") if __name__ == '__main__': class_inst = Alarm() class_inst.main()
If you getting into python....
|