unified_texts stringlengths 32 30.1k | OpenStatus_id int64 0 4 | input_ids list | token_type_ids list | attention_mask list |
|---|---|---|---|---|
Trouble reading XML file on system reboot
===
I am writing this app in windows form c#. When user exit from this app , it asks for system reboot. While exiting it writes some XML file and saves the file in current directory(bin/debug)....On system restart my app restarts itself (by reading value from registry)and che... | 1 | [
2,
2572,
1876,
23504,
3893,
27,
329,
25312,
800,
3726,
3726,
31,
589,
1174,
48,
4865,
19,
1936,
505,
272,
5910,
9,
76,
4155,
4350,
37,
48,
4865,
13,
15,
32,
3913,
26,
329,
25312,
9,
133,
24999,
32,
6215,
109,
23504,
3893,
17,
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... |
I need to write a SELECT statement such that it prints the percentage of the answer choices among all users
===
I have a table like this, with three fields:
**User | Question# | Answer**
The answer choices are only 1, 2, 3, 4 or 5
I need to write a SELECT statement such that it prints the percentage of the an... | 0 | [
2,
31,
376,
20,
2757,
21,
5407,
3331,
145,
30,
32,
12202,
14,
5780,
16,
14,
1623,
10978,
497,
65,
3878,
800,
3726,
3726,
31,
57,
21,
859,
101,
48,
15,
29,
132,
2861,
45,
13,
1409,
16704,
13,
1,
1301,
5910,
13,
1,
1623,
1409,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Nano on Amazon Linux Mangling Text in Config Files
===
I am attempting to edit my httpd.conf file on a ec2 instance of amazon linux using nano while SSHed into it on my Macbook Air running OSX 10.7.4.
i am attempting to change the documentroot to "/home/ec2-user/www" only to discover that what was saved to the fil... | 0 | [
2,
10371,
27,
8059,
13024,
17200,
802,
1854,
19,
13,
14093,
2816,
6488,
800,
3726,
3726,
31,
589,
6314,
20,
9392,
51,
7775,
43,
9,
14093,
3893,
27,
21,
6695,
135,
4851,
16,
8059,
13024,
568,
10371,
133,
13,
18,
7399,
77,
32,
27,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Obtain pointer to virtual method?
===
I have a function that needs to call a virtual method many times in a loop and was hoping there would be a way to avoid the overhead of a vtable lookup every time. I thought maybe obtaining a pointer to the method would be a good way round this. The code below shows what I'm tryin... | 0 | [
2,
5545,
454,
106,
20,
6599,
2109,
60,
800,
3726,
3726,
31,
57,
21,
1990,
30,
2274,
20,
645,
21,
6599,
2109,
151,
436,
19,
21,
5293,
17,
23,
3935,
80,
83,
44,
21,
161,
20,
2658,
14,
8860,
16,
21,
566,
5924,
361,
576,
352,
85... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Displaying Multiple CALayers one after another continuously for 60 seconds?
===
I have a situation over here.
I am using AVFoundation to capture the camera frame.
Now what i want to do is that for certain frames, i need to display a picture which revolves in a step by step fashion.
What I am trying to do is tha... | 0 | [
2,
17418,
1886,
1658,
15187,
18,
53,
75,
226,
11738,
26,
2083,
2582,
60,
800,
3726,
3726,
31,
57,
21,
1858,
84,
235,
9,
31,
589,
568,
14026,
12235,
857,
20,
3683,
14,
3336,
3523,
9,
130,
98,
31,
259,
20,
107,
25,
30,
26,
1200,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How do i replace unknown characters <?> with sed?
===
Today i tried to import some MP3 Files from an external drive to my music folder, when i noticed that many of my tags are getting wrong interpreted. For example, files with letters such as á,ó,í,ö,ä etc. are shown as a question mark within a rectangle, something li... | 0 | [
2,
184,
107,
31,
3934,
2562,
1766,
13,
1,
60,
1,
29,
13924,
60,
800,
3726,
3726,
786,
31,
794,
20,
9010,
109,
4628,
240,
6488,
37,
40,
4886,
1493,
20,
51,
232,
19294,
15,
76,
31,
2711,
30,
151,
16,
51,
3383,
18,
50,
1017,
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... |
Unable to hit remote WCF service using KendoGrid
===
I have developed a REST based WCF application that provides JSON as output which support only GET protocol. I am able to successfully host the service in IIS7 and consume it through the browser clients.
Then, I attempted to hit the same services using KendoGrid a... | 0 | [
2,
2343,
20,
770,
5388,
11801,
410,
365,
568,
2639,
537,
16375,
800,
3726,
3726,
31,
57,
885,
21,
760,
432,
11801,
410,
3010,
30,
1927,
487,
528,
28,
5196,
56,
555,
104,
164,
8494,
9,
31,
589,
777,
20,
3673,
2015,
14,
365,
19,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to learn from opensource projects written in C language?
===
I used to read some codes in coreutils.But it's really frustrating when I found too-much portability support code.so can someone recommend a good opensource project written in C
language for beginner or a good way to learn from it?And I try to understa... | 4 | [
2,
184,
20,
2484,
37,
368,
12097,
2314,
642,
19,
272,
816,
60,
800,
3726,
3726,
31,
147,
20,
1302,
109,
11358,
19,
2884,
14255,
18,
9,
811,
32,
22,
18,
510,
25568,
76,
31,
216,
266,
8,
18422,
1295,
4091,
555,
1797,
9,
656,
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... |
Assigning NULL to a variable in PHP: what does that do?
===
Coming from a C background, I know what `NULL` means in C. I am currently a professional PHP programmer and am maintaining code of a former co-worker. Anyway, I'm encountering loops, where at the end of the loop several variables are set to `NULL` like so: `$... | 0 | [
2,
13952,
68,
16203,
20,
21,
7612,
19,
13,
26120,
45,
98,
630,
30,
107,
60,
800,
3726,
3726,
880,
37,
21,
272,
2395,
15,
31,
143,
98,
13,
1,
4215,
211,
1,
1108,
19,
272,
9,
31,
589,
871,
21,
736,
13,
26120,
17968,
17,
589,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Simplecart EMAIL
===
I can not put the cart SIMPLECART data in the message body.
Work with ASP.
I have this code:
<script language="javascript">
me.emailCheckout = function() {
itemsString = "";
for( var current in me.items ){
var item = me.items[current];
itemsString +... | 0 | [
2,
1935,
1367,
38,
8517,
800,
3726,
3726,
31,
92,
52,
442,
14,
6420,
1935,
1367,
38,
1054,
19,
14,
2802,
358,
9,
170,
29,
28,
306,
9,
31,
57,
48,
1797,
45,
13,
1,
8741,
816,
3726,
7,
1004,
1385,
8741,
7,
1,
55,
9,
62,
8079... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Functioning Socket read no longer works when called in AsyncTask
===
I'm making an app that sends a string to a server over a socket and then reads the output after the server has processed that data. It worked perfectly when it was my foreground task, but I have since used AsyncTask to show a process dialog while the... | 0 | [
2,
14175,
18482,
1302,
90,
1045,
693,
76,
227,
19,
21,
9507,
20255,
3656,
800,
3726,
3726,
31,
22,
79,
544,
40,
4865,
30,
11350,
21,
3724,
20,
21,
8128,
84,
21,
18482,
17,
94,
11137,
14,
5196,
75,
14,
8128,
63,
16697,
30,
1054,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 0 if day is lesser than 9 in sql
===
current value Jun **6** 2012 12:00:00:000AM
output required Jun **06** 2012 12:00:00:000AM
Only 0 needs to be added if value of day is lesser than 9.
Thank you in advance. | 0 | [
2,
3547,
713,
100,
208,
25,
8051,
119,
561,
19,
4444,
255,
800,
3726,
3726,
866,
1923,
7446,
13,
1409,
379,
1409,
563,
137,
21319,
45,
2032,
45,
3993,
765,
5196,
1390,
7446,
13,
1409,
3370,
1409,
563,
137,
21319,
45,
2032,
45,
399... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 copy production database to another production server - Rails
===
I am creating a Rails app for work and until I can install the app on a "in house" server, I am deploying it to Heroku so that we can start using it now. However, I am going to want to be able to copy its database with all of its data over to the... | 0 | [
2,
184,
20,
4344,
637,
6018,
20,
226,
637,
8128,
13,
8,
2240,
18,
800,
3726,
3726,
31,
589,
2936,
21,
2240,
18,
4865,
26,
170,
17,
163,
31,
92,
16146,
14,
4865,
27,
21,
13,
7,
108,
191,
7,
8128,
15,
31,
589,
17617,
68,
32,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
jQuery act on HTML elements with display:none
===
I've spent the last few days banging my head and searching Google and have not found an acceptable solution to this.
I am using [Twitter Bootstrap](http://twitter.github.com/bootstrap/components.html#navbar) to code a new site. We are using the Nav class and the buil... | 0 | [
2,
487,
8190,
93,
601,
27,
13,
15895,
2065,
29,
3042,
45,
15746,
800,
3726,
3726,
31,
22,
195,
1111,
14,
236,
310,
509,
24472,
51,
157,
17,
5792,
8144,
17,
57,
52,
216,
40,
12513,
4295,
20,
48,
9,
31,
589,
568,
636,
38,
13098,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
JavaScript: appendChild and registered event listeners
===
I'm using **appendChild** JavaScript method to move objects across DOM. Didn't have any problem until some user has complained that drag and drop doesn't work in **Safari Mobile** after DIV element is dropped to the table. Here is REDIPS.drag library that I'm ... | 0 | [
2,
8247,
8741,
45,
4865,
2451,
11287,
17,
3801,
807,
15672,
800,
3726,
3726,
31,
22,
79,
568,
13,
1409,
22358,
43,
11287,
1409,
8247,
8741,
2109,
20,
780,
3916,
464,
11859,
9,
223,
22,
38,
57,
186,
1448,
163,
109,
4155,
63,
11509,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Qt cannot use font loaded by Symbian code on S60 3rd
===
I need to load KhmerOS.ttf font to S60 3rd (my test device is Nokia 5730). After looking at https://bugreports.qt-project.org/browse/QTBUG-6611 and http://www.developer.nokia.com/Community/Wiki/Archived:Using_application-specific_custom_fonts_in_Symbian_C%2B%2B,... | 0 | [
2,
2593,
38,
1967,
275,
9978,
8572,
34,
13,
7261,
10035,
1797,
27,
13,
18,
3374,
203,
897,
800,
3726,
3726,
31,
376,
20,
6305,
24216,
759,
9,
38,
11720,
9978,
20,
13,
18,
3374,
203,
897,
13,
5,
915,
1289,
3646,
25,
24294,
6544,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Jquery Load Part of External HTML
===
Basicily i have a index.html shown below..
<html>
<head>
<title>UI Test: Main Menu</title>
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="general.js"></script>
</head>
<body... | 0 | [
2,
487,
8190,
93,
6305,
141,
16,
4886,
13,
15895,
800,
3726,
3726,
2125,
5768,
31,
57,
21,
4348,
9,
15895,
1721,
1021,
9,
9,
13,
1,
15895,
1,
13,
1,
1743,
1,
13,
1,
22235,
1,
5661,
1289,
45,
407,
11379,
1,
118,
22235,
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... |
What happens if synchronization variable is reassigned in java?
===
What happens in the following code? Does the synchronization work? This is an interview question.
class T
{
public static void main(String args[])
{
Object myObject = new Object();
synchronized... | 0 | [
2,
98,
5531,
100,
13,
16023,
1829,
7612,
25,
20880,
19,
8247,
60,
800,
3726,
3726,
98,
5531,
19,
14,
249,
1797,
60,
630,
14,
13,
16023,
1829,
170,
60,
48,
25,
40,
2421,
1301,
9,
718,
13,
38,
13,
1,
317,
12038,
11364,
407,
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... |
How to insert data from DB to html table?
===
How to insert data from DataBase or DataTable to html table?
| 1 | [
2,
184,
20,
14692,
1054,
37,
13,
9007,
20,
13,
15895,
859,
60,
800,
3726,
3726,
184,
20,
14692,
1054,
37,
6018,
54,
1054,
5924,
20,
13,
15895,
859,
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... | [
1,
1,
1,
1,
1,
1,
1,
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... |
Find/Cut string from first integer in MySQL
===
I'm stuck with a problem, in my database i've values like this:
GSB45-B,
GSBD60-01,
etc.
Now i need to get the values **GSB** / **GSBD** out of these strings. So in fact i need te first character from te start to the first integer.
Hopefully someone can help m... | 0 | [
2,
477,
118,
4118,
3724,
37,
64,
13820,
19,
51,
18,
22402,
800,
3726,
3726,
31,
22,
79,
4549,
29,
21,
1448,
15,
19,
51,
6018,
31,
22,
195,
4070,
101,
48,
45,
489,
18,
220,
2520,
8,
220,
15,
489,
18,
220,
43,
3374,
8,
3026,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
html image tag with base64 string (data uri scheme)
===
i get binary data for jpegs about every 50-200 ms, i convert this data to a base64 string and insert the string in the img tag with javascript.
var img = document.getElementById('img1');
img.src = 'data:image/jpeg;base64,' + b64str + '';
so when re... | 0 | [
2,
13,
15895,
1961,
3383,
29,
1000,
3470,
3724,
13,
5,
18768,
13,
3594,
4276,
6,
800,
3726,
3726,
31,
164,
14171,
1054,
26,
487,
20427,
18,
88,
352,
1222,
8,
4621,
4235,
15,
31,
8406,
48,
1054,
20,
21,
1000,
3470,
3724,
17,
1469... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Jquery image croppper
===
I'm using a plug in to perform cropping on a image.
If you download this plug in http://www.webmotionuk.co.uk/php-jquery-image-upload-and-crop-v11/ ,you can see this below line ,what does this do $max_file*1048576
If you see $max_file ,it is hardcoded with 3,they've also mentioned as M... | 0 | [
2,
487,
8190,
93,
1961,
9833,
8763,
800,
3726,
3726,
31,
22,
79,
568,
21,
10922,
19,
20,
2985,
4880,
5574,
27,
21,
1961,
9,
100,
42,
7121,
48,
10922,
19,
7775,
6903,
6483,
9,
14113,
15745,
2185,
9,
716,
9,
2185,
118,
26120,
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... |
possible to junit test a spring rest call?
===
is it possible to test a controller that contains a rest method inside?
@RequestMapping(value = "/user", method = RequestMethod.PUT,consumes="application/json")
public ResponseEntity<String>createNewAccount(HttpEntity<String>request) {
//do something
... | 0 | [
2,
938,
20,
7446,
242,
1289,
21,
1573,
760,
645,
60,
800,
3726,
3726,
25,
32,
938,
20,
1289,
21,
9919,
30,
1588,
21,
760,
2109,
572,
60,
13,
1,
99,
10351,
540,
5574,
5,
15165,
800,
13,
7,
118,
16704,
7,
15,
2109,
800,
3772,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
View canvas-element source code
===
There is a site with a neat canvas program that I'd like to play with. I'm new to canvas and html, but I think it works by having the canvas element programmed separately and called by a tag in the html. I have three questions:
Can I download and isolate the canvas element?
Is... | 0 | [
2,
1418,
9696,
8,
27567,
1267,
1797,
800,
3726,
3726,
80,
25,
21,
689,
29,
21,
15956,
9696,
625,
30,
31,
22,
43,
101,
20,
418,
29,
9,
31,
22,
79,
78,
20,
9696,
17,
13,
15895,
15,
47,
31,
277,
32,
693,
34,
452,
14,
9696,
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... |
Flotr Charts In JSp
===
Hi Can any one please tell me how to create line chart by taking values from database i to jsp pages. i tried in google but i cant find any output for flotr. please can any one help me out, its really very emergency need.i already posted the code in the above link but no output.i am strugglin... | 0 | [
2,
9319,
6384,
5158,
19,
487,
3401,
800,
3726,
3726,
4148,
92,
186,
53,
2247,
494,
55,
184,
20,
1600,
293,
1795,
34,
741,
4070,
37,
6018,
31,
20,
487,
3401,
4434,
9,
31,
794,
19,
8144,
47,
31,
2973,
477,
186,
5196,
26,
9319,
6... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Displaying the detailed information in a textblock as we scroll in horizontal listbox left or right
===
I am having a Horizontal listbox having usercontrol as items.
So the problem I am facing according to my scenario is that I have to display only 3 items at a time in Listbox which i have hardcoded by setting list... | 0 | [
2,
17418,
14,
6036,
676,
19,
21,
1854,
12048,
28,
95,
12159,
19,
10095,
968,
5309,
225,
54,
193,
800,
3726,
3726,
31,
589,
452,
21,
10095,
968,
5309,
452,
4155,
12898,
28,
3755,
9,
86,
14,
1448,
31,
589,
4325,
496,
20,
51,
12705... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Programmatically find main() method in collection of classes
===
I am working on a project that needs to take an arbitrary number of java files, compile them, jar them, then run them. The problem I'm facing is this: Which class do we run? Is it possible to find the entry point in a set of classes?
I'm willing to ma... | 0 | [
2,
625,
6732,
1326,
477,
407,
5,
6,
2109,
19,
1206,
16,
2684,
800,
3726,
3726,
31,
589,
638,
27,
21,
669,
30,
2274,
20,
247,
40,
17237,
234,
16,
8247,
6488,
15,
26561,
105,
15,
5112,
105,
15,
94,
485,
105,
9,
14,
1448,
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,
1,
1,
1,
1... |
Cakephp 2 Containable doesnt filter properly
===
I'm not sure if I'm doing something bad or this is actually the expected behaviour from Cake.
The following is my code:
$tickets = $this->TicketsPrice->Ticket->find('all',array(
'contain'=> array(
'TicketsType' => arra... | 0 | [
2,
8390,
26120,
172,
3717,
579,
5886,
11945,
7428,
800,
3726,
3726,
31,
22,
79,
52,
562,
100,
31,
22,
79,
845,
301,
896,
54,
48,
25,
1121,
14,
1727,
7727,
37,
8390,
9,
14,
249,
25,
51,
1797,
45,
5579,
1786,
7572,
18,
800,
5579... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How do I use a generated or temporary password when creating a new user through membership in C# MVC3?
===
I'm creating a client contact using Membership.CreateUser and I'd like to supply a generated password each time a contact is created. The production team will be setting up accounts for new client contacts.
Th... | 0 | [
2,
184,
107,
31,
275,
21,
6756,
54,
4700,
20884,
76,
2936,
21,
78,
4155,
120,
4363,
19,
272,
5910,
307,
8990,
240,
60,
800,
3726,
3726,
31,
22,
79,
2936,
21,
6819,
2203,
568,
4363,
9,
6037,
1373,
16704,
17,
31,
22,
43,
101,
20... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Design pattern for threadpooling
===
I currently have an application that has a large number of threads and this makes the application very large. Each thread is long-running, basically an infinite loop of polling for new emails then handling them. Each thread holds on to one SSL connection, which is why threading w... | 0 | [
2,
704,
3732,
26,
9322,
13378,
68,
800,
3726,
3726,
31,
871,
57,
40,
3010,
30,
63,
21,
370,
234,
16,
20396,
17,
48,
1364,
14,
3010,
253,
370,
9,
206,
9322,
25,
175,
8,
11325,
15,
11374,
40,
9698,
5293,
16,
20734,
26,
78,
8517,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
IE troubles - complex phone number error checking in Jquery
===
I'm writing a piece of code to validate three phone numbers. The logic is, one of the numbers must be valid, otherwise there's an error on line 3 of the code. It works perfectly well except for in IE. IE doesn't detect the error. Are there any pieces in... | 0 | [
2,
13,
660,
16615,
13,
8,
1502,
1132,
234,
7019,
9886,
19,
487,
8190,
93,
800,
3726,
3726,
31,
22,
79,
1174,
21,
1855,
16,
1797,
20,
7394,
1373,
132,
1132,
2116,
9,
14,
7085,
25,
15,
53,
16,
14,
2116,
491,
44,
7394,
15,
3190,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Making Menu Collapsed By Default
===
I am working on a Drupal Site, and for some reason when I came back from the weekend, one of my menu's on the site is automatically expanded now by default. I sifted through the css and php and couldn't find anything that stuck out. Is there a way through css, javascript, jquery, o... | 0 | [
2,
544,
11379,
7355,
34,
12838,
800,
3726,
3726,
31,
589,
638,
27,
21,
15708,
6720,
689,
15,
17,
26,
109,
1215,
76,
31,
281,
97,
37,
14,
4010,
15,
53,
16,
51,
11379,
22,
18,
27,
14,
689,
25,
7499,
2766,
130,
34,
12838,
9,
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... |
Alternative to subqueries
===
I'm using Mysql 5.1, and have this query, is there a way to not use the subqueries and accomplish the same result?
SELECT oref.affiliate_id, ROUND(sum( oph.amount ) * 0.10 ,2) AS tsum
FROM operators_referer AS oref
LEFT JOIN operators_payments_history AS oph
ON or... | 0 | [
2,
2676,
20,
972,
2005,
2829,
800,
3726,
3726,
31,
22,
79,
568,
51,
18,
22402,
331,
9,
165,
15,
17,
57,
48,
25597,
15,
25,
80,
21,
161,
20,
52,
275,
14,
972,
2005,
2829,
17,
14570,
14,
205,
829,
60,
5407,
54,
6917,
9,
6752,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
python xml common dtd path
===
I'm writing a python script which parses the xml file. To validate xml i'm using dtd file, but this xml file is using tag SYSTEM = "dtdrules.dtd". Now after more than 100 xmls are generated by different user as input file to python, After all users copy this dtd file to their own directo... | 0 | [
2,
20059,
23504,
757,
13,
43,
38,
43,
2013,
800,
3726,
3726,
31,
22,
79,
1174,
21,
20059,
3884,
56,
2017,
7202,
14,
23504,
3893,
9,
20,
7394,
1373,
23504,
31,
22,
79,
568,
13,
43,
38,
43,
3893,
15,
47,
48,
23504,
3893,
25,
568... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 delete from Data Frame based on a condition from a another Data Frame
===
I´m currently working with a 2 Data frames one that I simply call Data and another one called DataOutput. Data has over 400 thousand observations of 21 variables and and DataOutput only has 4 observations of 21 variables. DataOutput is a ... | 0 | [
2,
184,
20,
27448,
37,
1054,
3523,
432,
27,
21,
2874,
37,
21,
226,
1054,
3523,
800,
3726,
3726,
31,
307,
871,
638,
29,
21,
172,
1054,
12809,
53,
30,
31,
1659,
645,
1054,
17,
226,
53,
227,
1054,
1320,
4881,
9,
1054,
63,
84,
435... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Flickr photos by group with location name
===
I am grabbing photos from my 2 flickr groups using the API method flickr.groups.pools.getPhotos. This is ok but i'd like to actually return the town name rather than just the geo location. Does anybody know of an alternative method to grab my images including the geo locat... | 0 | [
2,
12407,
139,
7064,
34,
214,
29,
1474,
204,
800,
3726,
3726,
31,
589,
9910,
7064,
37,
51,
172,
12407,
139,
1170,
568,
14,
21,
2159,
2109,
12407,
139,
9,
8024,
18,
9,
13378,
18,
9,
3060,
25445,
18,
9,
48,
25,
5854,
47,
31,
22,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to remove customviews added programatically?
===
In one of the iPad Application, i am working i have added custom views to a view.This works fine but now i want to remove all the custom views added.How do i do that?
Following is my code for adding custom views
for (int col=0; col<colsInRow; col++) {
... | 0 | [
2,
184,
20,
4681,
5816,
4725,
18,
905,
625,
721,
8438,
60,
800,
3726,
3726,
19,
53,
16,
14,
31,
8240,
3010,
15,
31,
589,
638,
31,
57,
905,
5816,
4146,
20,
21,
1418,
9,
1565,
693,
1123,
47,
130,
31,
259,
20,
4681,
65,
14,
581... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
grails spring social twitter plugin
===
I'm using spring social in my app to handle the integration with twitter. If I'm logged in my app, everything works fine, but if I'm not logged in, every time I try to do anything with twitter I get a "Authorization revoked" exception. | 0 | [
2,
489,
7301,
18,
1573,
668,
10623,
10922,
108,
800,
3726,
3726,
31,
22,
79,
568,
1573,
668,
19,
51,
4865,
20,
3053,
14,
8078,
29,
10623,
9,
100,
31,
22,
79,
13,
19287,
19,
51,
4865,
15,
796,
693,
1123,
15,
47,
100,
31,
22,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Bind ObservableCollection<XmlNode> to combobox wpf
===
I'm trying to bind a combobox to a ObservableCollection<XmlNode>.When the form is displayed the combobox is empty.The same code with ObservableCollection of type string works perfectly. I've got a feeling that my XPath is wrong. Any suggestions are welcome:
**X... | 0 | [
2,
10193,
5122,
10321,
579,
15015,
872,
1,
396,
8184,
251,
546,
1,
20,
22621,
5309,
619,
7721,
800,
3726,
3726,
31,
22,
79,
749,
20,
10193,
21,
22621,
5309,
20,
21,
5122,
10321,
579,
15015,
872,
1,
396,
8184,
251,
546,
1,
9,
318... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Uploading and search large pdf files in liferay
===
Currently have 6 100mb+ pdf documents which have searchable text layer enabled. However when the documents upload the images are showing negative in the preview and the text isn't visable. When you download the documents from the site they are fully searchable again.... | 0 | [
2,
71,
16866,
17,
2122,
370,
13,
11124,
6488,
19,
201,
2787,
800,
3726,
3726,
871,
57,
400,
808,
5024,
2430,
13,
11124,
4374,
56,
57,
2122,
579,
1854,
5385,
9338,
9,
207,
76,
14,
4374,
71,
8294,
14,
3502,
50,
3187,
3682,
19,
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 set a default value in a text_field?
===
I know this question has been asked a zillion times, but I still feel I'm missing something obvious. Given a model `Address` with a field `city` which we want to be initialized with a default value, say `Awesome City`.
What I've tried so far:
1) Default value in th... | 0 | [
2,
184,
20,
309,
21,
12838,
1923,
19,
21,
1854,
1,
1109,
60,
800,
3726,
3726,
31,
143,
48,
1301,
63,
74,
411,
21,
2052,
22316,
436,
15,
47,
31,
174,
583,
31,
22,
79,
2863,
301,
4674,
9,
504,
21,
1061,
13,
1,
27950,
1,
29,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Web app using Google Drive SDK without Chrome Store
===
I'm actually developing an application using Google Drive SDK. I don't want to create a listing or register my app into Chrome Store. Anyways, my web app is able to connect to my personal GDrive account and upload a file without Chrome Store intervention just usi... | 0 | [
2,
2741,
4865,
568,
8144,
1493,
13,
18,
43,
197,
366,
13,
12985,
1718,
800,
3726,
3726,
31,
22,
79,
1121,
3561,
40,
3010,
568,
8144,
1493,
13,
18,
43,
197,
9,
31,
221,
22,
38,
259,
20,
1600,
21,
9554,
54,
2243,
51,
4865,
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... |
Mismatched Oracle drivers - need upgrade (10.2.0.1 to 10.2.0.5)
===
We are running Oracle Enterprise software on various client and DB servers and we are experiencing a problem (outlined [here][1]) where the apparent mismatch between the oracle drivers are causing the errors.
Our db servers are using 10.2.0.4 and 1... | 0 | [
2,
2462,
12280,
69,
15759,
5783,
13,
8,
376,
9483,
13,
5,
1036,
9,
135,
9,
387,
9,
165,
20,
332,
9,
135,
9,
387,
9,
264,
6,
800,
3726,
3726,
95,
50,
946,
15759,
6002,
2306,
27,
617,
6819,
17,
13,
9007,
17595,
17,
95,
50,
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... |
Contextual Text Editor in WPF
===
We are currently looking to create a text-editor in WPF (.NET 4.0) which will allow writers within our team to create movie scripts. In short, the functionality should ressemble that of FinalDraft or Adobe Story (i.e.: contextual positioning of text depending on the cursor's position ... | 0 | [
2,
4141,
6948,
1854,
1835,
19,
619,
7721,
800,
3726,
3726,
95,
50,
871,
699,
20,
1600,
21,
1854,
8,
13401,
19,
619,
7721,
13,
5,
9,
2328,
268,
9,
387,
6,
56,
129,
1655,
3635,
363,
318,
173,
20,
1600,
1308,
17505,
9,
19,
502,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
dragging a dynamic movieclip
===
I need to drag pics from one place to another. all the pics that i need to drag are from an xml file. after i transferred the pics to a movieclip, i need to drag them to a specific place on the stage. how do i drag a dynamic movieclip?
tnx a lot :)
Here is the code:
... | 0 | [
2,
13052,
21,
7782,
1308,
150,
6013,
800,
3726,
3726,
31,
376,
20,
5501,
9327,
18,
37,
53,
209,
20,
226,
9,
65,
14,
9327,
18,
30,
31,
376,
20,
5501,
50,
37,
40,
23504,
3893,
9,
75,
31,
2288,
14,
9327,
18,
20,
21,
1308,
150,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Installing PyCrypto for Python 3.2 on OS X 10.7
===
I compiled and installed pycrypto 2.6 on Mac OSX Lion with Python 3.2 but when I try to run command
import Crypto.Cipher.AES
I get this problem
Traceback (most recent call last):
File "/Users/DaZzz/Documents/Python Workspace/Cryptography Cours... | 0 | [
2,
25429,
7103,
11435,
111,
26,
20059,
203,
9,
135,
27,
13,
759,
993,
332,
9,
465,
800,
3726,
3726,
31,
9316,
17,
4066,
7103,
11435,
111,
172,
9,
379,
27,
1572,
13,
759,
396,
6023,
29,
20059,
203,
9,
135,
47,
76,
31,
1131,
20,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to superclass some data structs in C++?
===
I have a C-header file with 100s of data structs. I want to make a superclass that each data struct inherits from. How to do that? Should I parse the header file? Reflection?
Because each C data struct is a public class, I could just make a superclass and... then wha... | 0 | [
2,
184,
20,
1026,
1898,
109,
1054,
13,
10346,
18,
19,
272,
20512,
60,
800,
3726,
3726,
31,
57,
21,
272,
8,
1743,
106,
3893,
29,
808,
18,
16,
1054,
13,
10346,
18,
9,
31,
259,
20,
233,
21,
1026,
1898,
30,
206,
1054,
13,
10346,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 schedule periodic task to run a stored procedure in microsoft sql server?
===
I am using microsoft sql server. I need to run a periodic task to update a table periodically using stored procedure. Could you let me know if it is possible to schedule periodic tasks and to run any system command within s... | 0 | [
2,
25,
32,
938,
20,
4345,
18350,
3005,
20,
485,
21,
8214,
7004,
19,
7099,
4444,
255,
8128,
60,
800,
3726,
3726,
31,
589,
568,
7099,
4444,
255,
8128,
9,
31,
376,
20,
485,
21,
18350,
3005,
20,
11100,
21,
859,
19886,
568,
8214,
700... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 avoid name collisions when organizing imports or during autocomplete?
===
When I use Eclipse's `Ctrl-Shift-o` to organize imports, `Ctrl-1` for quick-fix, or alt-space to complete a reference, I'd like to be able to specify a preferred package (or alternately ignore a list of packages) to avoid namespace col... | 0 | [
2,
184,
92,
31,
2658,
204,
11319,
18,
76,
11725,
20617,
54,
112,
3108,
15990,
60,
800,
3726,
3726,
76,
31,
275,
11652,
22,
18,
13,
1,
4812,
6362,
8,
14157,
8,
111,
1,
20,
9213,
20617,
15,
13,
1,
4812,
6362,
8,
165,
1,
26,
22... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Using Windows Explorer to get path(string) of a file to store in a table
===
I currently have a database set up to store the paths of pictures associated with my data and display them in imageframes with VBA. It works great, but the process of adding a picture is a bit tedious, and users struggle to use it correctly(t... | 0 | [
2,
568,
1936,
8520,
20,
164,
2013,
5,
11130,
6,
16,
21,
3893,
20,
1718,
19,
21,
859,
800,
3726,
3726,
31,
871,
57,
21,
6018,
309,
71,
20,
1718,
14,
12074,
16,
3104,
1598,
29,
51,
1054,
17,
3042,
105,
19,
1961,
8361,
18,
29,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to use Struts2 iterator in a menu inserted in a layout with apache tiles
===
I am using Struts 2 and Apache tiles, and I'm new to both. I am trying to "clean" some existing sources that don't feel correct to me (tell me if I'm wrong).
I have the following structure :
- in a layout.jsp :
<ht... | 0 | [
2,
184,
20,
275,
18316,
18,
135,
32,
106,
3457,
19,
21,
11379,
14215,
19,
21,
9106,
29,
17140,
14836,
800,
3726,
3726,
31,
589,
568,
18316,
18,
172,
17,
17140,
14836,
15,
17,
31,
22,
79,
78,
20,
156,
9,
31,
589,
749,
20,
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... |
Google Maps API Blocked for certain server
===
Google Maps API static maps is blocking my website's maps.. The site is on a load balancer, so the map is only blocked on one of the servers and seems to be only blocked when viewing the map that was sent in an Email. The users see a red X with a thottle image represent... | 0 | [
2,
8144,
6867,
21,
2159,
8388,
26,
1200,
8128,
800,
3726,
3726,
8144,
6867,
21,
2159,
12038,
6867,
25,
11828,
51,
2271,
22,
18,
6867,
9,
9,
14,
689,
25,
27,
21,
6305,
4468,
139,
15,
86,
14,
2942,
25,
104,
8388,
27,
53,
16,
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... |
Concatenate string in Asp Mvc
===
I am using ajax jquery for return a string , i have a entangle , it is Concatenate string
I want concatenate :
string str = "";
str += "<td>"+"<%= Html.ActionLink('Edit', 'ProcessUpdate/' + s.ProductId, 'Stationery')%>"+" </td>";
but when i run application , this is ... | 0 | [
2,
1065,
9530,
8820,
3724,
19,
28,
306,
307,
8990,
800,
3726,
3726,
31,
589,
568,
20624,
487,
8190,
93,
26,
788,
21,
3724,
13,
15,
31,
57,
21,
13,
2291,
15427,
13,
15,
32,
25,
1065,
9530,
8820,
3724,
31,
259,
1065,
9530,
8820,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
all browsers displaying italic text when not supposed to
===
i am having a problem with my browsers (safari, chrome, and FF) displaying text in italics when its not supposed to be italicized. this is happening on multiple sites including google sites (google, youtube) as well as sites i have built and others (godaddy ... | 0 | [
2,
65,
16495,
18,
17418,
32,
192,
596,
1854,
76,
52,
2293,
20,
800,
3726,
3726,
31,
589,
452,
21,
1448,
29,
51,
16495,
18,
13,
5,
18,
2565,
2905,
15,
13,
12985,
15,
17,
13,
2460,
6,
17418,
1854,
19,
21620,
76,
82,
52,
2293,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Python - web-safe base 64 encoding and decoding
===
I am given the below pseudocode. In a query string I will have a value that I will have to decode. The below is pseudocode on how to decrypt that was provided to me.
So...if given http://www.test.com?decrypt=foobar where foobar is what I want to decrypt.....
I... | 0 | [
2,
20059,
13,
8,
2741,
8,
18166,
1000,
4384,
19608,
17,
121,
15458,
800,
3726,
3726,
31,
589,
504,
14,
1021,
8452,
9375,
9,
19,
21,
25597,
3724,
31,
129,
57,
21,
1923,
30,
31,
129,
57,
20,
121,
9375,
9,
14,
1021,
25,
8452,
937... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
indicate correct path of folder
===
i have one big directory namely project folder,it's address is
C:\Users\daviti\Desktop\project
in this folder,i have created simple web site,whose main page is index html,this web site is created into 3 different languages,Georgian,Russian and English,Georgian variant is... | 0 | [
2,
4342,
4456,
2013,
16,
19294,
800,
3726,
3726,
31,
57,
53,
580,
16755,
8525,
669,
19294,
15,
242,
22,
18,
3218,
25,
272,
45,
1,
16704,
18,
1,
593,
25410,
1,
3196,
197,
3880,
1,
21011,
19,
48,
19294,
15,
49,
57,
679,
1935,
27... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Select element vertical scroll under Opra Mini
===
I have this website http://bestrents.in/
The problem is that Select options does not show vertical scroll and expands to full under Opera Mini Mobile Browser
The problem does not exist under common pc browsers. | 0 | [
2,
5407,
4520,
7035,
12159,
131,
3088,
525,
4236,
800,
3726,
3726,
31,
57,
48,
2271,
7775,
6903,
4936,
8993,
18,
9,
108,
118,
14,
1448,
25,
30,
5407,
6368,
630,
52,
298,
7035,
12159,
17,
6073,
18,
20,
503,
131,
1877,
4236,
3241,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
MYSQL - How to return array from first table and select from another table using that array in one query?
===
I have 2 tables:
1) game_follower (stores which user is following which game):
___________________________
| ID | game_id | user_id |
| 1 | 1 | 1 |
| 2 | 2 | 1... | 0 | [
2,
51,
18,
22402,
13,
8,
184,
20,
788,
7718,
37,
64,
859,
17,
5407,
37,
226,
859,
568,
30,
7718,
19,
53,
25597,
60,
800,
3726,
3726,
31,
57,
172,
7484,
45,
137,
6,
250,
1,
19184,
106,
13,
5,
16828,
18,
56,
4155,
25,
249,
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... |
Volume Seekbar on Android
===
I tried using one of the volume seekbar methods posted here already,the code has no errors at all but after i used the following code in my activity it causes a force close, DDMS logcat says:
Thread main exiting due to uncaught exception
java.lang.NullPointerException
Also i tried... | 0 | [
2,
2310,
5048,
1850,
27,
13005,
800,
3726,
3726,
31,
794,
568,
53,
16,
14,
2310,
5048,
1850,
3195,
6054,
235,
614,
15,
124,
1797,
63,
90,
11908,
35,
65,
47,
75,
31,
147,
14,
249,
1797,
19,
51,
2358,
32,
4047,
21,
558,
543,
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... |
Comparing 2 Access(mdb) files
===
Ok, we're working on this project and at some point we need to validate data from 2 distinct Access(mdb) files. This validation consists in comparing the entries of this two files based on a column that is the "primary key" to verify if the value the other columns are changed from on ... | 0 | [
2,
15047,
172,
1381,
5,
79,
9007,
6,
6488,
800,
3726,
3726,
5854,
15,
95,
22,
99,
638,
27,
48,
669,
17,
35,
109,
454,
95,
376,
20,
7394,
1373,
1054,
37,
172,
4421,
1381,
5,
79,
9007,
6,
6488,
9,
48,
27999,
2043,
19,
15047,
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... |
CSS - How can I push the submenus to the left?
===
I have created a horizontal menu with a horizontal submenu. Though I want all the submenus to be pushed to the left, just like the first submenu. How can I do that? I'm very (very) new to CSS.
I have this HTML code:
<div id="menu">
<ul>
<li><a hre... | 0 | [
2,
272,
18,
18,
13,
8,
184,
92,
31,
3250,
14,
972,
755,
267,
20,
14,
225,
60,
800,
3726,
3726,
31,
57,
679,
21,
10095,
11379,
29,
21,
10095,
972,
755,
291,
9,
362,
31,
259,
65,
14,
972,
755,
267,
20,
44,
2007,
20,
14,
225,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Testing Authlogic 3.1 with RSpec 2.10 and Rails 3.2
===
I just recently update my Rails application to use Authlogic. The authentication works fine in development mode, but the test is no longer working. Each time I launch rspec using `bundle exec rake spec`, the application throws the following error message (trimmed... | 0 | [
2,
4431,
10343,
96,
24268,
203,
9,
165,
29,
13,
1224,
12610,
172,
9,
1036,
17,
2240,
18,
203,
9,
135,
800,
3726,
3726,
31,
114,
1989,
11100,
51,
2240,
18,
3010,
20,
275,
10343,
96,
24268,
9,
14,
27963,
693,
1123,
19,
522,
3740,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to use ffmpeg to add a text to avi video?
===
I am trying to put a simple text on the bottom of video using ffmpeg on Ubuntu 12.04 . I tried this which is suggested in several places:
ffmpeg -i input.avi -vf drawtext="fontfile=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif.ttf:text='Text to write':fontsiz... | 0 | [
2,
184,
20,
275,
13,
2460,
79,
20427,
20,
3547,
21,
1854,
20,
13,
5271,
763,
60,
800,
3726,
3726,
31,
589,
749,
20,
442,
21,
1935,
1854,
27,
14,
2129,
16,
763,
568,
13,
2460,
79,
20427,
27,
287,
12968,
2473,
390,
9,
3277,
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... |
Struts2 and Freemarker Example..
===
I'm new to FreeMarker need an example on how to implement freemarker in struts2 to change templete dynamically.. | 1 | [
2,
18316,
18,
135,
17,
551,
4527,
106,
823,
9,
9,
800,
3726,
3726,
31,
22,
79,
78,
20,
551,
4527,
106,
376,
40,
823,
27,
184,
20,
8713,
551,
4527,
106,
19,
18316,
18,
135,
20,
753,
1478,
591,
7782,
1326,
9,
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... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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... |
How to execute functions defined in parent window with child window context
===
I have two windows: parent and child(html page and iframe).
I have a script library loaded to parent window.
I want to reuse this library from child window without loading the same script into child window.
It is easy to call func... | 0 | [
2,
184,
20,
15644,
3719,
2811,
19,
4766,
1463,
29,
850,
1463,
4141,
800,
3726,
3726,
31,
57,
81,
1936,
45,
4766,
17,
850,
5,
15895,
2478,
17,
31,
8361,
6,
9,
31,
57,
21,
3884,
1248,
8572,
20,
4766,
1463,
9,
31,
259,
20,
302,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
hbase error related to zookeeper
===
i have just started using hbase. I tried to execute following java program. This code created a table add adding some value to table. but i am getting following mentioned error.
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.HBaseConfigurati... | 0 | [
2,
746,
8436,
7019,
1597,
20,
6655,
8566,
800,
3726,
3726,
31,
57,
114,
373,
568,
746,
8436,
9,
31,
794,
20,
15644,
249,
8247,
625,
9,
48,
1797,
679,
21,
859,
3547,
4721,
109,
1923,
20,
859,
9,
47,
31,
589,
1017,
249,
2211,
70... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
IE compatibility modes
===
I don't realy understand how these modes works, for example if i add
`<!DOCTYPE>` to make it `html5` document and then add
`<meta http-equiv="X-UA-Compatible" content="IE=9" />`
IE would render in IE 9 standarts right?
But my question is what if user doesn't have `IE 9` but hav... | 0 | [
2,
13,
660,
13,
21618,
12770,
800,
3726,
3726,
31,
221,
22,
38,
683,
93,
1369,
184,
158,
12770,
693,
15,
26,
823,
100,
31,
3547,
13,
1,
187,
13799,
4474,
1,
20,
233,
32,
13,
1,
15895,
264,
1,
4492,
17,
94,
3547,
13,
1,
5909,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
ios sdk - get device setting value
===
I need to know the value of a setting of the device (in specific - of an IPhone) from within the code (Objective C). In particular I wish to know if 3G is enabled (usually undeg settings ->General->Network).
I Don't wish to change the setting in any way, just to know its curren... | 0 | [
2,
13,
7760,
13,
18,
43,
197,
13,
8,
164,
3646,
2697,
1923,
800,
3726,
3726,
31,
376,
20,
143,
14,
1923,
16,
21,
2697,
16,
14,
3646,
13,
5,
108,
1903,
13,
8,
16,
40,
21024,
6,
37,
363,
14,
1797,
13,
5,
23793,
1284,
272,
6,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
how i extract From time,To time(appointment time) from html table in jquery
===
Iam selecting time slot on dragging on time slot cell. After selecting time slot, I enter patient name in textbox and click on select button then patient name goes to selected time slot. The user can select multiple time slot for multilpe ... | 0 | [
2,
184,
31,
10962,
37,
85,
15,
262,
85,
5,
2552,
3132,
1130,
85,
6,
37,
13,
15895,
859,
19,
487,
8190,
93,
800,
3726,
3726,
31,
765,
20764,
85,
7958,
27,
13052,
27,
85,
7958,
1667,
9,
75,
20764,
85,
7958,
15,
31,
2830,
4836,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Fluent nHibernate configuration for custom type
===
I'm trying to get fNH to map to a custom type, but I'm having difficulties.
I want fNH to assign its value, via an interface to the custom type. I also need nHibernate to preserve the instance of the custom type on the entity. It will always be instantiated when ... | 0 | [
2,
19252,
12109,
15191,
8820,
8091,
26,
5816,
1001,
800,
3726,
3726,
31,
22,
79,
749,
20,
164,
398,
13880,
20,
2942,
20,
21,
5816,
1001,
15,
47,
31,
22,
79,
452,
8075,
9,
31,
259,
398,
13880,
20,
13952,
82,
1923,
15,
1197,
40,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Autoratoting Interface with Navigation- and TabBarControllers
===
I searched but didn't find an answer for this problem.
**Problem summary:**
**I want the interfaceOrientation to be only allowed in landscape on a certain viewController,
which works. But when leaving this certain view controller (with the devi... | 0 | [
2,
3108,
525,
262,
1203,
6573,
29,
8368,
8,
17,
6523,
1850,
12898,
1252,
18,
800,
3726,
3726,
31,
9036,
47,
223,
22,
38,
477,
40,
1623,
26,
48,
1448,
9,
13,
1409,
2740,
2854,
79,
14740,
45,
1409,
13,
1409,
49,
259,
14,
6573,
9... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Use a texture in line drawing in actionscript 3
===
I would like to draw line, just like the graphics API, only that it will be assembled of chunks of a given texture ("lineChunk.png")
The chunk would be small to allow rotating it when needed, by the line's path.
The purpose is to let the user, using mouseMove, ... | 0 | [
2,
275,
21,
12714,
19,
293,
3533,
19,
1028,
8741,
203,
800,
3726,
3726,
31,
83,
101,
20,
2003,
293,
15,
114,
101,
14,
8351,
21,
2159,
15,
104,
30,
32,
129,
44,
9529,
16,
15009,
18,
16,
21,
504,
12714,
13,
5,
7,
1143,
12583,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 detect pinch in gesture vs pinch out gesture?
===
Instead of scaling, which I think pinch gesture is usually used for, I am looking to just detect whether the pinch was a pinch in vs pinch out so I can collapse or expand some table sections. How would I go about doing that? | 0 | [
2,
184,
20,
9092,
14450,
19,
7222,
4611,
14450,
70,
7222,
60,
800,
3726,
3726,
700,
16,
26829,
15,
56,
31,
277,
14450,
7222,
25,
951,
147,
26,
15,
31,
589,
699,
20,
114,
9092,
1472,
14,
14450,
23,
21,
14450,
19,
4611,
14450,
70,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 functional spec a "design document"?
===
So I have been a bit lost in the terms, so first of all I present you what I have learned so far:
System requirements specification - what users want, what the system should do
Functional requirement - how the things, which users want, will actually work in the application... | 2 | [
2,
25,
7652,
12737,
21,
13,
7,
19862,
4492,
7,
60,
800,
3726,
3726,
86,
31,
57,
74,
21,
1142,
529,
19,
14,
1663,
15,
86,
64,
16,
65,
31,
734,
42,
98,
31,
57,
2691,
86,
463,
45,
329,
4786,
14177,
13,
8,
98,
3878,
259,
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... |
AdWhirl on Android - Sum of ration weights is 0 - no ads to be shown
===
I can't get Adwhirl to work. After an hour of trying the offical documentation, I tried the minimalistic route, through XML:
<com.adwhirl.AdWhirlLayout
android:id="@+id/addwhirlview"
android:layout_width="fill_parent"
... | 0 | [
2,
21,
43,
9373,
6362,
27,
13005,
13,
8,
3907,
16,
13,
5946,
1763,
18,
25,
713,
13,
8,
90,
16236,
20,
44,
1721,
800,
3726,
3726,
31,
92,
22,
38,
164,
21,
43,
9373,
6362,
20,
170,
9,
75,
40,
1671,
16,
749,
14,
168,
4272,
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... |
Issue with unordered lists and ::selection formatting in Chrome
===
I am using the following CSS to modify the color of highlighted text:
*::selection {
background: #000;
color: #fff;
}
*::-moz-selection {
background: #000;
color: #fff;
}
In Chrome when you h... | 0 | [
2,
1513,
29,
367,
7861,
69,
7227,
17,
13,
45,
45,
18,
5033,
2595,
1203,
19,
13,
12985,
800,
3726,
3726,
31,
589,
568,
14,
249,
272,
18,
18,
20,
17579,
14,
1665,
16,
12528,
1854,
45,
1637,
45,
45,
18,
5033,
13,
1,
2395,
45,
6... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
enum header file not find in c++
===
I have a file called `playback_type.h` with only this code in it:
#include <iostream>
enum playback_type {
NOTE_PB, SONG_PB
};
Xcode lets me include the file fine, it even autocompletes the filename but when I try to build it I'm getting all sorts... | 0 | [
2,
1957,
723,
157,
106,
3893,
52,
477,
19,
272,
20512,
800,
3726,
3726,
31,
57,
21,
3893,
227,
13,
1,
5438,
1958,
1,
4474,
9,
252,
1,
29,
104,
48,
1797,
19,
32,
45,
6926,
22640,
13,
1,
1963,
11260,
1,
1957,
723,
21306,
1,
44... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Progress bar is not working correctly
===
I just tried to write code for a progress bar with webclient
Please see my code.
private void button2_Click(object sender, EventArgs e)
{
if (textBox1.Text == "")
{
MessageBox.Show("Invalid Php Url");
... | 0 | [
2,
3455,
748,
25,
52,
638,
12044,
800,
3726,
3726,
31,
114,
794,
20,
2757,
1797,
26,
21,
3455,
748,
29,
2741,
150,
18513,
38,
2247,
196,
51,
1797,
9,
932,
11364,
5167,
135,
1,
150,
10129,
5,
23793,
2660,
106,
15,
807,
10663,
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... |
How to create link in grails webflow without execution state in url?
===
I want to display an image in my webflow wich comes from my domain object.
The domain object has an byte[] Array holding an image. The "image" method in my controller delivers the image to browser. This works fine.
In my webflow I'm doing t... | 0 | [
2,
184,
20,
1600,
3508,
19,
489,
7301,
18,
2741,
9990,
366,
5769,
146,
19,
287,
6362,
60,
800,
3726,
3726,
31,
259,
20,
3042,
40,
1961,
19,
51,
2741,
9990,
13,
13583,
1624,
37,
51,
4603,
3095,
9,
14,
4603,
3095,
63,
40,
34,
59... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 get elements from Java ArrayList
===
I have a basic question. I have this ArrayList:
public ArrayList<userdata> dataList = new ArrayList<>();
public class userdata
{
int userid;
int groupid;
String specialnumber;
String use... | 0 | [
2,
184,
20,
164,
2065,
37,
8247,
7718,
5739,
800,
3726,
3726,
31,
57,
21,
2125,
1301,
9,
31,
57,
48,
7718,
5739,
45,
317,
7718,
5739,
1,
16704,
18768,
1,
1054,
5739,
800,
78,
7718,
5739,
1,
5,
6,
73,
317,
718,
4155,
18768,
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... |
Sorting structure of arrays with qsort
===
Normally sorting Array of structure abjects is easy. Consider an Array of a structure (AOS)
#define ITEMS 10
typedef struct MyStruct
{
char a;
int b;
}tMyStruct;
tMyStruct arr_mystruct[ITEMS];
I first fill this array of structure... | 0 | [
2,
2058,
68,
1411,
16,
7718,
18,
29,
2593,
22843,
800,
3726,
3726,
4147,
2058,
68,
7718,
16,
1411,
5941,
17759,
18,
25,
2010,
9,
3563,
40,
7718,
16,
21,
1411,
13,
5,
6281,
18,
6,
6926,
546,
7509,
3755,
332,
1001,
13862,
13,
1034... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
I have a form where i want to add more input fields on button click in MVC View without scripting
===
I am a newbie, i am trying to create a view where every time i click on add more link next to a Textbox, another text box appears. How do i do that? I searched the same question on this site but i could not find a sol... | 0 | [
2,
31,
57,
21,
505,
113,
31,
259,
20,
3547,
91,
6367,
2861,
27,
5167,
10840,
19,
307,
8990,
1418,
366,
3884,
68,
800,
3726,
3726,
31,
589,
21,
78,
5893,
15,
31,
589,
749,
20,
1600,
21,
1418,
113,
352,
85,
31,
10840,
27,
3547,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Get the MYSQL Table Name from ResultSet
===
I have a SELECT query which combining three tables. I want to add them to a table by separating the tables. I just want to know how can I identify the table name in a Resultset? | 0 | [
2,
164,
14,
51,
18,
22402,
859,
204,
37,
1736,
1198,
800,
3726,
3726,
31,
57,
21,
5407,
25597,
56,
12803,
132,
7484,
9,
31,
259,
20,
3547,
105,
20,
21,
859,
34,
16880,
14,
7484,
9,
31,
114,
259,
20,
143,
184,
92,
31,
5808,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0... |
Javscript create a slideshow for top stories
===
I am looking to create a object that scrolls through different pictures with links to the stories that go with the picture. I am not sure what they are called, but its pretty much a news slideshow with links. Much like the one on leagueoflegends.com, espn.com, liverpool... | 0 | [
2,
3009,
710,
8741,
1600,
21,
18066,
1544,
26,
371,
1650,
800,
3726,
3726,
31,
589,
699,
20,
1600,
21,
3095,
30,
12159,
18,
120,
421,
3104,
29,
6271,
20,
14,
1650,
30,
162,
29,
14,
2151,
9,
31,
589,
52,
562,
98,
59,
50,
227,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
TABLE VIEW EDIT MODE
===
I have a Navigation controller on which a table view is there. I wanted two button on that navigation bar i.e. "Add to Favourite" and the other is "Edit".
Both the button should fire the event that makes the table view go in editing mode. From the "Add to favorite button i want the table vi... | 0 | [
2,
859,
1418,
9392,
3740,
800,
3726,
3726,
31,
57,
21,
8368,
9919,
27,
56,
21,
859,
1418,
25,
80,
9,
31,
417,
81,
5167,
27,
30,
8368,
748,
31,
9,
62,
9,
13,
7,
14854,
20,
7740,
7,
17,
14,
89,
25,
13,
7,
69,
242,
7,
9,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
cannot get web.config file in area folder to work
===
I created a new area "admin", add following code to web.config in the admin area.
<authentication mode="Forms">
<forms loginUrl="~/admin/login" timeout="2880" />
</authentication>
if I go to admin page without logging in, I still get redirec... | 0 | [
2,
1967,
164,
2741,
9,
14093,
2816,
3893,
19,
217,
19294,
20,
170,
800,
3726,
3726,
31,
679,
21,
78,
217,
13,
7,
1283,
2160,
7,
15,
3547,
249,
1797,
20,
2741,
9,
14093,
2816,
19,
14,
21,
43,
2160,
217,
9,
13,
1,
1346,
2504,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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# Open Source RSS Library
===
I am looking for some open source .net libraryies which makes publishing and consuming RSS feeds easier. I have worked with .net syndication api but just finding if there is something which makes it easier to work with RSS in .net
Thanks. | 0 | [
2,
272,
5910,
368,
1267,
13,
1224,
18,
1248,
800,
3726,
3726,
31,
589,
699,
26,
109,
368,
1267,
13,
9,
2328,
1248,
1596,
56,
1364,
3107,
17,
13,
17601,
13,
1224,
18,
17058,
4950,
9,
31,
57,
577,
29,
13,
9,
2328,
27370,
21,
215... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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, Zend Framework, Wordpress, need to find some clarity
===
thanks in advance for any help you can provide me. First off, let me just say that I'm new to web development. I am fairly comfortable with HTML/CSS, and I am building my first site for a friend's business. I want to include a contact form, so I downloade... | 0 | [
2,
13,
26120,
15,
10526,
43,
6596,
15,
833,
5890,
15,
376,
20,
477,
109,
18314,
800,
3726,
3726,
3669,
19,
3612,
26,
186,
448,
42,
92,
1181,
55,
9,
64,
168,
15,
408,
55,
114,
395,
30,
31,
22,
79,
78,
20,
2741,
522,
9,
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... |
Should I use this function in my code behind or BusinessLogic Class
===
I am using `ASP.NET Web Forms/C#`.
I am using this function to fill City `DropDownLists` based on the selected state from State `DropDownList`.There are 3 `DropDownLists` for State and City.(Residential,Native,Office).
Here is my function.
... | 0 | [
2,
378,
31,
275,
48,
1990,
19,
51,
1797,
439,
54,
508,
24268,
718,
800,
3726,
3726,
31,
589,
568,
13,
1,
472,
306,
9,
2328,
2741,
1997,
118,
150,
5910,
1,
9,
31,
589,
568,
48,
1990,
20,
3509,
136,
13,
1,
12361,
2968,
5739,
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... |
Android: EditText in different OS/APIs text colors
===
In ICS, the background of EditText is a black color and in Gingerbread it is white. So the default EditText doesn't show in ICS but shows in GB.
Currently, I'm using:
if(Integer.valueOf(android.os.Build.VERSION.SDK) >= 11)
editWeight.setTextColor... | 0 | [
2,
13005,
45,
9392,
11969,
19,
421,
13,
759,
118,
58,
8954,
1854,
5268,
800,
3726,
3726,
19,
13,
8354,
15,
14,
2395,
16,
9392,
11969,
25,
21,
319,
1665,
17,
19,
12101,
22852,
32,
25,
359,
9,
86,
14,
12838,
9392,
11969,
1437,
22,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
android GCM registration ID details
===
For my application I have to save the registration ID in a SQL database.
I just wondering what's exactly the registration's specification (max size of the string) in order to specify in my sql database the good value. I didn't found this on android documentation.
Thanks | 0 | [
2,
13005,
489,
9095,
8587,
4924,
3289,
800,
3726,
3726,
26,
51,
3010,
31,
57,
20,
2079,
14,
8587,
4924,
19,
21,
4444,
255,
6018,
9,
31,
114,
5712,
98,
22,
18,
1890,
14,
8587,
22,
18,
14177,
13,
5,
8304,
1072,
16,
14,
3724,
6,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
CloudFlare with Google App Engine overquota
===
I've been looking at [CloudFlare](https://www.cloudflare.com/) as a CDN service for my Google App Engine hosting, and as a student, cost is always an issue (aka free services only). I read on the CF blog that when the origin server is down, CF will serve a cached version... | 0 | [
2,
4005,
9165,
99,
29,
8144,
4865,
1406,
84,
8970,
536,
800,
3726,
3726,
31,
22,
195,
74,
699,
35,
636,
19174,
9165,
99,
500,
5,
21127,
18,
6903,
6483,
9,
19174,
9165,
99,
9,
960,
118,
6,
28,
21,
1745,
103,
365,
26,
51,
8144,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Need XTK example on how to use X.shaders
===
Can someone provide an example on how to use X.shaders in XTK ?
I need to use custom shaders to apply texture and color with alpha component for vertices. | 0 | [
2,
376,
993,
38,
197,
823,
27,
184,
20,
275,
993,
9,
27209,
1224,
800,
3726,
3726,
92,
737,
1181,
40,
823,
27,
184,
20,
275,
993,
9,
27209,
1224,
19,
993,
38,
197,
13,
60,
31,
376,
20,
275,
5816,
7546,
1224,
20,
5645,
12714,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0... |
Client Side Validation
===
I have a field on an asp.net page for which I have used RequiredFieldvalidator.
<tr>
<td align="left" style="width: 130px">
<asp:Label ID="LblPagename" runat="server" Text="Page Name " CssClass="label"></asp:Label><font
... | 0 | [
2,
6819,
270,
27999,
800,
3726,
3726,
31,
57,
21,
575,
27,
40,
28,
306,
9,
2328,
2478,
26,
56,
31,
57,
147,
1390,
1109,
18506,
43,
3457,
9,
13,
1,
6384,
1,
13,
1,
38,
43,
23389,
3726,
7,
9742,
7,
1034,
3726,
7,
3976,
43,
9... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
After error-channel invoke, ip_connection_id is changed
===
I configured to handle error and response error message even if the error happens.
So, I set error-channel in inbound-adaptor.
And I catched failed message's header info using Message.
MessageTransformationException exBody = (MessageTransformationExc... | 0 | [
2,
75,
7019,
8,
10928,
28371,
15,
15735,
1,
25996,
872,
1,
1340,
25,
1015,
800,
3726,
3726,
31,
28895,
20,
3053,
7019,
17,
1627,
7019,
2802,
166,
100,
14,
7019,
5531,
9,
86,
15,
31,
309,
7019,
8,
10928,
19,
19,
7410,
8,
27576,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Event-driven program representation
===
I'm developing a simple add-on for Firefox with Jetpack, the FF add-on SDK. I want to represent the add-on in a standard diagram/representation, as it would be a class diagram or a flowchart. But javascript has an event-driven paradigm and I can't use, for example, the flow char... | 0 | [
2,
807,
8,
14489,
625,
5442,
800,
3726,
3726,
31,
22,
79,
3561,
21,
1935,
3547,
8,
218,
26,
535,
18219,
29,
4797,
8573,
15,
14,
13,
2460,
3547,
8,
218,
13,
18,
43,
197,
9,
31,
259,
20,
3501,
14,
3547,
8,
218,
19,
21,
1236,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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 make a pattern for replace image Tag
===
I need to replace img tag.
Orginal tag is for example :
<img src="index.php?act=img&sub=article&id=35558" width="150" height="172">
then i want to replace it to :
<img src="index.php?act=img&sub=article&id=35558" style="width: 150px; hei... | 0 | [
2,
184,
20,
233,
21,
3732,
26,
3934,
1961,
3383,
800,
3726,
3726,
31,
376,
20,
3934,
797,
263,
3383,
9,
54,
5831,
192,
3383,
25,
26,
823,
13,
45,
13,
1,
1660,
263,
13,
18,
5453,
3726,
7,
25671,
9,
26120,
60,
5183,
3726,
1660,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
error in compiling with maven
===
I'm using maven for dependency management and compiling source code but when I run maven K face a huge amount of errors all because of that maven did not used dependencies in the pom file for compiling the source and all the imports are unknown for java compiler. Does any one have any... | 0 | [
2,
7019,
19,
24378,
29,
1216,
3124,
800,
3726,
3726,
31,
22,
79,
568,
1216,
3124,
26,
26835,
1097,
17,
24378,
1267,
1797,
47,
76,
31,
485,
1216,
3124,
680,
276,
21,
2329,
2006,
16,
11908,
65,
185,
16,
30,
1216,
3124,
144,
52,
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 can I create simple 'standard template' websites in Drupal 7?
===
The problem I have is, that I have my domain, let's say it's localhost. And I want to build simple sites like this:
http://localhost/standard-template-website.html
http://localhost/another-standard-template-website.html
Friendly links... | 1 | [
2,
184,
92,
31,
1600,
1935,
13,
22,
15566,
22894,
22,
13931,
19,
15708,
6720,
453,
60,
800,
3726,
3726,
14,
1448,
31,
57,
25,
15,
30,
31,
57,
51,
4603,
15,
408,
22,
18,
395,
32,
22,
18,
375,
11694,
9,
17,
31,
259,
20,
1895,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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... |
Android: How to determine if the number being called is valid or invalid
===
I have a big list of opt-in numbers.
Some of them are bogus or fake.
I need to write a small app that does the following:-
- Read numbers from an excel file
- Call each number: if the call gets through (the phone rings or is enga... | 0 | [
2,
13005,
45,
184,
20,
3746,
100,
14,
234,
142,
227,
25,
7394,
54,
16671,
800,
3726,
3726,
31,
57,
21,
580,
968,
16,
17034,
8,
108,
2116,
9,
109,
16,
105,
50,
6509,
267,
54,
7031,
9,
31,
376,
20,
2757,
21,
284,
4865,
30,
630... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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.