Daniel Lew

7,865
Reputation
952 views

Registered User

Name Daniel Lew
Member for 10 months
Seen 6 hours ago
Website
Location
Age 24
Pet peeves: people suggesting you use jQuery when it was not requested and when it's easily solvable without jQuery.
1d
answered Android “Hello, MapView” Tutorial - Map Tiles Do Not Load
2d
answered Android data storage - File vs SQLite
2d
answered android how to get every row’s imageview
Nov
25
accepted How do you skip parts of an Activity stack when returning results in Android?
Nov
25
answered How do you skip parts of an Activity stack when returning results in Android?
Nov
18
comment How do you draw text with a border on a MapView in Android?
That's both brilliant and ridiculous... I'll have to try it and see. :)
Nov
16
answered How do you draw text with a border on a MapView in Android?
Nov
12
asked How do you draw text with a border on a MapView in Android?
Oct
27
comment Sorting results when autocomplete matches multiple columns in SQL
I don't see how this helps my situation, since it's a sorting issue, not a matching issue.
Oct
27
asked Sorting results when autocomplete matches multiple columns in SQL
Oct
23
awarded  Nice Answer
Oct
16
asked How do you skip parts of an Activity stack when returning results in Android?
Oct
13
revised Does Android WebView need permissions for opening external URLs?
added 4 characters in body
Oct
12
accepted Prevent existing CSS from styling injected HTML/CSS
Oct
8
accepted Objects vs arrays in Javascript for key/value pairs
Sep
30
awarded  Nice Answer
Sep
2
awarded  Good Answer
Aug
25
answered Attaching and reattaching Event Handlers
Aug
17
revised How to submit a form using onChange
added 38 characters in body
Aug
16
revised what language is the following code written in? Thanks
added 56 characters in body
Aug
13
comment Setting the correct orientation for scrollbars in right-to-left pages.
Do you know of any good resources which explain what people in RTL locales expect? That's a bigger overall problem - knowing what is desired in the first place.
Aug
12
revised Is there a cleaner way to initialise this generic array?
added 22 characters in body; edited title
Aug
12
revised Is there a cleaner way to initialise this generic array?
added 65 characters in body
Aug
11
asked Setting the correct orientation for scrollbars in right-to-left pages.
Aug
4
comment How to setup mod_python configuration variables?
The answer is, because I didn't know better when I started; this is my first foray into Python servers. Unfortunately, I'm now stuck with what I've got, at least in the short term.
Aug
3
comment How to setup mod_python configuration variables?
Is this going to be one of those "I won't answer your question until you change your entire server setup" deals?
Aug
3
asked How to setup mod_python configuration variables?
Jul
30
revised Javascript to Redirect Parent Window and Close Popup…in that order
deleted 72 characters in body
Jul
28
comment Which JavaScript framework is generally used for high performance websites?
It depends on what you are doing with the framework.
Jul
15
comment JavaScript not working, except in IE
Hahaha, wow, never seen that post before. Sounds like Microsoft is trying to solve a flat tire by saying that cars shouldn't actually be driven.
Jul
15
comment JavaScript not working, except in IE
Funny, I have never used jQuery yet I enjoy writing JavaScript. What's wrong with me, doctor?
Jul
15
revised JavaScript not working, except in IE
edited tags
Jul
15
awarded  Enlightened
Jul
15
accepted jQuery change() on <select> and firefox
Jul
14
comment How can you determine the file size in JavaScript?
People don't upload images to our servers. They link to images on other servers. If they are using dynamic images of some sort, then we can't validate the image size on the server.
Jul
14
comment How can you determine the file size in JavaScript?
Height and width are a bad measure for filesize, especially since the worst offenders are people who upload animated GIFs.
Jul
14
comment How can you determine the file size in JavaScript?
I don't think you understand what I'm asking, I updated the OP to better reflect the task at hand. (People don't upload anything to the server except code that points to images.)
Jul
14
revised How can you determine the file size in JavaScript?
added 522 characters in body
Jul
14
comment How can you determine the file size in JavaScript?
You misunderstand, people can link images from outside the forums. In fact, we don't host any signature images ourselves.
Jul
14
asked How can you determine the file size in JavaScript?
Jul
10
comment Why doesn’t function.apply() work across document boundaries in IE?
You could pass the array as a single argument to your function then unwrap it there. It's messy but people have had to use ugly hacks for years due to IE.
Jul
9
comment Why doesn’t function.apply() work across document boundaries in IE?
Well, if the array really is the problem, could you use call() instead of apply()? I realize that apply() is probably more useful, but call() works for me because it gets rid of the array. You could call() an object with parameters instead of passing an array parameters, too.
Jul
9
comment Why doesn’t function.apply() work across document boundaries in IE?
Well, the "arguments" variable in functions is not actually an array; it's an array-like object with a length attribute. I don't think that's the core problem, either; the IE error comes from test1.html, when it tries to call the function in the first place with an array.
Jul
9
answered Why doesn’t function.apply() work across document boundaries in IE?
Jul
8
awarded  Nice Answer
Jul
8
comment Code golf - hex to (raw) binary conversion
@shylent: I posted this way before there were any extra rules added, such as requiring stdin/stdout stuff. :P
Jul
7
comment What programming practice that you once liked have you since changed your mind about?
@Thomas: I personally think the problem is that teaching good commenting is not something a university can show students. Almost all programs at schools are one-off things; students don't get to experience looking back at code they wrote a year ago and not understand it at all. Also, lower-level classes teach really simple coding concepts - commenting at this level is almost necessarily tedious, because of what is happening. In other words, it's like trying to teach someone to swim in a wading pool; it's just not the right context for them to understand the motions.
Jul
7
comment Is there a better way to index multiple columns than creating an index for each permutation?
Hmm, I should have known this. ;) Very awesome, I will give this a shot.
Jul
7
comment Is there a better way to index multiple columns than creating an index for each permutation?
This table is rarely updated, so it's of no concern to me if updating is slow.
Jul
7
asked Is there a better way to index multiple columns than creating an index for each permutation?