Assets (like memory, disk space, CPU power or alike) necessary for effective operation.

learn more… | top users | synonyms (1)

1414
votes
328answers
316k views

What is the single most influential book every programmer should read? [closed]

If you could go back in time and tell yourself to read a specific book at the beginning of your career as a developer, which book would it be? I expect this list to be varied and to cover a wide ...
602
votes
58answers
77k views

Learning to Write a Compiler

Preferred Languages : C/C++, Java, and Ruby I am looking for some helpful books/tutorials on how to write your own compiler simply for educational purposes. I am most familiar with C/C++, Java, and ...
178
votes
72answers
11k views

What are the best programming articles? [closed]

Part of being a good software developer is keeping current with what people are saying in the community. There are many good articles out there on the Internet about the wide subject of computer ...
87
votes
5answers
26k views

Scala Programming for Android

I have followed the tutorial at Scala and Android with Scala 2.7.3 final. The resulting Android App works but even the most basic application takes several minutes (!) to compile and needs 900 kb ...
83
votes
3answers
27k views

What's the difference between StaticResource and DynamicResource in WPF?

When using resources such as brushes, templates and styles in WPF, they can be specified either as StaticResources <Rectangle Fill="{StaticResource MyBrush}" /> or as a DynamicResource ...
64
votes
15answers
3k views

What are good sites that provide free media resources for hobby game development?

I really suck at graphics / music / 3D modeling / animation and it's a must-have when you have a hundred hobby game development projects you're working on. I'm looking for different quality sources on ...
61
votes
26answers
5k views

What is in your Mathematica tool bag? [closed]

We all know that Mathematica is great, but it also often lacks critical functionality. What kind of external packages / tools / resources do you use with Mathematica? I'll edit (and invite anyone ...
54
votes
29answers
5k views

As a programmer without formal CS training or a CS degree, what am I missing?

I have worked as a programmer for over ten years, with a pretty good grasp of PHP, classic ASP, and VB. But I am self-taught, first using books and magazines, and now the Internet to improve my ...
54
votes
21answers
19k views

Cocoa and Objective-C resources?

What are the recommended online or offline resources for Objective-C and Cocoa programming? My online resources: O'Reilly. Some useful articles and examples, but has not been updated for quite a ...
48
votes
35answers
5k views
47
votes
24answers
7k views

Understanding recursion

Guys I'm having major trouble understanding recursion at school. Whenever the prof is talking about it I seem to get it but as soon as I try it on my own it completely blows my brains. I was trying to ...
45
votes
29answers
4k views

Where can I find video lectures on software engineering? [closed]

I am eager to learn about code, product, efficiency, etc. "Software engineering" course actually, not the course that is related to software.
31
votes
8answers
15k views

Resources for learning ARM assembly

I am looking for resources, either online tutorials or books, for learning ARM assembly. What would you recommend?
25
votes
3answers
491 views

US Government APIs?

I'm working on an app to provide an easy way for people to track the status of a bill [and various other political information]. I love the idea of OpenCongress, for instance, which surfaces summary ...
24
votes
19answers
2k views

Coding magazines

So, we have coding books, coding RSS feeds, and music to code by. Are there any coding magazines that anyone would recommend?
23
votes
25answers
16k views

resources.ap_ does not exist when compile my android project

Compile Error: Error generating final archive: java.io.FileNotFoundException: ..\bin\resources.ap_ does not exist. Compile other simple sample works. Same source file and project works on my ...
23
votes
9answers
3k views

Any good XSLT tutorial/book/blog/site online? [closed]

Any recommendations?
22
votes
4answers
434 views

How do I learn about browser host objects

4 months later: I'm reading the WHATWG and W3C specifications. If you want to know host objects read them. Don't trust other resources. TL:DR; I listed some host objects learning resources, but ...
22
votes
11answers
3k views

Join ACM, join IEEE, or read programming books? [closed]

I read blogs and listen to podcasts, and I own many of the "classic" programming books. For the money, what kind of printed material would you say is the most valuable to keep current in software ...
21
votes
15answers
920 views

Where can I get good answers to my Perl-related questions?

AFAIK one of the objectives of Stack Overflow is to make sure anyone can come here and find good answers to her Perl related questions. Certainly beginners would ask what is the best online source to ...
20
votes
9answers
3k views

Good programming website like Stack Overflow? [closed]

What other good collaborative programming/software development/engineering websites do you know of? I'm not looking for language or platform specific websites. Nor am I looking for something similar ...
20
votes
20answers
2k views

What are the best resources to start learning Perl?

I want to start learning Perl from scratch and I need to find some good tutorials and books to begin with. I found this tutorial very helpful and I'm wondering if you guys know of some more useful ...
19
votes
8answers
1k views

Writing compilers … what's right and what's wrong?

Okay, in my quest to figure out the necessary stuff to write a compiler, I've reached a bit of a roadblock. It seems that every technology or tool that I find has some opposition somewhere. I use ...
19
votes
8answers
3k views

What are some good resources for writing a chess engine?

I'm interested in writing a chess engine (mostly as a learning exercise) and would be interested in any resources that people know of that could be of interest or use, anything really: Papers, Books, ...
19
votes
14answers
2k views

Best C++ Resource

Java has its own (self-documented) Javadoc, PHP has PHP.net, all the MS documenation can be found at the MS Developers Network, but whenever it comes to throwing together some C++ my first stop is ...
19
votes
4answers
19k views

How do I use an icon that is a resource in WPF?

I have a .ico file that is embedded as a resource (build action set to resource). I am trying to create a NotifyIcon. How can I reference my icon? notifyIcon = new NotifyIcon(); notifyIcon.Icon = ...
18
votes
1answer
15k views

How can I get a BitmapImage from a Resource?

My assembly includes an image with BuildAction==Resource. I want to obtain a BitmapImage from this embedded resource. I can load a BitmapImage from file like this: var bitmap = new BitmapImage(new ...
18
votes
5answers
3k views

Do I need to manually close a ifstream?

Do I need to manually call close() when I use a std::ifstream? For example in the code: std::string readContentsOfFile(std::string fileName) { std::ifstream file(fileName.c_str()); if ...
18
votes
7answers
2k views

Would you recommend the book “Programming in Scala” for an experienced developer? [closed]

I would like to learn Scala. In the past, I have used Java and F# extensively. Would you recommend the book Programming in Scala for someone like me? I really liked the book Expert F#, and I was ...
18
votes
6answers
3k views

Resources for lexing, tokenising and parsing in python

Can people point me to resources on lexing, parsing and tokenising with Python? I'm doing a little hacking on an open source project (hotwire) and wanted to do a few changes to the code that lexes, ...
17
votes
3answers
1k views

Find out if resource is used

I am looking for an efficient way to find out if a resource (mostly a drawable) is used in java or in an XML file. The problem is, that on my current project the drawables are changed often and now I ...
17
votes
11answers
3k views

C# IEnumerator/yield structure potentially bad?

Background: I've got a bunch of strings that I'm getting from a database, and I want to return them. Traditionally, it would be something like this: public List<string> GetStuff(string ...
17
votes
10answers
1k views

Personal Code Library

So I assume I'm not the only one. I'm wondering if there are others out there who have compiled a personal code library. Something that you take from job to job that has examples of best practices, ...
17
votes
7answers
7k views

Resources for learning c# Excel interop

What are some resources that will help get me up and running quickly with the Excel interop in C#?
16
votes
2answers
352 views

How can I make R take advantage of a high memory, high cpu server?

SO I've finally figured out how to get my R scripts to run on the Amazon EC2 cloud. I've been using an AMI with 26 ECUs, 8 Cores, and 69 gigs of RAM. I then divide up my code into multiple scripts, ...
16
votes
4answers
17k views

How to create and use resources in .NET

How do I create a resource that I can reference and use in various parts of my program easily? My specific problem is that I have a NotifyIcon that I want to change the icon of depending on the state ...
15
votes
3answers
1k views

What's the difference between a Resource and an Embedded Resource in a C# application?

When should I use one or the other? I'd like all of the files I use in my app (images, sound, xml file, etc.) to be inside of the .exe file so I don't deploy with a bunch of folders and files. ...
15
votes
8answers
606 views

Useful databases around web

As Tim Berners-Lee told at TED, there's lots of hidden data. What useful free databases or APIs you know around web? For example: European Union's VAT number validator Team Cymru's IP Address to ...
15
votes
16answers
930 views

How do you collaborate with other coders in real time?

Pretend you're hitting me up for some javascript help on IM. How can you make it as easy as possible for me to help you get your code working? I run into this all the time. I'm on instant messenger ...
15
votes
11answers
2k views

Genetic algorithm resource

Lately I'm interested in a topic of genetic algorithms, but i couldn't find any good resource. If you know any good resource, book or a site i would appreciate it. I have solid knowledge of algorithms ...
15
votes
10answers
5k views

Designing extensible software (plugin architecture)

I need some resources that talk about how to design your software to be extensible, i.e. so that other people can write add-ons/plug-ins that adds functionality to it. What do you recommend? Any ...
15
votes
16answers
2k views

What are some good resources for learning C beyond K&R [closed]

I'm currently reaching the end of working through the K&R book "The C Programming Language", and I'm looking for things to read next. Any recommendations of: blogs more detailed / advanced ...
14
votes
5answers
561 views

Is Lazarus a good alternative for learning Delphi?

I'm a teen who has been programming since 8 years old, so I know what I do. I want to take a look at Delphi Windows development. The problem with this, is that Embarcadero's Delphi is really ...
14
votes
2answers
7k views

How can i get the resource id of an image if I know its name?

How can i get the resource id of an image if I know its name (in Android)?
14
votes
4answers
4k views

How do I make a PNG resource?

I've got a form with a large TImage on it as a background. Problem is, this is stored directly in the DFM as a bitmap, which takes up about 3 MB. The original PNG file is ~250K. I'd like to try to ...
14
votes
5answers
23k views

How to get a path to a resource in a Java JAR file

I am trying to get a path to a Resource but I have had no luck. This works (both in IDE and with the JAR) but this way I can't get a path to a file, only the file contents: ClassLoader classLoader ...
14
votes
8answers
2k views

Should a RESTful 'PUT' operation return something

I was wondering what peoples opinions are of a RESTful 'PUT' operation that returns nothing(null) in the response body?
14
votes
4answers
2k views

Concurrency and Coordination Runtime (CCR) Learning Resources

I have recently been learning the in's and out's of the Concurrency and Coordination Runtime (CCR). Finding good learning resources for this relatively new technology has been quite difficult. (A ...
14
votes
9answers
22k views

Link to resources inside WebView - iPhone

I have a webview in my iPhone application, and I also have some html files inside my Resources folder. When my app loads, I load in a page from my resources into my webview. But , I need to make links ...
14
votes
3answers
11k views

How can I discover the “path” of an embedded resource?

I am storing a PNG graphic as an Embedded Resource in an assembly. From within the same assembly I have some code like: Bitmap image = new Bitmap(typeof(MyClass), "Resources.file.png"); The file, ...

1 2 3 4 5 65