Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

161
votes
7answers
15k views

Good Haskell source to read and learn from

What are some open source programs that use Haskell and can be considered to be good quality modern Haskell? The larger the code base, the better. I want to learn from their source code. I feel I'm ...
21
votes
21answers
3k views

How to learn C and Objective-C

I am learning programming. I plan on learning C and Objective-C this summer. I bought the C for Dummies book but it is a complete waste of time. It's way too many pages! Are there any good books I ...
14
votes
9answers
529 views

Learning Clojure by reading core.clj

I came across the tweet today: Start each day by reading the implementation of a function or macro in Clojure's core.clj. My Clojure knowledge is really basic, I can hardly read other's ...
13
votes
20answers
2k views

Is C++ (one of) the best language to learn at first nowdays?

C++ is one of the most used programming language in the world since like 25+ years. My first job as programmer was in C++ and I coded in C++ everyday for nearly 4 years. Now I do mostly PHP, but I ...
8
votes
3answers
109 views

Which version of OpenGL should I learn? [closed]

Possible Duplicate: Which version of OpenGL to use? I have been wanting to learn a 3d graphics language for some time now and I have finally decided to learn OpenGL. However, I work on a ...
5
votes
6answers
300 views

Simple excercises for learning a new language

I remember stumbling onto a list of basic algorithms to implement in a new language to get your head around how the language does thing, but I seem to have lost the link to it. What simple tasks/code ...
5
votes
17answers
535 views

What is your favorite first exercise?

When you are learning a new language, what is your favorite first (or close to first) exercise that you do to get the hang of it? And why? EDIT: Preferably looking for things that are more ...
3
votes
4answers
123 views

Is learning Django without initial knowledge of Python possible?

I am coming from procedural PHP with fair amount of knowledge on it. I want to learn Django but I don't have initial knowledge of Python. Can I learn Django at the same time also learning Python? ...
3
votes
7answers
129 views

JavaScript as a first programming language? [closed]

I would like to learn how to program, starting from scratch. I've come across an online beginner's course based on JavaScript which seems to be very well-done. However, a friend of mine counseled me ...
3
votes
6answers
80 views

Learning C by K&R, error when trying to compile programs from book with arrays and function calls

Here is a program I'm trying to run straight from section 1.9 of "The C Programming Language". #include <stdio.h> #define MAXLINE 1000 int getline(char line[], int maxline); void copy(char ...
3
votes
4answers
574 views

Which is the best resource to learn Google DART?

Apart from http://www.dartlang.org/ which is the best website to learn Google DART? Any tutorials? Any good book for it? Also, is it necessary to have any prior knowledge of Javascript to learn it?
2
votes
4answers
109 views

How to get over the semi-advanced, intermediate hump in R?

When working with R, I feel like a have decent repertoire of tools and tricks to tackle many everyday problems. Yet often, I realize I could have solved problems more elegantly. For example I read ...
2
votes
2answers
99 views

Tools for automatic code evaluation and correction for learning purposes

Anyone know a freely or commercially available tool for sandbox compiling/running code (c, c++, java, or others) for learning purposes, preferably with a web interface? It would have to work by ...
2
votes
1answer
276 views

Python/Django to PHP transition ? Wrong learning Curve?

I have been coding in python/django and c/c++ from last three years for various web-based and desktop applications in my previous companies. While following the general learning curve, I started ...
2
votes
2answers
211 views

What are the benefits of learning a new language, as a game developer?

I'm an independant game developer/designer, and I'm wondering what specific benefits are there to learning a new programming language. I do my programming in C++ currently, and I want to know if ...
2
votes
6answers
234 views

Beginner/Basic Logic Learning

I can usually understand the syntax and learn the syntax quickly for most languages, but what is the best way to learn how the syntax works and the logic behind it, so I can program more efficiently ...
1
vote
1answer
63 views

failing “Private Test Cases” in pyschools

I used the following script to try to answer this question: def isEquilateral(x, y, z): if x<0 or y <0 or z<0: return False elif x==y==z: return True else: ...
1
vote
2answers
125 views

Is “K&R C” still applicable [closed]

I relearning C; it's been years and whilst familiar the nuances are lost in time. I originally learned C from K&R. However, I now see many people levelling criticism at K&R. A chief ...
1
vote
1answer
28 views

Javascript and CSS (and other languages) equivalents of “SQLZoo”, “RegexOne” and “TryRuby”

I've found the sites SQLZoo, RegexOne, and TryRuby to be incredibly helpful in understanding basics of those technologies. Are there any similar resources for javascript and CSS? (i.e. online ...
1
vote
2answers
85 views

Tips for begining 3D Application Development

hey, guys I want to create an application that has a 3D display. I want all the planets in it. Then the next step is I want to have satellites in it as well. I want to provide an interface to add ...
0
votes
1answer
16 views

LPTHW Exercise17,Extra Credit 6

from sys import argv from os.path import exists script, from_file, to_file = argv print "Copying from %s to %s" % (from_file, to_file) input = open(from_file) indata = input.read() print "The ...
0
votes
2answers
30 views

Make Javascript execute strictly

Currently, I'm trying to learn Javascript by writing my code in Gedit then attempting to execute it via Firefox. However, web browsers tend to fail silently whenever it encounters an error in my ...
0
votes
1answer
22 views

How to introduce a child to programming [closed]

My 7 year old daughter "wants" a toy laptop which I don't think is going to hold her interest for longer than about 3 days. I'd quite like to introduce her to computing in general and programming in ...
0
votes
1answer
81 views

Learn Python the Hard Way, ex60 Extra Credit 3

Exercise: There's too much repetition in this file. Use strings, formats, and escapes to print out line1, line2, and line3 with just one target.write() command instead of 6. Code from the book: ...
0
votes
8answers
95 views

Why is the following program stuck in a loop?

I wrote a solution to an exercise that asks to write a program that acts as a simple "printing" calculator, and also detects division by zero and checks for unknown operators. The program works as ...
0
votes
2answers
54 views

Is the following control expression incremented in the for loop?

In the following code, in the innermost loop, when d < p is true and p % d == 0 is false, is variable d being incremented or is incrementing being skipped? // Program to generate a table of prime ...
0
votes
2answers
34 views

Learning Grails, Definitive guide to Grails, 2nd ed. Stuck on Urlmapping in chapter 4

I'm learning Grails from the Definitive Guide (2nd ed), and get stuck on the Urlmapping used. I'm buidling the gTunes store, as many before me must have done. The book makes me change the default ...
0
votes
4answers
177 views

Learning XNA for Game Development. Is it worth It? [closed]

It seems that most of the popular games in the world are developed using C++. But Microsoft's game platform, XNA Studio is based on programming in C# and I didn't find any popular game which was ...
0
votes
0answers
21 views

Getting started in 3D (from a developer perspective) [closed]

Does anyone know good resources (website, blog, book, etc) on how to get started in 3D? I've done some very basic stuff in 3D in Processing or openFrameworks (C++) but I always missed knowing about ...
0
votes
4answers
136 views

How long a desktop programmer able to convert himsleft on mastering PHP?

i know it depends on many thing. But can anybody tell me how long it should be ? I just want to draw a boundaries between successful and failed attempt to convert myself ?
0
votes
5answers
109 views

Learning Java the “right way”: any book that goes over DI, loosely coupling, writing testable code?

I'm comfing from the .net world, and want a book that goes over the 'right' way of coding. Things like dependancy injection, loosely coupling of objects, how to layout your web application properly, ...
-1
votes
3answers
112 views

A step up from perl? [closed]

I am curious, if I am looking for something that is a "step up" from Perl is terms of difficulty. Where would I go? Is python higher? Ruby? Java? Am I getting warmer? Would adding GUIs to my perl ...
-1
votes
3answers
117 views

Schedule for learning Php & Programming [closed]

Short Version I started learning Php with no programming experience. Books,tutorials concentrate on creating web pages and showing you built in functions etc. but don't show you how to PROGRAM (i.e. ...
-1
votes
1answer
100 views

Is it a bad idea to learn Ruby and Python simutaneusly? [closed]

I'm learning these Ruby and Python interactively and simultaneously. My goal is to learn them at the same time so that I can decide which one I like the most. Is it a bad idea to learn them ...
-2
votes
1answer
86 views

Learning to program (Python) the right way? [closed]

I'm looking to learn to program, the right way. I don't want to pick up bad habits and I'm hoping there is some good guidance out there that will help. Currently I know the following: HTML, CSS, and ...
-4
votes
1answer
26 views

What is a good path for getting an overview of LAMP? [closed]

What are some good resources to get an overview of the capabilities and limitations of the LAMP stack for development, assuming you're using a hosted LAMP service (so that someone else is maintaining ...
-6
votes
0answers
36 views

Using the Expect module in perl, how can i do this? [closed]

write a piece of code that ask the user to set a password - queries the user for his/her user name - queries the user for his/her password twice, making sure the user enters the same password twice - ...