unified_texts stringlengths 32 30.1k | OpenStatus_id int64 0 4 | input_ids list | token_type_ids list | attention_mask list |
|---|---|---|---|---|
Dropping thousands tables make databse slow
===
I am working on some issue where i am creating thousands of tables and doing some testing.
In next iteration i am dropping those tables and again regenerating it. But with these steps, my database become very slow. Even its my local database where i am only working, so... | 0 | [
2,
6780,
3805,
7484,
233,
1054,
220,
870,
2276,
800,
3726,
3726,
31,
589,
638,
27,
109,
1513,
113,
31,
589,
2936,
3805,
16,
7484,
17,
845,
109,
4431,
9,
19,
328,
23534,
31,
589,
6780,
273,
7484,
17,
188,
302,
17083,
1880,
32,
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... |
Objective-C: Name of the method that adjust floating point value to 0-1
===
I created the following method to use rate safely.<br>
(Sometimes rate can become invalid value like INFINITY, NAN, or out of 0-1)
-(double)XXXX:(double)rate
if (rate >= 1) {
return 1;
} else if (rate <=... | 4 | [
2,
7038,
8,
150,
45,
204,
16,
14,
2109,
30,
14328,
8319,
454,
1923,
20,
713,
8,
165,
800,
3726,
3726,
31,
679,
14,
249,
2109,
20,
275,
1684,
9817,
9,
1,
5145,
1,
13,
5,
9310,
1684,
92,
533,
16671,
1923,
101,
18425,
15,
5884,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
click to replace value, shift + click to append value using jquery
===
I have a list with items.
When I click any of these items, I *copy* its `id`-value into a form `text`-field.
Everytime I click, it replaces the value, which is correct by default. But what I would like to add, is a way for the user to hold do... | 0 | [
2,
10840,
20,
3934,
1923,
15,
4471,
2754,
10840,
20,
4865,
2451,
1923,
568,
487,
8190,
93,
800,
3726,
3726,
31,
57,
21,
968,
29,
3755,
9,
76,
31,
10840,
186,
16,
158,
3755,
15,
31,
1637,
19625,
2483,
82,
13,
1,
1340,
1,
8,
151... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Mocking an Object Within an Object
===
I have started learning Rhino Mocks and have been able to follow the examples in the online wiki. I thought I would apply those learnings to a home project of mine and came unstuck after hours of fighting against the technology. Here is what I am trying to do (if I don’t provide ... | 0 | [
2,
18446,
40,
3095,
363,
40,
3095,
800,
3726,
3726,
31,
57,
373,
2477,
18642,
10506,
18,
17,
57,
74,
777,
20,
1740,
14,
3770,
19,
14,
2087,
13,
17375,
9,
31,
289,
31,
83,
5645,
273,
2477,
18,
20,
21,
213,
669,
16,
1114,
17,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
eval() function behaviour in javascript
===
Here if
document.write(eval("(2 == 2)"));
it prints **true**
And
document.write(eval("(2 == 2)&(5<10)"));
it prints **1**
Why not it always returns true or false.If conditions increases in string it gives 0 or 1.What is the way to get same type of re... | 0 | [
2,
13,
62,
3377,
5,
6,
1990,
7727,
19,
8247,
8741,
800,
3726,
3726,
235,
100,
4492,
9,
23716,
5,
62,
3377,
5,
7,
5,
135,
800,
3726,
172,
6,
7,
6,
6,
73,
32,
12202,
13,
1409,
13398,
1409,
17,
4492,
9,
23716,
5,
62,
3377,
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 set the directory path in Path variable using Install4j GUI
===
I want to set the path variable using install4j without writing any scripts.
I want to append Path variable with the installation dir.
I tried with "Modify environmental variable on windows action", but it is setting the user variable with name "... | 0 | [
2,
184,
20,
309,
14,
16755,
2013,
19,
2013,
7612,
568,
16146,
300,
728,
9457,
800,
3726,
3726,
31,
259,
20,
309,
14,
2013,
7612,
568,
16146,
300,
728,
366,
1174,
186,
17505,
9,
31,
259,
20,
4865,
2451,
2013,
7612,
29,
14,
7758,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 - Associative Array copy
===
Technically there are no such things as an Associative Array in Javascript. But for reasons I can't avoid, I've ended up having t do things such as
var x = [1,2,3];
x.someRequiredProperty = 'some value';
As expected, Javascript being Javascript, it works. But now,... | 0 | [
2,
8247,
8741,
13,
8,
28,
18,
16325,
3366,
7718,
4344,
800,
3726,
3726,
12345,
80,
50,
90,
145,
564,
28,
40,
28,
18,
16325,
3366,
7718,
19,
8247,
8741,
9,
47,
26,
2932,
31,
92,
22,
38,
2658,
15,
31,
22,
195,
1272,
71,
452,
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 MediaPlayer performs different speed while playing the same video on different devices
===
My app needs to play a video on different Android devices at the same time,controlled by a server,all the devices should play the video at same pace.But I got the trouble that while playing on the devices which have b... | 0 | [
2,
13005,
941,
14049,
11563,
421,
1362,
133,
791,
14,
205,
763,
27,
421,
4690,
800,
3726,
3726,
51,
4865,
2274,
20,
418,
21,
763,
27,
421,
13005,
4690,
35,
14,
205,
85,
15,
12742,
34,
21,
8128,
15,
1233,
14,
4690,
378,
418,
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... |
ASP.NET C# CSS gets lost when session is created
===
Please help!! I'm using visual studio, programming in ASP.NET C# (.Net 4):
I'm a PHP convert, trying to create a simple login page using a session. Seeing as I'm completely new at ASP.NET I used this code from somewhere on the internet:
Login.aspx:
<asp:T... | 0 | [
2,
28,
306,
9,
2328,
272,
5910,
272,
18,
18,
3049,
529,
76,
3723,
25,
679,
800,
3726,
3726,
2247,
448,
19015,
31,
22,
79,
568,
3458,
1120,
15,
3143,
19,
28,
306,
9,
2328,
272,
5910,
13,
5,
9,
2328,
268,
6,
45,
31,
22,
79,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 lock screen in Xcode for it to have only portrait orientation?
===
I have created an app with many views and I want to have some of them only in portrait orientation.
I have coded this in .m file:
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return... | 0 | [
2,
184,
3991,
2324,
19,
993,
9375,
26,
32,
20,
57,
104,
5548,
10245,
60,
800,
3726,
3726,
31,
57,
679,
40,
4865,
29,
151,
4146,
17,
31,
259,
20,
57,
109,
16,
105,
104,
19,
5548,
10245,
9,
31,
57,
13,
22254,
48,
19,
13,
9,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Add event to DataGridComboBoxColumn
===
<DataGridComboBoxColumn CellStyle="{DynamicResource ComboBoxStyle}" x:Name="stcombo" Header="Статус" SelectedItemBinding="{Binding name_ru}" >
???
</DataGridComboBoxColumn>
how i can add `SelectionChanged` evend, to this xaml code? | 0 | [
2,
3547,
807,
20,
1054,
16375,
960,
1192,
5309,
716,
4404,
103,
800,
3726,
3726,
13,
1,
18768,
16375,
960,
1192,
5309,
716,
4404,
103,
1667,
4381,
3726,
7,
1,
20985,
99,
12097,
22621,
5309,
4381,
1,
7,
993,
45,
7259,
3726,
7,
384,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Can't access Facebook Graph: OAuthException 190:467
===
I can't access any of the /me/ URLs on Facebook. I tried the API doc page that generates temp links for testing ( http://developers.facebook.com/docs/reference/api/ ) but still get the error.
I've also tried the API explorer ( https://developers.facebook.com/t... | 0 | [
2,
92,
22,
38,
1381,
9090,
7210,
45,
635,
1346,
96,
10066,
872,
13,
12021,
21963,
465,
800,
3726,
3726,
31,
92,
22,
38,
1381,
186,
16,
14,
13,
118,
790,
118,
13,
911,
7532,
27,
9090,
9,
31,
794,
14,
21,
2159,
9765,
2478,
30,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Getting an ID of checked RadioButton in Android
===
I have a RadioGroup with 3 RadioButtons and a Button in my XML file. How can I get the ID of the checked RadioButton when I hit the Button (I have an OnClickListener set for this button)? Later I want to use Switch statement inside onClick, after checking which Radio... | 0 | [
2,
1017,
40,
4924,
16,
6505,
603,
811,
444,
19,
13005,
800,
3726,
3726,
31,
57,
21,
603,
8024,
29,
203,
603,
811,
444,
18,
17,
21,
5167,
19,
51,
23504,
3893,
9,
184,
92,
31,
164,
14,
4924,
16,
14,
6505,
603,
811,
444,
76,
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... |
Large ECommerce Workload with Ruby on Rails?
===
I'm tasked with building a large eCommerce site for a retailer. We are using packaged software for it. The package is difficult to tailor, and inflexible, but it scales on a solidly tested java application.
In the background though, I've been considering trying to us... | 0 | [
2,
370,
13,
62,
26470,
170,
8294,
29,
10811,
27,
2240,
18,
60,
800,
3726,
3726,
31,
22,
79,
14605,
29,
353,
21,
370,
13,
62,
26470,
689,
26,
21,
22943,
9,
95,
50,
568,
6030,
43,
2306,
26,
32,
9,
14,
6030,
25,
1956,
20,
19771... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Fitting data to system of ODEs using Python via Scipy & Numpy
===
I am having some trouble translating my MATLAB code into Python via Scipy & Numpy. I am stuck on how to find optimal parameter values (k0 and k1) for my system of ODEs to fit to my ten observed data points. I currently have an initial guess for k0 and k... | 0 | [
2,
11857,
1054,
20,
329,
16,
13,
13225,
568,
20059,
1197,
9569,
6448,
279,
13,
6336,
6448,
800,
3726,
3726,
31,
589,
452,
109,
2572,
25237,
51,
4277,
9086,
1797,
77,
20059,
1197,
9569,
6448,
279,
13,
6336,
6448,
9,
31,
589,
4549,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 - if statement sytax - if clicked element doesn't have a specific class run code
===
I'm trying to create an if statement that runs the code if the clicked li element doesn't have a class of photo.
$('div.menu li').click(function(){
var content = $(this).attr('class');
if ( I can't figure out the cor... | 0 | [
2,
487,
8190,
93,
13,
8,
100,
3331,
10315,
15514,
13,
8,
100,
15802,
4520,
1437,
22,
38,
57,
21,
1903,
718,
485,
1797,
800,
3726,
3726,
31,
22,
79,
749,
20,
1600,
40,
100,
3331,
30,
1461,
14,
1797,
100,
14,
15802,
2093,
4520,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Delete Request Works In FireFox, Not Safari
===
I have an account database on my Mac that uses HTML, Javascript & PHP to delete an account after I click the delete button. It works every time in FireFox and fails every time in Safari (fail meaning the delete request is completely ignored).
Essentially, this is wha... | 0 | [
2,
27448,
3772,
693,
19,
535,
18219,
15,
52,
25055,
800,
3726,
3726,
31,
57,
40,
2176,
6018,
27,
51,
1572,
30,
2027,
13,
15895,
15,
8247,
8741,
279,
13,
26120,
20,
27448,
40,
2176,
75,
31,
10840,
14,
27448,
5167,
9,
32,
693,
352... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Phonegap. What happens to web SQL database on app update?
===
Please excuse the very novice question but I am about to embark on my first mobile app project using Phonegap. My project will rely heavily on a web SQL database. When I make updates to the app in the future, I need the database the user has built up to rem... | 0 | [
2,
1132,
1136,
306,
9,
98,
5531,
20,
2741,
4444,
255,
6018,
27,
4865,
11100,
60,
800,
3726,
3726,
2247,
6658,
14,
253,
21999,
1301,
47,
31,
589,
88,
20,
20116,
27,
51,
64,
3241,
4865,
669,
568,
1132,
1136,
306,
9,
51,
669,
129,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
TFS Workspaces across VS 2010 and 2012?
===
I am currently developing on Visual Studio 2012 RC using TFS Preview for source control. I would like to create an SSIS Integration project, which requires me to use Visual Studio 2010. However, when I connect to TFS from VS 2010, it automatically creates a new workspace a... | 0 | [
2,
13,
11720,
18,
170,
5582,
18,
464,
4611,
498,
17,
563,
60,
800,
3726,
3726,
31,
589,
871,
3561,
27,
3458,
1120,
563,
16462,
568,
13,
11720,
18,
16121,
26,
1267,
569,
9,
31,
83,
101,
20,
1600,
40,
13,
18,
4557,
8078,
669,
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... |
Eclipse RCP - How to grey-out dependent preferences?
===
How to grey out dependent preferences in Eclipse RCP? <br>
Can preferences be somehow defined as dependent from another preferency, so that they are greyed-out, if the preference which it depends from - is disabled?
![Preferences][1]
[1]: http://i.stack... | 0 | [
2,
11652,
761,
7439,
13,
8,
184,
20,
2682,
8,
1320,
9063,
9808,
18,
60,
800,
3726,
3726,
184,
20,
2682,
70,
9063,
9808,
18,
19,
11652,
761,
7439,
60,
13,
1,
5145,
1,
92,
9808,
18,
44,
3625,
2811,
28,
9063,
37,
226,
6369,
8883,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 can't find the signed request sent from facebook using their registration api in google app engine
===
I am really confused, because the documentation states that when a user registers from my website, using a facebook registration form, I am supposed to receive a signed request. I do not know where to look for it. ... | 0 | [
2,
31,
92,
22,
38,
477,
14,
908,
3772,
795,
37,
9090,
568,
66,
8587,
21,
2159,
19,
8144,
4865,
1406,
800,
3726,
3726,
31,
589,
510,
4230,
15,
185,
14,
13945,
202,
30,
76,
21,
4155,
2243,
18,
37,
51,
2271,
15,
568,
21,
9090,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 redirect to splash page and allow for images to display in .htacess rule?
===
I am using the following .htaccess rule to redirect all pages of my site to a splash pag. However, the image that should be on the splash page is not displaying. How do I add to this rule to allow for images to be displayed? Please co... | 0 | [
2,
184,
20,
302,
14706,
20,
13873,
2478,
17,
1655,
26,
3502,
20,
3042,
19,
13,
9,
17134,
5052,
18,
1828,
60,
800,
3726,
3726,
31,
589,
568,
14,
249,
13,
9,
9020,
20604,
1828,
20,
302,
14706,
65,
4434,
16,
51,
689,
20,
21,
1387... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Why wont ServerSocket.accept() work?
===
Before I ask this question I would to apologise because of the fact that I have no idea what has gone wrong here, so I'm just saying in advanced that this may be a pain in the neck to follow.
public void setUp(){
try {
port = Integer.parseInt(JOptionPane.s... | 0 | [
2,
483,
7290,
17595,
5668,
1198,
9,
28050,
5,
6,
170,
60,
800,
3726,
3726,
115,
31,
1349,
48,
1301,
31,
83,
20,
26645,
185,
16,
14,
837,
30,
31,
57,
90,
882,
98,
63,
1042,
1389,
235,
15,
86,
31,
22,
79,
114,
1148,
19,
2255,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
App builders: how to evaluate their worth?
===
A simple Google search for '[appbuilder](http://www.google.co.uk/search?q=appbuilder)' reveals a whole load of new services that claim to help you build your app with their stuff, and deliver a thing ready to go on the app/android store. Here are a few:
* [Tiggzi](http... | 0 | [
2,
4865,
20450,
45,
184,
20,
13,
15599,
66,
2715,
60,
800,
3726,
3726,
21,
1935,
8144,
2122,
26,
13,
22,
2558,
7753,
20904,
500,
5,
21127,
6903,
6483,
9,
16111,
4875,
9,
716,
9,
2185,
118,
25136,
60,
1251,
3726,
7753,
20904,
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... |
Can you grab a file with PHP through a form with $_SERVER['PHP_SELF']; action?
===
I have an email attachment form that is working fine when the `<form action="processingtheformfile.php">` is sent to another PHP file to process.
However, when I try to implement the same idea to a form that is simply `<form action="... | 0 | [
2,
92,
42,
4931,
21,
3893,
29,
13,
26120,
120,
21,
505,
29,
5579,
1,
10321,
106,
2558,
22,
26120,
1,
8411,
22,
12660,
1028,
60,
800,
3726,
3726,
31,
57,
40,
8517,
14575,
505,
30,
25,
638,
1123,
76,
14,
13,
1,
4190,
1028,
3726,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 joomla Migration
===
After Migrating joomla 1.5 to 1.7 with the use of JUpgrade gives Error : Database Error: Unable to connect to the Database: Could not connect to MySQL.Any Idear | 0 | [
2,
13,
26120,
2640,
2636,
531,
8443,
800,
3726,
3726,
75,
28749,
2640,
2636,
531,
137,
9,
264,
20,
137,
9,
465,
29,
14,
275,
16,
487,
576,
8031,
2352,
7019,
13,
45,
6018,
7019,
45,
2343,
20,
6379,
20,
14,
6018,
45,
110,
52,
63... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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... |
Aggregate function over a given time interval
===
My SQL is a bit rusty and I'm having quite a bit of difficulty with this problem. Suppose I have a table with a Timestamp column and a Number column. The goal is to return a result set containing the average value for some arbitrarily chosen regular interval.
So, fo... | 0 | [
2,
8544,
1990,
84,
21,
504,
85,
14422,
800,
3726,
3726,
51,
4444,
255,
25,
21,
1142,
15395,
17,
31,
22,
79,
452,
1450,
21,
1142,
16,
6967,
29,
48,
1448,
9,
5787,
31,
57,
21,
859,
29,
21,
436,
38,
10158,
4698,
17,
21,
234,
46... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Connecting to MSSQL server using RJDBC in Rapache
===
I have a problem connecting to an MSSQL server using rApache. I use the addon-package "RJDBC" to connect to this server. In the R-Console I can connect fine and access the server but when I try to connect trough rApache (on my test website) it fails and I get an er... | 0 | [
2,
6440,
20,
4235,
18,
22402,
8128,
568,
13,
23008,
43,
7229,
19,
4888,
9616,
800,
3726,
3726,
31,
57,
21,
1448,
6440,
20,
40,
4235,
18,
22402,
8128,
568,
4888,
9616,
9,
31,
275,
14,
3547,
218,
8,
8573,
1303,
13,
7,
23008,
43,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Chrome Print Changes Layout
===
When I print a page on my site from Chrome the layout goes wonky. See what I mean [here][1]. You can see that the top menu, which is a `ul`, goes from horizontal to vertical. Thoughts?
[1]: http://slotted.co | 0 | [
2,
13,
12985,
4793,
1693,
9106,
800,
3726,
3726,
76,
31,
4793,
21,
2478,
27,
51,
689,
37,
13,
12985,
14,
9106,
1852,
230,
3329,
9,
196,
98,
31,
884,
636,
6836,
500,
2558,
165,
500,
9,
42,
92,
196,
30,
14,
371,
11379,
15,
56,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 Java library can retrieve data from a remote URL, while handing various content encodings?
===
I've rolled my own code to retrieve data from remote URLs using a HttpURLConnection. First I had to write custom code to handle gzipped content encoding, now I am encountering web servers that are serving up RSS feeds ... | 0 | [
2,
98,
8247,
1248,
92,
11917,
1054,
37,
21,
5388,
287,
6362,
15,
133,
15517,
617,
2331,
19608,
18,
60,
800,
3726,
3726,
31,
22,
195,
2958,
51,
258,
1797,
20,
11917,
1054,
37,
5388,
13,
911,
7532,
568,
21,
7775,
911,
255,
25996,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 replace english hard-coded strings with russian text in python?
===
I try to localize OSQA (django + python) for russian language. A lot of string I can translate with locale-folder. But in OSQA some string was hard-coded (put in code in simple text).
I try simply replace english text to russian, but get ... | 0 | [
2,
184,
92,
31,
3934,
486,
552,
8,
22254,
7887,
29,
1154,
1854,
19,
20059,
60,
800,
3726,
3726,
31,
1131,
20,
375,
2952,
13,
759,
8681,
13,
5,
14365,
14541,
2754,
20059,
6,
26,
1154,
816,
9,
21,
865,
16,
3724,
31,
92,
20628,
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... |
What is the proper syntax for getting a Makefile to print the output directory of one of its output zip files?
===
I'm trying to edit an Android Makefile in the hopes of getting it to print out the directory (path) location of one the ZIP files it creates. Ideally, since the build process is long and does many things... | 0 | [
2,
98,
25,
14,
4119,
22649,
26,
1017,
21,
233,
16877,
20,
4793,
14,
5196,
16755,
16,
53,
16,
82,
5196,
12133,
6488,
60,
800,
3726,
3726,
31,
22,
79,
749,
20,
9392,
40,
13005,
233,
16877,
19,
14,
8410,
16,
1017,
32,
20,
4793,
7... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Typeof of a javascript function is defined before the function is declared?
===
Could somebody please explain or link to a resource that will tell me why :
<script type=" type="text/javascript">
if(typeof window.myfunc == "function"){
alert("Why does myfunc already exist ?");
... | 0 | [
2,
1001,
1041,
16,
21,
8247,
8741,
1990,
25,
2811,
115,
14,
1990,
25,
2482,
60,
800,
3726,
3726,
110,
8861,
2247,
3271,
54,
3508,
20,
21,
6577,
30,
129,
494,
55,
483,
13,
45,
13,
1,
8741,
1001,
3726,
7,
1001,
3726,
7,
11969,
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 print arabic chars comes from java server and mysql database
===
i have a server tomcat , and the client is android application(2.2)
i want to get some data(arabic data) from mysql on my server and then send it to android application
<p>my problem is on printing that arabic data on android screen</p>
i foun... | 0 | [
2,
13005,
4793,
6663,
4892,
18,
1624,
37,
8247,
8128,
17,
51,
18,
22402,
6018,
800,
3726,
3726,
31,
57,
21,
8128,
2067,
5782,
13,
15,
17,
14,
6819,
25,
13005,
3010,
5,
135,
9,
135,
6,
31,
259,
20,
164,
109,
1054,
5,
9812,
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... |
How to get the class of a field of type T?
===
I write JUnit tests for some Spring MVC Controllers. The initialization of the JUnit test is common for all my Controllers tests, so I wanted to create an abstract class that does this initialization.
Thus, I created the following code:
@RunWith(SpringJUnit4Clas... | 0 | [
2,
184,
20,
164,
14,
718,
16,
21,
575,
16,
1001,
13,
38,
60,
800,
3726,
3726,
31,
2757,
7446,
242,
4894,
26,
109,
1573,
307,
8990,
9919,
18,
9,
14,
2104,
1829,
16,
14,
7446,
242,
1289,
25,
757,
26,
65,
51,
9919,
18,
4894,
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... |
What url encoding web browser uses?
===
What url encoding a web browser uses while submitting data to server?
with my application i use `HttpUtility.UrlEncode(string data)`
but do not get result as i get with web browser.
My application submit some text data to forum.
When i am submitting data with web browser... | 0 | [
2,
98,
287,
6362,
19608,
2741,
16495,
2027,
60,
800,
3726,
3726,
98,
287,
6362,
19608,
21,
2741,
16495,
2027,
133,
28848,
1054,
20,
8128,
60,
29,
51,
3010,
31,
275,
13,
1,
21127,
14255,
856,
9,
911,
2284,
9375,
5,
11130,
1054,
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... |
Which mongo stats to use to throttle writes
===
I am writing logging information asynchronously to mongodb. Since this is an non-essential function, I am looking for a way to throttle these writes so it does not impact read/writes from other part of the application. Essentially, only write when certain stat is below ... | 0 | [
2,
56,
3521,
839,
12819,
18,
20,
275,
20,
23997,
6215,
800,
3726,
3726,
31,
589,
1174,
13,
13919,
676,
21,
16023,
13985,
20,
3521,
5474,
220,
9,
179,
48,
25,
40,
538,
8,
24219,
1990,
15,
31,
589,
699,
26,
21,
161,
20,
23997,
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... |
ormexecutequery() count seems to return an array
===
ormexecutequery() seem to return an array for the following
example = ormExecuteQuery("select count(commentID) as n from pComment c");
output uing cfdump for example would be...
array
[1][x]
where x is count.
How can I just get... | 0 | [
2,
54,
79,
1706,
17194,
591,
8190,
93,
5,
6,
2468,
2206,
20,
788,
40,
7718,
800,
3726,
3726,
54,
79,
1706,
17194,
591,
8190,
93,
5,
6,
2260,
20,
788,
40,
7718,
26,
14,
249,
823,
800,
54,
79,
1706,
17194,
591,
8190,
93,
5,
7,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
JQGRID inline dropdown binding via AJAX
===
![enter image description here][1]
<code>
jQuery(document).ready(function () {
</code>
var grid = $("#list");
var AllCategory={"1":"Computing","2":"Cooking","10":"Fiction","3":"Finance","6":"Language","4":"Medical","11":"News","8":"Philosophy","9":"R... | 0 | [
2,
487,
1251,
16375,
19,
1143,
2804,
2968,
8728,
1197,
20624,
800,
3726,
3726,
13,
187,
2558,
13679,
1961,
5318,
235,
500,
2558,
165,
500,
13,
1,
9375,
1,
487,
8190,
93,
5,
28132,
6,
9,
15193,
5,
22359,
13,
5,
6,
13,
1,
13,
1,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
how to perform a condition the basis of item selection on two spinners?
===
I have two spinners in my app. I want that if i select option "first" from spinner 1 and option "second" from spinner 2, then the action gets performed. But it show "NUMBERFORMATEXCEPTION".
Here's the code
if (((spinner.getIt... | 0 | [
2,
184,
20,
2985,
21,
2874,
14,
2239,
16,
9101,
3155,
27,
81,
3310,
1031,
18,
60,
800,
3726,
3726,
31,
57,
81,
3310,
1031,
18,
19,
51,
4865,
9,
31,
259,
30,
100,
31,
5407,
4255,
13,
7,
3552,
7,
37,
3310,
1031,
137,
17,
4255,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Getting camera preview data without using a preview callback
===
I have an app that does some processing to camera preview frames before displaying them to the user. I'm currently using preview callbacks to access the image data, but the problem I have is that the onPreviewFrame() function stops getting called if you ... | 0 | [
2,
1017,
3336,
16121,
1054,
366,
568,
21,
16121,
645,
1958,
800,
3726,
3726,
31,
57,
40,
4865,
30,
630,
109,
5511,
20,
3336,
16121,
12809,
115,
17418,
105,
20,
14,
4155,
9,
31,
22,
79,
871,
568,
16121,
645,
1958,
18,
20,
1381,
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... |
Unzip .zip file uploaded from Android via PHP to IIS 7
===
I'm sending compressed file in .zip extension from Android via PHP to IIS server. Almost is working everything, but I cannot achieve unzip file with php. I've this code:
<?php
$target_path1 = "C:/Windows/Temp/";
$target_path1 = $target_... | 0 | [
2,
367,
2553,
306,
13,
9,
2553,
306,
3893,
23782,
37,
13005,
1197,
13,
26120,
20,
595,
18,
453,
800,
3726,
3726,
31,
22,
79,
4907,
18472,
3893,
19,
13,
9,
2553,
306,
3896,
37,
13005,
1197,
13,
26120,
20,
595,
18,
8128,
9,
557,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 a physical webpage with frames in iframe
===
i have iframe in my webpage, i have done the coding part for browsing the folders and viewing files in iframe.each folder has a index.html.now i need to display the index.html in iframe.index.html page contains frames divided into 2,each from different sources.i ... | 0 | [
2,
17418,
21,
1825,
2741,
6486,
29,
12809,
19,
31,
8361,
800,
3726,
3726,
31,
57,
31,
8361,
19,
51,
2741,
6486,
15,
31,
57,
677,
14,
13,
15458,
141,
26,
10175,
68,
14,
19294,
18,
17,
11244,
6488,
19,
31,
8361,
9,
14322,
19294,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
linux process scheduling delayed for long time
===
I have done strace on my multi-threaded c++ application running on linux
after couple hours of running, none of the threads got run, for about 12 seconds.
I have seen that the unfinished select system call which is called with a timeout was unfinished before th... | 0 | [
2,
13024,
953,
23096,
8241,
26,
175,
85,
800,
3726,
3726,
31,
57,
677,
354,
7367,
27,
51,
1889,
8,
96,
10647,
69,
272,
20512,
3010,
946,
27,
13024,
75,
1335,
974,
16,
946,
15,
2369,
16,
14,
20396,
330,
485,
15,
26,
88,
390,
25... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Does JSF 2.0 stript out html when rendering?
===
I have to work with existing html and css and convert it to jsf app. So there are pure li elements (no jsf tags) with class="" settings. When rendered with JSF 2.0 under glassfish 3.1.1 the class="" is removed from the li elements and the css breaks, i.e. site breaks.
... | 0 | [
2,
630,
487,
18,
410,
172,
9,
387,
4998,
38,
70,
13,
15895,
76,
15307,
60,
800,
3726,
3726,
31,
57,
20,
170,
29,
3149,
13,
15895,
17,
272,
18,
18,
17,
8406,
32,
20,
487,
18,
410,
4865,
9,
86,
80,
50,
4267,
2093,
2065,
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... |
memory leak in knockout
===
Part of our application polls for updates and then updates the model with the changes. It leaks, most noticeably in chrome. I saw the problem in IE when I left the application running for a long period but it's most noticeable in chrome (version of chrome is 19.0.1084.56 m).
There's an... | 0 | [
2,
1912,
11724,
19,
11676,
800,
3726,
3726,
141,
16,
318,
3010,
16460,
26,
16779,
17,
94,
16779,
14,
1061,
29,
14,
1693,
9,
32,
11724,
18,
15,
127,
26233,
19,
13,
12985,
9,
31,
441,
14,
1448,
19,
13,
660,
76,
31,
225,
14,
3010... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Accessing column i in row A(i)
===
Is there a better why to do this for-loop?
for i = find(A > 42)
B(A(i), i) = B(A(i), i) + 1;
end
`A` is an integer array. `B` is a `max(A)`×`length(A)` matrix. | 0 | [
2,
1381,
68,
4698,
31,
19,
3131,
21,
5,
49,
6,
800,
3726,
3726,
25,
80,
21,
574,
483,
20,
107,
48,
26,
8,
18786,
60,
26,
31,
800,
477,
5,
58,
13,
1,
4162,
6,
334,
5,
58,
5,
49,
6,
15,
31,
6,
800,
334,
5,
58,
5,
49,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Why downloaded file is not downloaded instead it is shown in browser?
===
I redirect the visitors in my website from page A to page B. In page B I expect users to get the downloaded PDF file (to be downloaded when page B is loading).
I have taken the code from another article (see a [previous question answered here][... | 0 | [
2,
483,
23887,
3893,
25,
52,
23887,
700,
32,
25,
1721,
19,
16495,
60,
800,
3726,
3726,
31,
302,
14706,
14,
4531,
19,
51,
2271,
37,
2478,
21,
20,
2478,
334,
9,
19,
2478,
334,
31,
4186,
3878,
20,
164,
14,
23887,
13,
11124,
3893,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
why am i getting CXX0030 (" Error: expression cannot be evaluated") and CXX0017 on almost everything?
===
it's a weird issue... cause i'm pretty much sure it worked with no problems up until a few days ago. i'm using VS2010 SP1.
when checking my Auto or Local variables debug window, i cannot seem to be able to evalua... | 0 | [
2,
483,
589,
31,
1017,
272,
8962,
2032,
1762,
13,
5,
7,
7019,
45,
1803,
1967,
44,
19018,
7,
6,
17,
272,
8962,
2032,
1053,
27,
557,
796,
60,
800,
3726,
3726,
32,
22,
18,
21,
5455,
1513,
9,
9,
9,
1679,
31,
22,
79,
1772,
212,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 mobile - Vertical scroll causes swipe
===
I have a strange issue...when I scroll vertically
it triggers swipe right/left events...
I've checked it on IOS...
The swipe events are binded to the data-role='page' | 0 | [
2,
487,
8190,
93,
3241,
13,
8,
7035,
12159,
4047,
27246,
800,
3726,
3726,
31,
57,
21,
2578,
1513,
9,
9,
9,
3185,
31,
12159,
23300,
32,
7286,
18,
27246,
193,
118,
9742,
963,
9,
9,
9,
31,
22,
195,
6505,
32,
27,
13,
7760,
9,
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... |
accessing objects of xml layout android
===
I have an activity (`MainActivity.java`) in which content view is like this
this.setContentView(R.layout.standalone_example);
my standalone_example.xml is like this
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.and... | 0 | [
2,
1381,
68,
3916,
16,
23504,
9106,
13005,
800,
3726,
3726,
31,
57,
40,
2358,
13,
5,
1,
6232,
19348,
9,
1004,
1385,
1,
6,
19,
56,
2331,
1418,
25,
101,
48,
48,
9,
3554,
25424,
4725,
5,
139,
9,
4414,
1320,
9,
10731,
17979,
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... |
Admob + surfaceview don't play well
===
I'm running Admob 6.0.1 and trying to add the advert over the top of the surface view, I can say that the code below works great with a Android 3.2 (a real device), and also works fine with a android 4 device in the emulator but, when I try to test on pre api13, eg 2.3.3 or belo... | 0 | [
2,
21,
43,
1293,
220,
2754,
1490,
4725,
221,
22,
38,
418,
134,
800,
3726,
3726,
31,
22,
79,
946,
21,
43,
1293,
220,
400,
9,
387,
9,
165,
17,
749,
20,
3547,
14,
13,
22898,
84,
14,
371,
16,
14,
1490,
1418,
15,
31,
92,
395,
3... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How do I completely uninstall Node.js, and reinstall from beginning (Mac OS X)
===
My version of node is always v0.6.1-pre even after I install brew node and NVM install v0.6.19.
My node version is:
node -v
v0.6.1-pre
NVM says this:
nvm ls
v0.6.19
current: v0.6.19
So where ... | 0 | [
2,
184,
107,
31,
1524,
367,
108,
21300,
15421,
9,
728,
18,
15,
17,
7102,
21300,
37,
997,
13,
5,
6893,
13,
759,
993,
6,
800,
3726,
3726,
51,
615,
16,
15421,
25,
550,
566,
387,
9,
379,
9,
165,
8,
3515,
166,
75,
31,
16146,
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... |
replace two dots following eahc other with Null
===
I am trying to replace two dots following each other with Null.
SQL> select regexp_replace('..','[^\.]+\.','Null') from dual;
RE
--
..
whereas i want
RE
--
Null
How do i achieve this using regex please | 0 | [
2,
3934,
81,
17900,
249,
13507,
9469,
89,
29,
16203,
800,
3726,
3726,
31,
589,
749,
20,
3934,
81,
17900,
249,
206,
89,
29,
16203,
9,
4444,
255,
1,
5407,
7953,
6899,
1,
99,
5119,
5,
22,
9,
9,
22,
15,
22,
2558,
1,
9,
500,
2430... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Loading a .csv file into dictionary
===
I've used streamreader to read in a .csv file, then i need to split the values and put them into a dictionary. so far i have:
namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
Dictionary<string, string> dict = new Dictionary<... | 0 | [
2,
12797,
21,
13,
9,
6824,
710,
3893,
77,
9186,
800,
3726,
3726,
31,
22,
195,
147,
3766,
10647,
106,
20,
1302,
19,
21,
13,
9,
6824,
710,
3893,
15,
94,
31,
376,
20,
2132,
14,
4070,
17,
442,
105,
77,
21,
9186,
9,
86,
463,
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... |
PHP. How to extract array keys for new array?
===
How can I extract `server_vps_de_dc1_s1` from this array:
$server = array(
"vps" => array (
"de" => array (
"dc1" => array (
"s1" => array (
"name"=> "Xen VPS 200",
"processor"=> "200... | 0 | [
2,
13,
26120,
9,
184,
20,
10962,
7718,
5534,
26,
78,
7718,
60,
800,
3726,
3726,
184,
92,
31,
10962,
13,
1,
10321,
106,
1,
10924,
18,
1,
546,
1,
7201,
165,
1,
18,
165,
1,
37,
48,
7718,
45,
5579,
10321,
106,
800,
7718,
5,
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 Android phones run Android 2.3.3?
===
I want to buy a couple of the most commonly used Android phones to test my app on. This is surprisingly hard to figure out.
The [Android Dashboard][1] states that 2.3.3 is the most commonly used OS, but I can't seem to find any phones that run it... [Wikipedia][2] seems t... | 2 | [
2,
98,
13005,
14830,
485,
13005,
172,
9,
240,
9,
240,
60,
800,
3726,
3726,
31,
259,
20,
3034,
21,
1335,
16,
14,
127,
2524,
147,
13005,
14830,
20,
1289,
51,
4865,
27,
9,
48,
25,
11701,
552,
20,
1465,
70,
9,
14,
636,
290,
18524,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Xcode loading core data lag
===
I have 3 entities saved in core data. I am loading these in several view controllers in the app - sometimes loading data from all 3. Below is how I am loading this data and assign it to an array. Once it is in the array, then I sort, filter, count or whatever I need to do depending on t... | 0 | [
2,
993,
9375,
12797,
2884,
1054,
13,
6828,
800,
3726,
3726,
31,
57,
203,
12549,
4377,
19,
2884,
1054,
9,
31,
589,
12797,
158,
19,
238,
1418,
9919,
18,
19,
14,
4865,
13,
8,
1030,
12797,
1054,
37,
65,
203,
9,
1021,
25,
184,
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... |
c# recursive search to check for a file extension
===
I want to check if a file in the directory I pass has a specific extension.
public static bool ProcessDirectory(string targetDirectory)
{
// Process the list of files found in the directory.
string[] fileEntries = System.IO.Directo... | 0 | [
2,
272,
5910,
302,
24244,
2122,
20,
2631,
26,
21,
3893,
3896,
800,
3726,
3726,
31,
259,
20,
2631,
100,
21,
3893,
19,
14,
16755,
31,
1477,
63,
21,
1903,
3896,
9,
317,
12038,
1607,
1823,
953,
10197,
93,
5,
11130,
2935,
10197,
93,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 smart input text box for adding number combination
===
I'm trying to create a functional text box which has two digits such as a month.
Since the month can be a number from 1 - 12 I want to enforce the first digit to be zero.
The trick that I'm trying to do however is when the text box first gains focus and... | 0 | [
2,
3547,
3978,
6367,
1854,
1649,
26,
4721,
234,
3733,
800,
3726,
3726,
31,
22,
79,
749,
20,
1600,
21,
7652,
1854,
1649,
56,
63,
81,
19076,
145,
28,
21,
1617,
9,
179,
14,
1617,
92,
44,
21,
234,
37,
137,
13,
8,
390,
31,
259,
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... |
Why is line 17 of this Java program not being executed?
===
As an exercise for my Java course in Uni this morning, I had to write a small program to ask the user to input some details, then print them back. I've since finished writing it, but I ran into a strange problem along the way.
See the code below:
i... | 0 | [
2,
483,
25,
293,
369,
16,
48,
8247,
625,
52,
142,
5557,
60,
800,
3726,
3726,
28,
40,
5935,
26,
51,
8247,
674,
19,
9911,
48,
959,
15,
31,
41,
20,
2757,
21,
284,
625,
20,
1349,
14,
4155,
20,
6367,
109,
3289,
15,
94,
4793,
105,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 SFINAE gives different results on GCC and Clang
===
I'm learning how to use SFINAE to my advantage. I'm trying to use it to select the function implementation based on existence of a ``serialize()`` function in an object.
This is the code I use to determine, if the type defines the serialize() function:
<!... | 0 | [
2,
568,
15025,
10944,
2352,
421,
1736,
27,
489,
3384,
17,
4258,
263,
800,
3726,
3726,
31,
22,
79,
2477,
184,
20,
275,
15025,
10944,
20,
51,
3314,
9,
31,
22,
79,
749,
20,
275,
32,
20,
5407,
14,
1990,
6123,
432,
27,
3012,
16,
21... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Core data cross referencing two relationships
===
I have a data structure in Core Data like so...
User
Item
Category
User has a toMany relationship "FavouriteItems" to the Item entity.
Category also has a toMany relationship "Items" to the Item entity.
The user can select favourite items from any categ... | 0 | [
2,
2884,
1054,
919,
13,
29254,
81,
5833,
800,
3726,
3726,
31,
57,
21,
1054,
1411,
19,
2884,
1054,
101,
86,
9,
9,
9,
4155,
9101,
3230,
4155,
63,
21,
20,
14842,
1429,
13,
7,
1473,
23739,
2119,
2119,
79,
18,
7,
20,
14,
9101,
9252... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 play music file in python?
===
Can anybody suggest me how to play music file in python.
And find the music file volume level.
Thanks | 1 | [
2,
184,
20,
418,
232,
3893,
19,
20059,
60,
800,
3726,
3726,
92,
11181,
5601,
55,
184,
20,
418,
232,
3893,
19,
20059,
9,
17,
477,
14,
232,
3893,
2310,
662,
9,
3669,
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... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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... |
How to export URLs in org-mode to ascii without brackets
===
When I write
$ git clone https://https://username@bitbucket.org/username/reponame.git
in org-mode and then export to ascii (C-c C-e a) the result is
$ git clone [https://https://username@bitbucket.org/username/reponame.git]
Hence, the read... | 0 | [
2,
184,
20,
7487,
13,
911,
7532,
19,
13,
5583,
8,
15570,
20,
28,
1892,
49,
366,
21971,
800,
3726,
3726,
76,
31,
2757,
5579,
13,
10404,
13871,
7775,
18,
6903,
21127,
18,
6903,
16704,
7259,
1,
3326,
11925,
1198,
9,
5583,
118,
16704,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Create a horizontal line between ListBoxItems (horizontally oriented ListBox)
===
I want to create a listbox like this:
-----|-----|-----|-----|-----|-----
The |'s are my listboxitems which I have separated using margins. This works fine. What I want is the listbox to have a background that contains this line. O... | 0 | [
2,
1600,
21,
10095,
293,
128,
968,
5309,
2119,
79,
18,
13,
5,
6778,
19538,
2877,
1326,
13,
6800,
968,
5309,
6,
800,
3726,
3726,
31,
259,
20,
1600,
21,
968,
5309,
101,
48,
45,
13,
8,
8,
8,
8,
8,
1,
8,
8,
8,
8,
8,
1,
8,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Exporting DLL API and Factory with impls from same DLL
===
Okay, I'm starting to understand why its called Dll Hell.
This is the code I got
// API.h file
#ifdef EXPORTS
#define API __declspec(dllexport)
#else
#define API __declspec(dllimport)
#endif
struct API ICla... | 0 | [
2,
7487,
68,
13,
43,
211,
21,
2159,
17,
3129,
29,
5420,
7532,
37,
205,
13,
43,
211,
800,
3726,
3726,
1705,
15,
31,
22,
79,
1422,
20,
1369,
483,
82,
227,
13,
43,
211,
1094,
9,
48,
25,
14,
1797,
31,
330,
12894,
21,
2159,
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... |
Unknown function: splice#SpliceInit at launch
===
I installed *Splice.vim* through *Vundle* but I got these error when running `git mergetool`. Here is my `.gitconfig`:
[merge]¬
tool = splice¬ ... | 0 | [
2,
2562,
1990,
45,
11202,
3568,
5910,
3401,
11909,
108,
242,
35,
3394,
800,
3726,
3726,
31,
4066,
1637,
3401,
11909,
9,
1755,
79,
2483,
120,
1637,
710,
8724,
413,
2483,
47,
31,
330,
158,
7019,
76,
946,
13,
1,
10404,
12666,
20799,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
vbulletin custom field plugin
===
I have a question about the vbulletin 4 plugins .
I need to create a plugin that add a new custom field to the registration form .
I don’t want to modify the "register" template or to add this custom field from the admin panel.
sorry i'm new to vbulletin developing and i need your... | 0 | [
2,
566,
9077,
1336,
108,
5816,
575,
10922,
108,
800,
3726,
3726,
31,
57,
21,
1301,
88,
14,
566,
9077,
1336,
108,
268,
10922,
108,
18,
13,
9,
31,
376,
20,
1600,
21,
10922,
108,
30,
3547,
21,
78,
5816,
575,
20,
14,
8587,
505,
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... |
JSF 2.0: Redirecting in @PostConstruct method resulted in IllegalStateException
===
According to the [answer of BalusC](http://stackoverflow.com/a/1930907/801434), I used
FacesContext.getCurrentInstance().getExternalContext().redirect(url);
in my `@PostConstruct` method to stop JSF from rendering the view an... | 0 | [
2,
487,
18,
410,
172,
9,
387,
45,
302,
14706,
68,
19,
13,
1,
6962,
1126,
10346,
2109,
2923,
19,
5143,
3859,
10066,
872,
800,
3726,
3726,
496,
20,
14,
636,
5950,
4662,
16,
3350,
267,
150,
500,
5,
21127,
6903,
25325,
2549,
9990,
9... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to find the position in Listview when the screen on touch mode?
===
I work on an application for blind people and the difficulties I am having that, when the user swipe one finger from top of the screen to bottom on a listview, on which ever item finger goes while the finger moves I want to find out the position b... | 0 | [
2,
184,
20,
477,
14,
649,
19,
968,
4725,
76,
14,
2324,
27,
1723,
3740,
60,
800,
3726,
3726,
31,
170,
27,
40,
3010,
26,
4631,
148,
17,
14,
8075,
31,
589,
452,
30,
15,
76,
14,
4155,
27246,
53,
2363,
37,
371,
16,
14,
2324,
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... |
Taking backup of all the databases in SQL Server
===
I have a Microsoft SQL Server 2005 DB server. In the DB server, I have around 250 user databases. I have to take a back up of all these databases. Since, manually taking backup consumes lot of time, I am looking for a Batch script or DB script which will automatical... | 2 | [
2,
741,
10119,
16,
65,
14,
6018,
18,
19,
4444,
255,
8128,
800,
3726,
3726,
31,
57,
21,
7099,
4444,
255,
8128,
812,
13,
9007,
8128,
9,
19,
14,
13,
9007,
8128,
15,
31,
57,
140,
6774,
4155,
6018,
18,
9,
31,
57,
20,
247,
21,
97,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
MultiTouchHandler Few Errors?
===
getting a few error and not sure what to do please help trying to develop snake game in android version 1.5 and using the eclipse sdk version 4.2.0 seem that these errors are the only thing holding me back from being able to debugg my game.
The method getX() in the type MotionE... | 0 | [
2,
1889,
15725,
3203,
1252,
310,
11908,
60,
800,
3726,
3726,
1017,
21,
310,
7019,
17,
52,
562,
98,
20,
107,
2247,
448,
749,
20,
2803,
6358,
250,
19,
13005,
615,
137,
9,
264,
17,
568,
14,
11652,
13,
18,
43,
197,
615,
268,
9,
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... |
Duplicate ActiveRecord record and maintain all relationships
===
My dilemma is that I need to re-assign all records in a table a new id, for legacy reasons, but this table already has a lot of relationships with different models that depend on it having its old id. I'd like to come up with a good way to re-assign the... | 0 | [
2,
19429,
1348,
14953,
571,
17,
4027,
65,
5833,
800,
3726,
3726,
51,
23314,
25,
30,
31,
376,
20,
302,
8,
472,
11255,
65,
742,
19,
21,
859,
21,
78,
4924,
15,
26,
7780,
2932,
15,
47,
48,
859,
614,
63,
21,
865,
16,
5833,
29,
42... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Can't get Ehcache to work with spring 3
===
I am new to Spring so please forgive me if my question is foolish...
I am trying to follow some examples for configuring security on a spring web application. I have configured it to work with ldap directory. Now I need to add caching to the process so that the credential... | 0 | [
2,
92,
22,
38,
164,
16177,
793,
2569,
20,
170,
29,
1573,
203,
800,
3726,
3726,
31,
589,
78,
20,
1573,
86,
2247,
8591,
55,
100,
51,
1301,
25,
12596,
9,
9,
9,
31,
589,
749,
20,
1740,
109,
3770,
26,
1065,
13549,
68,
1221,
27,
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... |
Sencha touch 2.0: Store filter callback
===
I have a very long list and a textfield to filter it.
For performance reasons, I have set up a DelayedTask so that the filter is only applied after like 500ms after the last keystroke (and every keystroke resets the timer).
Since the filtering is quite slow to re-render ... | 0 | [
2,
8252,
1651,
1723,
172,
9,
387,
45,
1718,
11945,
645,
1958,
800,
3726,
3726,
31,
57,
21,
253,
175,
968,
17,
21,
1854,
1109,
20,
11945,
32,
9,
26,
956,
2932,
15,
31,
57,
309,
71,
21,
8241,
38,
20310,
86,
30,
14,
11945,
25,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Error Occuring while upoading Image from Androd to Rails Application
===
Actually we trying to upload image and details from Android to Rails application using Mutipart Form data. The Error Occurring while we uploading image to Rails server. We getting as Encrypted image format here is the Encrypted image format.
P... | 0 | [
2,
7019,
3744,
68,
133,
71,
6941,
3258,
1961,
37,
17,
6526,
20,
2240,
18,
3010,
800,
3726,
3726,
1121,
95,
749,
20,
71,
8294,
1961,
17,
3289,
37,
13005,
20,
2240,
18,
3010,
568,
22072,
3091,
505,
1054,
9,
14,
7019,
10428,
133,
9... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
how open local file with different formats
===
I have to create a console that contains some information and inside of which is visible content of a file can be locale.il files of different formats: pdf, avi, mov, ppt, etc. ods. I'm looking for some ideas on how we can fare.pensavo to a web page or some type of open f... | 0 | [
2,
184,
368,
375,
3893,
29,
421,
13767,
800,
3726,
3726,
31,
57,
20,
1600,
21,
8650,
30,
1588,
109,
676,
17,
572,
16,
56,
25,
4560,
2331,
16,
21,
3893,
92,
44,
375,
62,
9,
947,
6488,
16,
421,
13767,
45,
13,
11124,
15,
13,
52... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
openfire + Search Archive
===
I installed Search Archive and using it with spark. But the Search Archive is not working. Its giving me message like "No conversations were found using the specified search criteria. Please change your search criteria and try again". | 0 | [
2,
368,
5929,
2754,
2122,
9250,
800,
3726,
3726,
31,
4066,
2122,
9250,
17,
568,
32,
29,
9026,
9,
47,
14,
2122,
9250,
25,
52,
638,
9,
82,
1438,
55,
2802,
101,
13,
7,
251,
13527,
46,
216,
568,
14,
9931,
2122,
9157,
9,
2247,
753,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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... |
How to send parameters to portlet use jquery
===
I have a form on my jsp page. In this form i choose a file (zip archive) and after click submmit call servlet to upload this file. For file upload im use Apache Commons FileUlpoad library. After upload im unzip archive. Them i do redict to this jsp.
jsp
<for... | 0 | [
2,
184,
20,
2660,
12905,
20,
1295,
1336,
275,
487,
8190,
93,
800,
3726,
3726,
31,
57,
21,
505,
27,
51,
487,
3401,
2478,
9,
19,
48,
505,
31,
3538,
21,
3893,
13,
5,
2553,
306,
9250,
6,
17,
75,
10840,
972,
79,
5130,
645,
13,
10... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Few Questions to Memory management in .net
===
I have read some Ideas about memory management in .net but following three question are unanswered to me
1. Unmanaged resources gets memory in same managed heap used for managed resources and who allocates it (OS OR CLR OR Anything else)?
2. Does calling Dispose... | 0 | [
2,
310,
2346,
20,
1912,
1097,
19,
13,
9,
2328,
800,
3726,
3726,
31,
57,
1302,
109,
3478,
88,
1912,
1097,
19,
13,
9,
2328,
47,
249,
132,
1301,
50,
29920,
20,
55,
137,
9,
367,
177,
8030,
2566,
3049,
1912,
19,
205,
1471,
15414,
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... |
How to properly use CComPtr in function calls?
===
I'm new to COM and smartpointers, I'm trying to convert a project from raw pointers to CComPtr to avoid the hassle with memory management. I'm looking for some advice on how to properly use CComPointers when it comes to functions and scope in general. A sample of my c... | 0 | [
2,
184,
20,
7428,
275,
272,
11103,
6384,
19,
1990,
3029,
60,
800,
3726,
3726,
31,
22,
79,
78,
20,
13,
960,
17,
3978,
3132,
445,
15,
31,
22,
79,
749,
20,
8406,
21,
669,
37,
4333,
454,
445,
20,
272,
11103,
6384,
20,
2658,
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... |
iOS - how to detect if power is connected to the iDevice ad is charging
===
I'm trying to determine if he device is plugged in and charging. How do I find out in ios 5.x or higher? | 0 | [
2,
13,
7760,
13,
8,
184,
20,
9092,
100,
414,
25,
2587,
20,
14,
13,
3448,
18507,
21,
43,
25,
14346,
800,
3726,
3726,
31,
22,
79,
749,
20,
3746,
100,
24,
3646,
25,
29039,
19,
17,
14346,
9,
184,
107,
31,
477,
70,
19,
13,
7760,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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... |
Tinymce elements with nested markup
===
I got this code from our frontend guy for headings:
<h2 class="headline"><span>Foobar</span></h2>
The span is there for some visual element.
Now, how can I make this kind of "complicated" (for the end user) available over tinymce, so that the user can define correct... | 0 | [
2,
3228,
79,
1105,
2065,
29,
5618,
69,
943,
576,
800,
3726,
3726,
31,
330,
48,
1797,
37,
318,
431,
2451,
1244,
26,
4582,
18,
45,
13,
1,
252,
135,
718,
3726,
7,
1743,
1143,
7,
1,
18,
3206,
1,
4120,
111,
1850,
1,
118,
18,
3206... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
one of GridViewDeleteEventArgs.Values is missing
===
I have a gridview with sqldatasource containing 7 values
girdview datakeynames is equipment_ID and the rest is regular fields
I'm trying to use e.values("BME_No") within gridview_rowdeleted but it's empty meanwhile e.values("equipment_name") is full, e.values... | 0 | [
2,
53,
16,
7354,
4725,
24249,
16778,
6645,
10663,
18,
9,
15165,
18,
25,
2863,
800,
3726,
3726,
31,
57,
21,
7354,
4725,
29,
4444,
255,
18768,
12097,
3503,
453,
4070,
10698,
43,
4725,
1054,
4237,
7259,
18,
25,
2181,
1,
1340,
17,
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... |
Capturing X KeyPress/Release events irrespective of Window in focus
===
I want to record all incoming key pressed events no matter what window is in focus or where the pointer is.
I have written a sample code which should capture the key pressed events of the current
Window in focus.
#include <stdio.h>
... | 0 | [
2,
12859,
993,
1246,
5890,
118,
15202,
963,
13810,
7350,
1284,
16,
1463,
19,
1776,
800,
3726,
3726,
31,
259,
20,
571,
65,
17126,
1246,
2931,
963,
90,
1161,
98,
1463,
25,
19,
1776,
54,
113,
14,
454,
106,
25,
9,
31,
57,
642,
21,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Using REST request in delphi
===
I need to write a simple REST-server on delphi and a client on Ruby on Rails. I watched all videos of Marco Cantu about REST in delphi and I've got a question:
How can delphi process the requests like "/users/1" where 1 - is ID of user. In all of examples used simple functions (like E... | 0 | [
2,
568,
760,
3772,
19,
23030,
800,
3726,
3726,
31,
376,
20,
2757,
21,
1935,
760,
8,
10321,
106,
27,
23030,
17,
21,
6819,
27,
10811,
27,
2240,
18,
9,
31,
1634,
65,
6610,
16,
7687,
92,
2473,
88,
760,
19,
23030,
17,
31,
22,
195,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
eclipse headless files reresh
===
I am trying to use headless build by using the command:
eclipsec -nosplash -application org.eclipse.jdt.apt.core.aptBuild -data %WORKSPACE%
The build works, but there is a major problem. Files that were changed in the file system since the last gui was open, are out of sync. As a ... | 0 | [
2,
11652,
157,
923,
6488,
302,
99,
1635,
800,
3726,
3726,
31,
589,
749,
20,
275,
157,
923,
1895,
34,
568,
14,
1202,
45,
11652,
150,
13,
8,
251,
3401,
9545,
13,
8,
2552,
20669,
13,
5583,
9,
3319,
6013,
870,
9,
728,
43,
38,
9,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
how to clear or Empty list box using jquery on dropdown event change
===
Can any body help me out how to clear the items in the list box on dropdown event change.
$(function () {
$("#ddlLevelColumn").change(function () {
$("#lstCodelist") ------ I need to clear this listbox1
... | 0 | [
2,
184,
20,
1207,
54,
2424,
968,
1649,
568,
487,
8190,
93,
27,
2804,
2968,
807,
753,
800,
3726,
3726,
92,
186,
358,
448,
55,
70,
184,
20,
1207,
14,
3755,
19,
14,
968,
1649,
27,
2804,
2968,
807,
753,
9,
5579,
5,
22359,
13,
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... |
Exception creating MSMQ queue in DLL
===
I'm trying to code some MSMQ functionality into a dll (c++) but am having trouble. Essentially when I make a call to create a queue a low-level exception is raised (see callstack below). What's frustrating me is that this code works fine in an executable, it only seems to fail ... | 0 | [
2,
5391,
2936,
4235,
79,
1251,
22521,
19,
13,
43,
211,
800,
3726,
3726,
31,
22,
79,
749,
20,
1797,
109,
4235,
79,
1251,
18548,
77,
21,
13,
43,
211,
13,
5,
150,
20512,
6,
47,
589,
452,
2572,
9,
7398,
76,
31,
233,
21,
645,
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... |
missing libgeos_c.so on OSX
===
I am trying to install Postgis in order to use GeoDjango on OSX.
For this, I first uninstalled postgres completely, then I installed everything following the GeoDjango documentation: https://docs.djangoproject.com/en/dev/ref/contrib/gis/install/#homebrew
I did the following:
... | 0 | [
2,
2863,
13,
8326,
834,
759,
1,
150,
9,
656,
27,
13,
759,
396,
800,
3726,
3726,
31,
589,
749,
20,
16146,
678,
12469,
19,
389,
20,
275,
6389,
14365,
14541,
27,
13,
759,
396,
9,
26,
48,
15,
31,
64,
367,
108,
21300,
69,
678,
68... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Include functions written in different folders
===
How can I use a function written within a .cpp saved in a folder different from the one that needs that function? For all the .cpp of the first folder I've simply added an `#include` to the .h of the cpp (and it works fine), but trying to add an `#include "..\Folder1\... | 0 | [
2,
468,
3719,
642,
19,
421,
19294,
18,
800,
3726,
3726,
184,
92,
31,
275,
21,
1990,
642,
363,
21,
13,
9,
150,
3421,
4377,
19,
21,
19294,
421,
37,
14,
53,
30,
2274,
30,
1990,
60,
26,
65,
14,
13,
9,
150,
3421,
16,
14,
64,
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... |
Where to find: Android Volume Source Code
===
Yeah the title explains it all. I'm wondering if there is some form of file with in the android source code which is used to modify the volume buttons. Is there such a file, if so where is it?
-Thanks for the help! | 0 | [
2,
113,
20,
477,
45,
13005,
2310,
1267,
1797,
800,
3726,
3726,
3979,
14,
581,
7346,
32,
65,
9,
31,
22,
79,
5712,
100,
80,
25,
109,
505,
16,
3893,
29,
19,
14,
13005,
1267,
1797,
56,
25,
147,
20,
17579,
14,
2310,
12861,
9,
25,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
ImageMagick layering and performance
===
I'm trying to distort an image (photo.jpg) in imagemagick, copy opacity (alphaflat.jpg), and then put that on top of an image (frame.jpg)
The following did work:
convert \( photo.jpg -define distort:viewport=1920x1080+0+0 -distort Perspective '0,0,971.66,1011.70116 6... | 0 | [
2,
1961,
21200,
197,
5385,
68,
17,
956,
800,
3726,
3726,
31,
22,
79,
749,
20,
1460,
2153,
38,
40,
1961,
13,
5,
25445,
9,
12851,
263,
6,
19,
1961,
21200,
197,
15,
4344,
13,
11490,
5788,
13,
5,
22480,
13830,
9,
12851,
263,
6,
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... |
porting django app to GoogleAppEngine to deploy on appspot.com
===
I wanted to port my `django app` to run on `GoogleAppEngine` and deploy this on `appspot.com`.In my django app I am using `postgres` as db to store user info,sothat user login /registration is possible.
I came across [this article][1] about `porting... | 0 | [
2,
1295,
68,
3857,
14541,
4865,
20,
8144,
7753,
16847,
20,
17617,
27,
4865,
18,
4296,
9,
960,
800,
3726,
3726,
31,
417,
20,
1295,
51,
13,
1,
14365,
14541,
4865,
1,
20,
485,
27,
13,
1,
16111,
4875,
7753,
16847,
1,
17,
17617,
48,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Titanium Mobile - Swipe TableView cell left/right to expose another row behind
===
I've been searching around on how to do this, but I've been unsuccessful.
What I'm trying to accomplish is this: I have a TableView with, say, 5 rows. I want to be able to swipe a row left to expose information "behind" the row. Not ... | 0 | [
2,
26398,
3241,
13,
8,
27246,
859,
4725,
1667,
225,
118,
4183,
20,
13833,
226,
3131,
439,
800,
3726,
3726,
31,
22,
195,
74,
5792,
140,
27,
184,
20,
107,
48,
15,
47,
31,
22,
195,
74,
7225,
9,
98,
31,
22,
79,
749,
20,
14570,
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... |
iOS capture video in background
===
So I have an application that is currently capturing video with the front facing iphone camera and then doing some processing on the video feed real-time. What I'm trying to do, however, is make this process run in the background and put other controls onscreen. So for example, sa... | 0 | [
2,
13,
7760,
3683,
763,
19,
2395,
800,
3726,
3726,
86,
31,
57,
40,
3010,
30,
25,
871,
12859,
763,
29,
14,
431,
4325,
21024,
3336,
17,
94,
845,
109,
5511,
27,
14,
763,
4063,
683,
8,
891,
9,
98,
31,
22,
79,
749,
20,
107,
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... |
equal vertical spacing within a table cell
===
I am designing an html email. I have an image and 1 paragraph at the top and bottom. These 3 are within a table cell. I need the image to be at the center of the cell and the 2 paragraphs should be vertically equidistant from the image.
<td height="200" style="ve... | 0 | [
2,
2747,
7035,
29177,
363,
21,
859,
1667,
800,
3726,
3726,
31,
589,
15026,
40,
13,
15895,
8517,
9,
31,
57,
40,
1961,
17,
137,
20599,
35,
14,
371,
17,
2129,
9,
158,
203,
50,
363,
21,
859,
1667,
9,
31,
376,
14,
1961,
20,
44,
3... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
CLASS NOT FOUND EXCEPTION
===
SIR I HAVE A ERROR IN JAVA ITS BELOW
CLASS NOT FOUND EXCEPTION
WHEN I CLICK IN DETAILS BUTTON THE MESSAGE IS SHOWN AS
Java Plug-in 10.5.1.255
Using JRE version 1.7.0_05-b05 Java HotSpot(TM) Client VM
User home directory = C:\Documents and Settings\Administrator
-----------------... | 1 | [
2,
718,
52,
216,
5391,
800,
3726,
3726,
927,
31,
57,
21,
7019,
19,
8247,
82,
1021,
718,
52,
216,
5391,
76,
31,
10840,
19,
3289,
5167,
14,
2802,
25,
1721,
28,
8247,
10922,
8,
108,
332,
9,
264,
9,
165,
9,
20038,
568,
487,
99,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to CD inside a SFTP connection where the connection is established using - Shell script
===
In my script - i create a sftp connection.
I read some directory value from user earlier and once the sftp connection is established, i try to cd to that dir which i got from the user.
But its not working, probably be... | 0 | [
2,
184,
20,
1745,
572,
21,
15025,
13726,
2760,
113,
14,
2760,
25,
613,
568,
13,
8,
3593,
3884,
800,
3726,
3726,
19,
51,
3884,
13,
8,
31,
1600,
21,
15025,
13726,
2760,
9,
31,
1302,
109,
16755,
1923,
37,
4155,
1201,
17,
382,
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... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.