unified_texts stringlengths 32 30.1k | OpenStatus_id int64 0 4 | input_ids list | token_type_ids list | attention_mask list |
|---|---|---|---|---|
How to improve performance in image loading on web application?
===
I have a web application running on local host. The requirement is to load multiple rectangular jpg images (96 images, average 7k in size each) and show on home page when it runs. Images are showed in a grid of 8x12 rows/columns. I am loading image by... | 0 | [
2,
184,
20,
3545,
956,
19,
1961,
12797,
27,
2741,
3010,
60,
800,
3726,
3726,
31,
57,
21,
2741,
3010,
946,
27,
375,
2015,
9,
14,
8981,
25,
20,
6305,
1886,
11354,
487,
9623,
3502,
13,
5,
4060,
3502,
15,
862,
453,
197,
19,
1072,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Am I understanding this correctly? (C# Arrays and assigning values)
===
There was a piece of code in C# for Programmers 2010 that I was wondering about, here it is:
<code>for ( int count = 0; count < deck.Length; count++ )
deck[ count ] =
new Card( faces[ count % 13 ], suits[ count / 13 ] );</code>
... | 0 | [
2,
589,
31,
3260,
48,
12044,
60,
13,
5,
150,
5910,
7718,
18,
17,
13952,
68,
4070,
6,
800,
3726,
3726,
80,
23,
21,
1855,
16,
1797,
19,
272,
5910,
26,
17968,
18,
498,
30,
31,
23,
5712,
88,
15,
235,
32,
25,
45,
13,
1,
9375,
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... |
Stop a loop with an click event jQuery
===
I am looking for a way to stop a loop with a click event(sort of panic button). If you click the button it should stop immediately.
// basic idea
$.each(someArray, function(index, value){
setTimeout(function(){
console.log(index);
},... | 0 | [
2,
747,
21,
5293,
29,
40,
10840,
807,
487,
8190,
93,
800,
3726,
3726,
31,
589,
699,
26,
21,
161,
20,
747,
21,
5293,
29,
21,
10840,
807,
5,
22843,
16,
5083,
5167,
6,
9,
100,
42,
10840,
14,
5167,
32,
378,
747,
1375,
9,
12894,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 Restart IE WebBrowser Control in C#
===
Basically I've figured out how to pro grammatically change proxies, but now I want my WebBrowser to use the new proxy. To do that I presume I need to restart IE, and by extension, the IE based WebBrowser control in my C# application. How can I do this? | 0 | [
2,
184,
20,
22767,
13,
660,
10192,
5417,
4104,
569,
19,
272,
5910,
800,
3726,
3726,
11374,
31,
22,
195,
5700,
70,
184,
20,
895,
24182,
102,
753,
895,
396,
1596,
15,
47,
130,
31,
259,
51,
10192,
5417,
4104,
20,
275,
14,
78,
27188... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Assigning IP Addresses to a Physical Location
===
Is there any way to assign an IP address to a computer connected a specific port on a level 3 Cisco switch? I would like to make a network map that can identify where computers are physically located in our building based on their IP address. If a computer moves locati... | 0 | [
2,
13952,
68,
15735,
12636,
20,
21,
1825,
1474,
800,
3726,
3726,
25,
80,
186,
161,
20,
13952,
40,
15735,
3218,
20,
21,
1428,
2587,
21,
1903,
1295,
27,
21,
662,
203,
28184,
5521,
60,
31,
83,
101,
20,
233,
21,
982,
2942,
30,
92,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
What design patterns to be used in this class diagram?
===
I'm working on the application to create class diagram of video store. In that customer may subscribe with retailer to be notified of new releases. Can I use observer design pattern for this requirement? And some of the requirements for the application is:
1.... | 0 | [
2,
98,
704,
6282,
20,
44,
147,
19,
48,
718,
14161,
60,
800,
3726,
3726,
31,
22,
79,
638,
27,
14,
3010,
20,
1600,
718,
14161,
16,
763,
1718,
9,
19,
30,
7705,
123,
13,
20330,
29,
22943,
20,
44,
22904,
16,
78,
7073,
9,
92,
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... |
How to figure out which class to use in Spring?
===
I have some code that parses a text data into Java objects. There are several parsers available based on a json value. e.g. when type=1, use parser1, type=2 use parser2 etc.
My code is like the following:
interface Parser {
Data parse(Input dat... | 0 | [
2,
184,
20,
1465,
70,
56,
718,
20,
275,
19,
1573,
60,
800,
3726,
3726,
31,
57,
109,
1797,
30,
2017,
7202,
21,
1854,
1054,
77,
8247,
3916,
9,
80,
50,
238,
2017,
18,
445,
904,
432,
27,
21,
487,
528,
1923,
9,
13,
62,
9,
263,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Haskell type class for Queue
===
Has anyone written a Haskell type class (or is there a combination of type classes) that describes a FIFO queue.
[Data.Collection.Sequence][1] seems too strong, but on the other hand [Data.Collection.Unfoldable][2] seems too weak (as order is not defined).
I just wanted to not re... | 0 | [
2,
63,
16507,
1001,
718,
26,
22521,
800,
3726,
3726,
63,
1276,
642,
21,
63,
16507,
1001,
718,
13,
5,
248,
25,
80,
21,
3733,
16,
1001,
2684,
6,
30,
4359,
21,
6028,
4120,
22521,
9,
636,
18768,
9,
15015,
872,
9,
29413,
500,
2558,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 a good book to learn mobile application development(android) that is exercises/questions to practise with?
===
I am expecting to start an internship with a company and just want to get a leg up before begining. Any advice would be appreciated.
| 0 | [
2,
98,
25,
21,
254,
360,
20,
2484,
3241,
3010,
522,
5,
290,
18524,
6,
30,
25,
12612,
118,
24652,
18,
20,
27954,
29,
60,
800,
3726,
3726,
31,
589,
7752,
20,
799,
40,
21549,
29,
21,
237,
17,
114,
259,
20,
164,
21,
1860,
71,
11... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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... |
Ignoring empty href in jQuery each
===
I'm trying to ignore a's with empty href attributes in a jQuery function. Here's the HTML:
<ul id="nav-other-links">
<li class="nav-title">NICHOLAS<br/> AREHART</li><br/>
<li><a href="">CV/Bio</a></li>
<li><a href="">Contact</a></li>
<li><a href="">... | 0 | [
2,
9321,
2424,
746,
14057,
19,
487,
8190,
93,
206,
800,
3726,
3726,
31,
22,
79,
749,
20,
7174,
21,
22,
18,
29,
2424,
746,
14057,
13422,
19,
21,
487,
8190,
93,
1990,
9,
235,
22,
18,
14,
13,
15895,
45,
13,
1,
1287,
4924,
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... |
drawstring onclick method C#
===
I have some strings that I have drawn using DrawString
for (int j = 0; j < dt.Rows.Count; j++)
{
e.Graphics.DrawString(Convert.ToString(dt.Rows[j]["ID"]), drawFont, drawBrush, new Point(Convert.ToInt32(dt.Rows[j]["XCord"]), Convert.ToInt32(d... | 0 | [
2,
2003,
11130,
27,
150,
10129,
2109,
272,
5910,
800,
3726,
3726,
31,
57,
109,
7887,
30,
31,
57,
3160,
568,
2003,
11130,
26,
13,
5,
6391,
487,
800,
713,
73,
487,
13,
1,
13,
43,
38,
9,
5417,
18,
9,
16549,
73,
487,
20512,
6,
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... |
Fast Enumeration Behavior on NSHTTPCookieStorage cookies collection
===
I've stumbled across this code:
NSHTTPCookieStorage *cookieJar = [NSHTTPCookieStorage sharedHTTPCookieStorage];
for (NSHTTPCookie *cookie in [cookieJar cookies])
{
[cookieJar deleteCookie:cookie];
}
Having experienc... | 0 | [
2,
1512,
26940,
872,
3257,
27,
13,
2172,
21127,
20840,
1596,
2153,
1303,
19396,
1206,
800,
3726,
3726,
31,
22,
195,
10282,
464,
48,
1797,
45,
13,
2172,
21127,
20840,
1596,
2153,
1303,
1637,
716,
17391,
6300,
800,
636,
2172,
21127,
208... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Listen for iphone notifications?
===
This maybe not possible, but is there a way to "listen" for iphone notifications or check what kind of notifications have come in from within a app? Is there an API for this? Or does Apple not allow it? | 0 | [
2,
3834,
26,
21024,
52,
4634,
18,
60,
800,
3726,
3726,
48,
913,
52,
938,
15,
47,
25,
80,
21,
161,
20,
13,
7,
13891,
7,
26,
21024,
52,
4634,
18,
54,
2631,
98,
825,
16,
52,
4634,
18,
57,
340,
19,
37,
363,
21,
4865,
60,
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,
0... |
Assigning an object/method to a variable OR a new object literal
===
Looking at Google's code for their bookmark bubble library, I came across this:
var google = google || {};
google.bookmarkbubble = google.bookmarkbubble || {};
Could someone explain what it is they're doing here and why they are doing ... | 0 | [
2,
13952,
68,
40,
3095,
118,
5909,
1807,
43,
20,
21,
7612,
54,
21,
78,
3095,
20665,
800,
3726,
3726,
699,
35,
8144,
22,
18,
1797,
26,
66,
360,
4527,
10937,
1248,
15,
31,
281,
464,
48,
45,
4033,
8144,
800,
8144,
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... |
Trouble printing the value of a Long division and multiplication
===
I have trouble figuring out why a simple division like this one always returns 0.
System.out.println(4091365376L / 4091495462L * 100L);
I suffixed all numbers with Ls so they're treated as Longs. I keep getting a zero.
I'm trying to calc... | 0 | [
2,
2572,
7312,
14,
1923,
16,
21,
175,
460,
17,
25432,
800,
3726,
3726,
31,
57,
2572,
25379,
70,
483,
21,
1935,
460,
101,
48,
53,
550,
4815,
713,
9,
329,
9,
1320,
9,
10299,
16600,
5,
2602,
4472,
19230,
25983,
255,
13,
118,
1417,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 put batch process in a joomla
===
I have a joombla web site and I have to make a Batch process to run every day at midnight. The think is that I don't know where I should put the process. I thought in make a new component but it isn't a component.
Any suggestion? | 0 | [
2,
113,
442,
13064,
953,
19,
21,
2640,
2636,
531,
800,
3726,
3726,
31,
57,
21,
2640,
2636,
10754,
2741,
689,
17,
31,
57,
20,
233,
21,
13064,
953,
20,
485,
352,
208,
35,
6373,
9,
14,
277,
25,
30,
31,
221,
22,
38,
143,
113,
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... |
How to Get General Product Performance Report on Amazon?
===
I am using Amazon MWS and i get all my product sales report. but I want to know if there is any way i can get sales report for any product ASIN which i am not selling. So That i can find prospective product to sell.
--Thank you for your time. | 0 | [
2,
184,
20,
164,
297,
2374,
956,
1330,
27,
8059,
60,
800,
3726,
3726,
31,
589,
568,
8059,
10757,
18,
17,
31,
164,
65,
51,
2374,
2598,
1330,
9,
47,
31,
259,
20,
143,
100,
80,
25,
186,
161,
31,
92,
164,
2598,
1330,
26,
186,
23... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
UIManagedDocument with NSFetchedResultsController and background context
===
I am trying to get the following working.
I have a table view that is displaying data fetched from an API in a table view. For that purpose I am using a NSFetchedResultsController:
self.fetchedResultsController = [[NSFetchedResultsC... | 0 | [
2,
13,
5661,
177,
8030,
28132,
29,
13,
2172,
28998,
29955,
18,
12898,
1252,
17,
2395,
4141,
800,
3726,
3726,
31,
589,
749,
20,
164,
14,
249,
638,
9,
31,
57,
21,
859,
1418,
30,
25,
17418,
1054,
13,
28998,
37,
40,
21,
2159,
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... |
Combine results of joins on two tables
===
I have 3 tables
items
tag_id
mark_id
tags_users
tag_id
user_id
marks_users
mark_id
user_id
Is there a way to select uniq `items` for specific `user_id` without union and nested selects?
| 0 | [
2,
12287,
1736,
16,
10612,
27,
81,
7484,
800,
3726,
3726,
31,
57,
203,
7484,
3755,
3383,
1,
1340,
943,
1,
1340,
3383,
18,
1,
16704,
18,
3383,
1,
1340,
4155,
1,
1340,
4872,
1,
16704,
18,
943,
1,
1340,
4155,
1,
1340,
25,
80,
21,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
how to install "spree-dropdown-variants" with spree 1.1.1
===
I am using spree 1.1.1 and facing problem installing "spree-dropdown-variants" because it has no GEM file. Please help me. | 0 | [
2,
184,
20,
16146,
13,
7,
18,
3515,
62,
8,
12361,
2968,
8,
18445,
18,
7,
29,
28761,
137,
9,
165,
9,
165,
800,
3726,
3726,
31,
589,
568,
28761,
137,
9,
165,
9,
165,
17,
4325,
1448,
25429,
13,
7,
18,
3515,
62,
8,
12361,
2968,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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... |
Eclipse error constantly pops up while editing Javascript
===
I am working on relatively small (100-300 lines) Javascript files in Eclipse and periodically it gets really upset about some piece of code and pops up this error every time I place the cursor on that line. The error is:
'Requesting JavaScript AST f... | 0 | [
2,
11652,
7019,
7545,
1675,
18,
71,
133,
9510,
8247,
8741,
800,
3726,
3726,
31,
589,
638,
27,
3109,
284,
13,
5,
4031,
8,
6571,
1560,
6,
8247,
8741,
6488,
19,
11652,
17,
19886,
32,
3049,
510,
4867,
88,
109,
1855,
16,
1797,
17,
16... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Qt application made in Eclipse doesn't start
===
I've been trying for a few hours now to make eclipse, mingw and Qt work, and I can't manage to.
No matter what I try, when I try to run the qt application (using Run or Debug, same thing), no window appears, and after a few seconds, Eclipse says 'program terminated'.... | 0 | [
2,
2593,
38,
3010,
117,
19,
11652,
1437,
22,
38,
799,
800,
3726,
3726,
31,
22,
195,
74,
749,
26,
21,
310,
974,
130,
20,
233,
11652,
15,
12069,
499,
17,
2593,
38,
170,
15,
17,
31,
92,
22,
38,
4705,
20,
9,
90,
1161,
98,
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... |
selenium-webdriver and wait for page to load
===
I'm trying to write simple test. My problem is, that i want to wait until the page is loaded completly. At the moment i'm waiting until some elements are presen, but that is not really what i want. Is it possible to make something like this:
driver = Selenium::We... | 0 | [
2,
23027,
14311,
8,
14113,
21752,
17,
1760,
26,
2478,
20,
6305,
800,
3726,
3726,
31,
22,
79,
749,
20,
2757,
1935,
1289,
9,
51,
1448,
25,
15,
30,
31,
259,
20,
1760,
163,
14,
2478,
25,
8572,
6479,
1336,
102,
9,
35,
14,
688,
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... |
how to save video in ipad simulator
===
I want to pick video from photo library using imagePickerController.
but there is no video on my simulator. I know how to load images in simulator but don't know how to load video. Please help. | 0 | [
2,
184,
20,
2079,
763,
19,
31,
8240,
24565,
800,
3726,
3726,
31,
259,
20,
2036,
763,
37,
3056,
1248,
568,
1961,
16855,
106,
12898,
1252,
9,
47,
80,
25,
90,
763,
27,
51,
24565,
9,
31,
143,
184,
20,
6305,
3502,
19,
24565,
47,
22... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0... |
Is it possible to add Queue Data to DataTable in C#?
===
I am adding Items in **Queue"<"string">"** Asynchronously to Queue.Instead of *Inserting row by row* for each data of Queue using INSERT query, I want to add these items to DataTableOnly when **if(evtLogQueue.Count==1000)**. So that the DataTable could be used f... | 0 | [
2,
25,
32,
938,
20,
3547,
22521,
1054,
20,
1054,
5924,
19,
272,
5910,
60,
800,
3726,
3726,
31,
589,
4721,
3755,
19,
13,
1409,
2005,
4185,
7,
1,
7,
11130,
7,
1,
7,
1409,
21,
16023,
13985,
20,
22521,
9,
108,
6849,
16,
1637,
108,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Listener on part of textview to check if it is visible
===
I have a textview which contains a very long text. This textview is placed inside a scrollview. I would like to keep track of specific parts of the textview (few scattered sentences) so that when they are visible on the screen, I perform a specific action.
... | 0 | [
2,
21772,
27,
141,
16,
1854,
4725,
20,
2631,
100,
32,
25,
4560,
800,
3726,
3726,
31,
57,
21,
1854,
4725,
56,
1588,
21,
253,
175,
1854,
9,
48,
1854,
4725,
25,
1037,
572,
21,
12159,
4725,
9,
31,
83,
101,
20,
643,
792,
16,
1903,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 or listing unknown attributes of xml nodes with php
===
Given the following xml structure (cut for brevity):
<?xml version="1.0" encoding="UTF-8"?>
<feed
xmlns="http://www.w3.org/2005/Atom"
xmlns:thr="http://purl.org/syndication/thread/1.0"
xml:lang=""
xml:base... | 0 | [
2,
1381,
68,
54,
9554,
2562,
13422,
16,
23504,
16272,
29,
13,
26120,
800,
3726,
3726,
504,
14,
249,
23504,
1411,
13,
5,
4118,
26,
21895,
1084,
6,
45,
13,
1,
60,
396,
8184,
615,
3726,
7,
165,
9,
387,
7,
19608,
3726,
7,
1982,
41... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
should I write [super viewDidLoad]?
===
I'm writing a navigation based app. (it has modal segues too)
I'm not sure if I should keep `[super viewDidLoad];` call or not. should I write code after this line of code or before it? how about `[super viewDidUnload];` and similars? | 0 | [
2,
378,
31,
2757,
636,
8542,
1418,
3052,
8294,
500,
60,
800,
3726,
3726,
31,
22,
79,
1174,
21,
8368,
432,
4865,
9,
13,
5,
242,
63,
13,
20756,
1353,
12831,
266,
6,
31,
22,
79,
52,
562,
100,
31,
378,
643,
13,
1,
2558,
8542,
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... |
Problems compiling and running Java app with Bluecove (NoClassDefFoundError)
===
I have this app that uses bluetooth, so I need both, bluecove and bluecove-gpl packages, when I run it in NetBeans I have no problem at all, and works perfectly fine. But I still can't compile and run from the command line (Ubuntu 11.04).... | 0 | [
2,
1716,
24378,
17,
946,
8247,
4865,
29,
705,
716,
195,
13,
5,
251,
1898,
13862,
12235,
29992,
6,
800,
3726,
3726,
31,
57,
48,
4865,
30,
2027,
705,
15808,
15,
86,
31,
376,
156,
15,
705,
716,
195,
17,
705,
716,
195,
8,
263,
572... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
API of play.google.com/store
===
<br/>
I am trying from many days to find API for play.google.col/store. <br/>
But, Still i dont have any solution. <br/>
I also try android.market.api, but is not working because is out dated by google. <br/>
Is any API for getting list of application from play.google.col/store, li... | 0 | [
2,
21,
2159,
16,
418,
9,
16111,
4875,
9,
960,
118,
16828,
800,
3726,
3726,
13,
1,
5145,
118,
1,
31,
589,
749,
37,
151,
509,
20,
477,
21,
2159,
26,
418,
9,
16111,
4875,
9,
7771,
118,
16828,
9,
13,
1,
5145,
118,
1,
47,
15,
1... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Uncaught ReferenceError: msgbox is not defined (anonymous function)
===
//////////////////main.js file attached
function msgbox (title,text,type,time)
{
///////////////////////////////////////////
var img = "<img src='image/"+type+".png' /> ";
$("#window .wtext").html("<table border... | 0 | [
2,
16061,
12647,
2801,
29992,
45,
4235,
263,
5309,
25,
52,
2811,
13,
5,
210,
14016,
1291,
1990,
6,
800,
3726,
3726,
12894,
118,
118,
118,
118,
118,
118,
118,
118,
118,
118,
118,
118,
118,
118,
118,
118,
6232,
9,
728,
18,
3893,
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... |
Is there Amazon firewall\port sniffer metrics on Amazon CloudWatch?
===
Is there Amazon firewall\port sniffer metrics on Amazon CloudWatch? The task is: track traffic on Amazon EC2 machine on specific port. Is this possible via Amazon CloudWatch API? | 0 | [
2,
25,
80,
8059,
535,
6051,
1,
1993,
15312,
106,
11544,
18,
27,
8059,
4005,
9054,
60,
800,
3726,
3726,
25,
80,
8059,
535,
6051,
1,
1993,
15312,
106,
11544,
18,
27,
8059,
4005,
9054,
60,
14,
3005,
25,
45,
792,
2227,
27,
8059,
669... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0... |
Call static method from a string name in PHP
===
I need to call a static method of a class, but I only have a classname, not an instance of it. I am doing it this way.
$class = new "ModelName";
$items = $class::model()->findAll();
It works on my computer, but when I move to the server, it throws an `une... | 0 | [
2,
645,
12038,
2109,
37,
21,
3724,
204,
19,
13,
26120,
800,
3726,
3726,
31,
376,
20,
645,
21,
12038,
2109,
16,
21,
718,
15,
47,
31,
104,
57,
21,
718,
7259,
15,
52,
40,
4851,
16,
32,
9,
31,
589,
845,
32,
48,
161,
9,
5579,
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... |
Share data Between android and ios via bump
===
I have developed an application which transfers images from one android phone to another via Bump.Now i want that my app should also able to transfer data from android phone to ios phone.Is there any library available which supports bump between android and ios devices?? | 0 | [
2,
1891,
1054,
128,
13005,
17,
13,
7760,
1197,
9797,
800,
3726,
3726,
31,
57,
885,
40,
3010,
56,
2617,
18,
3502,
37,
53,
13005,
1132,
20,
226,
1197,
9797,
9,
1387,
31,
259,
30,
51,
4865,
378,
67,
777,
20,
2617,
1054,
37,
13005,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 dlls from path specified in SetdllDirectory in c#
===
I am new in dotnet.I have a dotnet dll that loads a c dll by using DllImport. I want to place all the dlls in a folder which is diffrent from the location of application. I dont want to modify environmental variables. So i used setdlldirectory API and load ... | 0 | [
2,
12797,
13,
43,
211,
18,
37,
2013,
9931,
19,
309,
43,
211,
10197,
93,
19,
272,
5910,
800,
3726,
3726,
31,
589,
78,
19,
14123,
2328,
9,
49,
57,
21,
14123,
2328,
13,
43,
211,
30,
19069,
21,
272,
13,
43,
211,
34,
568,
13,
864... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Handling null values where not allowed
===
I have the following code in the mClass constructor:
public mClass(Context ctx) {
super();
this.ctx = ctx;
}
The context can't be null because its necesary for the object operation. So if I allow the creation of an new mClass(null) it will break later.
I'd ... | 0 | [
2,
7988,
16203,
4070,
113,
52,
1159,
800,
3726,
3726,
31,
57,
14,
249,
1797,
19,
14,
307,
1898,
6960,
248,
45,
317,
307,
1898,
5,
1126,
11969,
13,
4812,
396,
6,
13,
1,
1026,
5,
6,
73,
48,
9,
4812,
396,
800,
13,
4812,
396,
73... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Difference between quirks mode and standards mode javascript
===
are there any differences in the javascript of these two modes in IE 9? if yes what are they? | 0 | [
2,
2841,
128,
19321,
18,
3740,
17,
3364,
3740,
8247,
8741,
800,
3726,
3726,
50,
80,
186,
4921,
19,
14,
8247,
8741,
16,
158,
81,
12770,
19,
13,
660,
561,
60,
100,
1643,
98,
50,
59,
60,
3,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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... |
How to use Service Accounts OAuth 2.0 flow with GroupsSettings-api
===
using google-api-java-client at this [page][1] we can read about some flows.
the service accounts flow works fine with calendar api
GoogleCredential credential = new GoogleCredential.Builder().setTransport(HTTP_TRANSPORT)
.set... | 0 | [
2,
184,
20,
275,
365,
5310,
635,
1346,
96,
172,
9,
387,
3312,
29,
1170,
19831,
18,
8,
2552,
49,
800,
3726,
3726,
568,
8144,
8,
2552,
49,
8,
1004,
1385,
8,
150,
18513,
38,
35,
48,
636,
6486,
500,
2558,
165,
500,
95,
92,
1302,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
From parameter in email is showing Hosting providers email
===
I'm using codeigniter 2.X and my app is hosted on Justhost,
App was working fine till few days back when justhost upgraded the server, After upgrade outgoing emails are showing wrong From email address.
here is debug output after from the app
... | 0 | [
2,
37,
18906,
19,
8517,
25,
3187,
10637,
13488,
8517,
800,
3726,
3726,
31,
22,
79,
568,
1797,
9693,
242,
106,
172,
9,
396,
17,
51,
4865,
25,
2812,
27,
114,
11694,
15,
4865,
23,
638,
1123,
3924,
310,
509,
97,
76,
114,
11694,
9958... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 this DropDownList is not updating inside this GridView?
===
I have the following database design:
Employee Table: Username, Name, JobTitle, BadgeNo, IsActive, DivisionCode
Divisions Table: SapCode, DivisionShortcut
And I have a GridView that I am using it to add, delete and update/edit the employe... | 0 | [
2,
483,
48,
2804,
2968,
5739,
25,
52,
71,
43,
1880,
572,
48,
7354,
4725,
60,
800,
3726,
3726,
31,
57,
14,
249,
6018,
704,
45,
7362,
859,
45,
4155,
7259,
15,
204,
15,
1205,
22235,
15,
8715,
251,
15,
25,
7889,
15,
460,
9375,
551... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 get Gnome-do or Ubuntu Dash to open an existing application?
===
I just upgraded to Ubuntu 12.04 and have also installed GNOME Do as a task launcher. If I already have a Firefox browser window open, and I use my hot key to open Gnome-do and type in Firefox + enter, it opens a whole new window instead of focus... | 0 | [
2,
184,
107,
31,
164,
24117,
8,
537,
54,
287,
12968,
2473,
8405,
20,
368,
40,
3149,
3010,
60,
800,
3726,
3726,
31,
114,
9958,
20,
287,
12968,
2473,
390,
9,
3277,
17,
57,
67,
4066,
24117,
107,
28,
21,
3005,
19755,
9,
100,
31,
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... |
Page not view in ipad
===
Hi i use the splitview page script in phonegap it not works fine,but loads on iphonesimulator, the same script i run in ipad. the page not shown it just blank. Why the code in the body tag run in iphonesimulator but not in ipad simulator. It shows only the h1 tag. My code as follows:
<... | 0 | [
2,
2478,
52,
1418,
19,
31,
8240,
800,
3726,
3726,
4148,
31,
275,
14,
2132,
4725,
2478,
3884,
19,
1132,
1136,
306,
32,
52,
693,
1123,
15,
811,
19069,
27,
21024,
8672,
14868,
15,
14,
205,
3884,
31,
485,
19,
31,
8240,
9,
14,
2478,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
JS URL persistence to create templates
===
I have an interactive UI of elements, and I was encouraged to use divs and spans exclusively, and avoid checkboxes. I have converted the site over to the same functionality, but don't know much about persistence to begin with, but with checkboxes, it seemed approachable give... | 0 | [
2,
487,
18,
287,
6362,
28584,
20,
1600,
22894,
18,
800,
3726,
3726,
31,
57,
40,
9194,
13,
5661,
16,
2065,
15,
17,
31,
23,
5623,
20,
275,
13,
12916,
18,
17,
16967,
7008,
15,
17,
2658,
2631,
5309,
160,
9,
31,
57,
3494,
14,
689,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Multi replacement in the same node with XSLT
===
I would like to get the output like below using XSLT "analyze-string"
<w:body>
<w:p>
<w:pPr>
<w:pStyle w:val="paragraph"/>
</w:pPr>
<w:r><w:t>1274394 The milk costs , $1.99 [12] test Figure 1</w:t></w:r>
</w:p>
<w:p>
<w... | 0 | [
2,
1889,
4610,
19,
14,
205,
15421,
29,
993,
18,
255,
38,
800,
3726,
3726,
31,
83,
101,
20,
164,
14,
5196,
101,
1021,
568,
993,
18,
255,
38,
13,
7,
1629,
102,
1734,
8,
11130,
7,
13,
1,
499,
45,
9760,
1,
13,
1,
499,
45,
306,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
issue to configure smtp mail server
===
I am using Ubunt Server. But there mail server is not configured out. From command prompt how can I configure this? Please help me. I am the frst time trying to do so. | 0 | [
2,
1513,
20,
1065,
15951,
7613,
13726,
4216,
8128,
800,
3726,
3726,
31,
589,
568,
287,
12968,
38,
8128,
9,
47,
80,
4216,
8128,
25,
52,
28895,
70,
9,
37,
1202,
11443,
4417,
184,
92,
31,
1065,
15951,
48,
60,
2247,
448,
55,
9,
31,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0... |
When are ParameterInfo.IsLcid or ParameterInfo.IsRetval true?
===
I find this question in Stack Overflow when googleing, but it has been deleted. So I list this question again.
As I can't find the `LcidAttribute` or `RetvalAttribute` in BCL, I guess C# hasn't provided the support for locale identifier parameter and... | 0 | [
2,
76,
50,
18906,
108,
4120,
9,
403,
255,
10220,
54,
18906,
108,
4120,
9,
403,
6239,
3377,
1151,
60,
800,
3726,
3726,
31,
477,
48,
1301,
19,
7566,
20285,
76,
8144,
68,
15,
47,
32,
63,
74,
19584,
9,
86,
31,
968,
48,
1301,
188,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 hide div slowly using jquery with exploting effect
===
I am New in programing Please help Me to
hide div slowly using jquery with exploting effect
| 0 | [
2,
184,
20,
3077,
13,
12916,
1447,
568,
487,
8190,
93,
29,
1396,
13221,
1203,
1590,
800,
3726,
3726,
31,
589,
78,
19,
625,
68,
2247,
448,
55,
20,
3077,
13,
12916,
1447,
568,
487,
8190,
93,
29,
1396,
13221,
1203,
1590,
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... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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... |
Overriding Right click in a browser
===
I am new to web development, As part of my project requirement I need to implement a customized right click behaviour in an Internet browser.
Kindly advice me with the methods to implement it and make it browser independent.
Thanks | 0 | [
2,
84,
5175,
68,
193,
10840,
19,
21,
16495,
800,
3726,
3726,
31,
589,
78,
20,
2741,
522,
15,
28,
141,
16,
51,
669,
8981,
31,
376,
20,
8713,
21,
28779,
193,
10840,
7727,
19,
40,
2620,
16495,
9,
22215,
4978,
55,
29,
14,
3195,
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,
0,
0,
0,
0,
0,
0,
0,
0... |
Deep copy of List<T> with extension method
===
I have this class :
public class Person : ICloneable
{
public string FirstName { get; set; }
public string LastName { get; set; }
public object Clone()
{
return this;
}
}
An extension method :
public s... | 0 | [
2,
855,
4344,
16,
968,
1,
38,
1,
29,
3896,
2109,
800,
3726,
3726,
31,
57,
48,
718,
13,
45,
317,
718,
840,
13,
45,
13,
596,
16285,
579,
13,
1,
317,
3724,
64,
7259,
13,
1,
164,
73,
309,
73,
13,
1,
317,
3724,
236,
7259,
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... |
Entity Framework return no value
===
Trying to select value from a empty records:
var id = (from transactions in testTransactions.Transactions
orderby transactions.TransID descending select transactions.TransID).First();
How can I give a default value then the tab... | 0 | [
2,
9252,
6596,
788,
90,
1923,
800,
3726,
3726,
749,
20,
5407,
1923,
37,
21,
2424,
742,
45,
4033,
4924,
800,
13,
5,
2665,
13147,
19,
1289,
7028,
8645,
18,
9,
7028,
8645,
18,
389,
779,
13147,
9,
7028,
1340,
16526,
5407,
13147,
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... |
find the pattern in java
===
I need to find the method to find the following pattern is in the given string or what. `#8226:`. Here numbers can be anything, that should be start with #, end with : and should contains 4 numbers(4 digits). | 1 | [
2,
477,
14,
3732,
19,
8247,
800,
3726,
3726,
31,
376,
20,
477,
14,
2109,
20,
477,
14,
249,
3732,
25,
19,
14,
504,
3724,
54,
98,
9,
13,
1,
5910,
4075,
2409,
45,
1,
9,
235,
2116,
92,
44,
602,
15,
30,
378,
44,
799,
29,
6926,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
opendir() in FUSE
===
In the implemention of `xxx_readdir()` in **FUSE**, I use the codes below:
static int hello_readdir(const char *path, void *buf, fuse_fill_dir_t filler,
off_t offset, struct fuse_file_info *fi)
{
DIR *dp;
struct dirent *de;
(vo... | 0 | [
2,
368,
9035,
5,
6,
19,
13,
13072,
800,
3726,
3726,
19,
14,
8713,
872,
16,
13,
1,
13290,
1,
10647,
9035,
5,
6,
1,
19,
13,
1409,
13072,
1409,
15,
31,
275,
14,
11358,
1021,
45,
12038,
19,
38,
10975,
1,
10647,
9035,
5,
12124,
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 to run 2 different processes with python at the same time?
===
I have a looping script , to get infos on a french site. It looks like this :
def getInfos(a,b,c)
def MyLoop(filename)
in which i call getinfos via
def MyLoop(filename)
values = getInfos()
And It works well. But... | 0 | [
2,
184,
20,
485,
172,
421,
5102,
29,
20059,
35,
14,
205,
85,
60,
800,
3726,
3726,
31,
57,
21,
5293,
68,
3884,
13,
15,
20,
164,
15404,
18,
27,
21,
484,
689,
9,
32,
1879,
101,
48,
13,
45,
6312,
164,
108,
4120,
18,
5,
58,
15,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Is it possible to combine EF CF and Asp.net basic administration?
===
We have no time for administration implementation so we are going to use basic administration tools for our Asp.Net MVC site. On the other side we would like to use EF CF for our business logic. So, do you have any suggestions how it can be done? Or... | 0 | [
2,
25,
32,
938,
20,
12287,
11599,
10084,
17,
28,
306,
9,
2328,
2125,
1603,
60,
800,
3726,
3726,
95,
57,
90,
85,
26,
1603,
6123,
86,
95,
50,
228,
20,
275,
2125,
1603,
4672,
26,
318,
28,
306,
9,
2328,
307,
8990,
689,
9,
27,
14... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to install jdk with yum on Fedora 17?
===
I want to install jdk by yum on Federa 17 and using :
su -c 'yum install java-1.6.0-openjdk'
But it show "no available package". How can I do to install it ? | 2 | [
2,
184,
20,
16146,
487,
43,
197,
29,
13,
18105,
27,
26726,
58,
369,
60,
800,
3726,
3726,
31,
259,
20,
16146,
487,
43,
197,
34,
13,
18105,
27,
17895,
58,
369,
17,
568,
13,
45,
2538,
13,
8,
150,
13,
22,
18105,
16146,
8247,
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... |
Getting 'CG\Proxy\InterceptorLoaderInterface' error with JMS Bundle in symfony 2
===
I am trying to install symfony2 JMS DI Extra bundle.
But i keep getting this error
> Fatal error: Interface 'CG\Proxy\InterceptorLoaderInterface' not found
> in
> /home/xxxxx/public_html/XXXX/Symfony/vendor/bundles/JMS/AopBundle... | 0 | [
2,
1017,
13,
22,
15123,
1,
4899,
9229,
1,
24171,
8294,
106,
6280,
6413,
22,
7019,
29,
487,
79,
18,
10194,
19,
13,
7261,
10229,
93,
172,
800,
3726,
3726,
31,
589,
749,
20,
16146,
13,
7261,
10229,
93,
135,
487,
79,
18,
926,
2230,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Ruby - functional approach to filtering with index
===
I have an array like this:
["A", " ", "C", " ", "E", " ", "G"]
and I want to return an array of all the indexes where the data is a blank space say. Is there a nice functional way to do this? I know there is an `each_with_index` method returning an `Enum... | 0 | [
2,
10811,
13,
8,
7652,
2141,
20,
25272,
29,
4348,
800,
3726,
3726,
31,
57,
40,
7718,
101,
48,
45,
636,
7,
58,
7,
15,
13,
7,
13,
7,
15,
13,
7,
150,
7,
15,
13,
7,
13,
7,
15,
13,
7,
62,
7,
15,
13,
7,
13,
7,
15,
13,
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... |
how to get the activity to wait before jumping to the next activity on its own in android?
===
I want to create an activity that opens when i start my app, wait some time and jumps to the next activity without the user pressing anything.
thats my code:
public class MainActivity extends Activity {
@Overr... | 0 | [
2,
184,
20,
164,
14,
2358,
20,
1760,
115,
8759,
20,
14,
328,
2358,
27,
82,
258,
19,
13005,
60,
800,
3726,
3726,
31,
259,
20,
1600,
40,
2358,
30,
8965,
76,
31,
799,
51,
4865,
15,
1760,
109,
85,
17,
17659,
20,
14,
328,
2358,
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... |
Prevent calling a web service too many times
===
I provide a Web Service for my clients which allow him to add a record to the production database.
I had an incident lately, in which my client's programmer called the service in a loop , iterated to call to my service thousands of times.
My question is what would... | 0 | [
2,
2501,
2555,
21,
2741,
365,
266,
151,
436,
800,
3726,
3726,
31,
1181,
21,
2741,
365,
26,
51,
7421,
56,
1655,
61,
20,
3547,
21,
571,
20,
14,
637,
6018,
9,
31,
41,
40,
3246,
10434,
15,
19,
56,
51,
6819,
22,
18,
17968,
227,
1... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
javascript crashing iPad browser
===
I have some javascript inside a function that creates and populates an image carousel. It works fine after activating it in a pop up window the first 5 or 6 times, but then it eventually crashes the browser. I think there's some kind of leak, like something inside of it needs to b... | 0 | [
2,
8247,
8741,
14604,
31,
8240,
16495,
800,
3726,
3726,
31,
57,
109,
8247,
8741,
572,
21,
1990,
30,
9695,
17,
1675,
12383,
18,
40,
1961,
27374,
9,
32,
693,
1123,
75,
13,
27939,
32,
19,
21,
1675,
71,
1463,
14,
64,
331,
54,
400,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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' not recognized as an
===
I'm trying to get the new GCM service to work for me, so I've been following the demo as described here: http://developer.android.com/guide/google/gcm/demo.html
So far, everything works well. However, I'm supposed to build the `ant` files using the command line now, and that's whe... | 0 | [
2,
13,
22,
290,
18524,
22,
52,
2124,
28,
40,
800,
3726,
3726,
31,
22,
79,
749,
20,
164,
14,
78,
489,
9095,
365,
20,
170,
26,
55,
15,
86,
31,
22,
195,
74,
249,
14,
8376,
28,
745,
235,
45,
7775,
6903,
26051,
106,
9,
290,
185... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 while using -N option with qsub
===
I tried to use `qsub -N "compile-$*"` in Makefile and it gives the following error
because $* equals to "compile-obj/linux/flow" in this case.
qsub: ERROR! argument to -N option must not contain /
The whole command which I am using is:-
qsub -P bnormal -N "comp... | 0 | [
2,
7019,
133,
568,
13,
8,
103,
4255,
29,
2593,
7563,
800,
3726,
3726,
31,
794,
20,
275,
13,
1,
1251,
7563,
13,
8,
103,
13,
7,
11103,
3599,
8,
4403,
2483,
7,
1,
19,
233,
16877,
17,
32,
2352,
14,
249,
7019,
185,
5579,
2483,
27... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Micro Cloud Foundry offline mode
===
during the last week I spent all my time trying to access the MCF in offline mode. I'm working behind a company network (proxy) and the MCF try to do things that conflict with the local network.
I've followed several different tutorials such as [1. Working offline with MCF][1] a... | 0 | [
2,
2899,
4005,
22248,
168,
1143,
3740,
800,
3726,
3726,
112,
14,
236,
877,
31,
1111,
65,
51,
85,
749,
20,
1381,
14,
1324,
410,
19,
168,
1143,
3740,
9,
31,
22,
79,
638,
439,
21,
237,
982,
13,
5,
4899,
9229,
6,
17,
14,
1324,
4... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
JQuery calls function that shouldn't be called onclick?
===
Have a look at this JSFiddle: http://jsfiddle.net/kZ3Af/25/
I have the base navigation pinned down nicely. However when I try to click any of the navigation items, the whole menu dissapears? What's that about? | 0 | [
2,
487,
8190,
93,
3029,
1990,
30,
5714,
22,
38,
44,
227,
27,
150,
10129,
60,
800,
3726,
3726,
57,
21,
361,
35,
48,
487,
18,
1707,
12312,
45,
7775,
6903,
728,
18,
1707,
12312,
9,
2328,
118,
197,
380,
240,
2565,
15718,
10551,
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... |
Implementing the strategy pattern. Do I have to 'new up' everytime?
===
I am trying to implement the strategy pattern. Here is part of my implementation:
public List<string> GetOrderedEmployeeNames(IOrderByStrategy strategy)
{
return GetEmployeeFullNames().OrderBy(strategy.Order);
}
now eve... | 0 | [
2,
17333,
14,
4427,
3732,
9,
107,
31,
57,
20,
13,
22,
2681,
71,
22,
352,
891,
60,
800,
3726,
3726,
31,
589,
749,
20,
8713,
14,
4427,
3732,
9,
235,
25,
141,
16,
51,
6123,
45,
317,
968,
1,
11130,
1,
164,
7861,
13528,
2554,
108... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 get "Use packet data" Settings in ICS Android
===
I am developing an application which does some downloading depends on whether the
user has enabled the option in Settings-> Wireless and network-> Mobile networks -> Use packet data.
I need to check the user has enabled this options.
Please help me to f... | 0 | [
2,
184,
92,
31,
164,
13,
7,
3699,
12795,
1054,
7,
12410,
19,
13,
8354,
13005,
800,
3726,
3726,
31,
589,
3561,
40,
3010,
56,
630,
109,
7121,
68,
9597,
27,
1472,
14,
4155,
63,
9338,
14,
4255,
19,
12410,
8,
1,
10149,
17,
982,
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... |
What annotations do I use for embedded Ids?
===
I want to take three pojos that I have and use Hibernate's ability to generate tables in my database that match them. The classes are Movie, Rater, and Rating. Here is Movie. Rater is practically the same thing as it also has a list of Ratings connected to it.
pub... | 0 | [
2,
98,
40,
1270,
7504,
107,
31,
275,
26,
12138,
13,
9178,
60,
800,
3726,
3726,
31,
259,
20,
247,
132,
2353,
1636,
18,
30,
31,
57,
17,
275,
4148,
2102,
8820,
22,
18,
2165,
20,
7920,
7484,
19,
51,
6018,
30,
730,
105,
9,
14,
26... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to make a row of a datagrid bold if that rows item is true?
===
So let say I have a custom class:
Class Elements{
int width;
int height;
bool isBol;
}
and in main I have something like:
Public class MainWindow{
DataGrid dgv = new DataGrid();
List... | 0 | [
2,
184,
20,
233,
21,
3131,
16,
21,
1054,
16375,
5657,
100,
30,
11295,
9101,
25,
1151,
60,
800,
3726,
3726,
86,
408,
395,
31,
57,
21,
5816,
718,
45,
718,
2065,
1,
19,
38,
9456,
73,
19,
38,
2947,
73,
1607,
1823,
25,
6966,
73,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Get make to show line number on error
===
I have a makefile, which is missing an ldflag. I know how to fix it, but I don't know which line in the makefile the error is generated on.
+ make
CCLD test
test-test.o: In function `write_png':
/home/lenovo/scratch/libass/test/test.c:52: undefined re... | 0 | [
2,
164,
233,
20,
298,
293,
234,
27,
7019,
800,
3726,
3726,
31,
57,
21,
233,
16877,
15,
56,
25,
2863,
40,
13,
6252,
22868,
9,
31,
143,
184,
20,
6098,
32,
15,
47,
31,
221,
22,
38,
143,
56,
293,
19,
14,
233,
16877,
14,
7019,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
MKMapKit Clustering in Monotouch
===
Is there any library or example available to display big amount of data on the MKMapView with monotouch? | 0 | [
2,
10804,
15022,
13703,
7460,
68,
19,
4129,
15725,
800,
3726,
3726,
25,
80,
186,
1248,
54,
823,
904,
20,
3042,
580,
2006,
16,
1054,
27,
14,
10804,
15022,
4725,
29,
4129,
15725,
60,
3,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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... |
PHP Mysql get value of out parameter from a stored proc
===
I have called a mysql stored proc from php using `mysqli`. This has 1 out parameter.
$rs = $mysqli->query("CALL addNewUser($name,$age,@id)");
Here, @id is the out parameter. Next I fire following query to get the value of out parameter
$rs2 =... | 0 | [
2,
13,
26120,
51,
18,
22402,
164,
1923,
16,
70,
18906,
37,
21,
8214,
13,
15617,
800,
3726,
3726,
31,
57,
227,
21,
51,
18,
22402,
8214,
13,
15617,
37,
13,
26120,
568,
13,
1,
915,
18,
1251,
1210,
1,
9,
48,
63,
137,
70,
18906,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 feature name using Openlayers and GEOServer
===
I am trying to display feature name in the map while loading (ex: name of the building).
How we can display this in **OpenLayers** by using **GeoServer**.
Thanks,
Ashok | 0 | [
2,
17418,
1580,
204,
568,
368,
15187,
18,
17,
6389,
10321,
106,
800,
3726,
3726,
31,
589,
749,
20,
3042,
1580,
204,
19,
14,
2942,
133,
12797,
13,
5,
1706,
45,
204,
16,
14,
353,
6,
9,
184,
95,
92,
3042,
48,
19,
13,
1409,
10157,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Tesseract [OCR] - only numbers and euro symbol
===
At the moment I'm using `tesseract a.tif output nobatch digits` to parse an image that contains only numbers.
I'm in the need of parsing an image that contains numbers and Euro symbol. How can I do that with tesseract? | 0 | [
2,
13338,
106,
5183,
636,
2499,
139,
500,
13,
8,
104,
2116,
17,
4669,
4678,
800,
3726,
3726,
35,
14,
688,
31,
22,
79,
568,
13,
1,
3231,
4104,
5183,
21,
9,
38,
821,
5196,
90,
4900,
673,
19076,
1,
20,
2017,
870,
40,
1961,
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... |
show grocery crud using tab panel
===
I'm newbie for grocery crud. I'm having a database table lets say customer_details, it includes customer_name & customer_id etc columns. I'm having another table called purches_details, customer_id is the foriegn key for this table.
I want to create a tab panel (menu) in my vie... | 0 | [
2,
298,
14814,
11498,
43,
568,
6523,
4113,
800,
3726,
3726,
31,
22,
79,
78,
5893,
26,
14814,
11498,
43,
9,
31,
22,
79,
452,
21,
6018,
859,
6884,
395,
7705,
1,
546,
8682,
18,
15,
32,
1103,
7705,
1,
7259,
279,
7705,
1,
1340,
272... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to stop a button tap event from bubbling into a listview?
===
I have a listview with a button as part of the datatemplate. When I click the button I want an action to happen, but I don't necessarily want that item selected. Is there any way I can stop the tap event from bubbling up to the listbox?
Thanks! | 0 | [
2,
184,
20,
747,
21,
5167,
5526,
807,
37,
26977,
77,
21,
968,
4725,
60,
800,
3726,
3726,
31,
57,
21,
968,
4725,
29,
21,
5167,
28,
141,
16,
14,
1054,
9577,
6554,
9,
76,
31,
10840,
14,
5167,
31,
259,
40,
1028,
20,
2384,
15,
47... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Mono C# FileChooserButton set to show only .tar.gz files
===
How can I create a FileChooserButton that shows only .tar.gz files on MonoDevelop C# GTK+?
Thanks. | 0 | [
2,
4129,
272,
5910,
3893,
2613,
759,
106,
811,
444,
309,
20,
298,
104,
13,
9,
3958,
9,
263,
380,
6488,
800,
3726,
3726,
184,
92,
31,
1600,
21,
3893,
2613,
759,
106,
811,
444,
30,
1285,
104,
13,
9,
3958,
9,
263,
380,
6488,
27,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0... |
decode in PHP a simple text from database
===
I have a simple text into my database with a string like this:
"Online il nuovo sito web di QINT'X: rinnovato nella grafica presenta una struttura più lineare e facilmente fruibile rispetto al precedente, a tutto vantaggio della navigazione"
I have make a query in PHP ... | 0 | [
2,
121,
9375,
19,
13,
26120,
21,
1935,
1854,
37,
6018,
800,
3726,
3726,
31,
57,
21,
1935,
1854,
77,
51,
6018,
29,
21,
3724,
101,
48,
45,
13,
7,
218,
1143,
6317,
3152,
12014,
2066,
111,
2741,
926,
19683,
38,
22,
396,
45,
13,
24... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Calling a plain JS function once converted to CoffeeScript
===
In my Rails app I have some plain old JS:
function reorder(divid,url) {
jQuery(divid).sortable({
axis: 'y',
dropOnEmpty: false,
handle: '.drag',
cursor: 'crosshair',
items: 'li',
opacity: 0.... | 0 | [
2,
2555,
21,
3748,
487,
18,
1990,
382,
3494,
20,
2364,
8741,
800,
3726,
3726,
19,
51,
2240,
18,
4865,
31,
57,
109,
3748,
315,
487,
18,
45,
1990,
302,
7861,
5,
11390,
43,
15,
911,
255,
6,
13,
1,
487,
8190,
93,
5,
11390,
43,
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... |
Save pulled data from MySQL table into another table
===
I have a query here pulling data from MySQL database. It's working great.But what am trying to do is save all the data pulled from the module table into another table. How could I go about this please ?? Any help would be appreciated. Thanks.
$coremodu... | 0 | [
2,
2079,
881,
1054,
37,
51,
18,
22402,
859,
77,
226,
859,
800,
3726,
3726,
31,
57,
21,
25597,
235,
3303,
1054,
37,
51,
18,
22402,
6018,
9,
32,
22,
18,
638,
374,
9,
811,
98,
589,
749,
20,
107,
25,
2079,
65,
14,
1054,
881,
37,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 generate random DNS names of Hosts in java
===
this could be of the form:
aaa1.bbb2.ccc3.ddd4
Maybe taking a cue from http://www.dnsjava.org/download/
and first generating individual strings aaaa1 , bbb2 etc and then using join()
or
String validCharacters = $('a', 'z').join() + $('A', 'Z').j... | 0 | [
2,
184,
92,
31,
7920,
5477,
13,
43,
2172,
1817,
16,
5397,
19,
8247,
800,
3726,
3726,
48,
110,
44,
16,
14,
505,
45,
15916,
165,
9,
220,
3490,
135,
9,
24892,
240,
9,
43,
8096,
300,
913,
741,
21,
10963,
37,
7775,
6903,
6483,
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... |
What does 'v !== v' expression check?
===
I have seen this in the sources of one lib, and confused. I think, it always evaluates to '`false`'. What is the meaning of using that? | 0 | [
2,
98,
630,
13,
22,
710,
13,
187,
3726,
3726,
566,
22,
1803,
2631,
60,
800,
3726,
3726,
31,
57,
541,
48,
19,
14,
2662,
16,
53,
13,
8326,
15,
17,
4230,
9,
31,
277,
15,
32,
550,
13,
15599,
18,
20,
13,
22,
1,
13192,
870,
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,
0,
0,
0,
0,
0... |
Actionbar implementation in 2.3 without using thirdparty jars
===
I have to develop actionbar in my application, but I am working on android 2.3 version. without using thirdparty jars like "actionbarsherlock.com" ,is there any support available from android? I tried the below link from prev.posts but as android site h... | 0 | [
2,
1028,
1850,
6123,
19,
172,
9,
240,
366,
568,
422,
9635,
5112,
18,
800,
3726,
3726,
31,
57,
20,
2803,
1028,
1850,
19,
51,
3010,
15,
47,
31,
589,
638,
27,
13005,
172,
9,
240,
615,
9,
366,
568,
422,
9635,
5112,
18,
101,
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 loads the classes in rt.jar?
===
I want to know whether it is possible to specify an alternative to rt.jar to be loaded instead of rt.jar. So my question is, what loads rt.jar and is it possible to specify an alternative jar to be loaded instead of rt.jar? | 0 | [
2,
98,
19069,
14,
2684,
19,
13,
5256,
9,
6300,
60,
800,
3726,
3726,
31,
259,
20,
143,
1472,
32,
25,
938,
20,
19077,
40,
2676,
20,
13,
5256,
9,
6300,
20,
44,
8572,
700,
16,
13,
5256,
9,
6300,
9,
86,
51,
1301,
25,
15,
98,
19... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to load JNI dynamically to vc++ program
===
I need to load JNI to my c++ application dynamically. My application will decided load jvm.dll or no. I'm new to c++. In case I add jni.h and tell linker to include jvm.lib my application is looking for jvm.dll and loads it automatically. I need it to load according req... | 0 | [
2,
184,
20,
6305,
487,
889,
7782,
1326,
20,
13,
8990,
20512,
625,
800,
3726,
3726,
31,
376,
20,
6305,
487,
889,
20,
51,
272,
20512,
3010,
7782,
1326,
9,
51,
3010,
129,
868,
6305,
487,
20147,
9,
43,
211,
54,
90,
9,
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 to stop saving an image to phone album?
===
I use the UIImageWriteToSavedPhotosAlbum to save the photos to the album.But if the photo is too large it will take a long time to finish saving.So i need an cancel button which can cancel the saving process. But it seems that there is no way to do that.Does anyone k... | 0 | [
2,
184,
20,
747,
7599,
40,
1961,
20,
1132,
244,
60,
800,
3726,
3726,
31,
275,
14,
13,
5661,
22039,
23716,
262,
19863,
43,
25445,
18,
14340,
20,
2079,
14,
7064,
20,
14,
244,
9,
811,
100,
14,
3056,
25,
266,
370,
32,
129,
247,
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... |
Tracing Ip address logic
===
I want to know how to convert ip address to map-address location as all the traceip site offer.
I could not find good info about the logic and the method behind those sites and
be thankfull if you will link me or explain it to me.
thanks | 1 | [
2,
20005,
15735,
3218,
7085,
800,
3726,
3726,
31,
259,
20,
143,
184,
20,
8406,
15735,
3218,
20,
2942,
8,
27950,
1474,
28,
65,
14,
5565,
4307,
689,
1994,
9,
31,
110,
52,
477,
254,
15404,
88,
14,
7085,
17,
14,
2109,
439,
273,
3259... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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... |
Round of function returns different values
===
I have a field in mysql DB `rating` with data type `float(2,1)`. One row it contains a value 0.5 But when I use
`SELECT round(rating) FROM table WHERE ...` gives value 0 instead of 1.
But `SELECT round(o.5)` gives value 1 (For Postgresql too).
Again php always g... | 0 | [
2,
560,
16,
1990,
4815,
421,
4070,
800,
3726,
3726,
31,
57,
21,
575,
19,
51,
18,
22402,
13,
9007,
13,
1,
15073,
1,
29,
1054,
1001,
13,
1,
14712,
721,
5,
135,
15,
165,
6,
1,
9,
53,
3131,
32,
1588,
21,
1923,
713,
9,
264,
47,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
built a soap client for this web services in C#
===
i goin to write a simple example you can find in the web in C#. since i am new in the theme of web services
FirstService.asmx
<%@ WebService language="C" class="FirstService" %>
using System;
using System.Web.Services;
using System.Xml.Se... | 0 | [
2,
392,
21,
6447,
6819,
26,
48,
2741,
687,
19,
272,
5910,
800,
3726,
3726,
31,
162,
108,
20,
2757,
21,
1935,
823,
42,
92,
477,
19,
14,
2741,
19,
272,
5910,
9,
179,
31,
589,
78,
19,
14,
3184,
16,
2741,
687,
64,
11449,
9,
472,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
No action execute in struts2 form when try submit him
===
When i click submit in my form (struts2) there are no action executed. What wrong may be in this files?
struts.xml:
...<action name="EditMessageAction"
class="action.content.EditMessageAction">
<result name="success">/WEB-INF/pages/messa... | 0 | [
2,
90,
1028,
15644,
19,
18316,
18,
135,
505,
76,
1131,
12298,
61,
800,
3726,
3726,
76,
31,
10840,
12298,
19,
51,
505,
13,
5,
11602,
38,
18,
135,
6,
80,
50,
90,
1028,
5557,
9,
98,
1389,
123,
44,
19,
48,
6488,
60,
18316,
18,
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... |
When to multi thread sqlite database queries
===
I've written a content provider with one database helper and have started to build a "manager" class to perform specific inserts, deletes, updates, queries etc.
The manager returns cursorloaders for my cursoradapters where necessary which I believe a multi-threaded.
... | 0 | [
2,
76,
20,
1889,
9322,
4444,
10601,
6018,
9386,
2829,
800,
3726,
3726,
31,
22,
195,
642,
21,
2331,
11747,
29,
53,
6018,
448,
106,
17,
57,
373,
20,
1895,
21,
13,
7,
22256,
7,
718,
20,
2985,
1903,
14692,
18,
15,
27448,
18,
15,
1... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Sending SMTP messages using PHPMailer, response of 'MAIL not accepted from server', why?
===
I've been banging my head trying to sort this one out... any clues would be greatly appreciated.
I am sending mail via PHPMailers SMTP class locally on a Ubuntu 12.04 server running exim. If I send only 10 messages everythi... | 0 | [
2,
4907,
7613,
13726,
7561,
568,
13,
26120,
8079,
106,
15,
1627,
16,
13,
22,
8079,
52,
2217,
37,
8128,
22,
15,
483,
60,
800,
3726,
3726,
31,
22,
195,
74,
24472,
51,
157,
749,
20,
2058,
48,
53,
70,
9,
9,
9,
186,
18843,
83,
44... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Override javascript click event one time
===
I would like to replace the default action of an click event for all anchors in a webpage.
When I use this piece of code:
<html> <head> <script>
var list=document.getElementsByTagName("a");
var isChecked = false;
function load () {
... | 0 | [
2,
84,
11891,
8247,
8741,
10840,
807,
53,
85,
800,
3726,
3726,
31,
83,
101,
20,
3934,
14,
12838,
1028,
16,
40,
10840,
807,
26,
65,
6265,
18,
19,
21,
2741,
6486,
9,
76,
31,
275,
48,
1855,
16,
1797,
45,
13,
1,
15895,
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... |
HandleErrorInfo using MVC2 - Model is null?
===
I have an MVC 2 web application, which is nearing release. Until now I have had custom errors turned off but I would like them working when I go production ready.
I have set up my web.config with the following:
<customErrors mode="On" defaultRedirect="/Error/">... | 0 | [
2,
3053,
29992,
108,
4120,
568,
307,
8990,
135,
13,
8,
1061,
25,
16203,
60,
800,
3726,
3726,
31,
57,
40,
307,
8990,
172,
2741,
3010,
15,
56,
25,
424,
68,
830,
9,
163,
130,
31,
57,
41,
5816,
11908,
412,
168,
47,
31,
83,
101,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Visual Studio 2008 can't show designer when designing Inherited Forms
===
I'm trying to create a form by inheriting from another form I have already created. The reason for this is that the original form actually has 3 states, and an inheritance structure will make it easier to debug, understand and improve.
The p... | 0 | [
2,
3458,
1120,
570,
92,
22,
38,
298,
4742,
76,
15026,
7179,
1997,
800,
3726,
3726,
31,
22,
79,
749,
20,
1600,
21,
505,
34,
17569,
68,
37,
226,
505,
31,
57,
614,
679,
9,
14,
1215,
26,
48,
25,
30,
14,
501,
505,
1121,
63,
203,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Trivial hash for a consecutive sequence of input that doesn't have visible cycles in output
===
In a simple tile-based image, if each area of grass has the same grass tile repeated on each square, it looks like a horrible moire pattern, but if three or four grass tiles are alternated, it looks surprisingly natural.
... | 0 | [
2,
13,
19712,
19170,
26,
21,
4195,
4030,
16,
6367,
30,
1437,
22,
38,
57,
4560,
14763,
19,
5196,
800,
3726,
3726,
19,
21,
1935,
13,
9802,
8,
1281,
1961,
15,
100,
206,
217,
16,
3961,
63,
14,
205,
3961,
13,
9802,
4251,
27,
206,
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... |
Getting Instagram Feeds on Facebook with PHP SDK
===
I have a little question on some facebook development stuff. Currently I'm trying to get information about Photos that I posted via Instagram. I've tried it with the graph api:
<?php $status = $fb->api($fb->getUser().'/photos', 'GET'); ?>
<pre><?php prin... | 0 | [
2,
1017,
28205,
17058,
27,
9090,
29,
13,
26120,
13,
18,
43,
197,
800,
3726,
3726,
31,
57,
21,
265,
1301,
27,
109,
9090,
522,
3217,
9,
871,
31,
22,
79,
749,
20,
164,
676,
88,
7064,
30,
31,
6054,
1197,
28205,
9,
31,
22,
195,
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... |
JRuby Rails 3.1.6 deploy WAR on Tomcat 7 in subdirectory (redirects and links don't use the subdirectory)
===
I have an JRuby on Rails 3.1.6 application and want to deploy it on a Tomcat 7 as WAR file. To generate the war I use warbler.
I can deploy the application to the server and all is running. But the links ge... | 0 | [
2,
2000,
291,
779,
2240,
18,
203,
9,
165,
9,
379,
17617,
176,
27,
2067,
5782,
453,
19,
972,
10197,
93,
13,
5,
99,
14706,
18,
17,
6271,
221,
22,
38,
275,
14,
972,
10197,
93,
6,
800,
3726,
3726,
31,
57,
40,
2000,
291,
779,
27,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Jersey object mapping
===
I'd like to to GET a Java object with a REST call, using Jersey.
The question: can send objecy of class A and receive object of class B, if A has all B's members?
Let me show an example:
class A {
String one;
Date two;
int three;
}
class B... | 0 | [
2,
2134,
3095,
13305,
800,
3726,
3726,
31,
22,
43,
101,
20,
20,
164,
21,
8247,
3095,
29,
21,
760,
645,
15,
568,
2134,
9,
14,
1301,
45,
92,
2660,
5122,
1969,
2731,
16,
718,
21,
17,
2588,
3095,
16,
718,
334,
15,
100,
21,
63,
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... |
Creating Azure Blob using Javascript
===
I wan't to create a blob using javascript and a SharedAccessSignature. All javascript files are deployed in the BlobStorage, where i want to upload my blob, so I hope Same Site Origin should be no problem. The Server sends the client the SharedAccessSignature and the client upl... | 0 | [
2,
2936,
25715,
334,
10904,
568,
8247,
8741,
800,
3726,
3726,
31,
10685,
22,
38,
20,
1600,
21,
334,
10904,
568,
8247,
8741,
17,
21,
2592,
20604,
18,
2816,
20609,
9,
65,
8247,
8741,
6488,
50,
6698,
19,
14,
334,
10904,
18,
2153,
130... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 put existing (reusable) functions in ajax request - cant use async:false
===
I have a few ajax functions* e.g.
function MyFunctionA(PassingObj) {
$.ajax({
url: '123.ashx',data: PassingObj, type: 'POST',contentType: 'application/json',
success: ... | 0 | [
2,
487,
8190,
93,
442,
3149,
13,
5,
99,
267,
579,
6,
3719,
19,
20624,
3772,
13,
8,
2973,
275,
21,
9507,
150,
45,
13192,
870,
800,
3726,
3726,
31,
57,
21,
310,
20624,
3719,
2483,
13,
62,
9,
263,
9,
1990,
51,
22359,
58,
5,
620... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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.