unified_texts stringlengths 32 30.1k | OpenStatus_id int64 0 4 | input_ids list | token_type_ids list | attention_mask list |
|---|---|---|---|---|
Interaction between Java and C#
===
Is it possible to write a user interface in Java for an application written in C#?
I am working on a user interface of a project that is written in C#, but I have no experience with C# and I am an avid Java user. Is it possible to build the user interface in Java using Java's Swi... | 0 | [
2,
7754,
128,
8247,
17,
272,
5910,
800,
3726,
3726,
25,
32,
938,
20,
2757,
21,
4155,
6573,
19,
8247,
26,
40,
3010,
642,
19,
272,
5910,
60,
31,
589,
638,
27,
21,
4155,
6573,
16,
21,
669,
30,
25,
642,
19,
272,
5910,
15,
47,
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... |
Light C Unicode Library
===
Im looking for a small C library to handle utf8 strings.
Specifically, splitting based on unicode delimiters for use with stemming algorithms.
Related posts have suggested:
ICU http://www.icu-project.org/ (I found it too bulky for my purposes on embedded devices)
UTF8-CPP: http:... | 0 | [
2,
471,
272,
28010,
1248,
800,
3726,
3726,
797,
699,
26,
21,
284,
272,
1248,
20,
3053,
287,
11720,
457,
7887,
9,
3524,
15,
17282,
432,
27,
28010,
121,
20565,
445,
26,
275,
29,
29105,
15935,
9,
1597,
9868,
57,
2347,
45,
13,
22722,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 the number of affected rows in a SQLite 2 query in PHP
===
I'm writing an application in PHP 5. I want to delete some rows in a SQLite v2 database file. I'm doing something like this:
$sqliteConnection = new SQLiteDatabase('path/to/db');
$queryString = "DELETE FROM myTable WHERE status=... | 0 | [
2,
184,
92,
31,
3746,
14,
234,
16,
4114,
11295,
19,
21,
4444,
10601,
172,
25597,
19,
13,
26120,
800,
3726,
3726,
31,
22,
79,
1174,
40,
3010,
19,
13,
26120,
331,
9,
31,
259,
20,
27448,
109,
11295,
19,
21,
4444,
10601,
566,
135,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
LDAP socket keep-alive
===
We are using OpenLDAP client library to conect to an LDAP server. The problem is that if there is no activity for some time, server (or firewall in the middle) drops TCP connection.
Our current implementation of "keep-alive" just does search for baseDN from time to time - any better ideas... | 0 | [
2,
644,
20472,
18482,
643,
8,
192,
1284,
800,
3726,
3726,
95,
50,
568,
368,
255,
20472,
6819,
1248,
20,
1065,
11557,
20,
40,
644,
20472,
8128,
9,
14,
1448,
25,
30,
100,
80,
25,
90,
2358,
26,
109,
85,
15,
8128,
13,
5,
248,
535,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Filling up a TreeView control
===
OK this is going to sound hilarious but still
I have a class like so
class TermNode
{
public string Name;
public string Definition;
public List<TermNode> Children
}
So this is a N-Ary non sorted in any way Tree. A node can have 0-N childre... | 0 | [
2,
7702,
71,
21,
1541,
4725,
569,
800,
3726,
3726,
5854,
48,
25,
228,
20,
646,
12045,
8756,
267,
47,
174,
31,
57,
21,
718,
101,
86,
718,
981,
251,
546,
13,
1,
317,
3724,
204,
73,
317,
3724,
5465,
73,
317,
968,
1,
3964,
251,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 concept of erasure in generics in java?
===
What is the concept of erasure in generics in java? | 0 | [
2,
98,
25,
14,
2420,
16,
2047,
5838,
19,
12733,
18,
19,
8247,
60,
800,
3726,
3726,
98,
25,
14,
2420,
16,
2047,
5838,
19,
12733,
18,
19,
8247,
60,
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,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... |
JDBC simplified connection
===
Is there any library that would simplify the task of connecting to a server with JDBC? Something that can take a string like "mysql://username:password@host/db", similar to what PHP MDB2 do: http://pear.php.net/package/MDB2/docs/latest/MDB2/MDB2.html#methodparseDSN | 0 | [
2,
487,
43,
7229,
13,
11268,
2760,
800,
3726,
3726,
25,
80,
186,
1248,
30,
83,
28257,
14,
3005,
16,
6440,
20,
21,
8128,
29,
487,
43,
7229,
60,
301,
30,
92,
247,
21,
3724,
101,
13,
7,
915,
18,
22402,
6903,
16704,
7259,
45,
6201... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 height to the SimpleHistogramBin bin in SimpleHistogramDataset?
===
I used setItemsCount() method to manage height of the bin in my SimpleHistogram from JFreeChart. Yet, it does something weird: when I set for example 1, it shows 1.4
Besides this method's argument is Integer, while i need double | 0 | [
2,
184,
20,
309,
2947,
20,
14,
1935,
4398,
38,
20476,
4772,
4511,
19,
1935,
4398,
38,
20476,
18768,
3554,
60,
800,
3726,
3726,
31,
147,
309,
2119,
79,
18,
16549,
5,
6,
2109,
20,
4705,
2947,
16,
14,
4511,
19,
51,
1935,
4398,
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... |
ASP.NET control in JQuery modal
===
Ok, I am new to JQuery, I have a modal that has a asp:Literal control in it. The literal is controled by whatever link is clicked to activate the modal. So, I had hoped it would be as easy as giving the literal value onClick of the link but that's not it.
I'm hoping: the value... | 0 | [
2,
28,
306,
9,
2328,
569,
19,
487,
8190,
93,
13,
20756,
800,
3726,
3726,
5854,
15,
31,
589,
78,
20,
487,
8190,
93,
15,
31,
57,
21,
13,
20756,
30,
63,
21,
28,
306,
45,
12438,
192,
569,
19,
32,
9,
14,
20665,
25,
569,
69,
34,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Powershell script to change service account
===
Does anyone have a Powershell script to change the credentials used by a Windows service? | 0 | [
2,
414,
15984,
3884,
20,
753,
365,
2176,
800,
3726,
3726,
630,
1276,
57,
21,
414,
15984,
3884,
20,
753,
14,
5059,
43,
10107,
18,
147,
34,
21,
1936,
365,
60,
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,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... |
what is not a workflow system?
===
How can I difference a Workflow system from a normal application that automates some work, are there any specific feature a workflow must have to be categorized as a workflow System. | 4 | [
2,
98,
25,
52,
21,
170,
9990,
329,
60,
800,
3726,
3726,
184,
92,
31,
2841,
21,
170,
9990,
329,
37,
21,
1826,
3010,
30,
3108,
8977,
109,
170,
15,
50,
80,
186,
1903,
1580,
21,
170,
9990,
491,
57,
20,
44,
23346,
28,
21,
170,
99... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
When I publish my ASP.NET site in RELEASE mode, will tracing still work?
===
When I publish my ASP.NET site in RELEASE mode, and set compilation debug="false", will my ASP.NET and System.Diagnostics Tracing still work? | 0 | [
2,
76,
31,
10824,
51,
28,
306,
9,
2328,
689,
19,
830,
3740,
15,
129,
20005,
174,
170,
60,
800,
3726,
3726,
76,
31,
10824,
51,
28,
306,
9,
2328,
689,
19,
830,
3740,
15,
17,
309,
4868,
121,
16254,
3726,
7,
13192,
870,
7,
15,
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,
0... |
How to associate a specified type of file with my program?
===
I have a self-developed program which I want to use as the default opening tool for .jpg and .bmp files. How can I achieve the goal progrmmatically?
Some said that I have to add some registry entries. But I don't konw exactly what I should do. Can anyo... | 0 | [
2,
184,
20,
4169,
21,
9931,
1001,
16,
3893,
29,
51,
625,
60,
800,
3726,
3726,
31,
57,
21,
1119,
8,
20102,
625,
56,
31,
259,
20,
275,
28,
14,
12838,
1214,
5607,
26,
13,
9,
12851,
263,
17,
13,
9,
220,
2554,
6488,
9,
184,
92,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Work offline in Team Foundation Server
===
Is there a way to set "work offline" in TFS without having to try opening a solution, waiting for it to time out, and then having Visual Studio work out that it has failed?
It seems a touch ridiculous that I can't just tick a box to tell it myself, seeing as I'm probably t... | 0 | [
2,
170,
168,
1143,
19,
173,
1304,
8128,
800,
3726,
3726,
25,
80,
21,
161,
20,
309,
13,
7,
3783,
168,
1143,
7,
19,
13,
11720,
18,
366,
452,
20,
1131,
1214,
21,
4295,
15,
1672,
26,
32,
20,
85,
70,
15,
17,
94,
452,
3458,
1120,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Merge from PROD to HEAD or HEAD to PROD?
===
We have two branches:
1. HEAD - the latest version (AKA Trunc)
2. PROD - the released version
When you fix bugs in the released version, which of these do you do:
1. Fix it in PROD, then merge to HEAD
2. Fix it in HEAD, then merge to PROD
The advantage of (1) is... | 0 | [
2,
12666,
37,
895,
43,
20,
157,
54,
157,
20,
895,
43,
60,
800,
3726,
3726,
95,
57,
81,
4395,
45,
137,
9,
157,
13,
8,
14,
5736,
615,
13,
5,
4176,
8600,
6897,
6,
172,
9,
895,
43,
13,
8,
14,
261,
615,
76,
42,
6098,
13925,
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... |
Scaffold Generator problem in Rails 2.1+
===
I have fresh Rails 2.2 install, thing is that everything work fine until I use scaffold generator.
$ script/generate scaffold pages \
title:string description:string content:text
$ rake db:migrate
But when I launch server with this address: http://lo... | 0 | [
2,
27322,
15286,
1448,
19,
2240,
18,
172,
9,
165,
2430,
800,
3726,
3726,
31,
57,
3180,
2240,
18,
172,
9,
135,
16146,
15,
584,
25,
30,
796,
170,
1123,
163,
31,
275,
27322,
15286,
9,
5579,
3884,
118,
17083,
1373,
27322,
4434,
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... |
How to calculate/save memory useage of .NET app on terminal servers?
===
I do some C# fat application on Citrix/Terminal Server.
How to measure actual memory usage per-session?
What can I do to reduce the memory usage in total?
We still working on .NET 1.1. Does it have a difference if we upgrade our .NET runti... | 0 | [
2,
184,
20,
18469,
118,
19863,
1912,
275,
1303,
16,
13,
9,
2328,
4865,
27,
3855,
17595,
60,
800,
3726,
3726,
31,
107,
109,
272,
5910,
4211,
3010,
27,
5486,
17224,
118,
20907,
8128,
9,
184,
20,
4058,
3463,
1912,
7514,
416,
8,
7202,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 method to ping in c++ under linux ?
===
I have to call ping from c++ code.I'd like to easily read the output for further utilizations.
I have come up with two solutions:
- use a fork and a pipe, redirect ping output to the pipe and then parse it
- find a library suited for the purpose to use a pi... | 0 | [
2,
98,
25,
14,
246,
2109,
20,
13,
3181,
19,
272,
20512,
131,
13024,
13,
60,
800,
3726,
3726,
31,
57,
20,
645,
13,
3181,
37,
272,
20512,
1797,
9,
49,
22,
43,
101,
20,
2351,
1302,
14,
5196,
26,
653,
28071,
18,
9,
31,
57,
340,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 could cause Visual Studio / C# error MSB3105: Duplicate resources
===
While working on an existing project I suddenly got the following error when trying to compile the solution:
*error MSB3105: The item "[filename]" was specified more than once in the "Resources" parameter. Duplicate items are not supported b... | 0 | [
2,
98,
110,
1679,
3458,
1120,
13,
118,
272,
5910,
7019,
4235,
220,
14821,
264,
45,
19429,
2566,
800,
3726,
3726,
133,
638,
27,
40,
3149,
669,
31,
1605,
330,
14,
249,
7019,
76,
749,
20,
26561,
14,
4295,
45,
1637,
29992,
4235,
220,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
GoogleMaps getLatLng Did you mean suggestion
===
I am trying to integrate the function into a map where you can enter an address and it puts a marker on the map. But with Google Maps getLatLng if there is a slight error in the name of the address it doesn't work anymore is there a did you mean function? | 0 | [
2,
8144,
15022,
18,
164,
8927,
255,
2723,
144,
42,
884,
10910,
800,
3726,
3726,
31,
589,
749,
20,
18399,
14,
1990,
77,
21,
2942,
113,
42,
92,
2830,
40,
3218,
17,
32,
11179,
21,
13289,
27,
14,
2942,
9,
47,
29,
8144,
6867,
164,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 implement and extend Joshua's builder pattern in .net?
===
- How can we implement the Builder
pattern of [Joshua's
Effective Java][1] in C#?
Below is the code I have tried, is there a better way to do this?
public class NutritionFacts
{
public static NutritionFact... | 0 | [
2,
184,
20,
8713,
17,
7206,
9670,
22,
18,
14960,
3732,
19,
13,
9,
2328,
60,
800,
3726,
3726,
13,
8,
184,
92,
95,
8713,
14,
14960,
3732,
16,
636,
1636,
18,
7325,
22,
18,
3140,
8247,
500,
2558,
165,
500,
19,
272,
5910,
60,
1021,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 a good idea to enable jmx on a production server?
===
We are experiencing some slowdowns on our web-app deployed on Tomcat and our hosting company doesn't gives enough data to find the problem.
We are considering installing [lambda probe](http://www.lambdaprobe.org) on the production server but it requires to ... | 0 | [
2,
25,
21,
254,
882,
20,
9240,
487,
79,
396,
27,
21,
637,
8128,
60,
800,
3726,
3726,
95,
50,
15138,
109,
2276,
2968,
18,
27,
318,
2741,
8,
7753,
6698,
27,
2067,
5782,
17,
318,
10637,
237,
1437,
22,
38,
2352,
511,
1054,
20,
477... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Access DropDownList.SelectedIndex in DataList.ItemCreatedCommand (EventBubbling or other solutions)
===
How am I to bubble the event caused when itemIndex is changed in a dropdownlist - so that I can use the itemindex-value in my ItemCreatedCommand-function?
A solution is found at:
http://209.85.129.132/search?q... | 0 | [
2,
1381,
2804,
2968,
5739,
9,
18,
7138,
25671,
19,
1054,
5739,
9,
2119,
79,
18475,
16239,
13,
5,
4943,
11872,
4502,
8599,
54,
89,
6776,
6,
800,
3726,
3726,
184,
589,
31,
20,
10937,
14,
807,
1497,
76,
9101,
25671,
25,
1015,
19,
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... |
How to prevent a Winforms control from listening to the keyboard ...
===
For a certain inputform, I'd like to make it possible to do input with the keyboard. I know how to read the keys through KeyPressed and KeyUp, but the problem is that when a control has got the focus and the user presses the Enter key, that cont... | 0 | [
2,
184,
20,
2501,
21,
628,
4190,
18,
569,
37,
4948,
20,
14,
8896,
13,
9,
9,
9,
800,
3726,
3726,
26,
21,
1200,
6367,
4190,
15,
31,
22,
43,
101,
20,
233,
32,
938,
20,
107,
6367,
29,
14,
8896,
9,
31,
143,
184,
20,
1302,
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... |
Char array to a class
===
I have a incoming stream of bytes (unsigned char) from either a file or network. I need this data placed in a class, and is looking for a NET-way of doing this.
I bet some does this all the time, so I guess there is a better method to do this than using BitConverter.
| 0 | [
2,
4892,
7718,
20,
21,
718,
800,
3726,
3726,
31,
57,
21,
17126,
3766,
16,
34,
3231,
13,
5,
1020,
13472,
4892,
6,
37,
694,
21,
3893,
54,
982,
9,
31,
376,
48,
1054,
1037,
19,
21,
718,
15,
17,
25,
699,
26,
21,
4275,
8,
1443,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Preferred way to keep control centered on resize
===
What is your preferred way of keeping controls centered on its parent when the parent change width or hight? | 0 | [
2,
5981,
161,
20,
643,
569,
10583,
27,
302,
10454,
800,
3726,
3726,
98,
25,
154,
5981,
161,
16,
2882,
8671,
10583,
27,
82,
4766,
76,
14,
4766,
753,
9456,
54,
183,
38,
60,
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,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... |
Where can you get good programming information for POS (Point-of-Sale) Development?
===
POS Development has some special challenges, ie. printer languages such as ZPL, "ESCPOS", OPOS etc. etc. It would really be nice to know where are the best sites with information and code snippets and sample programs.
Many progr... | 0 | [
2,
113,
92,
42,
164,
254,
3143,
676,
26,
12928,
13,
5,
3132,
8,
1041,
8,
18,
4482,
6,
522,
60,
800,
3726,
3726,
12928,
522,
63,
109,
621,
7595,
15,
13,
660,
9,
12925,
2556,
145,
28,
2052,
5727,
15,
13,
7,
160,
150,
12551,
7,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 Practice for Multi-programming-language Projects
===
Does anyone have any experience with doing this? I'm working on a Java decompiler right now in C++, but would like a higher level language to do the actual transformations of the internal trees. I'm curious if the overhead of marshaling data between languages... | 0 | [
2,
246,
1345,
26,
1889,
8,
19746,
3863,
8,
7020,
2314,
800,
3726,
3726,
630,
1276,
57,
186,
1496,
29,
845,
48,
60,
31,
22,
79,
638,
27,
21,
8247,
121,
11103,
49,
1252,
193,
130,
19,
272,
20512,
15,
47,
83,
101,
21,
1184,
662,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
MYSQL - What does STRAIGHT_JOIN do in this code ?
===
What does STRAIGHT_JOIN do in this code ?
SELECT STRAIGHT_JOIN ClosingBalance
FROM Accounts
WHERE idAccounts = FidDebit; | 0 | [
2,
51,
18,
22402,
13,
8,
98,
630,
1599,
1,
1636,
108,
107,
19,
48,
1797,
13,
60,
800,
3726,
3726,
98,
630,
1599,
1,
1636,
108,
107,
19,
48,
1797,
13,
60,
5407,
1599,
1,
1636,
108,
4239,
24140,
37,
5310,
113,
4924,
29148,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... |
Equivalent msbuild command for Publish from VS2008
===
any idea which is the command for publish in msbuild corresponding to the one in VS2008?
What I want is the resulting output to be the same, without that _PublishedWebSites subdirectory.
Is this achievable from command line or I should use a build file?
Thank... | 0 | [
2,
4602,
4235,
29361,
1202,
26,
10824,
37,
4611,
2753,
800,
3726,
3726,
186,
882,
56,
25,
14,
1202,
26,
10824,
19,
4235,
29361,
7265,
20,
14,
53,
19,
4611,
2753,
60,
98,
31,
259,
25,
14,
2927,
5196,
20,
44,
14,
205,
15,
366,
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... |
DatePicker for a Mobile Website?
===
What is best way to allow user to pick date from a mobile device from usability prospective? | 0 | [
2,
1231,
16855,
106,
26,
21,
3241,
2271,
60,
800,
3726,
3726,
98,
25,
246,
161,
20,
1655,
4155,
20,
2036,
1231,
37,
21,
3241,
3646,
37,
182,
4091,
20499,
60,
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,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... |
Port 443 is ‘filtered’ to internet clients. How can I make it ‘open’? Can it be bug?
===
The problem is that HTTPS 443 port isn't accessible from interned, but it is open in local network.
Our iSeries is connected to inet via L2TP withot IPSec.
If no packet filters are active, nmap shows that ports 25, 80, 110 and e... | 0 | [
2,
1295,
4576,
240,
25,
13,
1,
11924,
10919,
1,
20,
2620,
7421,
9,
184,
92,
31,
233,
32,
13,
1,
10157,
1,
60,
92,
32,
44,
6256,
60,
800,
3726,
3726,
14,
1448,
25,
30,
7775,
18,
4576,
240,
1295,
2532,
22,
38,
7342,
37,
26924,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
generate dependencies for a makefile for a project in C/C++
===
I have a project that has a makefile with broken dependencies. Is there any best known way to generate a list of dependencies for the project that I can use in the makefile, other than examining each source file by hand or with a hand written perl script... | 0 | [
2,
7920,
29411,
26,
21,
233,
16877,
26,
21,
669,
19,
272,
118,
150,
20512,
800,
3726,
3726,
31,
57,
21,
669,
30,
63,
21,
233,
16877,
29,
2023,
29411,
9,
25,
80,
186,
246,
167,
161,
20,
7920,
21,
968,
16,
29411,
26,
14,
669,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Localization of date-time using custom patterns.
===
I am working on localization for an app where custom patterns are used to format the date-time.
one example is:
dd-MM HH:mm
I need to get localized versions of this custom format for dates, so that I get the date using numbers, and the time, basically using ... | 0 | [
2,
375,
1829,
16,
1231,
8,
891,
568,
5816,
6282,
9,
800,
3726,
3726,
31,
589,
638,
27,
375,
1829,
26,
40,
4865,
113,
5816,
6282,
50,
147,
20,
2595,
14,
1231,
8,
891,
9,
53,
823,
25,
45,
13,
8096,
8,
3363,
13,
10681,
45,
3363... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Underlying object Type of an empty Array
===
Hej,
assuming I have a code that looks like this:
List<User> userList = GetUserByName (u => u.Name == name);
DoSomethingWithTheUsers (userList.ToArray ());
Now I want to know the type of the objects in the Array in the method *DoSomethingWithTheUsers (obj... | 0 | [
2,
10974,
3095,
1001,
16,
40,
2424,
7718,
800,
3726,
3726,
24,
728,
15,
11704,
31,
57,
21,
1797,
30,
1879,
101,
48,
45,
968,
1,
16704,
1,
4155,
5739,
800,
164,
16704,
779,
7259,
13,
5,
291,
800,
1,
287,
9,
7259,
800,
3726,
204... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Redirect to action in other controller
===
I want to redirect from an action in one controller to an action in a second controller. Normally I would use RedirectToAction("actionName", "controllerName", objects);
The method I want to redirect to has two overloads:
- One for HttpVerbs.Get that is used for direct l... | 0 | [
2,
302,
14706,
20,
1028,
19,
89,
9919,
800,
3726,
3726,
31,
259,
20,
302,
14706,
37,
40,
1028,
19,
53,
9919,
20,
40,
1028,
19,
21,
153,
9919,
9,
4147,
31,
83,
275,
302,
14706,
262,
8645,
5,
7,
8645,
7259,
7,
15,
13,
7,
12898... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Disabling progress bar animation on Vista Aero
===
I'm using a Delphi 2009 VCL TProgressBar as a kind of "empty/full" gauge.
On Vista, with Aero theme enabled, this has an animation associated with it, which is annoying and inappropriate for an gauge.
Is there any way of disabling this (NOT by adjusting user's t... | 0 | [
2,
1460,
58,
8599,
3455,
748,
6236,
27,
13520,
8914,
800,
3726,
3726,
31,
22,
79,
568,
21,
23030,
588,
566,
5316,
13,
38,
2740,
13026,
1850,
28,
21,
825,
16,
13,
7,
26542,
118,
13727,
7,
7313,
9,
27,
13520,
15,
29,
8914,
3184,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 programmatically deploy my BIDS artifacts to remote SQL Server instance?
===
I would like to automate the deployment of my SSIS and SSAS artifacts to remote development SQL Server 2005 & 2008 instances on a scheduled basis.
What would be the best solution for this? I am using TFS 2008 as ... | 0 | [
2,
98,
25,
14,
246,
161,
20,
625,
6732,
1326,
17617,
51,
4458,
18,
10996,
20,
5388,
4444,
255,
8128,
4851,
60,
800,
3726,
3726,
31,
83,
101,
20,
3108,
5281,
14,
10475,
16,
51,
13,
18,
4557,
17,
13,
8234,
18,
10996,
20,
5388,
5... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Multiple Interface injection with castle windsor
===
How can you get castle Windsor to choose the right implantation of a interface at run time when you have multiple implementations in the container.
For example lets say i have a simple interface called IExamCalc that does calculations to work out how someone did ... | 0 | [
2,
1886,
6573,
13646,
29,
1339,
10784,
800,
3726,
3726,
184,
92,
42,
164,
1339,
10784,
20,
3538,
14,
193,
16093,
857,
16,
21,
6573,
35,
485,
85,
76,
42,
57,
1886,
6123,
18,
19,
14,
12147,
9,
26,
823,
6884,
395,
31,
57,
21,
193... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Anyone encountered a INT 3 debugger break in mscorwks.dll?
===
We host the .NET runtime as part of a Win32 program, and lately it has begun to consistently break at a specific address, in mscorwks.dll.
At the specified address, there is a 0xCC byte, which is a INT 3 instruction, which fires the debugger.
Has any... | 0 | [
2,
1276,
8208,
21,
19,
38,
203,
121,
2345,
11356,
1442,
19,
4235,
4966,
499,
4020,
9,
43,
211,
60,
800,
3726,
3726,
95,
2015,
14,
13,
9,
2328,
485,
891,
28,
141,
16,
21,
628,
3125,
625,
15,
17,
10434,
32,
63,
4349,
20,
11852,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 get the users location without having the user install Google Gears?
===
I don't want to have the user install Google Gears so I can show him his guessed location. Is there a way to get the location without having to use Google Gears?
I have found http://www.wipmania.com/de/blog/google-geolocation... | 0 | [
2,
25,
80,
21,
161,
20,
164,
14,
3878,
1474,
366,
452,
14,
4155,
16146,
8144,
4256,
18,
60,
800,
3726,
3726,
31,
221,
22,
38,
259,
20,
57,
14,
4155,
16146,
8144,
4256,
18,
86,
31,
92,
298,
61,
33,
12959,
1474,
9,
25,
80,
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... |
Object Oriented PHP
===
<?php
class Box
{
var $contents;
function Box($contents) {
$this->contents = $contents;
}
function get_whats_inside() {
return $this->contents;
}
}
?>
I am going through a OO tutorial. I am familiar with PHP and the concept ... | 0 | [
2,
3095,
13,
6800,
13,
26120,
800,
3726,
3726,
13,
1,
60,
26120,
718,
1649,
13,
1,
4033,
5579,
25424,
18,
73,
1990,
1649,
5,
4403,
25424,
18,
6,
13,
1,
5579,
1565,
8,
1569,
263,
38,
73,
25424,
18,
800,
5579,
25424,
18,
73,
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... |
[ urgent ]:VC++: How to access win32 console App Data in MFC GUI.
===
I have two app's
1. Win32 Console App.
2. MFC GUI App.
What i do is, i execture Console app in MFC GUI and i am trying to get data from that Console app and display them in GUI. But i am not able to do so.
i get this error: "fatal error ... | 0 | [
2,
636,
15639,
13,
500,
45,
8990,
20512,
45,
184,
20,
1381,
628,
3125,
8650,
4865,
1054,
19,
307,
7061,
9457,
9,
800,
3726,
3726,
31,
57,
81,
4865,
22,
18,
137,
9,
628,
3125,
8650,
4865,
9,
172,
9,
307,
7061,
9457,
4865,
9,
98... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 modify PropertyGrid at runtime (add/remove property and dynamic types/enums)
===
How do you modify a propertygrid at runtime in every way? I want to be able to add and remove properties and add "dynamic types", what I mean with that is a type that result in a runtime generated dropdown in the propertygrid using... | 0 | [
2,
184,
20,
17579,
1354,
16375,
35,
485,
891,
13,
5,
14854,
118,
99,
16598,
1354,
17,
7782,
2551,
118,
219,
723,
18,
6,
800,
3726,
3726,
184,
107,
42,
17579,
21,
1354,
16375,
35,
485,
891,
19,
352,
161,
60,
31,
259,
20,
44,
77... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Bad request when client call a webservice that also calls another webservice
===
I have a client application that calls a function1 on webservice1 on server1 in the local network. The webservice1 then calls another webservice2 on an remote server2.
If open Internet Explorer on server1 and point it to the function1 ... | 0 | [
2,
896,
3772,
76,
6819,
645,
21,
2741,
11449,
30,
67,
3029,
226,
2741,
11449,
800,
3726,
3726,
31,
57,
21,
6819,
3010,
30,
3029,
21,
1990,
165,
27,
2741,
11449,
165,
27,
8128,
165,
19,
14,
375,
982,
9,
14,
2741,
11449,
165,
94,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 powershell, how do I grant "Log on as service" to an account?
===
I'm trying to use powershell to configure the account credentials, but I need to grant the account "Log on as a service" right in order for it to work. How can I do this in powershell? | 0 | [
2,
568,
414,
15984,
15,
184,
107,
31,
2048,
13,
7,
5567,
27,
28,
365,
7,
20,
40,
2176,
60,
800,
3726,
3726,
31,
22,
79,
749,
20,
275,
414,
15984,
20,
1065,
15951,
14,
2176,
5059,
43,
10107,
18,
15,
47,
31,
376,
20,
2048,
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... |
How to find and remove unused Delphi packages from a project
===
How to find and remove unused Delphi runtime packages from a project that uses packages?
I have a Delphi project that is made up of several packages, in the requires part of the packages there are several Borland/3rd party packages listed (rtl.dcp, vc... | 0 | [
2,
184,
20,
477,
17,
4681,
18927,
23030,
16875,
37,
21,
669,
800,
3726,
3726,
184,
20,
477,
17,
4681,
18927,
23030,
485,
891,
16875,
37,
21,
669,
30,
2027,
16875,
60,
31,
57,
21,
23030,
669,
30,
25,
117,
71,
16,
238,
16875,
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... |
Faulting application vbc.exe, version 9.0.30729.1 (ASP.NET + Framework 3.5)
===
After deploying a new asp.net web application up to our web farm, on the first load the application seemed to hang for about 20 minutes and then we got the above error in the application log.
Suspecting this might be a problem with the ... | 0 | [
2,
4173,
68,
3010,
566,
7229,
9,
1706,
62,
15,
615,
561,
9,
387,
9,
23630,
2738,
9,
165,
13,
5,
472,
306,
9,
2328,
2754,
6596,
203,
9,
264,
6,
800,
3726,
3726,
75,
17617,
68,
21,
78,
28,
306,
9,
2328,
2741,
3010,
71,
20,
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... |
What is the best way to write event log entries?
===
I recently had a problem during the deployment of a windows service. Four computers did not cause any problems, but o the fifth any attempt to start the service. The exception stack trace is written to the event log, so I though it should be easy to identify the c... | 0 | [
2,
98,
25,
14,
246,
161,
20,
2757,
807,
6738,
11399,
60,
800,
3726,
3726,
31,
1989,
41,
21,
1448,
112,
14,
10475,
16,
21,
1936,
365,
9,
222,
7774,
144,
52,
1679,
186,
1716,
15,
47,
635,
14,
1900,
186,
1735,
20,
799,
14,
365,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Do I ever really need to use the Global Assembly Cache (GAC)?
===
I've been building .NET web applications for many years now, and I never use the GAC?
What am I missing? Or am I better off staying away from it? | 0 | [
2,
107,
31,
462,
510,
376,
20,
275,
14,
2062,
1475,
16522,
13,
5,
1136,
150,
6,
60,
800,
3726,
3726,
31,
22,
195,
74,
353,
13,
9,
2328,
2741,
3767,
26,
151,
122,
130,
15,
17,
31,
243,
275,
14,
4369,
150,
60,
98,
589,
31,
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,
0,
0,
0,
0... |
regex to match non-whitespace OR space prefixed with '\\'
===
I have a space delimited list of files names, where spaces in the file names are prefixed by '\'
e.g. "first\ file second\ file"
How can I get my regex to match each file name? | 0 | [
2,
7953,
1706,
20,
730,
538,
8,
5051,
5582,
54,
726,
14315,
69,
29,
13,
22,
1,
22,
800,
3726,
3726,
31,
57,
21,
726,
121,
23012,
968,
16,
6488,
1817,
15,
113,
7644,
19,
14,
3893,
1817,
50,
14315,
69,
34,
13,
22,
1,
22,
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 SSO
===
I understand SSO as the one time login for all the applications connected. I would like to know more about SSO and how exactly it is achieved | 0 | [
2,
98,
25,
13,
18,
656,
800,
3726,
3726,
31,
1369,
13,
18,
656,
28,
14,
53,
85,
6738,
108,
26,
65,
14,
3767,
2587,
9,
31,
83,
101,
20,
143,
91,
88,
13,
18,
656,
17,
184,
1890,
32,
25,
3153,
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,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... |
Reading the local password policy programmatically.
===
Are there Windows API functions that allows reading what the current password policy is? For instance, minimum length, complexity etc.
If not reading, is there a way to verify a password against the policy programmatically?
| 0 | [
2,
1876,
14,
375,
20884,
1486,
625,
6732,
1326,
9,
800,
3726,
3726,
50,
80,
1936,
21,
2159,
3719,
30,
2965,
1876,
98,
14,
866,
20884,
1486,
25,
60,
26,
4851,
15,
5187,
1476,
15,
12745,
2722,
9,
100,
52,
1876,
15,
25,
80,
21,
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,
0,
0,
0,
0,
0,
0... |
What is your favorite Delphi open source functional testing tool?
===
I'm aware of [Selenium][1] wich is a very good open source automated website testing.
Is there any equivalent open source tool for Win32 Delphi Applications functional testing ?
After a quick google I've found this one : [EFT][2]
So my ques... | 0 | [
2,
98,
25,
154,
3839,
23030,
368,
1267,
7652,
4431,
5607,
60,
800,
3726,
3726,
31,
22,
79,
3854,
16,
636,
18,
20110,
2187,
500,
2558,
165,
500,
13,
13583,
25,
21,
253,
254,
368,
1267,
14904,
2271,
4431,
9,
25,
80,
186,
4602,
368... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 create a .NET web application without using IIS?
===
I need to deploy a web application on several laptops (although it is a web application, it is intended to run via `localhost` only - thus the need to deploy on several different machines).
Normally I would go to IIS and right click a directory to create a ... | 0 | [
2,
92,
31,
1600,
21,
13,
9,
2328,
2741,
3010,
366,
568,
595,
18,
60,
800,
3726,
3726,
31,
376,
20,
17617,
21,
2741,
3010,
27,
238,
12294,
18,
13,
5,
8655,
32,
25,
21,
2741,
3010,
15,
32,
25,
2081,
20,
485,
1197,
13,
1,
15580... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
SRV record lookup with PHP
===
If you type
nslookup -type=SRV _xmpp-server._tcp.gmail.com
(or use the dig command in OSX) you get some SRV records relating to google chat
I would like to replicate this functionality in PHP, does anyone have any good ideas how to do this?
I would like to avoid using exe... | 0 | [
2,
13,
18,
10359,
571,
361,
576,
29,
13,
26120,
800,
3726,
3726,
100,
42,
1001,
13,
2172,
5810,
576,
13,
8,
4474,
3726,
18,
10359,
13,
1,
396,
79,
3421,
8,
10321,
106,
9,
1,
38,
7439,
9,
263,
8079,
9,
960,
13,
5,
248,
275,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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++ constructors
===
After creating a instance of a class, can we invoke the constructor explicitly?
For example
class A{
A(int a)
{
}
}
A instance;
instance.A(2);
Can we do this?
| 0 | [
2,
272,
20512,
6960,
248,
18,
800,
3726,
3726,
75,
2936,
21,
4851,
16,
21,
718,
15,
92,
95,
28371,
14,
6960,
248,
13108,
60,
26,
823,
718,
21,
1,
21,
5,
6391,
21,
6,
13,
1,
13,
1,
13,
1,
21,
4851,
73,
4851,
9,
58,
5,
135... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
WPF: Spilt GridView header into two rows where the bottom row is seperated into two colums
===
I´m trying to separate a gridViewColumn into two rows. Im using default style for the listView. Its no problem to separate the column header into two rows, but it seems like the content is placed over the original style with... | 0 | [
2,
619,
7721,
45,
13,
18,
10091,
38,
7354,
4725,
157,
106,
77,
81,
11295,
113,
14,
2129,
3131,
25,
10332,
106,
1669,
77,
81,
326,
4404,
18,
800,
3726,
3726,
31,
307,
749,
20,
1725,
21,
7354,
4725,
716,
4404,
103,
77,
81,
11295,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Isolation level of automated BDD scenarios?
===
What isolation level should you be aiming for when automating your scenarios? Should they be completely isolated, as with proper unit tests (ie using mocks etc), or are they more akin to integration tests? | 0 | [
2,
13300,
662,
16,
14904,
334,
8096,
19611,
60,
800,
3726,
3726,
98,
13300,
662,
378,
42,
44,
15442,
26,
76,
3108,
79,
1880,
154,
19611,
60,
378,
59,
44,
1524,
6331,
15,
28,
29,
4119,
1237,
4894,
13,
5,
660,
568,
10506,
18,
2722... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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,
0,
0,
0,
0,
0,
0... |
Javascript: How to measure time taken by a function to execute
===
I need to get time in milliseconds. Please advive. | 0 | [
2,
8247,
8741,
45,
184,
20,
4058,
85,
658,
34,
21,
1990,
20,
15644,
800,
3726,
3726,
31,
376,
20,
164,
85,
19,
13436,
5007,
18,
9,
2247,
21,
43,
21265,
9,
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,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... |
Why does regex "[^<]*<\\?" exhibit exponential time on plain text?
===
Using ICU 4.0 regex library, I find that the following regex is exhibiting exponential time:
actual: "[^<]*<\?"
C code: "[^<]*<\\?"
Aim: find "<?" where there is no other "<" before it
When running this regex on plain text w... | 0 | [
2,
483,
630,
7953,
1706,
13,
7,
2558,
1,
500,
2483,
1,
60,
7,
7454,
22705,
85,
27,
3748,
1854,
60,
800,
3726,
3726,
568,
13,
22722,
268,
9,
387,
7953,
1706,
1248,
15,
31,
477,
30,
14,
249,
7953,
1706,
25,
25581,
22705,
85,
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... |
Custom Cursor in a Swing JDialog
===
I have a Java Swing application, developed on Mac OS X 10.5 using Java 1.5.
I'm trying to make a custom cursor appear when the user moves the mouse over some text in a dialog. The cursor never changes, though.
When I don't use a JFrame instead of a JDialog, the cursor does c... | 0 | [
2,
5816,
29588,
19,
21,
5587,
487,
4286,
5567,
800,
3726,
3726,
31,
57,
21,
8247,
5587,
3010,
15,
885,
27,
1572,
13,
759,
993,
332,
9,
264,
568,
8247,
137,
9,
264,
9,
31,
22,
79,
749,
20,
233,
21,
5816,
29588,
1893,
76,
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... |
Working out the previous and next index in an array
===
I've got a 1-based array of four items which I need to traverse. For a given index in the array, I need to work out the index of the next item, and the index of the previous item. This sounds simple but the array needs to wrap around. So when you are at the begin... | 0 | [
2,
638,
70,
14,
1158,
17,
328,
4348,
19,
40,
7718,
800,
3726,
3726,
31,
22,
195,
330,
21,
137,
8,
1281,
7718,
16,
222,
3755,
56,
31,
376,
20,
15810,
9,
26,
21,
504,
4348,
19,
14,
7718,
15,
31,
376,
20,
170,
70,
14,
4348,
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... |
De Serializing a list of strings without creating a new class?
===
I have an XML configuration file with a collection of strings like so:
<SomeSetting>value</SomeSetting>
<SomeOtherSetting>value</SomeOtherSetting>
<TypesOfThings>
<Thing>Type 1</Thing>
<Thing>Type 2</Thing>
<Thing>... | 0 | [
2,
121,
5956,
3335,
21,
968,
16,
7887,
366,
2936,
21,
78,
718,
60,
800,
3726,
3726,
31,
57,
40,
23504,
8091,
3893,
29,
21,
1206,
16,
7887,
101,
86,
45,
13,
1,
3220,
19831,
1,
15165,
1,
118,
3220,
19831,
1,
13,
1,
3220,
9539,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Only getting one element returned, OO PHP
===
class Score
{
var $score;
var $name;
var $dept;
var $date;
function Score($score, $name, $dept, $date)
{
$this->scores = ($score);
$this->name = ($name);
$this->dept = ($dept);
$this->date = ($date);
}
function return_scor... | 0 | [
2,
104,
1017,
53,
4520,
587,
15,
13,
4328,
13,
26120,
800,
3726,
3726,
718,
1618,
13,
1,
4033,
5579,
15077,
73,
4033,
5579,
7259,
73,
4033,
5579,
17309,
38,
73,
4033,
5579,
8209,
73,
1990,
1618,
5,
4403,
15077,
15,
5579,
7259,
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... |
Is converting my Apps to .Net a really good idea?
===
All my applications are developed in Native Code. I am hesitant to move to .Net because of all the negatives that I hear, such as:
1. Slow response time
2. Lock-In into Windows
3. Dependance on huge .Net run-time that makes installation a pain and slow as well... | 0 | [
2,
25,
19583,
51,
4865,
18,
20,
13,
9,
2328,
21,
510,
254,
882,
60,
800,
3726,
3726,
65,
51,
3767,
50,
885,
19,
1275,
1797,
9,
31,
589,
22821,
20,
780,
20,
13,
9,
2328,
185,
16,
65,
14,
3682,
18,
30,
31,
990,
15,
145,
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... |
Why SQL Server go slow when using variables?
===
I have a sql query that runs super fast, around one second, when not using variables, like:
WHERE id BETWEEN 5461094 and 5461097
But when I have:
declare @firstId int
declare @lastId int
set @firstId = 5461094
set @lastId = 54610... | 0 | [
2,
483,
4444,
255,
8128,
162,
2276,
76,
568,
12157,
60,
800,
3726,
3726,
31,
57,
21,
4444,
255,
25597,
30,
1461,
1026,
1512,
15,
140,
53,
153,
15,
76,
52,
568,
12157,
15,
101,
45,
113,
4924,
128,
5896,
17330,
4588,
17,
5896,
173... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Subversion Hook
===
I am working in a project where there are configuration files, one in number for each of the environments where the application would be deployed.
When a developer modifies one of these files, the developer should not be allowed to check-in the file individually, but check-in all the files toget... | 0 | [
2,
972,
10898,
5559,
800,
3726,
3726,
31,
589,
638,
19,
21,
669,
113,
80,
50,
8091,
6488,
15,
53,
19,
234,
26,
206,
16,
14,
11246,
113,
14,
3010,
83,
44,
6698,
9,
76,
21,
10058,
7226,
12970,
53,
16,
158,
6488,
15,
14,
10058,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
PHP/MySQL: Retrieving the last *full* weeks entries
===
I'm currently using the following SQL for retrieving the last seven days worth of entries from a table:
purchased >= date_sub(now() ,interval 7 day)
However, I need to change this so it retrieves the last full weeks worth of entries (midnight Saturday t... | 0 | [
2,
13,
26120,
118,
915,
18,
22402,
45,
13,
6239,
3272,
8397,
14,
236,
1637,
13727,
2483,
1342,
11399,
800,
3726,
3726,
31,
22,
79,
871,
568,
14,
249,
4444,
255,
26,
13,
6239,
3272,
8397,
14,
236,
810,
509,
2715,
16,
11399,
37,
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... |
MouseWheel not working when published movie has wmode="transparent"
===
I'm experiencing a bug with a published flash movie. When I embed the movie in an HTML page (with SWFObject 2.1), and assing it the wmode param value of 'transparent', all my functions based on the MouseWheel event stop working. The movie is based... | 0 | [
2,
7567,
8229,
52,
638,
76,
467,
1308,
63,
619,
15570,
3726,
7,
7028,
18908,
7,
800,
3726,
3726,
31,
22,
79,
15138,
21,
6256,
29,
21,
467,
4433,
1308,
9,
76,
31,
11911,
69,
14,
1308,
19,
40,
13,
15895,
2478,
13,
5,
1410,
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... |
Add select attribute to Html.DropDownList using JQuery
===
I have the the following html elements:
<tr>
<td> <label for="casenumber">Case:</label></td>
<td><%=Html.TextBox("casenumber", "", new Dictionary<string, object>
{
... | 0 | [
2,
3547,
5407,
35,
14755,
20,
13,
15895,
9,
12361,
2968,
5739,
568,
487,
8190,
93,
800,
3726,
3726,
31,
57,
14,
14,
249,
13,
15895,
2065,
45,
13,
1,
6384,
1,
13,
1,
38,
43,
1,
13,
1,
21018,
26,
3726,
7,
10325,
16299,
7,
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... |
STL String to lower case
===
I want to convert an STL String to lowercase. I am aware of the function tolower() however in the past I have had issues with this function and it is hardly ideal anyway as use with a string would require iterating through each character.
Is there an alternative which works 100% of the... | 0 | [
2,
354,
255,
3724,
20,
987,
610,
800,
3726,
3726,
31,
259,
20,
8406,
40,
354,
255,
3724,
20,
987,
10325,
9,
31,
589,
3854,
16,
14,
1990,
20,
17591,
5,
6,
207,
19,
14,
640,
31,
57,
41,
1549,
29,
48,
1990,
17,
32,
25,
5943,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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#.NET Importing a registry hive and parsing its contents
===
I have been given a .Hive file from a registry which i have to parse and use the contents as part of a html report(from this i assume i have to convert to text somehow). The whole thing must be done within the program so i cant just convert the hive file an... | 0 | [
2,
272,
5910,
9,
2328,
9010,
68,
21,
18269,
25535,
17,
2017,
18,
68,
82,
8478,
800,
3726,
3726,
31,
57,
74,
504,
21,
13,
9,
252,
1284,
3893,
37,
21,
18269,
56,
31,
57,
20,
2017,
870,
17,
275,
14,
8478,
28,
141,
16,
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... |
tb_event_death when single stepping in dbx
===
When I am single stepping through one thread of a multi threaded program, the debugger gets interrupted with:
0x(some hex ref) : tdb_event_death : ret
dbx: thread has exited -- next aborted
My guess is a thread somewhere in the program I am debugging h... | 0 | [
2,
13,
11872,
1,
4943,
38,
1,
13921,
76,
345,
9451,
19,
13,
9007,
396,
800,
3726,
3726,
76,
31,
589,
345,
9451,
120,
53,
9322,
16,
21,
1889,
9322,
69,
625,
15,
14,
121,
2345,
11356,
3049,
6354,
29,
45,
713,
396,
5,
3220,
24,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Classic ASP: Can the "Application" global object cause dead lock?
===
In **classic ASP** there is a global object called **"Application"** that is accessed simultaniously by all sessions.
As the "Application" object is a shared resource, can it cause **dead locks?** | 0 | [
2,
2732,
28,
306,
45,
92,
14,
13,
7,
2552,
20669,
7,
2062,
3095,
1679,
828,
3991,
60,
800,
3726,
3726,
19,
13,
1409,
19824,
28,
306,
1409,
80,
25,
21,
2062,
3095,
227,
13,
1409,
7,
2552,
20669,
7,
1409,
30,
25,
12904,
4861,
10... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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# programatically using a string as object name when instantiating an object
===
This is a contrived example, but lets say I have declared objects:
CustomObj fooObj;
CustomObj barObj;
CustomObj bazObj;
And I have an string array:
string[] stringarray = new string[] {"foo","bar","baz"};
... | 0 | [
2,
272,
5910,
625,
721,
8438,
568,
21,
3724,
28,
3095,
204,
76,
6322,
49,
1880,
40,
3095,
800,
3726,
3726,
48,
25,
21,
1065,
3367,
4763,
823,
15,
47,
6884,
395,
31,
57,
2482,
3916,
45,
5816,
111,
11741,
4310,
4328,
11741,
73,
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... |
C++: Returning an Iterator
===
I have a function which searches an STL container then returns the iterator when it finds the position, however I am getting some funny error messages, can tell me what I am doing wrong?
Function:
std::vector< CClass >::iterator CClass::SearchFunction( const std::string& strFie... | 0 | [
2,
272,
20512,
45,
2485,
40,
32,
106,
3457,
800,
3726,
3726,
31,
57,
21,
1990,
56,
19994,
40,
354,
255,
12147,
94,
4815,
14,
32,
106,
3457,
76,
32,
3797,
14,
649,
15,
207,
31,
589,
1017,
109,
5066,
7019,
7561,
15,
92,
494,
55,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 testing fake repository, how can I test the GetById method without first adding an entity
===
My understanding is that you have to write unit tests that isolate functionality. So given a repository class that has this method:
Entity GetById(Guid id)
and a *fake* implementation (using a Dictionary<Guid, ... | 0 | [
2,
1237,
4431,
7031,
24869,
15,
184,
92,
31,
1289,
14,
164,
779,
1340,
2109,
366,
64,
4721,
40,
9252,
800,
3726,
3726,
51,
3260,
25,
30,
42,
57,
20,
2757,
1237,
4894,
30,
25068,
18548,
9,
86,
504,
21,
24869,
718,
30,
63,
48,
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... |
Windows Programming: How to put a file that is frequently accessed in the OS cache?
===
Windows Programming: How to put a file that is frequently accessed in the OS cache? | 0 | [
2,
1936,
3143,
45,
184,
20,
442,
21,
3893,
30,
25,
3086,
12904,
19,
14,
13,
759,
16522,
60,
800,
3726,
3726,
1936,
3143,
45,
184,
20,
442,
21,
3893,
30,
25,
3086,
12904,
19,
14,
13,
759,
16522,
60,
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,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... |
WindowsForms designer and GenericForm
===
Why doesn't the designer work if you inherit from an own written genericform?
Suppose I've got the following genericform
public class GenericForm<T> : System.Windows.Forms.Form
{
public T Test
{
get;
set;
}
... | 0 | [
2,
1936,
4190,
18,
4742,
17,
12733,
4190,
800,
3726,
3726,
483,
1437,
22,
38,
14,
4742,
170,
100,
42,
17569,
37,
40,
258,
642,
12733,
4190,
60,
5787,
31,
22,
195,
330,
14,
249,
12733,
4190,
317,
718,
12733,
4190,
1,
38,
1,
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... |
How to retrieve cartridges ink level programmatically (Epson StatusMonitor + Mac OS X) ?
===
I'm looking for a way to query the ink level for my Epson DX 4050 on Mac OS X. There is some UI called EPSON StatusMonitor to display cartridges levels graphically, but I'd like to get it from the command-line so it can feed a... | 0 | [
2,
184,
20,
11917,
12873,
18,
19,
197,
662,
625,
6732,
1326,
13,
5,
3492,
528,
1782,
2111,
242,
248,
2754,
1572,
13,
759,
993,
6,
13,
60,
800,
3726,
3726,
31,
22,
79,
699,
26,
21,
161,
20,
25597,
14,
19,
197,
662,
26,
51,
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... |
Optional Parameter in MVEL Functions
===
Is there a way to get MVEL 2.0 ( http://mvel.codehaus.org/ ) to work with functions with optional parameters?
I would like to be able to eval this:
trunc('blahblah',2)
but also
trunc('blahblah',2,'[...]');
Now i have tried:
def trunc(param1,param2,param3) { .... | 0 | [
2,
12832,
18906,
19,
307,
6532,
3719,
800,
3726,
3726,
25,
80,
21,
161,
20,
164,
307,
6532,
172,
9,
387,
13,
5,
7775,
6903,
79,
6532,
9,
9375,
7972,
9,
5583,
118,
13,
6,
20,
170,
29,
3719,
29,
12832,
12905,
60,
31,
83,
101,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
De/Serialize directly To/From XML Linq
===
Is there any way to de/serialize an object without round-tripping a XmlDocument/temp string? I am looking for something like the following:
class Program
{
static void Main(string[] args)
{
XDocument doc = new XDocument();
... | 0 | [
2,
121,
118,
4104,
2815,
2952,
1703,
20,
118,
2665,
23504,
6294,
1251,
800,
3726,
3726,
25,
80,
186,
161,
20,
121,
118,
4104,
2815,
2952,
40,
3095,
366,
560,
8,
3367,
5574,
21,
23504,
28132,
118,
9577,
3724,
60,
31,
589,
699,
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... |
Fetch data from Other Websites
===
Even before telling my question, will tell you that this is a very vague question. But please let me know if you have any similar ideas.
I am actually trying to write a website of my own locally using ASP.Net. I actually wanted to try and simulate a website with trading and sto... | 0 | [
2,
18312,
1054,
37,
89,
13931,
800,
3726,
3726,
166,
115,
2497,
51,
1301,
15,
129,
494,
42,
30,
48,
25,
21,
253,
14800,
1301,
9,
47,
2247,
408,
55,
143,
100,
42,
57,
186,
835,
3478,
9,
31,
589,
1121,
749,
20,
2757,
21,
2271,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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/IIS friendly in-memory antivirus scanning
===
I'm looking for a solution that would let me scan files on the fly. It would need to integrate nicely with either with IIS(6.0 or 7.0) or ASP.NET. I spent some time trying to find something on the Internet but unfortunately all I've found is a COM based solution that... | 0 | [
2,
13,
9,
2328,
118,
2865,
18,
4753,
19,
8,
790,
5171,
93,
1082,
14792,
15863,
800,
3726,
3726,
31,
22,
79,
699,
26,
21,
4295,
30,
83,
408,
55,
8313,
6488,
27,
14,
2855,
9,
32,
83,
376,
20,
18399,
24050,
29,
694,
29,
595,
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... |
What sort of Business Applications do you build with .NET, Java, PHP or Ruby?
===
Yesterday I asked a question about [COBOL guy moving to modern platform][1]s and I got some great answers.
I was thinking about what kind of applications get built with java or .net? I know for sure that most corporate portals, blogs,... | 4 | [
2,
98,
2058,
16,
508,
3767,
107,
42,
1895,
29,
13,
9,
2328,
15,
8247,
15,
13,
26120,
54,
10811,
60,
800,
3726,
3726,
7124,
31,
411,
21,
1301,
88,
636,
716,
6966,
1244,
1219,
20,
773,
2452,
500,
2558,
165,
500,
18,
17,
31,
330,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Custom Rails authentication / authorization
===
I know questions of this kind [have][1] [been][2] [asked][3] before, but my situation differs a little.
On my rails app I have to validate the user login against an existing repository and then control authorization to given modules. So, I don't want the solution I go... | 0 | [
2,
5816,
2240,
18,
27963,
13,
118,
22677,
800,
3726,
3726,
31,
143,
2346,
16,
48,
825,
636,
5815,
500,
2558,
165,
500,
636,
863,
219,
500,
2558,
135,
500,
636,
20310,
69,
500,
2558,
240,
500,
115,
15,
47,
51,
1858,
14761,
21,
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... |
Make Visual Studio understand CamelCase when hitting ctrl and cursor keys
===
**Is there a way that I can configure Visual Studio 2008 to understand CamelCase?** Specifically, I'd like to be able to get `ctrl + right` or `left` cursor to take me to a subsection of a variable or type name.
i.e., if my cursor was at... | 0 | [
2,
233,
3458,
1120,
1369,
15386,
10325,
76,
6687,
13,
4812,
6362,
17,
29588,
5534,
800,
3726,
3726,
13,
1409,
403,
80,
21,
161,
30,
31,
92,
1065,
15951,
3458,
1120,
570,
20,
1369,
15386,
10325,
60,
1409,
3524,
15,
31,
22,
43,
101,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
VS2008 only debug one page cycle
===
would really appreciate some thoughts on the following issue.
When I attached to the w3wp.exe process. It start to load the symbols then the debugger stops before ever hitting a breakpoint. If I then restart the w3wp process and refresh “Attach to process” I can debug but only... | 0 | [
2,
4611,
2753,
104,
121,
16254,
53,
2478,
4150,
800,
3726,
3726,
83,
510,
8831,
109,
3064,
27,
14,
249,
1513,
9,
76,
31,
3638,
20,
14,
619,
240,
13790,
9,
1706,
62,
953,
9,
32,
799,
20,
6305,
14,
9794,
94,
14,
121,
2345,
11356... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 this java generic cast ?
===
How can I make this java generic cast ?
public interface IField {
}
class Field implements IField { // package private class
}
public class Form {
private List<Field> fields;
public List<IFiel... | 0 | [
2,
184,
92,
31,
233,
48,
8247,
12733,
1325,
13,
60,
800,
3726,
3726,
184,
92,
31,
233,
48,
8247,
12733,
1325,
13,
60,
317,
6573,
31,
1109,
13,
1,
13,
1,
718,
575,
8713,
18,
31,
1109,
13,
1,
12894,
6030,
932,
718,
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... |
How to host multiple ASP.NET websites on one shared hosting account?
===
With PHP, I can make numerous PHP websites locally and then upload each of them to its own sub-directory of my PHP hosting service.
However, with ASP.NET, it seems that I can only upload my ASP.NET to the root of my hosting service. If I uplo... | 0 | [
2,
184,
20,
2015,
1886,
28,
306,
9,
2328,
13931,
27,
53,
2592,
10637,
2176,
60,
800,
3726,
3726,
29,
13,
26120,
15,
31,
92,
233,
1548,
13,
26120,
13931,
6680,
17,
94,
71,
8294,
206,
16,
105,
20,
82,
258,
972,
8,
10197,
93,
16,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 internationalise text in the database?
===
Having a fully internationalised application is a necessity if you want to sell worldwide.
In Java we're using resource bundles and that solves things for static text codeside.
But what do you do about text that is stored in the database? Starting with static d... | 0 | [
2,
184,
107,
42,
294,
2628,
1854,
19,
14,
6018,
60,
800,
3726,
3726,
452,
21,
2337,
294,
2541,
3010,
25,
21,
14981,
100,
42,
259,
20,
3344,
3497,
9,
19,
8247,
95,
22,
99,
568,
6577,
10194,
18,
17,
30,
8402,
18,
564,
26,
12038,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Which event raise on cell value change in Infragistic UltraGrid ?
===
I am using Infragistic UltraGrid in window application.
I need a event which is raised on cell value change.
I try many events like AfterCellActivate,AfterCellUpdate but uanble to find right one.
Please suggest me. | 0 | [
2,
56,
807,
3972,
27,
1667,
1923,
753,
19,
19,
22133,
3771,
6885,
16375,
13,
60,
800,
3726,
3726,
31,
589,
568,
19,
22133,
3771,
6885,
16375,
19,
1463,
3010,
9,
31,
376,
21,
807,
56,
25,
1127,
27,
1667,
1923,
753,
9,
31,
1131,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 tools does your team use for writting user manuals?
===
Basic requests are:
- human readable / text format (for easy version control)
- online (for collaboration)
- easy formatting (markdown ok, html is too much)
- strict formatting (so authors don't invent new types of titles,
bullets etc.)
... | 0 | [
2,
98,
4672,
630,
154,
173,
275,
26,
20127,
1203,
4155,
5132,
18,
60,
800,
3726,
3726,
2125,
12279,
50,
45,
13,
8,
585,
1302,
579,
13,
118,
1854,
2595,
13,
5,
1106,
2010,
615,
569,
6,
13,
8,
2087,
13,
5,
1106,
4004,
6,
13,
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... |
Is it possible to use Netbeans for working on VB6 projects?
===
I have to work on several VB6 legacy projects and despite some good VB6 plugins (CodeSMART for example) I hate the IDE more an more, especially now where I have the opportunity to work with Java/Netbeans on a new project. Unfortunatly it will stay that wa... | 0 | [
2,
25,
32,
938,
20,
275,
4275,
863,
5950,
26,
638,
27,
13,
20468,
379,
2314,
60,
800,
3726,
3726,
31,
57,
20,
170,
27,
238,
13,
20468,
379,
7780,
2314,
17,
869,
109,
254,
13,
20468,
379,
10922,
108,
18,
13,
5,
9375,
18,
9534,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 some way to commit a file "partially" in TortoiseSVN?
===
I'd like to commit just a part of a file using TortoiseSVN, is there some way to do that?
I'll give an example to make it clearer why I want to do that.
I have a file with some defines that are replaced in the build process, something like this:
... | 0 | [
2,
25,
80,
109,
161,
20,
9686,
21,
3893,
13,
7,
3091,
49,
1326,
7,
19,
25691,
18,
16578,
60,
800,
3726,
3726,
31,
22,
43,
101,
20,
9686,
114,
21,
141,
16,
21,
3893,
568,
25691,
18,
16578,
15,
25,
80,
109,
161,
20,
107,
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,
1,
1,
1... |
Webapps for Blackberry
===
I am looking for a good Environment (GUI based Editor) for blackberry webapps.
e.g., is there a Eclipse plugin out there ? | 0 | [
2,
2741,
7753,
18,
26,
27367,
800,
3726,
3726,
31,
589,
699,
26,
21,
254,
2307,
13,
5,
7215,
432,
1835,
6,
26,
27367,
2741,
7753,
18,
9,
13,
62,
9,
263,
9,
15,
25,
80,
21,
11652,
10922,
108,
70,
80,
13,
60,
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,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... |
Load new data, restart mysql, clear cache / cookes.. what am I missing?
===
New id=7005 permalink=beef-ground-85%25-lean-meat-15%25-fat-raw
Old id=7005 permalink=beef-ground-85pct-lean-meat-_15pct-fat-raw
I've done all the stuff in the title, but the old entries keep coming up in local development on ... | 0 | [
2,
6305,
78,
1054,
15,
22767,
51,
18,
22402,
15,
1207,
16522,
13,
118,
16599,
18,
9,
9,
98,
589,
31,
2863,
60,
800,
3726,
3726,
78,
4924,
3726,
7915,
264,
416,
540,
6258,
3726,
8506,
410,
8,
8810,
8,
21853,
1811,
8,
413,
210,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 declare/define a class with template template parameters without using an extra template parameter
===
Consider the following use of template template parameters...
template <typename X>
struct A
{
X t;
};
template <typename T, template <typename T> class C >
struct B
... | 0 | [
2,
184,
20,
10123,
118,
546,
7509,
21,
718,
29,
22894,
22894,
12905,
366,
568,
40,
2230,
22894,
18906,
800,
3726,
3726,
3563,
14,
249,
275,
16,
22894,
22894,
12905,
9,
9,
9,
22894,
13,
1,
4474,
7259,
993,
1,
13,
10346,
21,
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... |
Google Maps GeoCoding always uses browser language
===
I am using the google ajax api loader and want to get all the information in german
so I am loading the maps api like this
<code>
google.load("maps", "2", {"language" : "ger"});
</code>
I have tried deu, ger, de, de_DE and even jp_JP but no success. | 0 | [
2,
8144,
6867,
6389,
15458,
550,
2027,
16495,
816,
800,
3726,
3726,
31,
589,
568,
14,
8144,
20624,
21,
2159,
6305,
106,
17,
259,
20,
164,
65,
14,
676,
19,
548,
86,
31,
589,
12797,
14,
6867,
21,
2159,
101,
48,
13,
1,
9375,
1,
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... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.