User Daniel Lew - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T05:18:58Z http://stackoverflow.com/feeds/user/60261 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1838820/android-how-do-i-make-the-background-color-of-a-listview-show-up-behind-the-sele/1840526#1840526 1 Answer by Daniel Lew for Android: How do I make the background color of a ListView show up behind the selection? Daniel Lew 2009-12-03T15:17:56Z 2009-12-03T15:17:56Z <p>I think the problem is that you're using <code>simple_list_item_2</code>, which has some padding/margin built into it. I recommend making your own version of <code>simple_list_item_2</code>, wherein you have both the height and the width set to <code>fill_parent</code>. You can see the latest <code>simple_list_item_2</code> <a href="http://android.git.kernel.org/?p=platform/frameworks/base.git;a=blob%5Fplain;f=core/res/res/layout/simple%5Flist%5Fitem%5F2.xml;hb=HEAD" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1840231/open-source-examples-of-well-designed-android-applications/1840462#1840462 2 Answer by Daniel Lew for Open-Source Examples of well-designed Android Applications? Daniel Lew 2009-12-03T15:08:06Z 2009-12-03T15:08:06Z <p>Are the Android samples not good enough? I've found the <a href="http://developer.android.com/guide/samples/ApiDemos/index.html" rel="nofollow">ApiDemos</a> to be indispensable when learning a new aspect of Android, myself.</p> http://stackoverflow.com/questions/1836171/android-bindservice-remote-services-any-basic-examples/1836243#1836243 1 Answer by Daniel Lew for Android bindService / remote services - any basic examples? Daniel Lew 2009-12-02T22:17:09Z 2009-12-02T22:17:09Z <p>You should check out the <a href="http://developer.android.com/guide/samples/ApiDemos/index.html" rel="nofollow">ApiDemos</a>. It comes with the Android SDK download, so you should have it already. There's a couple of <a href="http://developer.android.com/guide/samples/ApiDemos/src/com/example/android/apis/app/index.html" rel="nofollow">remote service demos</a> (in particular I bet you're interested in <a href="http://developer.android.com/guide/samples/ApiDemos/src/com/example/android/apis/app/RemoteServiceBinding.html" rel="nofollow">this one</a>). The ApiDemos are very useful exactly because they are basic implementations, too.</p> http://stackoverflow.com/questions/1835999/listview-not-responding-to-click-or-keypress/1836082#1836082 0 Answer by Daniel Lew for ListView not responding to Click or KeyPress Daniel Lew 2009-12-02T21:53:12Z 2009-12-02T21:53:12Z <p>The click listener is working; the problem is that <code>System.out.println()</code> doesn't work on Android. On Android you use <a href="http://developer.android.com/reference/android/util/Log.html" rel="nofollow">android.util.Log</a> for logging data from the phone. For example, you'd use:</p> <pre><code>listView.setOnItemClickListener(new OnItemClickListener() { public void onItemClick(AdapterView&lt;?&gt; parent, View view, int position, long id) { Log.v("MyApp", "get onItem Click position= " + position); } }); </code></pre> <p>Then in Eclipse, you should open up the LogCat view (Window --> show view --> other --> android --> LogCat). Your log should end up there. Alternatively, you can use the <a href="http://developer.android.com/guide/developing/tools/ddms.html" rel="nofollow">ddms tool</a> to view phone logs.</p> http://stackoverflow.com/questions/1835473/java-settings-object-serialization-deserialization/1835632#1835632 1 Answer by Daniel Lew for Java "settings object", serialization/deserialization Daniel Lew 2009-12-02T20:39:21Z 2009-12-02T20:39:21Z <p>Is there any particular reason you're not using <a href="http://developer.android.com/guide/topics/data/data-storage.html#pref" rel="nofollow">built-in Android preferences</a>? As long as all the game settings are primitives (or Strings) then that's probably the easiest way to store preferences. Also, it synchronizes well with <a href="http://developer.android.com/reference/android/preference/PreferenceActivity.html" rel="nofollow">PreferenceActivity</a> if you end up making a settings page (there are some Preference examples in the ApiDemos).</p> http://stackoverflow.com/questions/1832290/android-id-naming-convention-lower-case-with-underscore-vs-camel-case/1833639#1833639 1 Answer by Daniel Lew for Android id naming convention: lower case with underscore vs. camel case Daniel Lew 2009-12-02T15:30:11Z 2009-12-02T15:30:11Z <p>The device will not complain if you use camel-case id names. For my first application I wrote all the ids in camel-case because I think it appears better in the Java code that way, and it works just fine.</p> <p>I am slowly changing my mind on camel-case, though, because you end up with two different naming conventions - for example:</p> <pre><code>// This must be undescored due to naming constrictions setContentView(R.layout.my_long_layout_name); // Now this looks a little out of place findViewById(R.id.myLongSpecificId); </code></pre> <p>I, too, wonder about the standards here. Google is inconsistent in their examples; sometimes they use all lowercase, sometimes they insert underscores, and sometimes they use camel-case.</p> http://stackoverflow.com/questions/1830567/how-to-reduce-the-size-of-listview-width-using-xml-in-android/1831081#1831081 0 Answer by Daniel Lew for how to reduce the size of listview width using xml in android? Daniel Lew 2009-12-02T06:51:01Z 2009-12-02T06:51:01Z <p>Presumably, you'd edit the <code>android:layout_width</code> parameter... is there something I'm missing?</p> <p>For example this ListView is limited to being 200 dip wide:</p> <pre><code>&lt;ListView android:id="@android:id/list" android:layout_height="fill_parent" android:layout_width="200dip" /&gt; </code></pre> http://stackoverflow.com/questions/1823432/simple-problem-with-intent-extras/1827930#1827930 0 Answer by Daniel Lew for Simple Problem With Intent Extras Daniel Lew 2009-12-01T18:21:42Z 2009-12-01T18:21:42Z <p>This is a known issue with PendingIntents; when Android compares PendingIntents it does not compare Intent extras, so you can't schedule the same basic Intent multiple times with only different extras. Right now, you can only solve this by making the Intent unique in some way other than extras, such as adding extra information to the Intent data.</p> <p>There's a little bit of discussion of this on the Google Android Group: <a href="http://groups.google.com/group/android-developers/browse%5Fthread/thread/81100da6ddb21136" rel="nofollow">http://groups.google.com/group/android-developers/browse%5Fthread/thread/81100da6ddb21136</a></p> http://stackoverflow.com/questions/1823660/using-a-spinner-on-another-view-with-a-different-class-defined-android/1827886#1827886 0 Answer by Daniel Lew for Using a spinner on another view with a different class defined (Android) Daniel Lew 2009-12-01T18:14:20Z 2009-12-01T18:14:20Z <p>I'm not sure this will fix the problem, but there seems to be some confusion on what layout to set for the Adapter's drop down resource. <code>setContentView()</code> should be used for the view you want set for the activity; however, the drop down resource should be what you want each row to look like.</p> <p>What you should be using is a something like <code>android.R.layout.simple_list_item_1</code>. You can emulate the demo <a href="http://developer.android.com/guide/samples/ApiDemos/src/com/example/android/apis/view/List1.html" rel="nofollow">List1.java</a>, but instead of their constructor you would use:</p> <pre><code>ArrayAdapter&lt;CharSequence&gt; adapter = ArrayAdapter.createFromResource( this, R.array.beerstyles, android.R.layout.simple_list_item_1); </code></pre> <p>Also, you don't need to call <code>ArrayAdapter.setDropDownViewResource()</code> after using <code>ArrayAdapter.createFromResource()</code> - the third parameter <em>is</em> the drop down view resource.</p> http://stackoverflow.com/questions/1813398/android-activity-from-a-service/1816082#1816082 0 Answer by Daniel Lew for Android - Activity from a service? Daniel Lew 2009-11-29T17:12:17Z 2009-11-29T17:12:17Z <p>This is not directly related to the answer (commonsware.com has already given a good overview of how to try to solve that), but just a tip: If you've got a background service that is running code intermittently, you should have the service use the AlarmManager to wake itself up instead of staying on indefinitely. Basically, start the Service, have it create an PendingIntent to call itself, then have it wake itself up when necessary.</p> http://stackoverflow.com/questions/1809507/android-hello-mapview-tutorial-map-tiles-do-not-load/1809808#1809808 0 Answer by Daniel Lew for Android "Hello, MapView" Tutorial - Map Tiles Do Not Load Daniel Lew 2009-11-27T17:09:31Z 2009-11-27T17:09:31Z <p>I am guessing the issue is not that you have an incorrect map key, but that you do not have the proper keystore setup. The application needs to be signed by the same keystore you used to generate the map key. You've noted that you can get it to work when you sign the application yourself, but you need to setup a debug keystore in order to use the Maps API with regular Eclipse builds.</p> <p>All Eclipse builds require a debug keystore; you just normally don't notice it because ADT generates one for you automatically. You should either <a href="http://developer.android.com/guide/publishing/app-signing.html#debugmode" rel="nofollow">follow the directions here</a> and create your own debug keystore, or you should take the debug key that ADT automatically created for you (it'll show you where it created it in <strong>Windows > Preferences > Android > Build</strong>) and sign up for another Maps API key. That key will work with Eclipse.</p> <p>(P.S., this does make it a hassle to compile for release, as you need to switch your key back and forth depending on the signing keystore.)</p> http://stackoverflow.com/questions/1803365/android-data-storage-file-vs-sqlite/1804507#1804507 1 Answer by Daniel Lew for Android data storage - File vs SQLite Daniel Lew 2009-11-26T15:59:40Z 2009-11-26T15:59:40Z <p>I don't believe it matters whether you use SQLite or a File, because the SQLite db is simply a file on the system (stored in <code>/data/data/&lt;your_package&gt;/databases/</code>). You'll need to commit to the db at the right times, just as much as you would need to save a file to the hard drive at the right times. In other words, one way or the other you can use just as many hard drive writes.</p> <p>I think that what you choose depends more on what sort of data you are saving. If you need the powers that having a db can bestow (such as querying), then by all means use SQLite. However, if you don't need a db, or you've got data that varies wildly (and can't be easily setup in a relational database) then I'd go with files.</p> <p>What I can tell you for sure is that you should <strong>not</strong> use serialization for saving a file, if that is the route you choose to go. Android serialization is slow, slow, slow and creates large files. It is much better to either write your own XML or JSON format for performance reasons.</p> http://stackoverflow.com/questions/1803111/android-how-to-get-every-rows-imageview/1804425#1804425 0 Answer by Daniel Lew for android how to get every row's imageview Daniel Lew 2009-11-26T15:46:32Z 2009-11-26T15:46:32Z <p>It sounds like you want to make a custom Adapter (specifically, http://developer.android.com/reference/android/widget/BaseAdapter.html">BaseAdapter, not a custom ListView. When you create your own BaseAdapter you can use it to customize how each row is rendered in a regular ListView, by implementing Adapter's getView().</p> <p>Check out the API Demos' <a href="http://developer.android.com/guide/samples/ApiDemos/src/com/example/android/apis/view/List4.html" rel="nofollow">List4 demo</a> for how to create a custom BaseAdapter.</p> http://stackoverflow.com/questions/1580558/how-do-you-skip-parts-of-an-activity-stack-when-returning-results-in-android 0 How do you skip parts of an Activity stack when returning results in Android? Daniel Lew 2009-10-16T21:35:02Z 2009-11-25T16:33:41Z <p>I'm making an app which has a flow roughly as below:</p> <ol> <li>User starts on the main screen with an empty list, hits menu, and goes to "add item." (Activity A)</li> <li>User is given a new activity which allows them to specify search criteria, then hits "go" to do a search. (Activity B)</li> <li>User gets a list of results, and can click on one of them to view more details. (Activity C)</li> <li>User sees details of item, and can use a menu item to save it to their list in Activity A. (Activity D)</li> </ol> <p>Right now, I am having each Activity call each other Activity for results, and then it is passing the result all the way back up the stack as it returns to Activity A. Is there a way to jump this, since all I want is for a result in Activity D to get to Activity A directly?</p> <p>Note that a user should still be able to navigate backwards (using the back button) through each activity, but if they explicitly save the item in Activity D, I want it to jump straight to Activity A.</p> http://stackoverflow.com/questions/1580558/how-do-you-skip-parts-of-an-activity-stack-when-returning-results-in-android/1798193#1798193 0 Answer by Daniel Lew for How do you skip parts of an Activity stack when returning results in Android? Daniel Lew 2009-11-25T16:33:41Z 2009-11-25T16:33:41Z <p>Just so that people can benefit from what I learned later...</p> <p>The key to solving this problem is using flags with Intent, in this case using <a href="http://developer.android.com/reference/android/content/Intent.html#FLAG%5FACTIVITY%5FCLEAR%5FTOP" rel="nofollow"><code>FLAG_ACTIVITY_CLEAR_TOP</code></a>. Other flags are useful as well in controlling the flow of your UI.</p> <p>It is a bad idea to try to solve this problem by chaining startActivityForResult() through activities. It means that it's difficult to change the flow of your application.</p> http://stackoverflow.com/questions/1723846/how-do-you-draw-text-with-a-border-on-a-mapview-in-android 1 How do you draw text with a border on a MapView in Android? Daniel Lew 2009-11-12T17:13:19Z 2009-11-17T22:46:45Z <p>I'm trying to draw some text onto an MapView on Android. The drawing of the text goes fine, but it's very hard to read the text because it's white with no black border (like the rest of the text that appears naturally on MapViews to denote cities, states, and countries). I can't seem to figure how to draw the text with a black border. Anyone know how to do this?</p> <p>This is the sort of code I'm using right now (this is just example code, found in one of my overlays):</p> <pre><code>@Override public void draw(Canvas canvas, MapView mapView, boolean shadow) { Paint textPaint = new Paint(); textPaint.setARGB(255, 255, 255, 255); textPaint.setTextAlign(Paint.Align.CENTER); textPaint.setTextSize(16); textPaint.setTypeface(Typeface.DEFAULT_BOLD); canvas.drawText("Some Text", 100, 100, textPaint); super.draw(canvas, mapView, shadow); } </code></pre> http://stackoverflow.com/questions/1723846/how-do-you-draw-text-with-a-border-on-a-mapview-in-android/1743203#1743203 0 Answer by Daniel Lew for How do you draw text with a border on a MapView in Android? Daniel Lew 2009-11-16T16:16:51Z 2009-11-16T16:16:51Z <p>The half-answer, which may or may not be good enough (it was in my case), is to set a shadow:</p> <pre><code>textPaint.setShadowLayer(3, 0, 0, Color.BLACK); </code></pre> <p>The shadow helps the text stand out a lot, but isn't quite as good as a black border would be. I'm still curious how to solve the original question.</p> http://stackoverflow.com/questions/1633198/sorting-results-when-autocomplete-matches-multiple-columns-in-sql 0 Sorting results when autocomplete matches multiple columns in SQL Daniel Lew 2009-10-27T19:42:15Z 2009-10-27T21:07:01Z <p>I've run into an issue with an autocomplete field I'm working on. The field I'm working with is composed of the form <code>"&lt;NAME&gt; (&lt;CODE&gt;)"</code>. When a user starts typing in text, I want to display any results that match either <code>NAME</code> or <code>CODE</code>.</p> <p>For example, if this list contains items and their codes, like "Personal Computer (PC)", then I'd want the list to pop up that row if the user types "P", "PC", "Per", etc.</p> <p>I've gotten this to work fine in SQLite with a query like this:</p> <pre><code>SELECT * FROM table WHERE name LIKE "?%" or code LIKE "?%" </code></pre> <p>However, the problem I'm running into now is how to best sort the results that come back from this. For example, If someone enters "PC", I want "Personal Computer (PC)" to be the first result. However, if there's another row (you'll have to bear with me as this is contrived) "PC Case (301)", then there's no simple ordering I can do on the results to ensure that the <strong>best</strong> match appears first. Ordering by name and code both returns PC Case first.</p> <p>I want a query where it returns the best match first, rather than items in alphabetical order. Is there such a function I can use in SQLite to get this, or should I return the results and then mess with the order in the code?</p> <p>If it helps any, I'm using this for FilterQueryProviders on Android.</p> http://stackoverflow.com/questions/522395/getting-raw-xml-from-soapmessage-in-java 0 Getting Raw XML From SOAPMessage in Java Daniel Lew 2009-02-06T22:04:00Z 2009-09-29T03:22:22Z <p>I've set up a SOAP WebServiceProvider in JAX-WS, but I'm having trouble figuring out how to get the raw XML from a SOAPMessage (or any Node) object. Here's a sample of the code I've got right now, and where I'm trying to grab the XML:</p> <pre><code>@WebServiceProvider(wsdlLocation="SoapService.wsdl") @ServiceMode(value=Service.Mode.MESSAGE) public class SoapProvider implements Provider&lt;SOAPMessage&gt; { public SOAPMessage invoke(SOAPMessage msg) { // How do I get the raw XML here? } } </code></pre> <p>Is there a simple way to get the XML of the original request? If there's a way to get the raw XML by setting up a different type of Provider (such as Source), I'd be willing to do that, too.</p> http://stackoverflow.com/questions/1090197/is-there-a-better-way-to-index-multiple-columns-than-creating-an-index-for-each-p 2 Is there a better way to index multiple columns than creating an index for each permutation? Daniel Lew 2009-07-07T03:11:37Z 2009-09-19T21:57:31Z <p>Suppose I have a database table with columns a, b, and c. I plan on doing queries on all three columns, but I'm not sure which columns in particular I'm querying. There's enough rows in the table that an index immensely speeds up the search, but it feels wrong to make all the permutations of possible indexes (like this):</p> <pre><code>a b c a, b a, c b, c a, b, c </code></pre> <p>Is there a better way to handle this problem? (It's very possible that I'll be just fine indexing a, b, c alone, since this will cut down on the number of rows quickly, but I'm wondering if there's a better way.)</p> <p>If you need more concrete examples, in the real-life data, the columns are city, state, and zip code. Also, I'm using a MySQL database.</p> http://stackoverflow.com/questions/1328284/attaching-and-reattaching-event-handlers/1328321#1328321 1 Answer by Daniel Lew for Attaching and reattaching Event Handlers Daniel Lew 2009-08-25T13:36:24Z 2009-08-25T13:36:24Z <p>You could listen to all click events on the page, then use the <a href="http://www.quirksmode.org/js/events%5Fproperties.html#target" rel="nofollow">event's target</a> to determine if the user clicked on an element with the className "default".</p> http://stackoverflow.com/questions/765916/is-there-ever-a-good-time-to-use-int32-instead-of-sint32-in-google-protocol-buffe 1 Is there ever a good time to use int32 instead of sint32 in Google Protocol Buffers? Daniel Lew 2009-04-19T19:12:59Z 2009-08-17T23:42:57Z <p>I've been reading up on <a href="http://code.google.com/apis/protocolbuffers/" rel="nofollow">Google Protocol Buffers</a> recently, which allows for a variety of scalar value types to be used in messages.</p> <p>According to <a href="http://code.google.com/apis/protocolbuffers/docs/proto.html#scalar" rel="nofollow">their documentation</a>, there's three types of variable-length integer primitives - <code>int32</code>, <code>uint32</code>, and <code>sint32</code>. In their documentation, they note that <code>int32</code> is "Inefficient for encoding negative numbers – if your field is likely to have negative values, use <code>sint32</code> instead." But if you have a field that has no negative numbers, I assume that uint32 would be a better type to use than <code>int32</code> anyways (due to the extra bit and decreased CPU cost of processing negative numbers).</p> <p>So when would <code>int32</code> be a good scalar to use? Is the documentation implying that it's most efficient only when you rarely get negative numbers? Or is it always preferable to use <code>sint32</code> and <code>uint32</code>, depending on the contents of the field?</p> <p>(The same questions apply to the 64-bit versions of these scalars as well: <code>int64</code>, <code>uint64</code>, and <code>sint64</code>; but I left them out of the problem description for readability's sake.)</p> http://stackoverflow.com/questions/1055917/server-logging-in-database-or-logfile 2 Server Logging - in Database or Logfile? Daniel Lew 2009-06-28T22:23:18Z 2009-08-17T18:53:02Z <p>I've been working on a server and I'm starting to implement logging. However, I'm not sure whether I should use the db for logging, or just a plaintext file.</p> <p>I'm planning on logging some basic information for every request (what type of request, ip address of request, session tracking). For some requests there will be extended information present (details on what type of request was made), and if there are any errors I will log those, too.</p> <p>On the one hand, putting the logs into the db means I could run queries on the logged data. On the other hand, I'm not sure if this would be putting unnecessary strain on the db. Of course, I could also use both the db and a log file for logging. What are people's thoughts on proper logging?</p> <p>(If it makes a difference, I'm using mod_python on an Apache server with a MySQL db. So I'd either be using the <a href="http://docs.python.org/library/logging.html" rel="nofollow">logging</a> library or just creating some logging tables in the db.)</p> http://stackoverflow.com/questions/1261869/setting-the-correct-orientation-for-scrollbars-in-right-to-left-pages 2 Setting the correct orientation for scrollbars in right-to-left pages. Daniel Lew 2009-08-11T17:35:41Z 2009-08-13T02:13:22Z <p>I'm working with right-to-left layouts at the moment (think Hebrew or Arabic). In RTL, the page is generally flipped horizontally. However, I can't figure out how to change the orientation of the scrollbars. I would assume that the scrollbars should appear on the left side of a scrollable element, not the right side like it does in an LTR layout.</p> <p>Here is an example page where the scrollbar still appears on the right:</p> <pre><code>&lt;html dir="rtl"&gt; &lt;body&gt; &lt;div style="height: 100px; overflow: auto;"&gt; &lt;p&gt;This is some text&lt;/p&gt; &lt;p&gt;This is some text&lt;/p&gt; &lt;p&gt;This is some text&lt;/p&gt; &lt;p&gt;This is some text&lt;/p&gt; &lt;p&gt;This is some text&lt;/p&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Is the orientation of a scrollbar a browser locale setting, and thus is not something I should be concerned about, or is there a way to set the orientation of the scrollbar?</p> <p>(I'm not interested in implementing my own JavaScript scrollbar; if it turns out this is just a limitation of browsers then I'd rather live with that than add complexity to the page.)</p> http://stackoverflow.com/questions/1224978/how-to-setup-modpython-configuration-variables 0 How to setup mod_python configuration variables? Daniel Lew 2009-08-03T22:44:52Z 2009-08-04T10:33:33Z <p>I'm running a Python server with mod_python, and I've run into some issues with configuration variables. This is actually two questions rolled into one, because I think they are highly related:</p> <ol> <li><p>I need a way to configure variables that will be available in Python while running. I currently just have a module that sets some name-value pairs that I import into other modules, but I was reading up on <a href="http://www.modpython.org/live/current/doc-html/dir-other-po.html" rel="nofollow">PythonOption</a> recently and was wondering what advantages would be gained from using that instead.</p></li> <li><p>I need a way to store state on the server. I've got access to an API that's limited to running X number of times a day, and once it hits that limit, I need to revert to my (lesser) code. I'm wondering how I can keep track of how many times I've run the query in a day.</p></li> </ol> <p>I thought about using a file or the database, but I'm afraid I will slow down requests by having everyone try to access the same file or row at once. Is there a better way to set this up in mod_python?</p> http://stackoverflow.com/questions/1126905/how-can-you-determine-the-file-size-in-javascript 2 How can you determine the file size in JavaScript? Daniel Lew 2009-07-14T17:40:24Z 2009-07-14T18:46:29Z <p>I help moderate a forum online, and on this forum we restrict the size of signatures. At the moment we test this via a simple Greasemonkey script I wrote; we wrap all signatures with a <code>&lt;div&gt;</code>, the script looks for them, and then measures the div's height and width.</p> <p>All the script does right now is make sure the signature resides in a particular height/width. I would like to start measuring the file size of the images inside of a signature automatically so that the script can automatically flag users who are including huge images in their signature. However, I can't seem to find a way to measure the size of images loaded on the page. I've searched and found a property special to IE (element.fileSize) but I obviously can't use that in my Greasemonkey script.</p> <p>Is there a way to find out the file size of an image in Firefox via JavaScript?</p> <p>Edit: People are misinterpreting the problem. The forums themselves do not host images; we host the BBCode that people enter as their signature. So, for example, people enter this:</p> <pre><code>This is my signature, check out my [url=http://google.com]awesome website[/url]! This image is cool! [img]http://image.gif[/img] </code></pre> <p>I want to be able to check on these images via Greasemonkey. I could write a batch script to scan all of these instead, but I'm just wondering if there's a way to augment my current script.</p> http://stackoverflow.com/questions/1104265/why-doesnt-function-apply-work-across-document-boundaries-in-ie/1104394#1104394 0 Answer by Daniel Lew for Why doesn't function.apply() work across document boundaries in IE? Daniel Lew 2009-07-09T14:51:30Z 2009-07-09T14:51:30Z <p>I have no idea why this works, but I was playing around with your code and stumbled across one solution... put test2's functions inside of test1 and it works:</p> <pre><code>&lt;HTML&gt; &lt;HEAD&gt; &lt;script language="javascript" type="text/javascript"&gt; var opened = null; function applyArgs() { testFunc.apply(opened, ["applied array"]); } function openPopup() { opened = window.open("test2.html", "_blank"); } function testFunc() { var s = "Got: "; for(var i = 0; i &lt; arguments.length; i++) { s += arguments[i] + " "; } this.document.getElementById("output").innerHTML += s + "&lt;BR&gt;"; } &lt;/script&gt; &lt;/HEAD&gt; &lt;BODY&gt; &lt;a href="#" onclick="openPopup()"&gt;OPEN&lt;/a&gt; &lt;hr&gt; &lt;a href="#" onclick="applyArgs()"&gt;applyArgs&lt;/a&gt; &lt;/BODY&gt; &lt;/HTML&gt; </code></pre> <p>I'll let you know if I can figure out any more (IE is weird like that). Like I said, I was just toying with the code.</p> http://stackoverflow.com/questions/1089327/what-programming-practice-that-you-once-liked-have-you-since-changed-your-mind-ab/1089370#1089370 19 Answer by Daniel Lew for What programming practice that you once liked have you since changed your mind about? Daniel Lew 2009-07-06T21:51:45Z 2009-07-06T22:00:59Z <p>This is a small thing, but: Caring about where the braces go (on the same line or next line?), suggested maximum line lengths of code, naming conventions for variables, and other elements of style. I've found that everyone seems to care more about this than I do, so I just go with the flow of whoever I'm working with nowadays.</p> <p>Edit: The exception to this being, of course, when I'm the one who cares the most (or is the one in a position to set the style for a group). In that case, I do what I want!</p> <p>(Note that this is not the same as having no consistent style. I think a consistent style in a codebase is very important for readability.)</p> http://stackoverflow.com/questions/1089018/why-cant-decimal-numbers-be-represented-exactly-in-binary/1089030#1089030 3 Answer by Daniel Lew for Why can't decimal numbers be represented exactly in binary? Daniel Lew 2009-07-06T20:20:43Z 2009-07-06T20:20:43Z <p>If you make a big enough number with floating point (as it can do exponents), then you'll end up with inexactness in front of the decimal point, too. So I don't think your question is entirely valid because the premise is wrong; it's not the case that shifting by 10 will always create more precision, because at some point the floating point number will have to use exponents to represent the largeness of the number and will lose some precision that way as well.</p> http://stackoverflow.com/questions/1065060/is-there-any-difference-between-the-copy-and-addall/1065074#1065074 1 Answer by Daniel Lew for Is there any difference between the **copy** and ** addAll**?? Daniel Lew 2009-06-30T17:58:21Z 2009-06-30T17:58:21Z <p>According to JavaDoc, <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Collections.html#copy%28java.util.List,%20java.util.List%29" rel="nofollow">copy()</a> copies only from one List to another and only to the specific indices on one List to the other. <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Collection.html#addAll%28java.util.Collection%29" rel="nofollow">addAll()</a> just adds all items from one Collection to the other, regardless of index, and regardless the type of Collection.</p> http://stackoverflow.com/questions/1838820/android-how-do-i-make-the-background-color-of-a-listview-show-up-behind-the-sele/1839557#1839557 Comment by Daniel Lew on Android: How do I make the background color of a ListView show up behind the selection? Daniel Lew 2009-12-03T15:12:11Z 2009-12-03T15:12:11Z Won't that just make the entire row orange, since the default ListView selector has no transparency? http://stackoverflow.com/questions/1840091/getting-screen-height-before-first-display Comment by Daniel Lew on Getting screen height before first display? Daniel Lew 2009-12-03T15:10:14Z 2009-12-03T15:10:14Z This sounds like a dangerous path you're headed down, because what if the user decides to turn their G1 into landscape mode? What about smaller screen sizes than the G1, where your current 8 items will be too big? http://stackoverflow.com/questions/1832290/android-id-naming-convention-lower-case-with-underscore-vs-camel-case/1833639#1833639 Comment by Daniel Lew on Android id naming convention: lower case with underscore vs. camel case Daniel Lew 2009-12-03T14:05:18Z 2009-12-03T14:05:18Z Just a bit of random perusing and I came across this... <a href="http://developer.android.com/guide/samples/ApiDemos/res/layout/list_12.html" rel="nofollow">developer.android.com/guide/samples/&hellip;</a> http://stackoverflow.com/questions/1836155/revoking-permissions-for-an-android-app Comment by Daniel Lew on Revoking permissions for an android app? Daniel Lew 2009-12-02T22:19:07Z 2009-12-02T22:19:07Z Interesting question... not sure why you need it though, as permissions are mostly used for warning users of what you want to do to their phone at install time. http://stackoverflow.com/questions/1832400/how-to-keep-icons-in-listview-in-android Comment by Daniel Lew on how to keep icons in listview in android? Daniel Lew 2009-12-02T15:24:46Z 2009-12-02T15:24:46Z You're going to need to be a tad more descriptive for me to figure out what you're talking about. http://stackoverflow.com/questions/1723846/how-do-you-draw-text-with-a-border-on-a-mapview-in-android/1752197#1752197 Comment by Daniel Lew on How do you draw text with a border on a MapView in Android? Daniel Lew 2009-11-18T06:30:12Z 2009-11-18T06:30:12Z That's both brilliant and ridiculous... I'll have to try it and see. :) http://stackoverflow.com/questions/1633198/sorting-results-when-autocomplete-matches-multiple-columns-in-sql/1633680#1633680 Comment by Daniel Lew on Sorting results when autocomplete matches multiple columns in SQL Daniel Lew 2009-10-27T21:21:37Z 2009-10-27T21:21:37Z I don't see how this helps my situation, since it's a sorting issue, not a matching issue. http://stackoverflow.com/questions/1261869/setting-the-correct-orientation-for-scrollbars-in-right-to-left-pages/1269695#1269695 Comment by Daniel Lew on Setting the correct orientation for scrollbars in right-to-left pages. Daniel Lew 2009-08-13T06:12:28Z 2009-08-13T06:12:28Z 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. http://stackoverflow.com/questions/1224978/how-to-setup-modpython-configuration-variables Comment by Daniel Lew on How to setup mod_python configuration variables? Daniel Lew 2009-08-04T01:40:18Z 2009-08-04T01:40:18Z 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. http://stackoverflow.com/questions/1224978/how-to-setup-modpython-configuration-variables Comment by Daniel Lew on How to setup mod_python configuration variables? Daniel Lew 2009-08-03T23:38:32Z 2009-08-03T23:38:32Z Is this going to be one of those &quot;I won't answer your question until you change your entire server setup&quot; deals? http://stackoverflow.com/questions/1191925/which-javascript-framework-is-generally-used-for-high-performance-websites Comment by Daniel Lew on Which JavaScript framework is generally used for high performance websites? Daniel Lew 2009-07-28T04:25:26Z 2009-07-28T04:25:26Z It depends on what you are doing with the framework. http://stackoverflow.com/questions/1141066/when-i-write-alert-function-i-get-along-well-with-a-javascript Comment by Daniel Lew on When I write alert function, I get along well with a JavaScript Daniel Lew 2009-07-17T01:18:03Z 2009-07-17T01:18:03Z What is failing if you don't write an alert? http://stackoverflow.com/questions/1134512/how-old-do-monkeys-live/1134524#1134524 Comment by Daniel Lew on How old do monkeys live Daniel Lew 2009-07-15T23:00:23Z 2009-07-15T23:00:23Z Community wiki means never having to say you're sorry. http://stackoverflow.com/questions/1131966/javascript-not-working-except-in-ie/1132047#1132047 Comment by Daniel Lew on JavaScript not working, except in IE Daniel Lew 2009-07-15T15:16:54Z 2009-07-15T15:16:54Z 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. http://stackoverflow.com/questions/1131966/javascript-not-working-except-in-ie/1131985#1131985 Comment by Daniel Lew on JavaScript not working, except in IE Daniel Lew 2009-07-15T15:06:32Z 2009-07-15T15:06:32Z Funny, I have never used jQuery yet I enjoy writing JavaScript. What's wrong with me, doctor?