| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 10 months |
| seen | 7 hours ago | |
| stats | profile views | 3 |
|
17h |
asked | Continuous backup of tens of millions of files? |
|
Apr 3 |
accepted | Xamarin.Android using a java binding library with MultiImageChooser |
|
Apr 3 |
comment |
Xamarin.Android using a java binding library with MultiImageChooser Thanks! I haven't checked it, but I'll mark it as an answer as you faced the same problem. I myself ended up rewriting the library myself, and binding only the universal image loader. |
|
Mar 26 |
awarded | Enthusiast |
|
Mar 20 |
awarded | Tumbleweed |
|
Mar 13 |
asked | Xamarin.Android using a java binding library with MultiImageChooser |
|
Feb 22 |
awarded | Supporter |
|
Feb 17 |
comment |
My Simple CSS Gallery is working in Firefox but not safari or chrome no problem, have fun! |
|
Feb 16 |
answered | My Simple CSS Gallery is working in Firefox but not safari or chrome |
|
Jan 31 |
comment |
Closures in C# - initating a thread in a function call with a value type Another great article about it : codeproject.com/Articles/15624/Inside-C-2-0-Anonymous-Methods#6 |
|
Jan 31 |
accepted | Closures in C# - initating a thread in a function call with a value type |
|
Jan 31 |
comment |
Closures in C# - initating a thread in a function call with a value type Tigran, I appreciate your answer a lot, but Richard's helped me better. |
|
Jan 31 |
comment |
Closures in C# - initating a thread in a function call with a value type Thanks, Richard. So if I understand correctly, the for loop variable i is in the same scope as each of the anonymous methods, where in my first example there are 3 different scopes, with each its own copy of p. |
|
Jan 31 |
comment |
Closures in C# - initating a thread in a function call with a value type That's a really nice article! But now it led me to another confusion. If this is the class generated for a lambda, why doesn't it work in the following code as well? Here the print happens to the last i, and not a copy of i every time : for (int i =0; i<10; i++) { Thread t = new Thread( () => { Console.WriteLine(i); }); t.Start(); } |
|
Jan 31 |
comment |
Closures in C# - initating a thread in a function call with a value type I see. So if I try to see what's going on behind the scenes it's something like this : when the thread's anonymous function is declared, a copy of the variable is stored in the thread function. Henk, Why is the closure irrelevant though? |
|
Jan 31 |
asked | Closures in C# - initating a thread in a function call with a value type |
|
Nov 6 |
comment |
Google Analytics - Event Tracking not reported So it was the filtering! Important to notice that it's not possible to change your event page, even if you're using virtual pages. Many thanks! |
|
Nov 6 |
awarded | Scholar |
|
Nov 6 |
accepted | Google Analytics - Event Tracking not reported |
|
Nov 5 |
comment |
Google Analytics - Event Tracking not reported 1. Double checked. 3. Yes. 2. It turns out we had a filter for pages starting with '/v/', which may have filtered the events which are reported using the original page path, that doesn't contain '/v/'. I'll check in a few hours to see if it's updated, and then accept as an answer :-) |