unified_texts stringlengths 32 30.1k | OpenStatus_id int64 0 4 | input_ids list | token_type_ids list | attention_mask list |
|---|---|---|---|---|
InstallShield2008 Unicode Support
===
Our installation program is written using InstallShield2008, and as part of certification requirements we have to support Unicode throughout.
The application itself is .NET, so supports Unicode natively, however on testing our installation with a Chinese character set we can se... | 0 | [
2,
16146,
29026,
2753,
28010,
555,
800,
3726,
3726,
318,
7758,
625,
25,
642,
568,
16146,
29026,
2753,
15,
17,
28,
141,
16,
10439,
4786,
95,
57,
20,
555,
28010,
892,
9,
14,
3010,
1145,
25,
13,
9,
2328,
15,
86,
6747,
28010,
1275,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
jQuery document.createElement equivalent?
===
I'm refactoring some old javascript and there's a lot of DOM manipulation going on.
var d = document;
var odv = d.createElement("div");
odv.style.display = "none";
this.OuterDiv = odv;
var t = d.createElement("table");
t.cellSpacing = 0;
t.className = "t... | 0 | [
2,
487,
8190,
93,
4492,
9,
6037,
1373,
27567,
4602,
60,
800,
3726,
3726,
31,
22,
79,
302,
17455,
68,
109,
315,
8247,
8741,
17,
80,
22,
18,
21,
865,
16,
11859,
17561,
228,
27,
9,
4033,
13,
43,
800,
4492,
73,
4033,
12340,
710,
8... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How do I theme Form API buttons in Drupal?
===
The default output from Drupals' Form API is:
<input id="edit-submit" class="form-submit" type="submit" value="Save" name="op"/>
How do I theme that so I get:
<button id="edit-submit" class="form-submit" type="submit">
<span>Save</span>
</butt... | 0 | [
2,
184,
107,
31,
3184,
505,
21,
2159,
12861,
19,
15708,
6720,
60,
800,
3726,
3726,
14,
12838,
5196,
37,
15708,
6720,
18,
22,
505,
21,
2159,
25,
45,
13,
1,
108,
4881,
4924,
3726,
7,
69,
242,
8,
7563,
5130,
7,
718,
3726,
7,
4190... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Where do you draw the line between design and architecture ?
===
The [Agile architecture question][1] makes me wonder this.
Does it depends of what is being build ? Do applications (I mean single
computing program here) have an architecture ?
[1]: http://stackoverflow.com/questions/19235/agile-ar... | 0 | [
2,
113,
107,
42,
2003,
14,
293,
128,
704,
17,
2607,
13,
60,
800,
3726,
3726,
14,
636,
14482,
413,
2607,
1301,
500,
2558,
165,
500,
1364,
55,
2666,
48,
9,
630,
32,
9597,
16,
98,
25,
142,
1895,
13,
60,
107,
3767,
13,
5,
49,
88... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Icons in Menus
===
I can use an bitmap in a menu
CMenu men;
CBitmap b;
b.LoadBitmap(IDB_0);
men.AppendMenu( MF_ENABLED,1,&b);
I can draw an icon into a DC
CImageList IL;
IL.Create(70, 14, ILC_COLOR16 | ILC_MASK, 1, 0);
IL.Add(AfxGetApp()->LoadIcon(IDC_0));
IL.... | 0 | [
2,
9801,
18,
19,
11379,
18,
800,
3726,
3726,
31,
92,
275,
40,
1142,
15022,
19,
21,
11379,
272,
755,
291,
304,
73,
272,
3326,
15022,
334,
73,
334,
9,
8294,
3326,
15022,
5,
1340,
220,
1,
387,
6,
73,
304,
9,
22358,
43,
755,
291,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to debug a disappearing app
===
On a Windows 2003 server I have a pure .NET 3.5 C# app (no unmanaged code). It connects to various other remote systems via sockets and acts like a data hub. It runs for 10-15 hours fine with no problem but from time to time it just disappears. If I watch the app using task manager ... | 0 | [
2,
184,
20,
121,
16254,
21,
16797,
4865,
800,
3726,
3726,
27,
21,
1936,
973,
8128,
31,
57,
21,
4267,
13,
9,
2328,
203,
9,
264,
272,
5910,
4865,
13,
5,
251,
367,
177,
8030,
1797,
6,
9,
32,
8534,
20,
617,
89,
5388,
1242,
1197,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Getting array subsets efficiently
===
Is there an efficient way to take a subset of a C# array and pass it to another peice of code (without modifying the original array)? I use CUDA.net which has a function which copies an array to the GPU. I would like to e.g. pass the function a 10th of the array and thus copy each... | 0 | [
2,
1017,
7718,
16622,
18,
20519,
800,
3726,
3726,
25,
80,
40,
8243,
161,
20,
247,
21,
16622,
16,
21,
272,
5910,
7718,
17,
1477,
32,
20,
226,
3560,
3568,
16,
1797,
13,
5,
14506,
17579,
68,
14,
501,
7718,
6,
60,
31,
275,
272,
57... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Blank page in IE6
===
A site I am working on that is built using PHP is sometimes showing a completely blank page.
There are no error messages on the client or on the server.
The same page may display sometimes but not others.
All pages are working fine in IE7, Firefox 3, Safari and Opera.
All pages are XHTML with... | 0 | [
2,
6463,
2478,
19,
13,
660,
379,
800,
3726,
3726,
21,
689,
31,
589,
638,
27,
30,
25,
392,
568,
13,
26120,
25,
1030,
3187,
21,
1524,
6463,
2478,
9,
80,
50,
90,
7019,
7561,
27,
14,
6819,
54,
27,
14,
8128,
9,
14,
205,
2478,
123... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Programmatically start UserControlTestContainer.exe
===
I implemented a C# user control and succesfully tested it with the UserControlTestContainer.exe by manually interacting with it. Now I would like to programmatically, instead of manually, feed data into the control, through my unit tests and then automatically di... | 0 | [
2,
625,
6732,
1326,
799,
4155,
12898,
10543,
1126,
5851,
106,
9,
1706,
62,
800,
3726,
3726,
31,
6807,
21,
272,
5910,
4155,
569,
17,
21792,
5052,
5655,
7631,
32,
29,
14,
4155,
12898,
10543,
1126,
5851,
106,
9,
1706,
62,
34,
23671,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Is it good to return a tuple from a function in .net
===
I was just working on a function that I needed to return two values, one being a column name and one being the value of that column for that current row. I am returning KeyValuePair(of String,Object). I was wondering if this is a good idea or does it make it h... | 0 | [
2,
25,
32,
254,
20,
788,
21,
2289,
5106,
37,
21,
1990,
19,
13,
9,
2328,
800,
3726,
3726,
31,
23,
114,
638,
27,
21,
1990,
30,
31,
851,
20,
788,
81,
4070,
15,
53,
142,
21,
4698,
204,
17,
53,
142,
14,
1923,
16,
30,
4698,
26,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Are there any standards to follow in determining where to place menu items?
===
In developing Windows forms based application, are there any standards that should be followed when designing your form's main menu system?
Most windows applications with menu systems will have your standard File | Edit | View | Tools... | 0 | [
2,
50,
80,
186,
3364,
20,
1740,
19,
13521,
113,
20,
209,
11379,
3755,
60,
800,
3726,
3726,
19,
3561,
1936,
1997,
432,
3010,
15,
50,
80,
186,
3364,
30,
378,
44,
709,
76,
15026,
154,
505,
22,
18,
407,
11379,
329,
60,
127,
1936,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
What features of the upcoming Delphi Prism would you like to see in Delphi for win32?
===
What with Delphi Prism coming soon, I've been looking at Oxygene (the Remobjects compiler, Delphi Prism will use), and have a found a few features I'd love to see in Delphi Win32. Some of my favourites are :
**Inline Property... | 4 | [
2,
98,
967,
16,
14,
9078,
23030,
21985,
83,
42,
101,
20,
196,
19,
23030,
26,
628,
3125,
60,
800,
3726,
3726,
98,
29,
23030,
21985,
880,
651,
15,
31,
22,
195,
74,
699,
35,
6838,
62,
13,
5,
124,
11948,
23793,
18,
21486,
15,
2303... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Tab versus space indentation in C#
===
I sometimes find myself discussing this issue with other C# developers and especially if we use different styles. I can see the advantage of tab indentation allowing different developers to browse the code with their favorite indent size. Nonetheless, I long ago went for two spac... | 4 | [
2,
6523,
5706,
726,
19,
817,
8593,
19,
272,
5910,
800,
3726,
3726,
31,
1030,
477,
992,
10988,
48,
1513,
29,
89,
272,
5910,
10168,
17,
1118,
100,
95,
275,
421,
6443,
9,
31,
92,
196,
14,
3314,
16,
6523,
19,
817,
8593,
2719,
421,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How do I create a ZIP file of my Cruise Control builds?
===
I use CruiseControl.NET to automatically build my .NET 3.5 web applications, which works a treat. However, is there any way to automatically create a ZIP file of these builds, and put the ZIP's into a separate directory?
I have seen this is possible using... | 0 | [
2,
184,
107,
31,
1600,
21,
12133,
3893,
16,
51,
6581,
569,
1895,
18,
60,
800,
3726,
3726,
31,
275,
6581,
12898,
9,
2328,
20,
7499,
1895,
51,
13,
9,
2328,
203,
9,
264,
2741,
3767,
15,
56,
693,
21,
5752,
9,
207,
15,
25,
80,
18... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Exception vs Validation
===
I've just come across a property setter that catches exceptions (all Exceptions; I know that's bad, but it's not relevant here), and *only* logs them. First of all, I think it should through them again as well; why wait for a crash and a log study when you can know something is wrong right... | 0 | [
2,
5391,
4611,
27999,
800,
3726,
3726,
31,
22,
195,
114,
340,
464,
21,
1354,
309,
815,
30,
12195,
13392,
13,
5,
1233,
13392,
73,
31,
143,
30,
22,
18,
896,
15,
47,
32,
22,
18,
52,
7480,
235,
6,
15,
17,
1637,
4965,
2483,
18893,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Good ruby gem sources?
===
What good ruby gem sources would you recommend, besides http://gems.rubyforge.org/ and http://gems.github.com/? It seems that RubyForge is missing most of the gems I look for these times... | 0 | [
2,
254,
10811,
8551,
2662,
60,
800,
3726,
3726,
98,
254,
10811,
8551,
2662,
83,
42,
12360,
15,
3410,
7775,
6903,
20231,
18,
9,
1820,
779,
1106,
834,
9,
5583,
118,
17,
7775,
6903,
20231,
18,
9,
10404,
20926,
9,
960,
118,
60,
32,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Unit SysUtils was compiled with a different version of SysConst.SMonitorLockException when trying to compile project in Delphi 2009
===
I'm trying to compile a project and I'm getting this error.
The error occurs in a RemObjects source file, but I think it doesn't have anything to do with RemObjects.
Anyway this... | 0 | [
2,
1237,
10315,
18,
14255,
18,
23,
9316,
29,
21,
421,
615,
16,
10315,
18,
12124,
38,
9,
18,
2111,
242,
248,
3966,
10066,
872,
76,
749,
20,
26561,
669,
19,
23030,
588,
800,
3726,
3726,
31,
22,
79,
749,
20,
26561,
21,
669,
17,
3... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Hooking sycalls from userspace on Linux
===
Is there any way to catch all syscalls on Linux? The only solution I know of is using LD_PRELOAD à la <a href="http://packages.qa.debian.org/f/fakeroot.html">fakeroot</a>, but that only works for dynamically linked applications. Furthermore, this approach requires enumeratin... | 0 | [
2,
5559,
68,
10315,
9200,
18,
37,
4155,
5582,
27,
13024,
800,
3726,
3726,
25,
80,
186,
161,
20,
2949,
65,
10315,
18,
9200,
18,
27,
13024,
60,
14,
104,
4295,
31,
143,
16,
25,
568,
13,
6252,
1,
3515,
8294,
21,
333,
13,
1,
58,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Can I use identical names for fields and constructor parameters?
===
<pre><code>
class C {
T a;
public:
C(T a): a(a) {;}
}
</code></pre>
Is it legal? | 0 | [
2,
92,
31,
275,
6323,
1817,
26,
2861,
17,
6960,
248,
12905,
60,
800,
3726,
3726,
13,
1,
3515,
1,
9375,
1,
718,
272,
13,
1,
13,
38,
21,
73,
317,
45,
272,
5,
38,
21,
6,
45,
21,
5,
58,
6,
13,
1,
73,
1,
13,
1,
13,
1,
118... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0... |
Call a specific button onClick event when the enter key is pressed C#
===
I'm trying to get a specific asp:button onclick event to fire when I press the enter key in a specific asp:textbox control.
I've no idea how to do this, suggestions on a postcard please. | 0 | [
2,
645,
21,
1903,
5167,
27,
150,
10129,
807,
76,
14,
2830,
1246,
25,
2931,
272,
5910,
800,
3726,
3726,
31,
22,
79,
749,
20,
164,
21,
1903,
28,
306,
45,
811,
444,
27,
150,
10129,
807,
20,
535,
76,
31,
901,
14,
2830,
1246,
19,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to set the width of the exponent field for an ostream?
===
This code:
#include <iostream>
int main( int, char **argv )
{
std::cout << 1.23e45 << std::endl;
}
prints
> 1.23e+045
when compiled with MS Visual Studio 2003, and
> 1.23e+45
on my Linux machine.
How can I spe... | 0 | [
2,
184,
20,
309,
14,
9456,
16,
14,
25220,
575,
26,
40,
635,
11260,
60,
800,
3726,
3726,
48,
1797,
45,
6926,
22640,
13,
1,
1963,
11260,
1,
19,
38,
407,
5,
19,
38,
15,
4892,
13,
1409,
10663,
710,
13,
6,
13,
1,
354,
43,
45,
4... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Tools for website development
===
I can't find any other post which addresses this topic on a purely general level.
I'm very unexperienced in developing full scale websites. I get around using HTML and PHP for simple tasks.
Now I'm looking at developing a more elaborate site and want to get hold of a good tool w... | 0 | [
2,
4672,
26,
2271,
522,
800,
3726,
3726,
31,
92,
22,
38,
477,
186,
89,
678,
56,
12636,
48,
8303,
27,
21,
13198,
297,
662,
9,
31,
22,
79,
253,
367,
28083,
43,
19,
3561,
503,
3464,
13931,
9,
31,
164,
140,
568,
13,
15895,
17,
1... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Javascript library for building desktop-like web application: ExtJS, jQuery, YahooUI, Mocha, SproutCore, Cappuccino, others?
===
I am evaluating several Javascript UI toolkits for building web applications that have a desktop-like feel, mainly because of dialogs and window management.
I looked at several options - ... | 0 | [
2,
8247,
8741,
1248,
26,
353,
17404,
8,
1403,
2741,
3010,
45,
1396,
38,
728,
18,
15,
487,
8190,
93,
15,
23553,
5661,
15,
1873,
1651,
15,
22461,
10375,
15,
21764,
9438,
251,
15,
654,
60,
800,
3726,
3726,
31,
589,
26764,
238,
8247,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Where does DLLImport look for unmanaged DLLs?
===
A quick question: When declaring the DLLImport Attribute in .Net, where does the runtime look to resolve that DLL dependency? Would I have to dump the DLL and all of *its* dependencies in the bin folder? | 0 | [
2,
113,
630,
13,
8643,
8585,
1993,
361,
26,
367,
177,
8030,
13,
43,
211,
18,
60,
800,
3726,
3726,
21,
2231,
1301,
45,
76,
15594,
14,
13,
8643,
8585,
1993,
35,
14755,
19,
13,
9,
2328,
15,
113,
630,
14,
485,
891,
361,
20,
9854,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to stop BaseHTTPServer.serve_forever() in a BaseHTTPRequestHandler subclass?
===
The python documentation states that BaseHTTPServer.HTTPServer is a subclass of SocketServer.TCPServer, which dows support a `shutdown` method - but it is missing in HTTPServer.
I am running my HTTPServer in a separate thread (usin... | 0 | [
2,
184,
20,
747,
1000,
21127,
10321,
106,
9,
10321,
62,
1,
1106,
5221,
5,
6,
19,
21,
1000,
21127,
99,
10351,
3203,
1252,
972,
1898,
60,
800,
3726,
3726,
14,
20059,
13945,
202,
30,
1000,
21127,
10321,
106,
9,
21127,
10321,
106,
25,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How do I sort arrays using vbscript?
===
The question says it all really, but...
I'm scanning through a file looking for lines that match a certain regex pattern, and then I want to print out the lines that match but in alphabetical order. I'm sure this is trivial but vbscript isn't my background
my array is def... | 0 | [
2,
184,
107,
31,
2058,
7718,
18,
568,
13,
20468,
8741,
60,
800,
3726,
3726,
14,
1301,
898,
32,
65,
510,
15,
47,
9,
9,
9,
31,
22,
79,
15863,
120,
21,
3893,
699,
26,
1560,
30,
730,
21,
1200,
7953,
1706,
3732,
15,
17,
94,
31,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Session management using Hibernate in a Swing application
===
How do you do your Hibernate session management in a Java Desktop Swing application? Do you use a single session? Multiple sessions?
Here are a few references on the subject:
* http://www.hibernate.org/333.html
* http://blog.schauderhaft.de/2008/... | 0 | [
2,
3723,
1097,
568,
4148,
2102,
8820,
19,
21,
5587,
3010,
800,
3726,
3726,
184,
107,
42,
107,
154,
4148,
2102,
8820,
3723,
1097,
19,
21,
8247,
17404,
5587,
3010,
60,
107,
42,
275,
21,
345,
3723,
60,
1886,
5763,
60,
235,
50,
21,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
floating point rounding detection
===
I'm using java and referring to the "double" datatype.
To keep it short, I'm reading some values from standard input that I read in my code as doubles (I would much rather use something like BigInteger but right now it's not possible).
I expect to get double values from the us... | 0 | [
2,
8319,
454,
560,
68,
11643,
800,
3726,
3726,
31,
22,
79,
568,
8247,
17,
7378,
20,
14,
13,
7,
14368,
7,
1054,
4474,
9,
20,
643,
32,
502,
15,
31,
22,
79,
1876,
109,
4070,
37,
1236,
6367,
30,
31,
1302,
19,
51,
1797,
28,
7784,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Accessing parent properties/methods in Actionscript 3.0
===
I'm trying to control the main timeline of my flash application from a MovieClip that is a child of the main stage. Apparently, in ActionScript 2, you could do that using _root, but using root (since _root no longer exists) now gives an error:
root.pla... | 0 | [
2,
1381,
68,
4766,
3704,
118,
5909,
1807,
43,
18,
19,
1028,
8741,
203,
9,
387,
800,
3726,
3726,
31,
22,
79,
749,
20,
569,
14,
407,
18398,
16,
51,
4433,
3010,
37,
21,
1308,
150,
6013,
30,
25,
21,
850,
16,
14,
407,
876,
9,
308... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Will an ntp client work against an sntp server?
===
SNTP is a simplification of the full NTP specification.
I'd like to use a full NTP client against the internal SNTP server incorporated in Windows XP. Will that work or is a full NTP server required for the NTP client to work? | 0 | [
2,
129,
40,
13,
2877,
306,
6819,
170,
149,
40,
8912,
13726,
8128,
60,
800,
3726,
3726,
8912,
13726,
25,
21,
22862,
255,
4634,
16,
14,
503,
13,
2877,
306,
14177,
9,
31,
22,
43,
101,
20,
275,
21,
503,
13,
2877,
306,
6819,
149,
1... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Best way to convert IList or IEnumerable to Array
===
I have a HQL query that can generate either an IList of results, or an IEnumerable of results.
However, I want it to return an array of the Entity that I'm selecting, what would be the best way of accomplishing that? I can either enumerate through it and build ... | 0 | [
2,
246,
161,
20,
8406,
31,
5739,
54,
13,
660,
6336,
106,
579,
20,
7718,
800,
3726,
3726,
31,
57,
21,
746,
22402,
25597,
30,
92,
7920,
694,
40,
31,
5739,
16,
1736,
15,
54,
40,
13,
660,
6336,
106,
579,
16,
1736,
9,
207,
15,
31... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Is there a no-duplicate List implementation out there?
===
I know about `SortedSet`, but in my case I need something that implements `List`, and not `Set`. So is there an implementation out there, in the API or elsewhere?
It shouldn't be hard to implement myself, but I figured why not ask people here first?
than... | 0 | [
2,
25,
80,
21,
90,
8,
2323,
26811,
968,
6123,
70,
80,
60,
800,
3726,
3726,
31,
143,
88,
13,
1,
22843,
69,
3554,
1,
15,
47,
19,
51,
610,
31,
376,
301,
30,
8713,
18,
13,
1,
5739,
1,
15,
17,
52,
13,
1,
3554,
1,
9,
86,
25,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How do I synchronize the SelectedItem of a ListBox?
===
I have this ListBox which is bound to an ObservableCollection. Each object in the list implements an interface called ISelectable
public interface ISelectable : INotifyPropertyChanged
{
event EventHandler IsSelected;
bool Selected {... | 0 | [
2,
184,
107,
31,
13,
16023,
2952,
14,
1704,
2119,
79,
16,
21,
968,
5309,
60,
800,
3726,
3726,
31,
57,
48,
968,
5309,
56,
25,
4138,
20,
40,
5122,
10321,
579,
15015,
872,
9,
206,
3095,
19,
14,
968,
8713,
18,
40,
6573,
227,
25,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
What is the best tool for LCD color calibration?
===
As a web designer/developer/photographer... I was wondering, what is the best free all-round software based tool (on XP) for calibrating your monitor's color, brightness/contrast to the optimal settings so that your work looks as consistent as possible across OS's a... | 0 | [
2,
98,
25,
14,
246,
5607,
26,
26827,
1665,
10352,
220,
5946,
60,
800,
3726,
3726,
28,
21,
2741,
4742,
118,
26051,
106,
118,
9906,
38,
15174,
9,
9,
9,
31,
23,
5712,
15,
98,
25,
14,
246,
551,
65,
8,
5000,
2306,
432,
5607,
13,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
What is the best low-tech protocol to simulate drawing names out of a hat and ensure secrecy?
===
Each year at Thanksgiving, my family has drawn names out of a hat to determine who they'll be a "Secret Santa" for the Christmas gift exchange. It's important to our family culture that no one else in the family knows who... | 0 | [
2,
98,
25,
14,
246,
708,
8,
6524,
8494,
20,
24969,
3533,
1817,
70,
16,
21,
2970,
17,
4062,
22615,
60,
800,
3726,
3726,
206,
159,
35,
17300,
15,
51,
190,
63,
3160,
1817,
70,
16,
21,
2970,
20,
3746,
72,
59,
22,
211,
44,
21,
13... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Inheritance and interfaces
===
This is somewhat of a follow-up question to this [question][1].
[1]: http://stackoverflow.com/questions/267045/is-there-a-benefit-to-having-both-an-abstract-class-and-an-interface
Suppose I have an inheritance tree as follows:
Car -> Ford -> Mustang -> MustangGT
Is ther... | 0 | [
2,
13852,
17,
6573,
18,
800,
3726,
3726,
48,
25,
4131,
16,
21,
1740,
8,
576,
1301,
20,
48,
636,
24652,
500,
2558,
165,
500,
9,
636,
165,
500,
45,
7775,
6903,
25325,
2549,
9990,
9,
960,
118,
24652,
18,
118,
24370,
3277,
10551,
40... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How do you remove the "box head" in a Facebook application?
===
I'm currently developing a Facebook application which will eventually end up on a Facebook Page. The problem is that I don't know how to remove the box header (handle?) with the application name and the close-button.
I've seen other applications on Pag... | 0 | [
2,
184,
107,
42,
4681,
14,
13,
7,
5309,
157,
7,
19,
21,
9090,
3010,
60,
800,
3726,
3726,
31,
22,
79,
871,
3561,
21,
9090,
3010,
56,
129,
878,
241,
71,
27,
21,
9090,
2478,
9,
14,
1448,
25,
30,
31,
221,
22,
38,
143,
184,
20,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to check whether the Question and Password in ASP.NET Membership is correct or not without using Password
===
I am having an ASP.net Membership I need to verify the User Question and Answer.
I dont need to use Password Because its Hashed we cannot validate it
MembershipUser msUser = Membership.GetUser("R... | 0 | [
2,
184,
20,
2631,
1472,
14,
1301,
17,
20884,
19,
28,
306,
9,
2328,
4363,
25,
4456,
54,
52,
366,
568,
20884,
800,
3726,
3726,
31,
589,
452,
40,
28,
306,
9,
2328,
4363,
31,
376,
20,
21012,
14,
4155,
1301,
17,
1623,
9,
31,
1049,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
how to explain to people how difficult your project is
===
That is something that literally affects any engineer in a bigger organization. You have a project that takes longer than expected, but for a good reason.
Project you depend on did not ship on time. In the meantime you discovered that infrastructure you pl... | 0 | [
2,
184,
20,
3271,
20,
148,
184,
1956,
154,
669,
25,
800,
3726,
3726,
30,
25,
301,
30,
6949,
15476,
186,
2335,
19,
21,
6197,
1165,
9,
42,
57,
21,
669,
30,
1384,
1045,
119,
1727,
15,
47,
26,
21,
254,
1215,
9,
669,
42,
12547,
2... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
git-svn: what's the equivalent to `svn switch --relocate`?
===
An svn repository I'm mirroring through git-svn has changed URL.
In vanilla svn you'd just do `svn switch --relocate old_url_base new_url_base`.
How can I do this using git-svn?
Simply changing the svn url in the config file fails. | 0 | [
2,
13,
10404,
8,
18,
16578,
45,
98,
22,
18,
14,
4602,
20,
13,
1,
18,
16578,
5521,
13,
8,
8,
99,
1415,
9530,
1,
60,
800,
3726,
3726,
40,
13,
18,
16578,
24869,
31,
22,
79,
3402,
68,
120,
13,
10404,
8,
18,
16578,
63,
1015,
28... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Swing: Canvas overlaps menu
===
I have a JFrame with a menu bar and a canvas covering all the remaining surface. When I click on the menu bar, the menu opens **behind** the Canvas and I can't see it. Has anyone experienced this? Other than resizing the Canvas (which I am reluctant to do) is there any solution?
Than... | 0 | [
2,
5587,
45,
9696,
15406,
18,
11379,
800,
3726,
3726,
31,
57,
21,
487,
8361,
29,
21,
11379,
748,
17,
21,
9696,
3846,
65,
14,
1846,
1490,
9,
76,
31,
10840,
27,
14,
11379,
748,
15,
14,
11379,
8965,
13,
1409,
24878,
1409,
14,
9696,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
What ever happened to APL?
===
When I was at University 30 years ago, I used a programming language called APL. I believe the acronym stood for "A Programming Language",
This language was interpretive and was especially useful for array and matrix operations with powerful operators and library functions to help w... | 0 | [
2,
98,
462,
1190,
20,
21,
5727,
60,
800,
3726,
3726,
76,
31,
23,
35,
155,
712,
122,
1464,
15,
31,
147,
21,
3143,
816,
227,
21,
5727,
9,
31,
985,
14,
22488,
867,
26,
13,
7,
58,
3143,
816,
7,
15,
48,
816,
23,
11584,
1284,
17... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
can i optimize this phone-regex?
===
ok so i have this regex:
( |^|>)(((((((\+|00)(31|32)( )?(\(0\))?)|0)([0-9]{2})(-)?( )?)?)([0-9]{7}))|((((((\+|00)(31|32)( )?(\(0\))?)|0)([0-9]{3})(-)?( )?)?)([0-9]{6}))|((((((\+|00)(31|32)( )?(\(0\))?)|0)([0-9]{1})(-)?( )?)?)([0-9]{8})))( |$|<)
it formats dutch and belgia... | 0 | [
2,
92,
31,
22864,
48,
1132,
8,
12463,
1706,
60,
800,
3726,
3726,
5854,
86,
31,
57,
48,
7953,
1706,
45,
13,
5,
13,
1,
6,
5,
5,
5,
5,
5,
5,
5,
1,
2430,
1,
2032,
6,
5,
3513,
1,
3125,
6,
5,
13,
6,
60,
5,
1,
5,
387,
1,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Run-Time Check Failure #2 - Stack around the variable 'x' was corrupted.
===
I receive this Run-Time Check Failure upon the return in the following code. I believe similar code is running fine elsewhere in the program. Any ideas?
String GetVariableName(CString symbol, CString filepath)
{
char acLin... | 0 | [
2,
485,
8,
891,
2631,
2990,
7921,
13,
8,
7566,
140,
14,
7612,
13,
22,
396,
22,
23,
11305,
69,
9,
800,
3726,
3726,
31,
2588,
48,
485,
8,
891,
2631,
2990,
685,
14,
788,
19,
14,
249,
1797,
9,
31,
985,
835,
1797,
25,
946,
1123,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
What's the MSIL to call a base class's event handler?
===
I have a class called EventConsumer which defines an event EventConsumed and a method OnEventConsumed as follows:
public event EventHandler EventConsumed;
public virtual void OnEventConsumed(object sender, EventArgs e)
{
if (EventCon... | 0 | [
2,
98,
22,
18,
14,
307,
8556,
20,
645,
21,
1000,
718,
22,
18,
807,
24641,
60,
800,
3726,
3726,
31,
57,
21,
718,
227,
807,
12124,
723,
106,
56,
13110,
40,
807,
807,
12124,
723,
69,
17,
21,
2109,
53,
6645,
12124,
723,
69,
28,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Foreign key referencing composite table
===
I've got a table structure I'm not really certain of how to create the best way.
Basically I have two tables, tblSystemItems and tblClientItems. I have a third table that has a column that references an 'Item'. The problem is, this column needs to reference either a syste... | 0 | [
2,
1228,
1246,
13,
29254,
12639,
859,
800,
3726,
3726,
31,
22,
195,
330,
21,
859,
1411,
31,
22,
79,
52,
510,
1200,
16,
184,
20,
1600,
14,
246,
161,
9,
11374,
31,
57,
81,
7484,
15,
13,
38,
6287,
10724,
2119,
79,
18,
17,
13,
1... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Cannot turn off persistent tracking cookies in CFMX 8
===
**CFMX 8 Enterprise**
I have turned on the "Use J2EE session variables" setting under Memory Variables because security requirements state that persistent cookies cannot be used.
I understood that turning this setting on will tell CF to only create a use ... | 0 | [
2,
1967,
805,
168,
15348,
10353,
19396,
19,
10084,
79,
396,
469,
800,
3726,
3726,
13,
1409,
8940,
79,
396,
469,
6002,
1409,
31,
57,
412,
27,
14,
13,
7,
3699,
487,
135,
2851,
3723,
12157,
7,
2697,
131,
1912,
12157,
185,
1221,
4786,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Share variable across site ASP.NET
===
I have a class `isSearching` with a single boolean property in a 'functions' file in my webapp. On my search page, I have a variable `oSearchHandler` declared as a `Public Shared` variable. How can I access the contents of `oSearchHandler` on other pages in my webapp? | 0 | [
2,
1891,
7612,
464,
689,
28,
306,
9,
2328,
800,
3726,
3726,
31,
57,
21,
718,
13,
1,
11001,
24377,
1,
29,
21,
345,
9827,
413,
210,
1354,
19,
21,
13,
22,
22359,
18,
22,
3893,
19,
51,
2741,
7753,
9,
27,
51,
2122,
2478,
15,
31,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Control key plus mouse wheel.
===
What's the better way to handle the ctrl + mouse wheel in C#?
I've figured out how to handle the MouseWheel event but how to know that the ctrl key is being pressed too?
Thanks in advance. | 0 | [
2,
569,
1246,
3123,
7567,
3556,
9,
800,
3726,
3726,
98,
22,
18,
14,
574,
161,
20,
3053,
14,
13,
4812,
6362,
2754,
7567,
3556,
19,
272,
5910,
60,
31,
22,
195,
5700,
70,
184,
20,
3053,
14,
7567,
8229,
807,
47,
184,
20,
143,
30,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0... |
How to calculate the correct height for an auto-expanding textbox in Silverlight?
===
In my Silverlight app I want a multi-line text box to expand every time the user hits Enter.
The difficult part is how to calculate the correct height based on the number of text lines.
I have tried the following but the textbo... | 0 | [
2,
184,
20,
18469,
14,
4456,
2947,
26,
40,
3108,
8,
6899,
290,
68,
1854,
5309,
19,
1172,
3130,
60,
800,
3726,
3726,
19,
51,
1172,
3130,
4865,
31,
259,
21,
1889,
8,
1143,
1854,
1649,
20,
6073,
352,
85,
14,
4155,
3858,
2830,
9,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How can I determine what AD security groups the current user is in from within an SSRS report?
===
I have a need to determine what security group(s) a user is a member of from within a SQL Server Reporting Services report. Access to the report will be driven by membership to one of two groups: 'report_name_summary' an... | 0 | [
2,
184,
92,
31,
3746,
98,
21,
43,
1221,
1170,
14,
866,
4155,
25,
19,
37,
363,
40,
22118,
18,
1330,
60,
800,
3726,
3726,
31,
57,
21,
376,
20,
3746,
98,
1221,
214,
5,
18,
6,
21,
4155,
25,
21,
322,
16,
37,
363,
21,
4444,
255,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Uninitialized variables and members in Java
===
Consider this:
public class TestClass {
public String a;
public String b;
public TestClass()
{
a = "initialized";
}
public void doSomething()
{
String c;
a.notify(); // This is fine
b.notify... | 0 | [
2,
367,
27313,
1333,
12157,
17,
443,
19,
8247,
800,
3726,
3726,
3563,
48,
45,
317,
718,
1289,
1898,
13,
1,
317,
3724,
21,
73,
317,
3724,
334,
73,
317,
1289,
1898,
5,
6,
13,
1,
21,
800,
13,
7,
27313,
1333,
7,
73,
13,
1,
317,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Code separation in AJAX applications
===
What are some strategies to achieve code separation in AJAX applications?
I am building a PHP application that I would like to have a nice AJAX front end on. I have long since learned to use some kind of templating in my PHP code to make sure I maintain good separation bet... | 0 | [
2,
1797,
8312,
19,
20624,
3767,
800,
3726,
3726,
98,
50,
109,
10272,
20,
4689,
1797,
8312,
19,
20624,
3767,
60,
31,
589,
353,
21,
13,
26120,
3010,
30,
31,
83,
101,
20,
57,
21,
2210,
20624,
431,
241,
27,
9,
31,
57,
175,
179,
26... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Accessing a ColdFusion datasource from Java code
===
I have a servlet that I would like to run within ColdFusion MX 7. I would like to make use of an existing ColdFusion datasource, if possible.
I thought something like
coldfusion.server.ServiceFactory.getDataSourceService().getDatasource(dsname);
would ... | 0 | [
2,
1381,
68,
21,
1191,
9818,
1054,
12097,
37,
8247,
1797,
800,
3726,
3726,
31,
57,
21,
13,
10321,
1336,
30,
31,
83,
101,
20,
485,
363,
1191,
9818,
307,
396,
453,
9,
31,
83,
101,
20,
233,
275,
16,
40,
3149,
1191,
9818,
1054,
12... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Using strings with "general purpose" XML in WS - good or bad?
===
We're working now on the design of a new API for our product, which will be exposed via web services. We have a dispute whether we should use strict parameters with well defined types (my opinion) or strings that will contain XML in whatever structure n... | 0 | [
2,
568,
7887,
29,
13,
7,
3661,
2131,
7,
23504,
19,
619,
18,
13,
8,
254,
54,
896,
60,
800,
3726,
3726,
95,
22,
99,
638,
130,
27,
14,
704,
16,
21,
78,
21,
2159,
26,
318,
2374,
15,
56,
129,
44,
5043,
1197,
2741,
687,
9,
95,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Why do we need new keywords for Covariance and Contravariance in C#?
===
Can someone explain why there is the need to add an out or in parameter to indicate that a generic type is Co or Contra variant in C# 4.0?
I've been trying to understand why this is important and why the compiler can't just figure it out..
... | 0 | [
2,
483,
107,
95,
376,
78,
1246,
12827,
26,
326,
8220,
2416,
17,
11805,
8220,
2416,
19,
272,
5910,
60,
800,
3726,
3726,
92,
737,
3271,
483,
80,
25,
14,
376,
20,
3547,
40,
70,
54,
19,
18906,
20,
4342,
30,
21,
12733,
1001,
25,
32... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Is it possible to write Quake's fast InvSqrt() function in C#?
===
This is just to satisfy my own curiosity.
Is there an implementation of this:
float InvSqrt (float x)
{
float xhalf = 0.5f*x;
int i = *(int*)&x;
i = 0x5f3759df - (i>>1);
x = *(float*)&i;
x = x*(1... | 0 | [
2,
25,
32,
938,
20,
2757,
24457,
22,
18,
1512,
19,
710,
18,
1251,
5256,
5,
6,
1990,
19,
272,
5910,
60,
800,
3726,
3726,
48,
25,
114,
20,
14711,
51,
258,
11581,
9,
25,
80,
40,
6123,
16,
48,
45,
11510,
19,
710,
18,
1251,
5256,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Strange url on localhost when debugging web app in C#.Net2
===
http://localhost/XYZ/Client/(S(enlodz55ov4ncafza0gpp045))/Info/Rates.aspx
Does anyway know what **/(S(enlodz55ov4ncafza0gpp045))/** means?
Any help appreciated. | 0 | [
2,
2578,
287,
6362,
27,
375,
11694,
76,
121,
16254,
2762,
2741,
4865,
19,
272,
5910,
9,
2328,
135,
800,
3726,
3726,
7775,
6903,
15580,
11694,
118,
15161,
380,
118,
150,
18513,
38,
118,
5,
18,
5,
219,
17752,
380,
4083,
2026,
300,
6... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
What do you do if the file in TFS is locked by someone else?
===
Someone left the organisation but before leaving, he locked all the files for an unknown reason.
How do you unlock them all so that the other developers can work? | 0 | [
2,
98,
107,
42,
107,
100,
14,
3893,
19,
13,
11720,
18,
25,
4011,
34,
737,
962,
60,
800,
3726,
3726,
737,
225,
14,
4080,
47,
115,
1107,
15,
24,
4011,
65,
14,
6488,
26,
40,
2562,
1215,
9,
184,
107,
42,
16497,
105,
65,
86,
30,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... |
converting access datetime type to mysql type
===
I am trying to convert an access datetime field to a mysdl format, using the following string:
select str_to_date('04/03/1974 12:21:22', '%Y %m %d %T');
While I do not get an error, I do not get the expected result, instead I get this:
+---------------... | 0 | [
2,
19583,
1381,
1231,
891,
1001,
20,
51,
18,
22402,
1001,
800,
3726,
3726,
31,
589,
749,
20,
8406,
40,
1381,
1231,
891,
575,
20,
21,
51,
18,
8643,
2595,
15,
568,
14,
249,
3724,
45,
5407,
13,
9729,
1,
262,
1,
8209,
5,
22,
3277,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to insert a record with LINQ and C# and return the Primary Key of that record
===
What's the best way to write a LINQ query that inserts a record and then returns the primary key of that newly inserted record using C# ? | 0 | [
2,
184,
20,
14692,
21,
571,
29,
6294,
1251,
17,
272,
5910,
17,
788,
14,
1256,
1246,
16,
30,
571,
800,
3726,
3726,
98,
22,
18,
14,
246,
161,
20,
2757,
21,
6294,
1251,
25597,
30,
14692,
18,
21,
571,
17,
94,
4815,
14,
1256,
1246,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0... |
firefox 3 fileupload
===
When I am using
< input id="myFile" type="file" runat="server" /> to upload a file
it only gives me the filename without the full path in Firefox, while it works just fine in IE.
Help!!
Thanks
| 0 | [
2,
535,
18219,
203,
3893,
576,
8294,
800,
3726,
3726,
76,
31,
589,
568,
13,
1,
6367,
4924,
3726,
7,
915,
16877,
7,
1001,
3726,
7,
16877,
7,
485,
721,
3726,
7,
10321,
106,
7,
13,
118,
1,
20,
71,
8294,
21,
3893,
32,
104,
2352,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Besides version control systems, are there any tools that support release management?
===
Most of the time, I've seen release management handled as a defined process with the supporting tool as the version control system (usually via branching and tagging). However, are there any tools dedicated to release management?... | 0 | [
2,
3410,
615,
569,
1242,
15,
50,
80,
186,
4672,
30,
555,
830,
1097,
60,
800,
3726,
3726,
127,
16,
14,
85,
15,
31,
22,
195,
541,
830,
1097,
9006,
28,
21,
2811,
953,
29,
14,
3134,
5607,
28,
14,
615,
569,
329,
13,
5,
13075,
119... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Replacing multiple occurrences in nested arrays
===
I've got this python dictionary "mydict", containing arrays, here's what it looks like :
mydict {
'one': ['foo', 'bar', 'foobar', 'barfoo', 'example'],
'two': ['bar', 'example', 'foobar'],
'three': ['foo', 'example']
}
i'd like... | 0 | [
2,
5496,
1886,
12933,
18,
19,
5618,
69,
7718,
18,
800,
3726,
3726,
31,
22,
195,
330,
48,
20059,
9186,
13,
7,
915,
16315,
7,
15,
3503,
7718,
18,
15,
235,
22,
18,
98,
32,
1879,
101,
13,
45,
51,
16315,
13,
1,
13,
22,
849,
22,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How do you convert multistring to/from C# string collection?
===
Multistrings (double null-terminated string of null-separated strings) are common in the Windows API. What's a good method for converting a multistring returned from an API to a C# string collection and vice versa?
I'm especially interested in proper ... | 0 | [
2,
184,
107,
42,
8406,
1889,
11130,
20,
118,
2665,
272,
5910,
3724,
1206,
60,
800,
3726,
3726,
1889,
11130,
18,
13,
5,
14368,
16203,
8,
3964,
12721,
3724,
16,
16203,
8,
18,
14189,
7432,
7887,
6,
50,
757,
19,
14,
1936,
21,
2159,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Javascript window.open strange behavior in Firefox
===
I have a few links that should all open in the same window or tab.
To accomplish this I've given the window a name like in this example code:
<pre>
<code>
a href="#" onClick='window.open("http://somesite.com", "mywindow", "");'>link 1</a>
a href="#" onClick... | 0 | [
2,
8247,
8741,
1463,
9,
10157,
2578,
3257,
19,
535,
18219,
800,
3726,
3726,
31,
57,
21,
310,
6271,
30,
378,
65,
368,
19,
14,
205,
1463,
54,
6523,
9,
20,
14570,
48,
31,
22,
195,
504,
14,
1463,
21,
204,
101,
19,
48,
823,
1797,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Visualizing the code involved in an action?
===
I am trying to figure out how a library works and I would like to be able to visualize which methods and lines of code are executed in response to user input (e.g. a keypress or mouse click). Is there a way to do this in .NET? | 0 | [
2,
3458,
3335,
14,
1797,
1013,
19,
40,
1028,
60,
800,
3726,
3726,
31,
589,
749,
20,
1465,
70,
184,
21,
1248,
693,
17,
31,
83,
101,
20,
44,
777,
20,
3458,
2952,
56,
3195,
17,
1560,
16,
1797,
50,
5557,
19,
1627,
20,
4155,
6367,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
What is the best way to store and search through object transactions?
===
We have a decent sized object-oriented application. Whenever an object in the app is changed, the object changes are saved back to the DB. However, this has become less than ideal.
Currently, transactions are stored as a transaction and a s... | 0 | [
2,
98,
25,
14,
246,
161,
20,
1718,
17,
2122,
120,
3095,
13147,
60,
800,
3726,
3726,
95,
57,
21,
12238,
13,
6560,
3095,
8,
6800,
3010,
9,
6634,
40,
3095,
19,
14,
4865,
25,
1015,
15,
14,
3095,
1693,
50,
4377,
97,
20,
14,
13,
9... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Model View Presenter and Repeater
===
I'm building an application using the Supervising Controller pattern (Model View Presenter) and I am facing a difficulty. In my page I have a repeater control that will display each item of a collection I am passing to it. The reapeater item contains 2 dropdown list that allow the... | 0 | [
2,
1061,
1418,
9391,
17,
6830,
106,
800,
3726,
3726,
31,
22,
79,
353,
40,
3010,
568,
14,
24423,
9919,
3732,
13,
5,
13998,
1418,
9391,
6,
17,
31,
589,
4325,
21,
6967,
9,
19,
51,
2478,
31,
57,
21,
6830,
106,
569,
30,
129,
3042,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to call the "upper" method in a java one ?
===
I have two Java classes : B, which extends another class A, as follows :
class A
{
public void myMethod()
{ /* ... */ }
}
class B extends A
{
public void myMethod()
{ /* Another code */ }
}
I wou... | 0 | [
2,
184,
20,
645,
14,
13,
7,
18959,
7,
2109,
19,
21,
8247,
53,
13,
60,
800,
3726,
3726,
31,
57,
81,
8247,
2684,
13,
45,
334,
15,
56,
9073,
226,
718,
21,
15,
28,
2415,
13,
45,
718,
21,
13,
1,
317,
11364,
51,
5909,
1807,
43,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How can you emulate a mailing list in Django?
===
I'm on a project which is trying to write what amounts to a Mailing List app in Django, and we're running into a couple of problems/questions.
The code we have [so far][1] doesn't set various List headers, and re-sets the To header to be the person we're sending it ... | 0 | [
2,
184,
92,
42,
23804,
21,
4216,
68,
968,
19,
3857,
14541,
60,
800,
3726,
3726,
31,
22,
79,
27,
21,
669,
56,
25,
749,
20,
2757,
98,
8545,
20,
21,
4216,
68,
968,
4865,
19,
3857,
14541,
15,
17,
95,
22,
99,
946,
77,
21,
1335,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Where is the Windows Workflow Xaml Vocabulary Specification?
===
I've been able to find *Xaml Object Mapping Specification*, *WPF Xaml Vocabulary Specification*, and *Silverlight Xaml Vocabulary Specification* documents online but no *WF Xaml Vocabulary Specification* document for Windows Workflows. I want to be able... | 0 | [
2,
113,
25,
14,
1936,
170,
9990,
13,
6791,
8184,
18630,
14177,
60,
800,
3726,
3726,
31,
22,
195,
74,
777,
20,
477,
1637,
6791,
8184,
3095,
13305,
14177,
2483,
15,
1637,
499,
7721,
13,
6791,
8184,
18630,
14177,
2483,
15,
17,
1637,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to use a custom item template containing Path tag in ComboBox (without causing out of range exception)
===
I have a combo box with the following DataTemplate:
<DataTemplate x:Key="ComboBoxDataTemplate">
<StackPanel>
<TextBlock Text="{Binding Path='Name'}"/>
... | 0 | [
2,
184,
20,
275,
21,
5816,
9101,
22894,
3503,
2013,
3383,
19,
22621,
5309,
13,
5,
14506,
3242,
70,
16,
978,
5391,
6,
800,
3726,
3726,
31,
57,
21,
22621,
1649,
29,
14,
249,
1054,
9577,
6554,
45,
13,
1,
18768,
9577,
6554,
993,
45,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Problems migrating databinding in VB.NET from Winforms to ASP.NET 2.0
===
And this was supposed to be so easy...
I have existing business and data access layers that handle the retrieval and update of the data in question. These work great with the existing Winforms application (.Net V2.0)
Now, in trying to wri... | 0 | [
2,
1716,
28749,
1054,
22260,
19,
13,
20468,
9,
2328,
37,
628,
4190,
18,
20,
28,
306,
9,
2328,
172,
9,
387,
800,
3726,
3726,
17,
48,
23,
2293,
20,
44,
86,
2010,
9,
9,
9,
31,
57,
3149,
508,
17,
1054,
1381,
9124,
30,
3053,
14,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Getting directory listing using Flash
===
In flash you can open a file on the user's computer. In flash 9 you can upload and download the file and in flash 10 you can access the contents of the file.
It is secure because the user has to choose the file from a file dialog box to allow flash access to it.
What I w... | 0 | [
2,
1017,
16755,
9554,
568,
4433,
800,
3726,
3726,
19,
4433,
42,
92,
368,
21,
3893,
27,
14,
4155,
22,
18,
1428,
9,
19,
4433,
561,
42,
92,
71,
8294,
17,
7121,
14,
3893,
17,
19,
4433,
332,
42,
92,
1381,
14,
8478,
16,
14,
3893,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Can A winform app be switched to a WPF one if MVC architecture is used?
===
If we develop a winform app using an MVC architecture, it should not be too hard to change over to WPF at a later date, correct? | 0 | [
2,
92,
21,
628,
4190,
4865,
44,
6667,
20,
21,
619,
7721,
53,
100,
307,
8990,
2607,
25,
147,
60,
800,
3726,
3726,
100,
95,
2803,
21,
628,
4190,
4865,
568,
40,
307,
8990,
2607,
15,
32,
378,
52,
44,
266,
552,
20,
753,
84,
20,
6... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0... |
Where do you get XML file formats from
===
Looking at questions like http://stackoverflow.com/questions/77726/xml-or-sqlite-when-to-drop-xml-for-a-database and http://stackoverflow.com/questions/44207/what-are-good-alternative-data-formats-to-xml it is clear that XML is something you best use for exchanging data betwe... | 0 | [
2,
113,
107,
42,
164,
23504,
3893,
13767,
37,
800,
3726,
3726,
699,
35,
2346,
101,
7775,
6903,
25325,
2549,
9990,
9,
960,
118,
24652,
18,
118,
25081,
2409,
118,
396,
8184,
8,
248,
8,
18,
1251,
10601,
8,
3185,
8,
262,
8,
12361,
8... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
.net SqlConnection not being closed even when within a using { }
===
Please help!
*Background info*
I have a WPF application which accesses a SQL Server 2005 database. The database is running locally on the machine the application is running on.
Everywhere I use the Linq DataContext I use a using { } stateme... | 0 | [
2,
13,
9,
2328,
4444,
255,
25996,
872,
52,
142,
827,
166,
76,
363,
21,
568,
13,
1,
13,
1,
800,
3726,
3726,
2247,
448,
187,
1637,
1958,
8810,
15404,
2483,
31,
57,
21,
619,
7721,
3010,
56,
1381,
160,
21,
4444,
255,
8128,
812,
60... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Engineer accountability and code review processes
===
In your “enterprise” work environment, how are engineers held accountable for performing code inspections and unit testing? What processes do you follow (formal methodology or custom process) to ensure the quality of your software? Do you or have you tried implem... | 0 | [
2,
2335,
20172,
17,
1797,
1487,
5102,
800,
3726,
3726,
19,
154,
13,
1,
13679,
15839,
62,
1,
170,
2307,
15,
184,
50,
5379,
269,
2176,
579,
26,
2955,
1797,
9762,
18,
17,
1237,
4431,
60,
98,
5102,
107,
42,
1740,
13,
5,
4190,
192,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How can I make the format document shortcut work for C source files in VS2008?
===
How can I make ctrl k,d work in a pure C file?
I really enjoy the auto formatting in C#, and I would like to have the same functionality in C as well.
I am using VS2008, but it would probably be helpful if this worked in VS2005 as w... | 0 | [
2,
184,
92,
31,
233,
14,
2595,
4492,
502,
4118,
170,
26,
272,
1267,
6488,
19,
4611,
2753,
60,
800,
3726,
3726,
184,
92,
31,
233,
13,
4812,
6362,
680,
15,
43,
170,
19,
21,
4267,
272,
3893,
60,
31,
510,
4696,
14,
3108,
2595,
120... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Subselect in pgSQL
===
I'm trying to do a subselect in pgsql aka postgresql and the example I found doesn't work:
SELECT id FROM (SELECT * FROM table); | 0 | [
2,
972,
18,
16964,
19,
13,
9623,
18,
22402,
800,
3726,
3726,
31,
22,
79,
749,
20,
107,
21,
972,
18,
16964,
19,
13,
9623,
18,
22402,
20892,
678,
6879,
18,
22402,
17,
14,
823,
31,
216,
1437,
22,
38,
170,
45,
5407,
4924,
37,
13,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0... |
What is the preferred way to serve web applications written in Lisp?
===
I've been researching modules for Nginx (my preferred webserver) to serve a Lisp webapp, but I haven't been able to find anything.
Is there modules for Nginx, or is there better ways to serve Lisp webapps? If so, what are they? | 0 | [
2,
98,
25,
14,
5981,
161,
20,
1884,
2741,
3767,
642,
19,
2093,
3401,
60,
800,
3726,
3726,
31,
22,
195,
74,
527,
68,
17113,
26,
13,
2723,
108,
396,
13,
5,
915,
5981,
2741,
10321,
106,
6,
20,
1884,
21,
2093,
3401,
2741,
7753,
15... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
BCP out Error in SQL2000: SQLState = 37000, NativeError = 4060
===
I have created a proc that grabs all the user tables in a local DB on my machine. I want to be able to create a flat file of all my tables using BCP and SQL. Its a dummy database in SQL 2000 connecting through windows authentication. I have set my env... | 0 | [
2,
2726,
306,
70,
7019,
19,
4444,
255,
3050,
45,
4444,
255,
3859,
800,
4294,
3993,
15,
1275,
29992,
800,
1417,
3374,
800,
3726,
3726,
31,
57,
679,
21,
13,
15617,
30,
15555,
65,
14,
4155,
7484,
19,
21,
375,
13,
9007,
27,
51,
1940... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
About usage of DefaultValueAttribute Class in .Net
===
So here is the simple code:
[System.ComponentModel.DefaultValue(true)]
public bool AnyValue { get; set; }
I am sure I don't set AnyValue to false again (I just created it). This property is a property of a Page class of ASP.NET. And I am che... | 0 | [
2,
88,
7514,
16,
12838,
15165,
721,
14755,
718,
19,
13,
9,
2328,
800,
3726,
3726,
86,
235,
25,
14,
1935,
1797,
45,
636,
10724,
9,
11103,
218,
2291,
13998,
9,
13862,
9708,
15165,
5,
13398,
6,
500,
317,
1607,
1823,
186,
15165,
13,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Is there a type of report or cross-tab that would display this data elegantly?
===
I have data in this form,
Article ID Company A Company B Company C
1 Featured Mentioned --
2 Mentioned Featured Mentioned
3 Mentioned -- --
4 Featured Mentio... | 0 | [
2,
25,
80,
21,
1001,
16,
1330,
54,
919,
8,
15783,
30,
83,
3042,
48,
1054,
11614,
102,
60,
800,
3726,
3726,
31,
57,
1054,
19,
48,
505,
15,
2002,
4924,
237,
21,
237,
334,
237,
272,
137,
1070,
2211,
13,
8,
8,
172,
2211,
1070,
2... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Is there a way to use inline comments to document members in .NET?
===
Is there a way to document a member inline in .Net? Let me explain. Most tools that extract documentation from comments support some kind of inline documentation where you can add a brief after the member declaration. Something like:
public ... | 0 | [
2,
25,
80,
21,
161,
20,
275,
19,
1143,
7534,
20,
4492,
443,
19,
13,
9,
2328,
60,
800,
3726,
3726,
25,
80,
21,
161,
20,
4492,
21,
322,
19,
1143,
19,
13,
9,
2328,
60,
408,
55,
3271,
9,
127,
4672,
30,
10962,
13945,
37,
7534,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Asp.net -best place to trap SQL Server sql errors
===
For Asp.net web applications, is it best to:
1. trap errors within sql stored procedures and test for a return value in the code or
2. just let the error occur in sql (dont handle it) and rely on ado.net raising the errors within the code.
What are the best... | 0 | [
2,
28,
306,
9,
2328,
13,
8,
4936,
209,
20,
5585,
4444,
255,
8128,
4444,
255,
11908,
800,
3726,
3726,
26,
28,
306,
9,
2328,
2741,
3767,
15,
25,
32,
246,
20,
45,
137,
9,
5585,
11908,
363,
4444,
255,
8214,
8876,
17,
1289,
26,
21,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Connection pooling in asp.net
===
I´ve been looking for it yet in stackoverflow without success...
Is it posible a connection pooling in asp.net? Is it worthwhile? How?
| 0 | [
2,
2760,
3067,
68,
19,
28,
306,
9,
2328,
800,
3726,
3726,
31,
13,
195,
74,
699,
26,
32,
768,
19,
7566,
2549,
9990,
366,
1280,
9,
9,
9,
25,
32,
12928,
3426,
21,
2760,
3067,
68,
19,
28,
306,
9,
2328,
60,
25,
32,
29604,
60,
1... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... |
Remove fragment in URL with JavaScript w/out causing page reload
===
**Background:** I have an HTML page which lets you expand certain content. As only small portions of the page need to be loaded for such an expansion, it's done via JavaScript, and not by directing to a new URL/ HTML page. However, as a bonus the use... | 0 | [
2,
4681,
14847,
19,
287,
6362,
29,
8247,
8741,
619,
118,
1320,
3242,
2478,
27339,
800,
3726,
3726,
13,
1409,
1958,
8810,
45,
1409,
31,
57,
40,
13,
15895,
2478,
56,
6884,
42,
6073,
1200,
2331,
9,
28,
104,
284,
9125,
16,
14,
2478,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How can I change the location of an .InstallState file in a Visual Studio generated MSI
===
I have an MSI file that I have created using a Visual Studio Setup Project. The installed generateds an <appname>.InstallState file in the application directory. Is there a way to have this file generated in a different locat... | 0 | [
2,
184,
92,
31,
753,
14,
1474,
16,
40,
13,
9,
108,
21300,
3859,
3893,
19,
21,
3458,
1120,
6756,
4235,
49,
800,
3726,
3726,
31,
57,
40,
4235,
49,
3893,
30,
31,
57,
679,
568,
21,
3458,
1120,
18161,
669,
9,
14,
4066,
6756,
18,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
C# ASP.NET How to determine which Child Page is being displayed from Master Page?
===
I'm writing code on the master page, and I need to know which child (content) page is being displayed. How can I do this programmatically? | 0 | [
2,
272,
5910,
28,
306,
9,
2328,
184,
20,
3746,
56,
850,
2478,
25,
142,
6115,
37,
1129,
2478,
60,
800,
3726,
3726,
31,
22,
79,
1174,
1797,
27,
14,
1129,
2478,
15,
17,
31,
376,
20,
143,
56,
850,
13,
5,
25424,
6,
2478,
25,
142,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0... |
Can osql.exe run as a standalone?
===
I have a program that runs osql.exe from microsoft sql server tools directory and runs a script.
The problem is that on computers that don't have an installation of sql server, this tool is missing. So my question is whether or not is possible to run it as a standalone( along ... | 0 | [
2,
92,
13,
759,
22402,
9,
1706,
62,
485,
28,
21,
26986,
60,
800,
3726,
3726,
31,
57,
21,
625,
30,
1461,
13,
759,
22402,
9,
1706,
62,
37,
7099,
4444,
255,
8128,
4672,
16755,
17,
1461,
21,
3884,
9,
14,
1448,
25,
30,
27,
7774,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How To Set Errorlevel On Exit of MFC App
===
I have an MFC legacy app that I help to maintain. I'm not quite sure how to identify the version of MFC and I don't think it would make a difference anyway.
The app can take some parameters on the command line; I would like to be able to set an errorlevel on exiting t... | 0 | [
2,
184,
20,
309,
7019,
3906,
27,
4350,
16,
307,
7061,
4865,
800,
3726,
3726,
31,
57,
40,
307,
7061,
7780,
4865,
30,
31,
448,
20,
4027,
9,
31,
22,
79,
52,
1450,
562,
184,
20,
5808,
14,
615,
16,
307,
7061,
17,
31,
221,
22,
38,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How do you add an index field to Linq results
===
Lets say I have an array like this:
string [] Filelist = ...
I want to create an Linq result where each entry has it's position in the array like this:
var list = from f in Filelist
select new { Index = (something), Filename = f};
I want In... | 0 | [
2,
184,
107,
42,
3547,
40,
4348,
575,
20,
6294,
1251,
1736,
800,
3726,
3726,
6884,
395,
31,
57,
40,
7718,
101,
48,
45,
3724,
20767,
3893,
5739,
800,
13,
9,
9,
9,
31,
259,
20,
1600,
40,
6294,
1251,
829,
113,
206,
2792,
63,
32,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Is there a Python library function which attempts to guess the character-encoding of some bytes?
===
I'm writing some mail-processing software in Python that is encountering strange bytes in header fields. I suspect this is just malformed mail; the message itself claims to be us-ascii, so I don't think there is a tru... | 0 | [
2,
25,
80,
21,
20059,
1248,
1990,
56,
3265,
20,
2321,
14,
925,
8,
219,
15458,
16,
109,
34,
3231,
60,
800,
3726,
3726,
31,
22,
79,
1174,
109,
4216,
8,
16835,
68,
2306,
19,
20059,
30,
25,
7007,
68,
2578,
34,
3231,
19,
157,
106,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How does one pass a string back to labview using a call Library function node
===
I want to use LabVIEW's Call Library Function Node to access a DLL function, and have this function return a string to displayed on my VI. How would I go about doing this? I am quite happy returning numbers from my DLL, but am really str... | 0 | [
2,
184,
630,
53,
1477,
21,
3724,
97,
20,
4343,
4725,
568,
21,
645,
1248,
1990,
15421,
800,
3726,
3726,
31,
259,
20,
275,
4343,
4725,
22,
18,
645,
1248,
1990,
15421,
20,
1381,
21,
13,
43,
211,
1990,
15,
17,
57,
48,
1990,
788,
2... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Lots of build warnings when COM objects ActiveDs or MSXML2 are referenced
===
After moving a project from .NET 1.1 to .NET 2.0, MsBuild emits lots of warnings for some COM objects.
Sample code for test (actual code doesn't matter, just used to create the warnings):
using System;
using System.DirectorySe... | 0 | [
2,
7503,
16,
1895,
3590,
18,
76,
13,
960,
3916,
1348,
43,
18,
54,
4235,
396,
8184,
135,
50,
17571,
800,
3726,
3726,
75,
1219,
21,
669,
37,
13,
9,
2328,
137,
9,
165,
20,
13,
9,
2328,
172,
9,
387,
15,
4235,
29361,
8468,
38,
18... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Wich debug visualizers exists out there?
===
I know about this question: http://stackoverflow.com/questions/100548/which-third-party-debug-visualizers-for-visual-studio-20052008-do-you-use
But I dont want to know what debug visualizers you use, I want to know wich debug visualizers are *out* there.
I have only f... | 0 | [
2,
13,
13583,
121,
16254,
3458,
11907,
18,
5636,
70,
80,
60,
800,
3726,
3726,
31,
143,
88,
48,
1301,
45,
7775,
6903,
25325,
2549,
9990,
9,
960,
118,
24652,
18,
24803,
3963,
12530,
2140,
8,
8932,
8,
9635,
8,
546,
16254,
8,
20893,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
ObservableCollection that also monitors changes on the elements in collection
===
Is there a collection (BCL or other) that has the following characteristics:
Sends event if collection is changed AND sends event if any of the elements in the collection sends a PropertyChanged event.
Sort of an ObservableCollecti... | 0 | [
2,
5122,
10321,
579,
15015,
872,
30,
67,
18521,
1693,
27,
14,
2065,
19,
1206,
800,
3726,
3726,
25,
80,
21,
1206,
13,
5,
220,
5316,
54,
89,
6,
30,
63,
14,
249,
5626,
45,
11350,
807,
100,
1206,
25,
1015,
17,
11350,
807,
100,
186... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to use Ruby/DL - an example
===
I am trying to write an interface between RSPEC (ruby flavoured BDD) and a Windows application. The application itself is written in an obscure language, but it has a C API to provide access. I've gone with Ruby/DL but am having difficulties getting even the most basic call to a D... | 0 | [
2,
184,
20,
275,
10811,
118,
8643,
13,
8,
40,
823,
800,
3726,
3726,
31,
589,
749,
20,
2757,
40,
6573,
128,
13,
1224,
12610,
13,
5,
1820,
779,
22408,
69,
334,
8096,
6,
17,
21,
1936,
3010,
9,
14,
3010,
1145,
25,
642,
19,
40,
1... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.