112
votes
41answers
7k views
Hidden Features of ASP.NET
There are always features that would be useful in fringe scenarios, but for that very reason most people don't know them. I am asking for features that are not typically taught by the text books.
…
2
votes
4answers
133 views
Global “placement” delete[]
I am trying to replace new/delete with my own allocator(s). So, overriding placement new and delete - quite happy with that. Looks something like this ...
void* operator new( size_t size, Allocator* …
65
votes
61answers
11k views
Hidden features of Perl?
What are some really useful but esoteric language features in Perl that you've actually been able to employ to do useful work?
Guidelines:
Try to limit answers to the Perl core and not CPAN
Please …
13
votes
3answers
514 views
What is ->* operator in C++?
C++ continues to surprise me.
Today i found out about the ->* operator. It is overloadable but i have no idea how to invoke it. I manage to overload it in my class but i have no clue how to call it.
…
79
votes
21answers
20k views
How to get started in operating system development
One thing I've always wanted to do is develop my very own operating system (not necessarily fancy like Linux or Windows, but better than a simple boot loader which I've already done).
I'm having a …
2
votes
3answers
76 views
Advanced PHP Polymorphism question
Hey guys!
I have a class which has a function to retrieve children elements from a database. The following code will be rather pseudo cause I want to keep it as easy as possible.
abstract class …
32
votes
31answers
2k views
What are some advanced software development topics every developer should know?
Let's say your company has given you the time & money to acquire training on as many advanced programming topics that you can eat in a year, carte blanche. What would those topics be and how would …
0
votes
3answers
395 views
Specify source IP address for TCP socket when using Linux network device aliases
For some specific networking tests, I've created a VLAN device, eth1.900, and a couple of aliases, eth1.900:1 and eth1.900.2.
eth1.900 Link encap:Ethernet HWaddr 00:18:E7:17:2F:13
…
0
votes
3answers
51 views
after reading Simply Rails 2
If I have only the information in Simply Rails 2 now and I want to create more complicated apps next, what should I do to learn that?
0
votes
1answer
85 views
Mysql SELECT nested query, very complicated?
Okay, first following are my tables:
Table house:
id | items_id |
1 | 1,5,10,20 |
Table items:
id | room_name | refer
1 | kitchen | 3
5 | room1 | 10
Table kitchen:
id | detail_name …
0
votes
1answer
2k views
Advanced DataGrid Flex 3 - ItemRenderer and Tree display
Hi,
I am using Advanced DataGrid of Flex 3 with hierarchical data. The itemRenderer is a TextInput which accepts numbers. When I enter data into the given field and click the corresponding expand …
9
votes
10answers
380 views
Learning advanced CSS
Hi friends,
I know basic CSS to the point that I can write simple style sheets which actually adds simple decoration to the html elements. (like border, text-color, background, font etc.)
But I just …
0
votes
3answers
242 views
Why is the advanced search not working with price criteria in magento?
The advanced search with all the default product attributes are working fine and gives the desired result except for the price criteria where even if i fill the values with the correct range and price …
1
vote
6answers
261 views
Advanced IF statement in C
Hi,
I've just reverse engineered a binary with IDA and loaded Hex Ray to check out a specific function. The generate C source code contains the following if statement:
LP_ret_GlobalLock_1 = …
2
votes
2answers
183 views
C# Winforms Irregular Windows
How do I create windows with irregular shapes using WinForms and C#?
