0
votes
1answer
31 views
What are some authoritative/respected “best known implementation” websites/resources?
Open source projects are very popular. Some of these are libraries suited for specific purposes, the best of which include some very well-written code.
However, if you're interest …
559
votes
274answers
48k views
What is the single most influential book every programmer should read?
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 …
0
votes
1answer
31 views
C# Form resx usage for programmatic strings?
Hi All,
Had a basic WinForm question: By default a resx file is created for every form or usercontrol (along with the designer.cs). This resx works fine for all the controls and t …
0
votes
1answer
17 views
Maven - extract /test/resources/my.zip in /target during the Test Phase
Hi all,
I've some test resources (that are specific for a particular task) zipped in /test/resources/my.zip.
I want to extract the zip content to /target during the maven's Test …
2
votes
2answers
62 views
Working with relative file paths in .Net
I have a C# project where I include some resources which I need to refer using the Uri-class. For this specific problem I have some shaders placed in a "Shaders" folder in the root …
0
votes
2answers
21 views
How to search categorywise in the web? are there any categorysearch search engines
Example: I want to search results only from the research papers
or I want to search results only from opensource tools/packages/codes
Kindly help me
0
votes
2answers
23 views
Why keep throws Rescources.NotFoundException?
In the following code, these lines:
"score.setText(shops[i].getScore());"
and "icon.setImageResource(R.drawable.test1);"
the app keep throws the Rescources.NotFoundException. I ch …
1
vote
4answers
80 views
PHP - Foreach loops and ressources
I'm using a foreach loop to process a large set of items, unfortunately it's using alot of memory. (probably because It's doing a copy of the array).
Apparently there is a way to s …
0
votes
3answers
27 views
How can I make deployed resources editable with Maven 2?
I have a project where I create a JAR which contains a bunch of classes with main() plus a set of scripts which set the environment to invoke them. Most of those are long running p …
2
votes
6answers
105 views
Convert files of any types to a file with c strings.
Please suggest a small command-line utility (for Windows) to convert files from particular directory to a valid c file. Maybe it can be done just with batch commands?
The resulting …
1
vote
3answers
61 views
Adding extra params to rails route resources
What I want to do seems simple, but might not be "proper"
let's say I have an image resource, and I manipulate the image based on the url. In the url I want to specify it's size a …
1
vote
2answers
32 views
Can I map resources to a different controller?
I have my resources already defined, but a client wants to change the names of the URLs to match their brand (e.g. something like "catalog" when the resource is currently "products …
0
votes
5answers
71 views
Receiving payments trough PayPal and Credit Card
Hi, I am developing a website and I need to receive payments from PayPal and Credit Card, the thing is that I know nothing about this, and my question is where I can find some grea …
8
votes
7answers
271 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 …
2
votes
4answers
98 views
C#: Is there an Advantage to Disposing Resources in Reverse Order of their Allocation?
Many years ago, I was admonished to, whenever possible, release resources in reverse order to how they were allocated. That is:
block1 = malloc( ... );
block2 = malloc( ... );
.. …
