unified_texts stringlengths 32 30.1k | OpenStatus_id int64 0 4 | input_ids list | token_type_ids list | attention_mask list |
|---|---|---|---|---|
MediaPlayer restarts after screen is locked
===
I have a MediaPlayer playing Video and everything works fine except for when you lock the screen and then unlock it, the Video will restart.
Currently I'm using
KeyguardManager keyguardManager = (KeyguardManager)getSystemService(Activity.KEYGUARD_SERVICE);
Ke... | 0 | [
2,
941,
14049,
22767,
18,
75,
2324,
25,
4011,
800,
3726,
3726,
31,
57,
21,
941,
14049,
791,
763,
17,
796,
693,
1123,
1613,
26,
76,
42,
3991,
14,
2324,
17,
94,
16497,
32,
15,
14,
763,
129,
22767,
9,
871,
31,
22,
79,
568,
1246,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
fgetcsv / fopen in reverse
===
I am trying to do this exact function, only want to be able to display the last 20 lines of the document?
$file = fopen("/tmp/$importedFile.csv","r");
while ($line = fgetcsv($file))
{
$i++;
$body_data['csv_preview'][] = $line;
if ($i > 20) break;
}
fcl... | 0 | [
2,
398,
3060,
6824,
710,
13,
118,
398,
10157,
19,
7006,
800,
3726,
3726,
31,
589,
749,
20,
107,
48,
5340,
1990,
15,
104,
259,
20,
44,
777,
20,
3042,
14,
236,
434,
1560,
16,
14,
4492,
60,
5579,
16877,
800,
398,
10157,
5,
7,
118... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
MySql Java: Weird issue that I can not solve
===
So I am having an issue inserting data from a java program. My issue is that the user is asked "How many tuples would you like in Department Table?"
They can add however many tuples they want. Then I ask them "How many tuples would you like in the Student Table?" Ag... | 0 | [
2,
51,
18,
22402,
8247,
45,
5455,
1513,
30,
31,
92,
52,
8402,
800,
3726,
3726,
86,
31,
589,
452,
40,
1513,
14692,
68,
1054,
37,
21,
8247,
625,
9,
51,
1513,
25,
30,
14,
4155,
25,
411,
13,
7,
1544,
151,
2289,
18534,
83,
42,
10... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
MySQL/PDO truncates the data
===
`$book` is a 7kb string. If this query is executed using PHP PDO `exec`, the `monograph` column (LONGTEXT) data gets truncated at 6765 character:
echo strlen($book); // output 7157
$db->exec("UPDATE `chemicals` SET `monograph` = {$db->quote($book)} WHERE `id` = {$db->quot... | 0 | [
2,
51,
18,
22402,
118,
306,
537,
22328,
160,
14,
1054,
800,
3726,
3726,
13,
1,
4403,
5199,
1,
25,
21,
453,
18167,
3724,
9,
100,
48,
25597,
25,
5557,
568,
13,
26120,
351,
537,
13,
1,
1706,
3319,
1,
15,
14,
13,
1,
2111,
19074,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
mysql compare column with count()
===
I have two tables. One for Customers and another for Rooms.
What I want to retrieve the rooms using mysql with the following requirements..
1. the number of customers in a specific room is less than the head from the rooms table
2. the room is not in the customers table
yo... | 0 | [
2,
51,
18,
22402,
11590,
4698,
29,
2468,
5,
6,
800,
3726,
3726,
31,
57,
81,
7484,
9,
53,
26,
5279,
17,
226,
26,
3662,
9,
98,
31,
259,
20,
11917,
14,
3662,
568,
51,
18,
22402,
29,
14,
249,
4786,
9,
9,
137,
9,
14,
234,
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... |
what is the best way to implement Menu management
===
i am using spring mvc. i want to implement java menu management like
Admin Menu
------------
-Menu1
-Submenu1
-Submenu2
-Submenu3
-Administration
-User
-Role
-Permission
every submenu has a like ... | 0 | [
2,
98,
25,
14,
246,
161,
20,
8713,
11379,
1097,
800,
3726,
3726,
31,
589,
568,
1573,
307,
8990,
9,
31,
259,
20,
8713,
8247,
11379,
1097,
101,
21,
43,
2160,
11379,
13,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
13,
8,
755,
291,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to pass ADO.NET table valued parameter and how to handle stored procedure it in SQL server 2008
===
I am using SQL server 2008 and C# ADO.NET to accomplish this.
USE [MYDATABASE]
GO
CREATE TYPE [dbo].[TVP] AS TABLE(
[ID] [int] NOT NULL,
[myQuestion] [int] NOT NULL,
[PersonW... | 1 | [
2,
184,
20,
1477,
21,
537,
9,
2328,
859,
13846,
18906,
17,
184,
20,
3053,
8214,
7004,
32,
19,
4444,
255,
8128,
570,
800,
3726,
3726,
31,
589,
568,
4444,
255,
8128,
570,
17,
272,
5910,
21,
537,
9,
2328,
20,
14570,
48,
9,
275,
6... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
What Ruby HTTP daemon powers Heroku Bamboo apps?
===
I've managed to figure out that in Aspen it was a version of Thin, and Cedar it is whatever you want it to be... What is it on Bamboo? Can you change it via the Gemfile or elsewhere? | 0 | [
2,
98,
10811,
7775,
13127,
2737,
36,
9266,
16998,
4865,
18,
60,
800,
3726,
3726,
31,
22,
195,
1471,
20,
1465,
70,
30,
19,
28,
3014,
32,
23,
21,
615,
16,
2951,
15,
17,
11083,
32,
25,
2099,
42,
259,
32,
20,
44,
9,
9,
9,
98,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Can't vertically align a div with the technique of Sticky footer
===
I am applying the technique of Styck footer on my site, but my content needs to be aligned both horizontally as vertically in the `#main` But due to the botom `padding-bottom: 180px` when this must be the same size of the footer, my `#main` does not ... | 0 | [
2,
92,
22,
38,
23300,
23389,
21,
13,
12916,
29,
14,
4873,
16,
19087,
1749,
106,
800,
3726,
3726,
31,
589,
11989,
14,
4873,
16,
13,
9433,
2601,
1749,
106,
27,
51,
689,
15,
47,
51,
2331,
2274,
20,
44,
13,
12740,
156,
25658,
28,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
jQuery multiple hide and show panels
===
The idea is to have a filter on the right similar to this one: -
[Filter toggle example][1]
[1]: http://www.airbnb.co.uk/s/leeds?room_types%5B%5D=Entire%20home/apt&room_types%5B%5D=Private%20room&room_types%5B%5D=Shared%20room&price_min=111&price_max=200
So basica... | 0 | [
2,
487,
8190,
93,
1886,
3077,
17,
298,
9449,
800,
3726,
3726,
14,
882,
25,
20,
57,
21,
11945,
27,
14,
193,
835,
20,
48,
53,
45,
13,
8,
636,
11924,
815,
20,
263,
4875,
823,
500,
2558,
165,
500,
636,
165,
500,
45,
7775,
6903,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 JS function FROM loop
===
I've created a function to switch div elements with each other. By clicking "add" button i activate switching function:
$("#new").click(function () {
$("a[id^='uid']").on('click', function() {
var numrow = $(this).attr("id");
numrow = numrow.substr(3)... | 0 | [
2,
2501,
487,
18,
1990,
37,
5293,
800,
3726,
3726,
31,
22,
195,
679,
21,
1990,
20,
5521,
13,
12916,
2065,
29,
206,
89,
9,
34,
25590,
13,
7,
14854,
7,
5167,
31,
18163,
13027,
1990,
45,
5579,
5,
7,
5910,
2681,
7,
6,
9,
150,
10... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
WebMatrix - error with database ane umbraco
===
I have problem with use Umbraco in WebMatrix. I installed Umbraco and want to use but when I try open webside I get the error(it genereate webside which i push in my dropbox):
http://dl.dropbox.com/u/45759281/Odwo%C5%82anie%20do%20obiektu%20nie%20zosta%C5%82o%20ustawi... | 0 | [
2,
2741,
540,
17224,
13,
8,
7019,
29,
6018,
40,
62,
13,
723,
2559,
716,
800,
3726,
3726,
31,
57,
1448,
29,
275,
13,
723,
2559,
716,
19,
2741,
540,
17224,
9,
31,
4066,
13,
723,
2559,
716,
17,
259,
20,
275,
47,
76,
31,
1131,
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... |
C# Equivalent java code
===
What is the equivalent for this C# code in Java?
String SplitedValues ,Recevieddata;
SplitedValues = Recevieddata.Split("&", StringSplitOptions.RemoveEmptyEntries);
| 0 | [
2,
272,
5910,
4602,
8247,
1797,
800,
3726,
3726,
98,
25,
14,
4602,
26,
48,
272,
5910,
1797,
19,
8247,
60,
3724,
2132,
69,
15165,
18,
13,
15,
14673,
11751,
69,
18768,
73,
2132,
69,
15165,
18,
800,
6042,
11751,
69,
18768,
9,
25603,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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... |
overriding hashchange event, is it possible?
===
I have a web app with 3 sections. Whenever the user completes one section the next one will slide (not simply appear) into view. I'm doing this with backbone.js' routing, so hash fragments. What I want is to enable history so if the user presses the back button it will ... | 0 | [
2,
84,
5175,
68,
19170,
16229,
807,
15,
25,
32,
938,
60,
800,
3726,
3726,
31,
57,
21,
2741,
4865,
29,
203,
4501,
9,
6634,
14,
4155,
1279,
18,
53,
1050,
14,
328,
53,
129,
6464,
13,
5,
1270,
1659,
1893,
6,
77,
1418,
9,
31,
22,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
how can i move a way from a dataGridView cell even when the cell value has not passed validation?
===
I am validating cell values in an unbound dataGridView control but am not liking the behaviour am getting.
When an invalid value is entered in the cell, i cant move away from that cell, am fine with that. When i cl... | 0 | [
2,
184,
92,
31,
780,
21,
161,
37,
21,
1054,
16375,
4725,
1667,
166,
76,
14,
1667,
1923,
63,
52,
1100,
27999,
60,
800,
3726,
3726,
31,
589,
7394,
1880,
1667,
4070,
19,
40,
367,
7410,
1054,
16375,
4725,
569,
47,
589,
52,
19007,
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 make persistent connection with talk.google.com via xmpp object
===
I am using xmpphp library for google chat.
For every request I have to create new object. I want to know is there any method to maintain connection with gtalk server via xmpp object.
And also want to know , How to retrieve chat message f... | 0 | [
2,
184,
20,
233,
15348,
2760,
29,
930,
9,
16111,
4875,
9,
960,
1197,
993,
79,
3421,
3095,
800,
3726,
3726,
31,
589,
568,
993,
2554,
26120,
1248,
26,
8144,
6615,
9,
26,
352,
3772,
31,
57,
20,
1600,
78,
3095,
9,
31,
259,
20,
143... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 ram serial number?
===
I need to know how I can get RAM (Physical memory) serial number. I am using C# and I used WMI to get Hardware information but serial Number return null on another computers. I want to know how can I get it and work on any computer (not WMI) and if there is no another way can I wri... | 0 | [
2,
184,
92,
31,
164,
2843,
5956,
234,
60,
800,
3726,
3726,
31,
376,
20,
143,
184,
31,
92,
164,
2843,
13,
5,
23274,
1912,
6,
5956,
234,
9,
31,
589,
568,
272,
5910,
17,
31,
147,
619,
1435,
20,
164,
7610,
676,
47,
5956,
234,
78... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 ajax abort
===
I am working on kind of a autocomplete searching option and for that I have used `jquery's abort function` because I need to abort the previous call and let the new call begin on every `keypress` below is the code
if(ajaxCall) ajaxCall.abort();
ajaxCall = $.ajax({
url:'<?php ec... | 0 | [
2,
487,
8190,
93,
20624,
21557,
800,
3726,
3726,
31,
589,
638,
27,
825,
16,
21,
3108,
15990,
5792,
4255,
17,
26,
30,
31,
57,
147,
13,
1,
728,
8190,
93,
22,
18,
21557,
1990,
1,
185,
31,
376,
20,
21557,
14,
1158,
645,
17,
408,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Timer/Interval on HTML5/jQuery animation
===
I am looking to create a HTML5/jQuery like pop-out/throbbing/pulsing effect on images.
I have a HTML5 example of an image popout, right now this only works on Hoverover.
I am using standards CSS3 and HTML5 to create an enlarging effect on an image.
The effect looks... | 0 | [
2,
85,
139,
118,
6280,
3377,
27,
13,
15895,
10551,
728,
8190,
93,
6236,
800,
3726,
3726,
31,
589,
699,
20,
1600,
21,
13,
15895,
10551,
728,
8190,
93,
101,
1675,
8,
1320,
118,
96,
12417,
8136,
118,
13765,
18,
68,
1590,
27,
3502,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 escape this below sequence inorder to replace the text using sed in shell script?
===
find /cygdrive/c/xampp/htdocs/news4u -type f -exec sed -i 's/document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));/(function() { var ga = document.create... | 0 | [
2,
184,
20,
2220,
48,
1021,
4030,
19,
7861,
20,
3934,
14,
1854,
568,
13924,
19,
3593,
3884,
60,
800,
3726,
3726,
477,
13,
118,
2731,
263,
14573,
118,
150,
118,
396,
765,
3421,
118,
9020,
13799,
18,
118,
14962,
300,
291,
13,
8,
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... |
hbm files attributes use
===
I am new to hibernate, and while writing one of .hbm files, few questions raised to my mind, and posting them on SO in hope to get a answer
Q:
we map property of pojo to db fields
<property name="stockCode" type="date"> <column name="birth_date" length="4" /> </property>
how does *... | 0 | [
2,
746,
13178,
6488,
13422,
275,
800,
3726,
3726,
31,
589,
78,
20,
4148,
2102,
8820,
15,
17,
133,
1174,
53,
16,
13,
9,
18098,
79,
6488,
15,
310,
2346,
1127,
20,
51,
594,
15,
17,
15669,
105,
27,
86,
19,
1376,
20,
164,
21,
1623,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 manipulate data values in ajax post request?
===
I'm new to manipulating post data and would like to see how I can use it. If I have the following jquery code on my post.htm page...
var mload = $.post('feedback.htm', {name: "John", time: "2pm"} , function(mdata) {});
mload.complete(function(mdata){ ... | 0 | [
2,
184,
20,
18468,
1054,
4070,
19,
20624,
678,
3772,
60,
800,
3726,
3726,
31,
22,
79,
78,
20,
27799,
678,
1054,
17,
83,
101,
20,
196,
184,
31,
92,
275,
32,
9,
100,
31,
57,
14,
249,
487,
8190,
93,
1797,
27,
51,
678,
9,
9020,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
About Query statement in mysql
===
I use this code for paging in mysql (working with Struts 2 + Hibernate):
Query query=getSession().createQuery("from GovOffice");
query.setFirstResult(0);
query.setMaxResult(100);
List<GovOffice> list=query.list();
This will return list of GovOffice which ... | 0 | [
2,
88,
25597,
3331,
19,
51,
18,
22402,
800,
3726,
3726,
31,
275,
48,
1797,
26,
19006,
68,
19,
51,
18,
22402,
13,
5,
14120,
29,
18316,
18,
172,
2754,
4148,
2102,
8820,
6,
45,
25597,
25597,
3726,
3060,
7202,
5991,
5,
6,
9,
6037,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
python grab first word in string
===
How would I grab the first word after '\id ' in the string?
string
\id hello some random text that can be anything
python
for line in lines_in:
if line.startswith('\id '):
book = line.replace('\id ', '').lower().rstrip()
what I am gettin... | 0 | [
2,
20059,
4931,
64,
833,
19,
3724,
800,
3726,
3726,
184,
83,
31,
4931,
14,
64,
833,
75,
13,
22,
1,
1340,
13,
22,
19,
14,
3724,
60,
3724,
13,
1,
1340,
10975,
109,
5477,
1854,
30,
92,
44,
602,
20059,
26,
293,
19,
1560,
1,
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... |
Node Async Looping - Why does the memory grow and just drop all of the sudden?
===
I'm writing a program in Node that uses an async loop. The goal is to get this program to run on Heroku for an extended period of time. It grows in memory, as expected. But then once the memory usage hits about 57MiB, it drops back down... | 0 | [
2,
15421,
21,
9507,
150,
5293,
68,
13,
8,
483,
630,
14,
1912,
3213,
17,
114,
2804,
65,
16,
14,
4224,
60,
800,
3726,
3726,
31,
22,
79,
1174,
21,
625,
19,
15421,
30,
2027,
40,
21,
9507,
150,
5293,
9,
14,
1195,
25,
20,
164,
48,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Javascript array not working as expected
===
I'm pretty new to js/jquery. For each checkbox with the ID of check$ (where $ is a sequential number), I want to toggle the class "agree" of the surrounding span that uses the same check$ (but as a class). I don't want to have to hard-code the list of matching checkboxes, a... | 0 | [
2,
8247,
8741,
7718,
52,
638,
28,
1727,
800,
3726,
3726,
31,
22,
79,
1772,
78,
20,
487,
18,
118,
728,
8190,
93,
9,
26,
206,
2631,
5309,
29,
14,
4924,
16,
2631,
4403,
13,
5,
2798,
5579,
25,
21,
1353,
5495,
10107,
234,
6,
15,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to "git --follow <path>" in JGit to retrieve the full history including renames?
===
How do I have to extend the following logCommand, to get the `--follow` option of the `git log` command working?
Git git = new Git(myRepository);
Iterable<RevCommit> log = git.log().addPath("com/mycompany/myclass.java"... | 0 | [
2,
184,
20,
13,
7,
10404,
13,
8,
8,
19184,
13,
1,
8353,
1,
7,
19,
487,
10404,
20,
11917,
14,
503,
447,
215,
302,
7259,
18,
60,
800,
3726,
3726,
184,
107,
31,
57,
20,
7206,
14,
249,
6738,
16239,
15,
20,
164,
14,
13,
1,
8,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Randomly Generate/Pick Words
===
First off let me say I'm a beginner at programming. So far I've done only one android app that did little more than go out to the net, grab some data and do some simple calculations on it. I quite enjoyed that and would like to continue to try to learn by coding.
I have another ide... | 0 | [
2,
21324,
7920,
118,
16855,
715,
800,
3726,
3726,
64,
168,
408,
55,
395,
31,
22,
79,
21,
26931,
35,
3143,
9,
86,
463,
31,
22,
195,
677,
104,
53,
13005,
4865,
30,
144,
265,
91,
119,
162,
70,
20,
14,
4275,
15,
4931,
109,
1054,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Backbone reset event in collection
===
How does Backbone reset event works?
As far as I understand
step 1: Remove all models from collection
step 2: Add newly "fetched" models to collection
step 3: Fires reset event
In my case each model draw something on SVG so I should call remove function befor... | 0 | [
2,
24036,
23422,
807,
19,
1206,
800,
3726,
3726,
184,
630,
24036,
23422,
807,
693,
60,
28,
463,
28,
31,
1369,
1424,
6352,
4681,
65,
2761,
37,
1206,
1424,
4274,
3547,
2771,
13,
7,
28998,
7,
2761,
20,
1206,
1424,
2635,
11327,
23422,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to create facebook login only for some users?
===
I have implemented in my application a way to login with facebook in the application and allow users to edit some contents that are directly changing online content. Since I'm still not sure if this feature will be allowed for all users I'm wondering if there is an... | 0 | [
2,
184,
20,
1600,
9090,
6738,
108,
104,
26,
109,
3878,
60,
800,
3726,
3726,
31,
57,
6807,
19,
51,
3010,
21,
161,
20,
6738,
108,
29,
9090,
19,
14,
3010,
17,
1655,
3878,
20,
9392,
109,
8478,
30,
50,
1703,
4226,
2087,
2331,
9,
17... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Changing a java object outside its class
===
Here's my question, how can I change an object outside of it's class, so that it maintains the changes made in the outside class?
Here's an example of the code:
**Main class:**
public class Main {
public static void main(String[] args)
... | 0 | [
2,
4226,
21,
8247,
3095,
719,
82,
718,
800,
3726,
3726,
235,
22,
18,
51,
1301,
15,
184,
92,
31,
753,
40,
3095,
719,
16,
32,
22,
18,
718,
15,
86,
30,
32,
9767,
14,
1693,
117,
19,
14,
719,
718,
60,
235,
22,
18,
40,
823,
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... |
Magento Site duplication
===
This is a Magento question. I work on a large corporate Magento installation that is in English and has a Spanish translation version. We are upstairs of 5,000 products.
For an upcoming project, I need to create a Spanish-only site. While it appears easy to copy product names and des... | 0 | [
2,
4723,
17050,
689,
1052,
20669,
800,
3726,
3726,
48,
25,
21,
4723,
17050,
1301,
9,
31,
170,
27,
21,
370,
4871,
4723,
17050,
7758,
30,
25,
19,
486,
17,
63,
21,
1273,
4064,
615,
9,
95,
50,
8891,
16,
11646,
1985,
9,
26,
40,
907... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Extracting a file from the currently running JAR through code
===
Are there any built-in methods I can use to allow users to extract a file from the currently running JAR and save it on their disk?
Thanks in advance. | 0 | [
2,
10962,
68,
21,
3893,
37,
14,
871,
946,
5112,
120,
1797,
800,
3726,
3726,
50,
80,
186,
392,
8,
108,
3195,
31,
92,
275,
20,
1655,
3878,
20,
10962,
21,
3893,
37,
14,
871,
946,
5112,
17,
2079,
32,
27,
66,
8582,
60,
3669,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... |
IE8 and 9 not supporting DOM. Can't find answer
===
I am running a DOM script and it is working PERFECTLY in Chrome and Firefox, but not IE8 or 9. The error messages in IE that I get are
- 'document.getElementByld(..)' is null or not an object
- Object doesn't support this property or method
- Unable to se... | 0 | [
2,
13,
660,
457,
17,
561,
52,
3134,
11859,
9,
92,
22,
38,
477,
1623,
800,
3726,
3726,
31,
589,
946,
21,
11859,
3884,
17,
32,
25,
638,
5759,
19,
13,
12985,
17,
535,
18219,
15,
47,
52,
13,
660,
457,
54,
561,
9,
14,
7019,
7561,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Discrete filter for D3 Crossfilter Dimensions
===
Is there a way to create a dimension on a attribute that has one or more values? For example
{quantity: 2, total: 190, tip: 100, items: ["apple","sandwich"],
{quantity: 2, total: 190, tip: 100, items: ["ice-cream"]},
{quantity: 1, total: 300, tip: 200,... | 0 | [
2,
18563,
11945,
26,
13,
43,
240,
919,
11924,
815,
9913,
800,
3726,
3726,
25,
80,
21,
161,
20,
1600,
21,
9547,
27,
21,
35,
14755,
30,
63,
53,
54,
91,
4070,
60,
26,
823,
13,
1,
18405,
38,
856,
45,
172,
15,
600,
45,
13,
12021,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Is there a reason why this.form.target='_top' does not work and target="_top" works when placed as a form attribute?
===
Akin to the problem faced by the author at http://cfyves.com/2011/05/05/need-form-submission-to-break-out-of-an-iframe/, I attempted to break out of a submitted iframe however it would only work if ... | 0 | [
2,
25,
80,
21,
1215,
483,
48,
9,
4190,
9,
3958,
3060,
3726,
22,
1,
3880,
22,
630,
52,
170,
17,
2935,
3726,
7,
1,
3880,
7,
693,
76,
1037,
28,
21,
505,
35,
14755,
60,
800,
3726,
3726,
21,
1767,
20,
14,
1448,
3110,
34,
14,
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... |
Strange positioning after using MKAnnotationView centerOffset
===
in iOS 5.0, I first place annotations on the map and also set the centre offset to CGPointMake(0,-annotationView.frame.size.height/2); right after setting the custom image for the annotation in the mapView:viewForAnnotation: method... after this the pin... | 0 | [
2,
2578,
649,
68,
75,
568,
307,
2825,
1270,
857,
4725,
459,
1299,
3554,
800,
3726,
3726,
19,
13,
7760,
331,
9,
387,
15,
31,
64,
209,
40,
1270,
7504,
27,
14,
2942,
17,
67,
309,
14,
861,
17493,
20,
13,
15123,
3132,
11115,
5,
387... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
transcoding with ffmpeg libfaac makes auido's duration shorter
===
I have to transcode a mpegts file: input.ts(H.264 and AAC)
So I use the following command line:
"ffmpeg -y -i input.ts -acodec libfaac -vcodec copy out.ts"
But I find that the duration of output.ts's audio is shorter than that of the input.... | 0 | [
2,
2982,
15458,
29,
13,
2460,
79,
20427,
13,
8326,
1473,
1738,
1364,
10343,
6470,
22,
18,
9403,
7622,
800,
3726,
3726,
31,
57,
20,
2982,
9375,
21,
307,
20427,
38,
18,
3893,
45,
6367,
9,
38,
18,
5,
252,
9,
20470,
17,
21,
1738,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Table Row Transition Formatting
===
I've got a problem similar to this, but not really:
http://stackoverflow.com/questions/6480688/transition-effects-for-table-rows
I'm using the jQuery Quicksand plugin to animate some table row shuffling whenever the user sorts or filters the table data.
http://razorjack.net... | 0 | [
2,
859,
3131,
4513,
2595,
1203,
800,
3726,
3726,
31,
22,
195,
330,
21,
1448,
835,
20,
48,
15,
47,
52,
510,
45,
7775,
6903,
25325,
2549,
9990,
9,
960,
118,
24652,
18,
118,
379,
16318,
4279,
12530,
7028,
9861,
8,
21295,
18,
8,
110... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Architecture: Avoiding duplicate model/modelview code in MVC/Entity Framework Project
===
I'm new to the whole ASP world and I'm getting my feet wet by building a C# MVC3/EF4 project. I'm finding it hard to keep from duplicating a bunch of code in my models and view models. Consider an object Foo. I need to do the ... | 0 | [
2,
2607,
45,
10298,
19429,
1061,
118,
13998,
4725,
1797,
19,
307,
8990,
118,
2291,
856,
6596,
669,
800,
3726,
3726,
31,
22,
79,
78,
20,
14,
979,
28,
306,
126,
17,
31,
22,
79,
1017,
51,
606,
3221,
34,
353,
21,
272,
5910,
307,
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... |
iPhone backup restore SMS
===
I have had to restore my iPhone 4S to factory settings - wiping everything on the device. Fortunately I have frequent backups so I was able to restore most of the settings and stuff.
However, is there a way (on mac) to restore SMS messages - as I know they are backed up, I just don't k... | 2 | [
2,
21024,
10119,
8454,
7613,
18,
800,
3726,
3726,
31,
57,
41,
20,
8454,
51,
21024,
268,
18,
20,
3129,
12410,
13,
8,
16740,
796,
27,
14,
3646,
9,
18401,
31,
57,
5408,
10119,
18,
86,
31,
23,
777,
20,
8454,
127,
16,
14,
12410,
17... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
iOS Grid View with support for different sized cells
===
I'm an iOS developer looking for a solution to a tricky problem.
I need to create a grid view/ mosaic view to layout cells of **different** sizes (both width and height).
I basically need the functionality of a GMGridView, with horizontal scrolling/paging... | 0 | [
2,
13,
7760,
7354,
1418,
29,
555,
26,
421,
13,
6560,
2934,
800,
3726,
3726,
31,
22,
79,
40,
13,
7760,
10058,
699,
26,
21,
4295,
20,
21,
5514,
93,
1448,
9,
31,
376,
20,
1600,
21,
7354,
1418,
118,
15158,
1418,
20,
9106,
2934,
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... |
traversing relation to relation in odata
===
I have a entity say Computers with properties Dnshostname and navigation property TechnicalProductsHosted. Computers to TechnicalProductsHosted is a many to one and one to many relationship. TechnicalProductsHosted is TechnicalProducts in the odata. Entity TechnicalProducts... | 0 | [
2,
19501,
68,
5827,
20,
5827,
19,
635,
18768,
800,
3726,
3726,
31,
57,
21,
9252,
395,
7774,
29,
3704,
13,
43,
2172,
11694,
7259,
17,
8368,
1354,
2447,
14086,
18,
25219,
9,
7774,
20,
2447,
14086,
18,
25219,
25,
21,
151,
20,
53,
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... |
duplicate an android app project in Eclipse?
===
Is it pissible to duplicate my android app and just give it a new namespace?
Creating a copy of this app for another event and instead of going throug and copy/paste all files, i was hoping to be able to duplicate the project and choose a new nakespace. | 0 | [
2,
19429,
40,
13005,
4865,
669,
19,
11652,
60,
800,
3726,
3726,
25,
32,
15688,
3426,
20,
19429,
51,
13005,
4865,
17,
114,
590,
32,
21,
78,
204,
5582,
60,
2936,
21,
4344,
16,
48,
4865,
26,
226,
807,
17,
700,
16,
228,
25057,
5127,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Cannot find class [org.springframework.orm.hibernate.LocalSessionFactoryBean]
===
**I have encounter a problem with spring hibernate, can some help me with this? I think I get all the library in my project:sping-orm ...**
*Jul 5, 2012 2:13:58 PM org.springframework.context.support.AbstractApplicationContext prepa... | 0 | [
2,
1967,
477,
718,
636,
5583,
9,
15827,
8361,
3783,
9,
248,
79,
9,
8630,
106,
8820,
9,
15580,
7202,
5991,
17455,
93,
863,
210,
500,
800,
3726,
3726,
13,
1409,
49,
57,
7007,
21,
1448,
29,
1573,
4148,
2102,
8820,
15,
92,
109,
448,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
The authorization of the Artifactory in Jenkins does not work
===
I´m using Artifactory 2.4.0 and Jenkins 1.438 and I have maven project with several modules. Need to deploy all modules(jars and one resulting war)
into remote Artifactory server by Jenkins.
My user admin for artifactory was with default password (... | 0 | [
2,
14,
22677,
16,
14,
22929,
7159,
19,
11420,
630,
52,
170,
800,
3726,
3726,
31,
307,
568,
22929,
7159,
172,
9,
300,
9,
387,
17,
11420,
137,
9,
26758,
17,
31,
57,
1216,
3124,
669,
29,
238,
17113,
9,
376,
20,
17617,
65,
17113,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Runtime error 1004 when assigning cell formula via vba
===
From within code, based on particular criteria, I am trying to assign a formula to a particular cell. See code
For l = 8 To lEND
lPriorNum = .Range("N" & l)
If lPriorNum = 1 Then
sFormula = "=ROUND(IF(... | 0 | [
2,
485,
891,
7019,
808,
300,
76,
13952,
68,
1667,
3729,
1197,
566,
969,
800,
3726,
3726,
37,
363,
1797,
15,
432,
27,
1498,
9157,
15,
31,
589,
749,
20,
13952,
21,
3729,
20,
21,
1498,
1667,
9,
196,
1797,
26,
644,
800,
469,
20,
1... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How can i upload multiple NSImages to Facebook using PhFacebook?
===
I know how to upload simple text to facebook using PhFacebook, but i don't know how can i upload multiple nsimages to facebook using the same framework?
<br>Can any1 explain me with example code?
<br>Thanks! | 0 | [
2,
184,
92,
31,
71,
8294,
1886,
13,
2172,
22039,
18,
20,
9090,
568,
4145,
6413,
5199,
60,
800,
3726,
3726,
31,
143,
184,
20,
71,
8294,
1935,
1854,
20,
9090,
568,
4145,
6413,
5199,
15,
47,
31,
221,
22,
38,
143,
184,
92,
31,
71,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 the client side script on textchange event of textbox?
===
Suppose You have TextBox Control and the user enter any key into it. When the user enter the key ,on that event the key which is pressed stored into array and show him any another character.
Example . suppose i enter "x" but the textbox should d... | 0 | [
2,
184,
20,
485,
14,
6819,
270,
3884,
27,
1854,
16229,
807,
16,
1854,
5309,
60,
800,
3726,
3726,
5787,
42,
57,
1854,
5309,
569,
17,
14,
4155,
2830,
186,
1246,
77,
32,
9,
76,
14,
4155,
2830,
14,
1246,
13,
15,
218,
30,
807,
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... |
tag cloud styling
===
I'm trying to style [my blog's tag cloud][1] as [described here][2]. I've followed the instructions, but there is one small problem. I can't seem to figure out how to change the white section of each tag (circled in red below) to be transparent such that the shaded background shows through.
![... | 0 | [
2,
3383,
4005,
23020,
800,
3726,
3726,
31,
22,
79,
749,
20,
1034,
636,
915,
8146,
22,
18,
3383,
4005,
500,
2558,
165,
500,
28,
636,
27701,
235,
500,
2558,
135,
500,
9,
31,
22,
195,
709,
14,
7650,
15,
47,
80,
25,
53,
284,
1448,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Django query manytomanyfield in template
===
How can I query a manytomanyfield in a Django template?
For example, this if statement doesn't work, but that's what I'd like to do:
template.html
{% for post in posts %}
{% if post.likes.filter(user=user) %}
You like this post
{%... | 0 | [
2,
3857,
14541,
25597,
151,
262,
14842,
1109,
19,
22894,
800,
3726,
3726,
184,
92,
31,
25597,
21,
151,
262,
14842,
1109,
19,
21,
3857,
14541,
22894,
60,
26,
823,
15,
48,
100,
3331,
1437,
22,
38,
170,
15,
47,
30,
22,
18,
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... |
How to create a socket object in Node.JS that will do zlib compression?
===
I know I could do something along the lines of:
var prevWrite = socket.write;
socket.write = function(data, encoding, callback) {
// do zlib compression in here
return prevWrite.call(this, data, encoding, callback);
};
Ho... | 0 | [
2,
184,
20,
1600,
21,
18482,
3095,
19,
15421,
9,
728,
18,
30,
129,
107,
2052,
8326,
14864,
60,
800,
3726,
3726,
31,
143,
31,
110,
107,
301,
303,
14,
1560,
16,
45,
4033,
782,
710,
23716,
800,
18482,
9,
23716,
73,
18482,
9,
23716,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
issues with iterative code in java
===
I want to convert the recursive function given below:
g.add("a");
void func(LinkedList g}
{
LinkedList i=a; //a contains the nodes which are adjacent to the last element of g
for(String i1: i )
{
if(g.contains(i1) || i1.equal... | 0 | [
2,
1549,
29,
32,
106,
3366,
1797,
19,
8247,
800,
3726,
3726,
31,
259,
20,
8406,
14,
302,
24244,
1990,
504,
1021,
45,
489,
9,
14854,
5,
7,
58,
7,
6,
73,
11364,
2414,
150,
5,
6258,
69,
5739,
489,
1,
13,
1,
4727,
5739,
31,
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... |
How to implement isValid connection for using with Oracle driver classes12?
===
I need implement
boolean isValid(int timeout)
like in jdk6 for java.sql.Connection. But should use Oracle thin driver classes12.
It is clear that I can run small query, but what about timeout? Should I create separate thread ... | 0 | [
2,
184,
20,
8713,
25,
18506,
43,
2760,
26,
568,
29,
15759,
2425,
2684,
918,
60,
800,
3726,
3726,
31,
376,
8713,
9827,
413,
210,
25,
18506,
43,
5,
6391,
85,
1320,
6,
101,
19,
487,
43,
197,
379,
26,
8247,
9,
18,
22402,
9,
25996,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to create a utility class that has common helpers?
===
I want to create a utility class with common functions I need. So they have to be static, and not leak memory.
Say I wanted to add this function that converts a NSString to a NSNumber:
NSNumberFormatter * f = [[NSNumberFormatter alloc] init];
[... | 0 | [
2,
184,
20,
1600,
21,
10082,
718,
30,
63,
757,
448,
445,
60,
800,
3726,
3726,
31,
259,
20,
1600,
21,
10082,
718,
29,
757,
3719,
31,
376,
9,
86,
59,
57,
20,
44,
12038,
15,
17,
52,
11724,
1912,
9,
395,
31,
417,
20,
3547,
48,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to install oci8 or instant client on cpanel
===
Can anyone tell me step by step procedure to install instant client on my cpanel server? | 0 | [
2,
184,
20,
16146,
13,
16325,
457,
54,
6322,
6819,
27,
272,
3206,
532,
800,
3726,
3726,
92,
1276,
494,
55,
1424,
34,
1424,
7004,
20,
16146,
6322,
6819,
27,
51,
272,
3206,
532,
8128,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... |
[android platform source]i want to import diffrent package file into the webkit package file
===
Copying: out/target/common/obj/JAVA_LIBRARIES/core-junit_intermediates/emma_out/lib/classes-jarjar.jar
target Java: framework (out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/classes)
frameworks/base/cor... | 0 | [
2,
636,
290,
18524,
2452,
1267,
500,
49,
259,
20,
9010,
20811,
8993,
6030,
3893,
77,
14,
2741,
13703,
6030,
3893,
800,
3726,
3726,
4344,
68,
45,
70,
118,
3958,
3060,
118,
17130,
118,
111,
11741,
118,
1004,
1385,
1,
1210,
2559,
2829,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How to insert data in sales_flat_order from sales_flat_quote
===
I read lots of links but not get exact answer.
I read this (http://www.magentocommerce.com/boards/viewthread/283903/#t393390) link.
Problem is my data goes to "sales_flat_quote" Table but not insert into "sales_flat_order"
table when checkou... | 0 | [
2,
184,
20,
14692,
1054,
19,
2598,
1,
13830,
1,
7861,
37,
2598,
1,
13830,
1,
8970,
591,
800,
3726,
3726,
31,
1302,
7503,
16,
6271,
47,
52,
164,
5340,
1623,
9,
31,
1302,
48,
13,
5,
21127,
6903,
6483,
9,
9473,
17050,
26470,
9,
9... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Foreign Key in asp.net mvc
===
I have a view where I want to show comments for a book.
I render the view where I show a book like this:
public ActionResult Show(int id)
{
var model = _repository.GetSeriesById(id);
return View(model);
}
In the View I show commen... | 0 | [
2,
1228,
1246,
19,
28,
306,
9,
2328,
307,
8990,
800,
3726,
3726,
31,
57,
21,
1418,
113,
31,
259,
20,
298,
7534,
26,
21,
360,
9,
31,
16535,
14,
1418,
113,
31,
298,
21,
360,
101,
48,
45,
317,
1028,
29955,
298,
5,
6391,
4924,
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... |
create common storyboard scene xcode
===
When using story boards for iOS development, how would you create a common background for every scene? As far as I can tell, I have to copy and paste common elements for every new scene.
Thanks,
Adam | 0 | [
2,
1600,
757,
609,
2806,
1691,
993,
9375,
800,
3726,
3726,
76,
568,
609,
8755,
26,
13,
7760,
522,
15,
184,
83,
42,
1600,
21,
757,
2395,
26,
352,
1691,
60,
28,
463,
28,
31,
92,
494,
15,
31,
57,
20,
4344,
17,
640,
62,
757,
206... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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... |
Ruby On Rails Tutorial Extensions to the sample application
===
To anyone who's read Ruby On Rails 3 Tutorial,
I just finished it. In the last chapter it gives you some exercises. I was wondering if someone out there understands the @replies exercise.
How is the interface supposed to look? Should there be a... | 2 | [
2,
10811,
27,
2240,
18,
29724,
17529,
20,
14,
5717,
3010,
800,
3726,
3726,
20,
1276,
72,
22,
18,
1302,
10811,
27,
2240,
18,
203,
29724,
15,
31,
114,
842,
32,
9,
19,
14,
236,
1260,
32,
2352,
42,
109,
12612,
9,
31,
23,
5712,
100... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Html page as popup in asp.net
===
I am making an `ASP.NET website` where i have sort of a static image gallery. Now when i click on an image in this gallery i want to show a `pop up` containing text (10-15 lines) describing the image.
How can I achieve this? I don't have much idea as to how I should proceed. | 0 | [
2,
13,
15895,
2478,
28,
1675,
576,
19,
28,
306,
9,
2328,
800,
3726,
3726,
31,
589,
544,
40,
13,
1,
472,
306,
9,
2328,
2271,
1,
113,
31,
57,
2058,
16,
21,
12038,
1961,
2246,
9,
130,
76,
31,
10840,
27,
40,
1961,
19,
48,
2246,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Download images from a web server with AX 2009
===
I'd like to download images from an web page and save them localy on my system and then connect them to an item in AX. Does anyone have an example how to download images form the internet with AX 2009? | 0 | [
2,
7121,
3502,
37,
21,
2741,
8128,
29,
21,
396,
588,
800,
3726,
3726,
31,
22,
43,
101,
20,
7121,
3502,
37,
40,
2741,
2478,
17,
2079,
105,
375,
93,
27,
51,
329,
17,
94,
6379,
105,
20,
40,
9101,
19,
21,
396,
9,
630,
1276,
57,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0... |
BackgroundWorker ReportProgress event queue
===
I have a BackgroundWorker that monitors a folder for files in 1sec interval. If it finds file(s) then it raises the ReportProgress(0, fileName) for every found file.
On the main thread I subscribe to that event and handle each file.
This is: one found file = one r... | 0 | [
2,
2395,
22560,
1330,
2740,
13026,
807,
22521,
800,
3726,
3726,
31,
57,
21,
2395,
22560,
30,
18521,
21,
19294,
26,
6488,
19,
137,
14332,
14422,
9,
100,
32,
3797,
3893,
5,
18,
6,
94,
32,
15303,
14,
1330,
2740,
13026,
5,
387,
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... |
Does phonegap supports Android 1.6?
===
I am following [this][1] guide and based on [here][2], it says
> Don't bother using older versions of Android. Use the highest SDK
> target available. Phonegap will take care of backwards compatibility
> for you.
So I use these targets:
Build target
> Android 2.3.3
... | 0 | [
2,
630,
1132,
1136,
306,
6747,
13005,
137,
9,
379,
60,
800,
3726,
3726,
31,
589,
249,
636,
1565,
500,
2558,
165,
500,
3378,
17,
432,
27,
636,
6836,
500,
2558,
135,
500,
15,
32,
898,
13,
1,
221,
22,
38,
8006,
568,
1234,
3281,
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... |
Preserve spaces from attribute values with xpath
===
Please consider this file: http://www.w3schools.com/dom/books.xml where line:
`<book category="children">`
is replaced with:
`<book category=" children ">`
Executing xpath query in vbscript for `category` attribute value:
For Each n In objXML.selectN... | 0 | [
2,
6224,
7644,
37,
35,
14755,
4070,
29,
993,
8353,
800,
3726,
3726,
2247,
3563,
48,
3893,
45,
7775,
6903,
6483,
9,
499,
240,
7535,
18,
9,
960,
118,
5555,
118,
13828,
9,
396,
8184,
113,
293,
45,
13,
1,
5199,
3230,
3726,
7,
17853,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Tomcat Folder as Classpath?
===
I have a really weird issue with Tomcat that I can't seem to fix. My issue is that it seems that Tomcat sees the Tomcat folder (C:/Program Files/Apache Software Foundation/Tomcat 6) as the classpath. This issue comes into effect when I set my JAVA_OPTS to reference my properties file.
... | 0 | [
2,
2067,
5782,
19294,
28,
718,
8353,
60,
800,
3726,
3726,
31,
57,
21,
510,
5455,
1513,
29,
2067,
5782,
30,
31,
92,
22,
38,
2260,
20,
6098,
9,
51,
1513,
25,
30,
32,
2206,
30,
2067,
5782,
6895,
14,
2067,
5782,
19294,
13,
5,
150,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Message Box body display in Landscape mode in multiple lines
===
I have message box that is displayed with different messages on different scenarios. My problem is that in portrait mode the message body is fine but in landscape even though there is a lot of space the message body gets wrapped and gets displayed in mul... | 0 | [
2,
2802,
1649,
358,
3042,
19,
4453,
3740,
19,
1886,
1560,
800,
3726,
3726,
31,
57,
2802,
1649,
30,
25,
6115,
29,
421,
7561,
27,
421,
19611,
9,
51,
1448,
25,
30,
19,
5548,
3740,
14,
2802,
358,
25,
1123,
47,
19,
4453,
166,
362,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
git modifying code on multiple branches using the same eclipse workspace
===
I kind of feel I am missing something here, but here is the question.
I have a branch A. Work is in progress in this branch. A tag T is created which marks a production release version. Now, a fix has to be done on top of the code in this ta... | 0 | [
2,
13,
10404,
17579,
68,
1797,
27,
1886,
4395,
568,
14,
205,
11652,
170,
5582,
800,
3726,
3726,
31,
825,
16,
583,
31,
589,
2863,
301,
235,
15,
47,
235,
25,
14,
1301,
9,
31,
57,
21,
1686,
21,
9,
170,
25,
19,
3455,
19,
48,
168... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Cursor%not found Statement not fetching
===
Hi guys I have a pl/sql statement which is supposed to fetch data from one table to another through a cursor but some fields are empty and am thinking that is why it is exiting the line
exit when cursor%not found;
I have googled around and I have seen the sugges... | 0 | [
2,
29588,
11881,
1270,
216,
3331,
52,
18312,
68,
800,
3726,
3726,
4148,
2776,
31,
57,
21,
12443,
118,
18,
22402,
3331,
56,
25,
2293,
20,
18312,
1054,
37,
53,
859,
20,
226,
120,
21,
29588,
47,
109,
2861,
50,
2424,
17,
589,
1440,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
vmstat results are not consistent
===
when I issue the vmstat command without any parameter I get this result:
# vmstat
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu------
r b swpd free buff cache si so bi bo in cs us sy id wa st
7 117 0 71... | 0 | [
2,
13,
20147,
10631,
1736,
50,
52,
8224,
800,
3726,
3726,
76,
31,
1513,
14,
13,
20147,
10631,
1202,
366,
186,
18906,
31,
164,
48,
829,
45,
6926,
13,
20147,
10631,
13,
15617,
18,
13,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
790,
51... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
MongoDB Java: Finding objects in Mongo returns nothing
===
I have a `JUnit rule` called as `MongoRule` looks like
public class MongoRule extends ExternalResource {
private static final Logger LOGGER = LoggerFactory.getLogger(MongoRule.class);
private final MongoService mongoService;
... | 0 | [
2,
3521,
5474,
220,
8247,
45,
3007,
3916,
19,
3521,
839,
4815,
626,
800,
3726,
3726,
31,
57,
21,
13,
1,
8753,
242,
1828,
1,
227,
28,
13,
1,
2111,
839,
16154,
1,
1879,
101,
317,
718,
3521,
839,
16154,
9073,
4886,
99,
12097,
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... |
Widget appears in Widget Preview but not in the Widget List for Android 4
===
I have created a simple widget application that works find in the 2.3.3 Simulation. The same widget, when loaded on the Android 4.0.3 or 4.1 simulations, appears on the APPS tab, not the WIDGETS tab. However, it does appear in the widgets ... | 0 | [
2,
4807,
43,
3060,
1780,
19,
4807,
43,
3060,
16121,
47,
52,
19,
14,
4807,
43,
3060,
968,
26,
13005,
268,
800,
3726,
3726,
31,
57,
679,
21,
1935,
4807,
43,
3060,
3010,
30,
693,
477,
19,
14,
172,
9,
240,
9,
240,
10926,
9,
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... |
basic css li active only for some elements
===
I have two HTML lists I need one to select my "active" class and the other to ignore it.
Here is my css, I show an image "icon-plus.gif" and when user click the li the image change to "icon-minus.gif"
li:before {content: url("icon-plus.gif");}
li.activ... | 0 | [
2,
2125,
272,
18,
18,
2093,
1348,
104,
26,
109,
2065,
800,
3726,
3726,
31,
57,
81,
13,
15895,
7227,
31,
376,
53,
20,
5407,
51,
13,
7,
7889,
7,
718,
17,
14,
89,
20,
7174,
32,
9,
235,
25,
51,
272,
18,
18,
15,
31,
298,
40,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
SVNkit reading repositories on Linux
===
I have a problem with connection to a SVN repository from SVNkit. When I create repository by command
"svnadmin create test"
and trying to access it from svnkit java I get exception
"Unable to open an ra_local session to URL"
I tried call SVNRepositoryFactoryImpl... | 0 | [
2,
13,
18,
16578,
13703,
1876,
302,
14882,
262,
2829,
27,
13024,
800,
3726,
3726,
31,
57,
21,
1448,
29,
2760,
20,
21,
13,
18,
16578,
24869,
37,
13,
18,
16578,
13703,
9,
76,
31,
1600,
24869,
34,
1202,
13,
7,
18,
16578,
1283,
2160... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Disable native logcat outputs in Android
===
I am using a Samsung Galaxy S3 device for development and my app is using the camera.
In the logcat, there is an output made by the native system with the tag Camera-JNI that is written to logcat like 20 times per second, causing the logcat to clean the oldest entries ver... | 0 | [
2,
1460,
579,
1275,
6738,
5782,
5196,
18,
19,
13005,
800,
3726,
3726,
31,
589,
568,
21,
22981,
9358,
13,
18,
240,
3646,
26,
522,
17,
51,
4865,
25,
568,
14,
3336,
9,
19,
14,
6738,
5782,
15,
80,
25,
40,
5196,
117,
34,
14,
1275,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
get the region or the boundary points of the overlapping regions of arbitrary shape
===
I would like to get the regions or the boundary points of regions that are not common to an overlapping two images.these regions could be multiple, significant(bigger) and insignificant(smaller).
I am planning to work on matlab,... | 1 | [
2,
164,
14,
632,
54,
14,
5067,
819,
16,
14,
23854,
3332,
16,
17237,
2539,
800,
3726,
3726,
31,
83,
101,
20,
164,
14,
3332,
54,
14,
5067,
819,
16,
3332,
30,
50,
52,
757,
20,
40,
23854,
81,
3502,
9,
11836,
3332,
110,
44,
1886,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
how to detect css translate3d without the webkit context
===
All is in the title.
To detect if a browser support translate3d we can use ('WebKitCSSMatrix' in window && 'm11' in new WebKitCSSMatrix())
but now that firefox support translate3d how to have a correct detection of it ?
The idea would be to find a s... | 0 | [
2,
184,
20,
9092,
272,
18,
18,
20628,
240,
43,
366,
14,
2741,
13703,
4141,
800,
3726,
3726,
65,
25,
19,
14,
581,
9,
20,
9092,
100,
21,
16495,
555,
20628,
240,
43,
95,
92,
275,
13,
5,
22,
14113,
13703,
6824,
18,
540,
17224,
22,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How can I add Failure Actions within service exe?
===
How can I program Failure Actions in a windows service(using ATL), so after I call myservice.exe /service, FailureActions are set already? | 0 | [
2,
184,
92,
31,
3547,
2990,
3078,
363,
365,
1396,
62,
60,
800,
3726,
3726,
184,
92,
31,
625,
2990,
3078,
19,
21,
1936,
365,
5,
12655,
35,
255,
6,
15,
86,
75,
31,
645,
51,
11449,
9,
1706,
62,
13,
118,
11449,
15,
2990,
8645,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... |
How i can add space to text in excel for full fill text length
===
How i can add space to text in excel(2010) for full fill text length.
example
In excel sheet have 3 collum A is lenght,B is actual text and D is expected text.
(B)text is "ABVC" but require text length is (A)6
then (D)text should be " ABVC"(Sp... | 0 | [
2,
184,
31,
92,
3547,
726,
20,
1854,
19,
20700,
26,
503,
3509,
1854,
1476,
800,
3726,
3726,
184,
31,
92,
3547,
726,
20,
1854,
19,
20700,
5,
2751,
6,
26,
503,
3509,
1854,
1476,
9,
823,
19,
20700,
6125,
57,
203,
9470,
723,
21,
2... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
how to give 100% height for table in html5
===
How to give 100% height for table,
<table border="1" style="height:100%"><tr> <td>Height 100%</td></tr> </table>
i tried this but its not taking 100% height,
can any one help me | 0 | [
2,
184,
20,
590,
12849,
2947,
26,
859,
19,
13,
15895,
264,
800,
3726,
3726,
184,
20,
590,
12849,
2947,
26,
859,
15,
13,
1,
5924,
1862,
3726,
7,
165,
7,
1034,
3726,
7,
252,
7748,
6608,
3621,
7,
1,
6384,
1,
13,
1,
38,
43,
1,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
how to make CCScrollView and CCMenuItem all right?
===
I try to add some CCMenuItemImages in CCScrollView`s Layers,and I want to it works like UIKit.
but when touchBegain in CCMenuItemImage rect,CCScrollView cant work,I must touchBegain at other place where out of CCMenuItemImage...
How to make it cooler? | 0 | [
2,
184,
20,
233,
8093,
3862,
8694,
4725,
17,
8093,
755,
11193,
1503,
65,
193,
60,
800,
3726,
3726,
31,
1131,
20,
3547,
109,
8093,
755,
11193,
1503,
22039,
18,
19,
8093,
3862,
8694,
4725,
1,
18,
9124,
15,
290,
31,
259,
20,
32,
69... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 Raphael path width
===
I'm trying to scale a path in SVG. For doing so I'm using the javascript-library Raphaël.
The scaling itself works just fine, but it's scaling at the center and I want it to scale at a different point (the figure of the path is a circle-sector and I want it to scale at the center of ... | 0 | [
2,
8247,
8741,
13874,
2013,
9456,
800,
3726,
3726,
31,
22,
79,
749,
20,
3464,
21,
2013,
19,
13,
18,
22955,
9,
26,
845,
86,
31,
22,
79,
568,
14,
8247,
8741,
8,
1210,
2559,
622,
13874,
9,
14,
26829,
1145,
693,
114,
1123,
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... |
New to Javascript - For Loop
===
Im trying to learn javascript and i'm looking at the for loop.
Im trying to loop through 4 numbers which I've done successfully.
for (i=0;i<5;i++) {
console.log(i + " and " + (i+1));
}
However i'm trying to achieve something like this:
0 1
0 2
0 3
... | 0 | [
2,
78,
20,
8247,
8741,
13,
8,
26,
5293,
800,
3726,
3726,
797,
749,
20,
2484,
8247,
8741,
17,
31,
22,
79,
699,
35,
14,
26,
5293,
9,
797,
749,
20,
5293,
120,
268,
2116,
56,
31,
22,
195,
677,
3673,
9,
26,
13,
5,
49,
3726,
387... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
HttpWebRequest ignoring CookieContainer?
===
I'm having some trouble with the CookieContainer and I'm hoping someone here can help me.
I've got a php endpoint using session-based authorisation. I authorise once, and then use the session to determine whether I have access to certain (RESTful) URIs.
I have all of ... | 0 | [
2,
7775,
458,
3692,
10351,
9321,
19980,
1126,
5851,
106,
60,
800,
3726,
3726,
31,
22,
79,
452,
109,
2572,
29,
14,
19980,
1126,
5851,
106,
17,
31,
22,
79,
3935,
737,
235,
92,
448,
55,
9,
31,
22,
195,
330,
21,
13,
26120,
241,
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... |
VBScript: Opening a file parameter that has spaces in it's name
===
Im writing a small VBScript that i will pass a file path to. It works fine when the file name has no spaces but not when it does.
As far as I can tell, this is the offending line:
If util.Run("c:\program files (x86)\microsoft office\office14... | 0 | [
2,
13,
20468,
8741,
45,
1214,
21,
3893,
18906,
30,
63,
7644,
19,
32,
22,
18,
204,
800,
3726,
3726,
797,
1174,
21,
284,
13,
20468,
8741,
30,
31,
129,
1477,
21,
3893,
2013,
20,
9,
32,
693,
1123,
76,
14,
3893,
204,
63,
90,
7644,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
D7 - Is there a module to detect User LOCATION?
===
Is there a contributed / core module to detect the physical location of the user (based on IP may be?).
What I want to do eventually is:
1. Detect User location
2. Calculate distance from user's current location to location data attached to nodes (my nodes have... | 0 | [
2,
13,
43,
465,
13,
8,
25,
80,
21,
12613,
20,
9092,
4155,
1474,
60,
800,
3726,
3726,
25,
80,
21,
3696,
13,
118,
2884,
12613,
20,
9092,
14,
1825,
1474,
16,
14,
4155,
13,
5,
1281,
27,
15735,
123,
44,
60,
6,
9,
98,
31,
259,
2... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Paypal checkout callback url to display unique sale id in 1x1 img for tracking
===
I've been asked by a client to display:
<img src='https://www.trackingserver.com.au/saleServlet?MID=43&PID=55&CRID=&ORDERID=<input orderId!>&ORDERAMNT=<input order amount!>&NUMOFITEMS=1' border='0' width='1' height='1'>
on the htt... | 0 | [
2,
1372,
6720,
2631,
1320,
645,
1958,
287,
6362,
20,
3042,
2619,
3299,
4924,
19,
137,
396,
165,
797,
263,
26,
10353,
800,
3726,
3726,
31,
22,
195,
74,
411,
34,
21,
6819,
20,
3042,
45,
13,
1,
1660,
263,
13,
18,
5453,
3726,
22,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
massive iteration
===
I am looking for a suggestion for the best way to achieve a solution to this problem. I have a table with 135 unique outcomes (prices), each price will effect the outcome of three seperate derivatives, as the price changes, so does the value of each of the three derivatives. Each derivative can... | 0 | [
2,
3787,
23534,
800,
3726,
3726,
31,
589,
699,
26,
21,
10910,
26,
14,
246,
161,
20,
4689,
21,
4295,
20,
48,
1448,
9,
31,
57,
21,
859,
29,
14027,
2619,
14832,
13,
5,
24137,
18,
6,
15,
206,
2162,
129,
1590,
14,
9774,
16,
132,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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 enable retweets?
===
I downloaded and checked so I dont show retweets. But I kinda want them, how do I change this? And the other settings too would be nice.
I've tried looking at the xslt file but it seems just to call the macros. | 0 | [
2,
184,
92,
31,
9240,
13,
6239,
458,
6095,
60,
800,
3726,
3726,
31,
23887,
17,
6505,
86,
31,
1049,
298,
13,
6239,
458,
6095,
9,
47,
31,
21096,
259,
105,
15,
184,
107,
31,
753,
48,
60,
17,
14,
89,
12410,
266,
83,
44,
2210,
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... |
JQuery sliding one table form out and the other slide in a loop
===
I'm have two table forms (Each of them is in a div with class 'box') I'm trying to use jquery animation to move one form out of the screen, and move the other one in, and then when that button is clicked again, the original form comes back from where ... | 0 | [
2,
487,
8190,
93,
7609,
53,
859,
505,
70,
17,
14,
89,
6464,
19,
21,
5293,
800,
3726,
3726,
31,
22,
79,
57,
81,
859,
1997,
13,
5,
14322,
16,
105,
25,
19,
21,
13,
12916,
29,
718,
13,
22,
5309,
22,
6,
31,
22,
79,
749,
20,
2... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Multiple relationships on a table
===
MS-SQL 2012 MVC3 EF4.3.1 Code First project.
I have a Teacher and Student table with a one to many relationship. The Teacher’s tables Id will be used as the account number so its Id numbering needs to be separate from the Student’s. I would like to create a Person table (cont... | 0 | [
2,
1886,
5833,
27,
21,
859,
800,
3726,
3726,
4235,
8,
18,
22402,
563,
307,
8990,
240,
11599,
300,
9,
240,
9,
165,
1797,
64,
669,
9,
31,
57,
21,
2197,
17,
1209,
859,
29,
21,
53,
20,
151,
1429,
9,
14,
2197,
1,
18,
7484,
4924,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Chrome browser on Ubuntu often got "Aw Snap" when watching videos
===
my Ubuntu version is 11.04.Chrome version is 20.0.1132.47.Graphics is nV GeForce GT325M and intel integrated.
This problem appeared after I installed nVidia accelerated graphics driver(version current) in
"additional drivers'.And now it displays ... | 2 | [
2,
13,
12985,
16495,
27,
287,
12968,
2473,
478,
330,
13,
7,
3885,
6877,
7,
76,
1953,
6610,
800,
3726,
3726,
51,
287,
12968,
2473,
615,
25,
547,
9,
3277,
9,
12985,
615,
25,
434,
9,
387,
9,
1306,
3125,
9,
2918,
9,
12084,
18,
25,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
3D ScrollView Help - Like music app
===
I am trying to make a 3D "Wheel" type thing. It will have 3 or 5 items on the page.
The top or focused one will be filling up most of the page, then there will be two zoomed out more and on the sides.
I know it will have to use a scrollView and some animation.
A ... | 0 | [
2,
203,
43,
12159,
4725,
448,
13,
8,
101,
232,
4865,
800,
3726,
3726,
31,
589,
749,
20,
233,
21,
203,
43,
13,
7,
8229,
7,
1001,
584,
9,
32,
129,
57,
203,
54,
331,
3755,
27,
14,
2478,
9,
14,
371,
54,
2604,
53,
129,
44,
7702... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
subprocess.call env var
===
I'm using Popen because I need the env, like this:
Popen(["boto-rsync", "..."], env="PATH":"/Library/Frameworks/Python.framework/Versions/2.7/bin/"})
The problem is Popen runs the command as a new thread. Is there any way that I could pass the env to subprocess.call or prevent Pop... | 0 | [
2,
972,
16835,
9,
9200,
1957,
710,
4033,
800,
3726,
3726,
31,
22,
79,
568,
3075,
103,
185,
31,
376,
14,
1957,
710,
15,
101,
48,
45,
3075,
103,
5,
2558,
7,
1192,
262,
8,
139,
9507,
150,
7,
15,
13,
7,
9,
9,
9,
7,
500,
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... |
How can I get the list of live objects in c#?
===
I want to get the list of live objects defined in my application.
By live objects, I mean every objects created.
For example, let's say there are controls object created in some part of an application and I want to access a particular one by name.
Or I would w... | 0 | [
2,
184,
92,
31,
164,
14,
968,
16,
515,
3916,
19,
272,
5910,
60,
800,
3726,
3726,
31,
259,
20,
164,
14,
968,
16,
515,
3916,
2811,
19,
51,
3010,
9,
34,
515,
3916,
15,
31,
884,
352,
3916,
679,
9,
26,
823,
15,
408,
22,
18,
395... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Animating WindowsFormsHost
===
I need to animate WindowsFormsHost control. The problem is that I can't see the animation, the window doesn't refresh. If I resize my WPF window during the animation then the transition is visible.
I tried putting WindowsFormsHost inside a grid and then animate the grid but the result... | 0 | [
2,
14487,
1203,
1936,
4190,
18,
11694,
800,
3726,
3726,
31,
376,
20,
14487,
591,
1936,
4190,
18,
11694,
569,
9,
14,
1448,
25,
30,
31,
92,
22,
38,
196,
14,
6236,
15,
14,
1463,
1437,
22,
38,
24905,
9,
100,
31,
302,
10454,
51,
61... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Java Thread Safety - Lock an entire static class but only for one method
===
I have a Static helper class implemented that helps cache and retreive some read-only, non-mutable, non-volatile data from the database.
(Stripped) Example:
public class CacheHelper
{
private static HashMap foos, bars;
... | 0 | [
2,
8247,
9322,
2108,
13,
8,
3991,
40,
1078,
12038,
718,
47,
104,
26,
53,
2109,
800,
3726,
3726,
31,
57,
21,
12038,
448,
106,
718,
6807,
30,
7778,
16522,
17,
13,
6239,
99,
1284,
109,
1302,
8,
4965,
15,
538,
8,
7903,
579,
15,
53... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
PhoneGap1.6.1 is showing white screen when page loading or page changing in android 4.0.3
===
**Issue in Android 4.0.3**
1. I am using phone gap 1.6.1.
2. Jquey mobile 1.1.0
when first time app is open or when page transition(page change), it shows white screen.
if anybody has any idea or solution, please sh... | 0 | [
2,
1132,
1136,
306,
165,
9,
379,
9,
165,
25,
3187,
359,
2324,
76,
2478,
12797,
54,
2478,
4226,
19,
13005,
268,
9,
387,
9,
240,
800,
3726,
3726,
13,
1409,
12565,
19,
13005,
268,
9,
387,
9,
240,
1409,
137,
9,
31,
589,
568,
1132,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
How do you UNION with a CTE?
===
How do you use `UNION` with a `Common Table Expression` ?
I'm trying to put together some summary numbers but no matter where I put the `;`, I always get an error
SELECT COUNT(*)
FROM dbo.Decision_Data
UNION
SELECT COUNT(DISTINCT Client_No)
FROM d... | 0 | [
2,
184,
107,
42,
667,
29,
21,
13,
22447,
60,
800,
3726,
3726,
184,
107,
42,
275,
13,
1,
17162,
1,
29,
21,
13,
1,
17130,
859,
1803,
1,
13,
60,
31,
22,
79,
749,
20,
442,
429,
109,
14740,
2116,
47,
90,
1161,
113,
31,
442,
14,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.