Tagged Questions

82
votes
85answers
8k views

What is your most useful sql trick to avoid writing more code?

I am intending this to be an entry which is a resource for anyone to find out about aspects of sql that they may have not run into yet, so that the ideas can be stolen and used in their own …
23
votes
23answers
2k views

Good JavaScript Books?

I find myself using Javascript day to day without a solid understanding of the language. There are some great writeups out there about using specific features of the language, but I'd like a …
19
votes
12answers
1k views

Programming texts and reference material for my Kindle DX, creating the ultimate reference device?

(Revisiting this topic with the release of the Kindle DX) Having owned both generation Kindle readers and now getting a Kindle DX; I'm very excited for true PDF handling on an e-ink device! An image …
17
votes
9answers
2k views

What are some of the pros and cons of using jQuery?

As someone who is only barely proficient in javascript, is jQuery right for me? Is there a better library to use? I've seen lots of posts related to jQuery and it seems to be the most effective way …
17
votes
10answers
3k views

Pointer vs. Reference

What would be better practice when giving a function the original variable to work with: unsigned long x = 4; void func1(unsigned long& val) { val = 5; } func(x); or: void func2(unsigned …
16
votes
14answers
1k views

What’s on your C++ cheatsheet?

Every so often, I'll have to switch between languages for the majority of the code I write (whether for work or for play). I find that C++ is one of those languages that requires a lot of mental …
16
votes
7answers
1k views

How do databases work internally?

I've been working with databases for the last few years and I'd like to think that I've gotten fairly competent with using them. However I was reading recently about Joel's Law of Leaky Abstractions …
13
votes
3answers
127 views

Is there a Bug Encyclopedia?

Has anyone developed an encyclopedia or wiki of software bugs, either bug types (off-by-one, buffer overflow, etc.) or even just famous bugs (Grace Hopper's moth, the Arianne rocket failure, etc.)? I …
13
votes
5answers
636 views

Why ‘this’ is a pointer and not a reference?

I was reading the answers to this question C++ pros and cons and got this doubt while reading the comments. Why the this is a pointer a not a reference ? Any particular reason for making it a pointer? …
13
votes
3answers
1k views

What is the difference between a soft reference and a weak reference in Java

The title pretty much sums it.
11
votes
11answers
384 views

C# .NET String object is really by reference?

Hi, I have being studying (newbie) .NET and I got some doubts. Reading from a book examples I learnt that String are object then Reference Type. So, I did this test and the result was different …
11
votes
9answers
2k views

Should Java method arguments be used to return multiple values ?

Since arguments sent to a method in Java point to the original data structures in the caller method, did its designers intend for them to used for returning multiple values, as is the norm in other …
10
votes
14answers
616 views

Handy F# snippets

There are already two questions about F#/functional snippets. However what I'm looking for here are useful snippets, little 'helper' functions that are reusable. Or obscure but nifty patterns that …
10
votes
2answers
1k views

How does Silverlight determine an assembly is “Silverlight”?

I'm trying to compile code from F# to use in Silverlight. I compile with: --noframework --cliroot "C:\program Files\Microsoft Silverlight\2.0.31005.0" --standalone This generates a standalone …
9
votes
10answers
452 views

Why there is no OFFICIAL JavaScript reference?

I tried to search for one, but there's none available. The best 2 suggested sources are MDC and W3Schools. Anybody happens to know why? Thank you so much!

1 2 3 4 5 30 next
15 30 50 per page