User jamesh - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T14:10:51Z http://stackoverflow.com/feeds/user/4737 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/373335/suggestions-for-a-cron-like-scheduler-in-python 9 Suggestions for a Cron like scheduler in Python? jamesh 2008-12-17T00:56:31Z 2009-12-11T08:35:08Z <p>I'm looking for a library in Python which will provide <code>at</code> and <code>cron</code> like functionality.</p> <p>I'd quite like have a pure Python solution, rather than relying on tools installed on the box; this way I run on machines with no cron.</p> <p>For those unfamiliar with <code>cron</code>: you can schedule tasks based upon an expression like: </p> <pre><code> 0 2 * * 7 /usr/bin/run-backup # run the backups at 0200 on Every Sunday 0 9-17/2 * * 1-5 /usr/bin/purge-temps # run the purge temps command, every 2 hours between 9am and 5pm on Mondays to Fridays. </code></pre> <p>The cron time expression syntax is less important, but I would like to have something with this sort of flexibility. </p> <p>If there isn't something that does this for me out-the-box, any suggestions for the building blocks to make something like this would be gratefully received.</p> <p><strong>Edit</strong> I'm not interested in launching processes, just "jobs" also written in Python - python functions. By necessity I think this would be a different thread, but not in a different process.</p> <p>To this end, I'm looking for the expressivity of the cron time expression, but in Python. </p> <p>Cron <em>has</em> been around for years, but I'm trying to be as portable as possible. I cannot rely on its presence.</p> http://stackoverflow.com/questions/1871906/how-to-start-an-activity-on-clicking-the-search-button-on-an-android-handset/1873127#1873127 2 Answer by jamesh for How to start an Activity on clicking the Search button on an Android handset jamesh 2009-12-09T11:00:30Z 2009-12-09T11:06:08Z <p>There are two places you can consider:</p> <ul> <li>in an activity, you should implement <code>onKeyUp(int keyCode, KeyEvent event)</code>, and check <code>keyCode == KeyEvent.KEYCODE_SEARCH</code></li> <li>from the home screen (from Android 1.6 on), you can use the <a href="http://developer.android.com/reference/android/app/SearchManager.html#ExposingSearchSuggestionsToQuickSearchBox" rel="nofollow">SearchManager</a> to extend the Quick Search Box. </li> <li>from the home screen (for Android 1.5), there is a <code>searchable.xml</code> API which can be exposed by using an <code>android.intent.action.SEARCH</code> intent-filter. This is forwards compatible, so is probably better if you are constrained to this version of the API. There is a <a href="http://android-developers.blogspot.com/2009/09/introducing-quick-search-box-for.html" rel="nofollow">compare/contrast document</a>.</li> </ul> <p>This is probably not what you're looking for directly, but I think should help solve the problem you're trying to solve.</p> http://stackoverflow.com/questions/1866655/crowsourced-translation/1866829#1866829 1 Answer by jamesh for Crowsourced Translation jamesh 2009-12-08T13:02:03Z 2009-12-08T13:02:03Z <p>The <a href="http://www.worldwidelexicon.org/s/essay.html" rel="nofollow">World Wide Lexicon Project</a> may be what you're looking for. They publish a <a href="https://addons.mozilla.org/en-US/firefox/addon/13897" rel="nofollow">Firefox plugin</a> for users to translate and correct machine translations of any site. </p> <p>As a <a href="http://www.worldwidelexicon.org/s/publishers.html" rel="nofollow">publisher</a>, you can also request translations of your site. They also have an API.</p> http://stackoverflow.com/questions/1866729/how-to-over-write-the-property-in-ant/1866761#1866761 1 Answer by jamesh for How to over-write the property in ant ? jamesh 2009-12-08T12:49:15Z 2009-12-08T12:49:15Z <p>Properties are immutable in ant. </p> <p>You may be interested in the <a href="http://ant-contrib.sourceforge.net/tasks/tasks/variable%5Ftask.html" rel="nofollow"><code>var</code> task</a>.</p> <pre><code>&lt;var name="my_var" value="${my_property}" /&gt; &lt;echo&gt;Addressed in the same way: ${my_var} and ${my_property}&lt;/echo&gt; </code></pre> http://stackoverflow.com/questions/1773817/where-to-start-with-chrome-os-development/1810947#1810947 1 Answer by jamesh for Where To Start With Chrome OS Development jamesh 2009-11-27T23:11:55Z 2009-11-27T23:11:55Z <blockquote> <p>Is it possible to develop inside Chrome OS?</p> </blockquote> <p>You may be interested in the <a href="https://wiki.mozilla.org/Labs/Bespin" rel="nofollow">Bespin project</a> from Mozilla Labs. They aim to provide an IDE (written within a HTML5 Canvas object) to edit websites on the fly, and in the cloud.</p> http://stackoverflow.com/questions/1701136/determining-the-best-k-for-a-k-nearest-neighbour 5 Determining the best k for a k nearest neighbour jamesh 2009-11-09T14:00:53Z 2009-11-24T10:30:33Z <p>I have need to do some cluster analysis on a set of 2 dimensional data (I may add extra dimensions along the way). </p> <p>The analysis itself will form part of the data being fed into a visualisation, rather than the inputs into another process (e.g. <a href="http://en.wikipedia.org/wiki/Radial%5Fbasis%5Fnetwork" rel="nofollow">Radial Basis Function Networks</a>). </p> <p>To this end, I'd like to find a set of clusters which primarily "looks right", rather than elucidating some hidden patterns. </p> <p>My intuition is that <a href="http://en.wikipedia.org/wiki/K-means%5Fclustering" rel="nofollow">k-means</a> would be a good starting place for this, but that finding the right number of clusters to run the algorithm with would be problematic.</p> <p>The problem I'm coming to is this: </p> <p><strong>How to determine the 'best' value for</strong> <em>k</em> <strong>such that the clusters formed are stable and visually verifiable</strong>?</p> <p>Questions:</p> <ul> <li>Assuming that this isn't NP-complete, what is the time complexity for finding a good <em>k</em>. (probably reported in number of times to run the k-means algorithm).</li> <li>is k-means a good starting point for this type of problem? If so, what other approaches would you recommend. A specific example, backed by an anecdote/experience would be maxi-bon.</li> <li>what short cuts/approximations would you recommend to increase the performance.</li> </ul> http://stackoverflow.com/questions/1701136/determining-the-best-k-for-a-k-nearest-neighbour/1702288#1702288 2 Answer by jamesh for Determining the best k for a k nearest neighbour jamesh 2009-11-09T16:50:43Z 2009-11-09T16:50:43Z <p>Here's my approximate solution:</p> <ol> <li>Start with k=2. </li> <li>For a number of tries: <ol> <li>Run the k-means algorithm to find <em>k</em> clusters. </li> <li>Find the mean square distance from the origin to the cluster centroids.</li> </ol></li> <li>Repeat the 2-3, to find a standard deviation of the distances. This is a proxy for the <strong>stability</strong> of the clusters.</li> <li>If stability of clusters for <em>k</em> &lt; stability of clusters for <em>k - 1</em> then return <em>k - 1</em></li> <li>Increment <em>k</em> by 1.</li> </ol> <p>The thesis behind this algorithm is that the number of sets of <em>k</em> clusters is small for "good" values of <em>k</em>. </p> <p>If we can find a local optimum for this stability, or an optimal delta for the stability, then we can find a good set of clusters which cannot be improved by adding more clusters.</p> http://stackoverflow.com/questions/1619133/hidden-features-of-android-development/1670580#1670580 3 Answer by jamesh for Hidden features of Android development? jamesh 2009-11-03T22:33:04Z 2009-11-03T22:33:04Z <p>The <a href="http://developer.android.com/guide/developing/tools/index.html" rel="nofollow">tools in the /tools directory</a> of the SDK deserve a mention: </p> <ul> <li>our designer was particularly impressed with <code>draw9patch</code> which helped design stretchable buttons. He gave me assets from there, and I changed from a background colour to a 9-patch drawable and now we have a custom button, rounded corners, etc stretched to fit the text.</li> <li><code>ddms</code>, which is also integrated into the Eclipse plugin. It's immensely powerful, but I use it to take screenshots.</li> <li><code>adb</code> - interact with your device or emulator from the command line. I use this to follow the logs from my device in a terminal window on my desktop, though I have found it useful for installing and uninstalling apps which are misbehaving.</li> <li><code>sqlite3</code> - great for interacting with an installed database, and trying out queries.</li> <li><code>apkbuilder</code>, <code>zipalign</code>, <code>aapt</code> - great for running headless builds</li> <li><code>monkey</code> for fuzz-testing your app. </li> </ul> <p>I would also single out the three Designing for <a href="http://developer.android.com/guide/practices/design/performance.html" rel="nofollow">Performance</a>, <a href="http://developer.android.com/guide/practices/design/responsiveness.html" rel="nofollow">Responsiveness</a> and <a href="http://developer.android.com/guide/practices/design/seamlessness.html" rel="nofollow">Seamlessness</a>, but I'd also like to add a fourth <a href="http://code.google.com/events/io/2009/sessions/CodingLifeBatteryLife.html" rel="nofollow">Coding for (Battery) Life</a>.</p> <p>Although the Javadoc can be a little sparse at times, it helps <strong>no end</strong> to have the source right there for you to look at. </p> <p>It is also very useful to have plenty of <a href="http://code.google.com/p/apps-for-android/" rel="nofollow">sample apps written by Googlers</a> to build, examine and then see how they did it.</p> http://stackoverflow.com/questions/1641049/hiding-images-that-failed-to-load 2 Hiding images that failed to load. jamesh 2009-10-29T00:52:27Z 2009-10-29T12:12:20Z <p>I have an Android application that generates some HTML which is rendered locally, in a Webkit view.</p> <p>The details of the HTML generation aren't really that important except for: </p> <ul> <li>the bulk of it comes from one place, and I cannot change it</li> <li>the template around that HTML (including headers, footers, HEAD etc), the CSS, and Javascript is under my control.</li> <li>most images are under my control, and rendered separately from the untouchable HTML. These images come from local disk, and do not require the network. It can be assumed that these images are always available.</li> <li>the untouchable HTML contains images which would, ideally be displayed. If the network is unavailable, it is these images that would fail to load.</li> <li>the complete HTML file is likely to be stashed to disk, long before it is rendered. i.e. we cannot render different HTML based on network availability.</li> </ul> <p>The app is likely to be offline for at least some of the time, so I wish to handle the case where images fail to load. </p> <p>The images in question are predominantly 1x1 tracking images, but may include images that should be visible if they're available.</p> <p>Without invoking JQuery, or an external library, what would you advise my plan of attack?</p> <p>I have thoughts on how to do this, but realise that they are many pitfalls to worry about:</p> <ul> <li>with a CSS selector, select all the images that haven't loaded (is there such a selector?) and use <code>display:none;</code>.</li> <li>with Javascript, set the <code>alt</code> attribute on every image to the empty string. This would need to be done on <code>document.onLoad</code>?</li> <li>check the availability of the network, and then using CSS hide all images with @href~=^http. I'm not sure how/when to apply this style.</li> </ul> <p>If it helps, for this problem, I seem to have the following sub-problems. It is not clear the optimal strategy for any of them:</p> <ul> <li>how to determine the loaded-ness of the images or the state of the network.</li> <li>how to hide/mask the failed to load images, such that it is not detectable by the user that the image is missing.</li> <li>when to perform these tasks (e.g. when the document/window has finished loading?)</li> <li>how to apply them.</li> </ul> <p>Any thoughts, code, suggestions would be gratefully received.</p> http://stackoverflow.com/questions/1572107/android-intent-for-playing-video/1614521#1614521 1 Answer by jamesh for Android intent for playing video? jamesh 2009-10-23T16:22:56Z 2009-10-23T16:22:56Z <p>I have come across this with the Hero, using what I thought was a published API. In the end, I used a test to see if the intent could be received:</p> <pre><code>private boolean isCallable(Intent intent) { List&lt;ResolveInfo&gt; list = getPackageManager().queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY); return list.size() &gt; 0; } </code></pre> <p>In use when I would usually just start the activity: </p> <pre><code>final Intent intent = new Intent("com.android.camera.action.CROP"); intent.setClassName("com.android.camera", "com.android.camera.CropImage"); if (isCallable(intent)) { // call the intent as you intended. } else { // make alternative arrangements. } </code></pre> <p>obvious: If you go down this route - using non-public APIs - you must absolutely provide a fallback which you know definitely works. It doesn't have to be perfect, it can be a Toast saying that this is unsupported for this handset/device, but you should avoid an uncaught exception. end obvious.</p> <p><hr /></p> <p>I find the <a href="http://www.openintents.org/en/intentstable" rel="nofollow">Open Intents Registry of Intents Protocols</a> quite useful, but I haven't found the equivalent of a TCK type list of intents which absolutely must be supported, and examples of what apps do different handsets.</p> http://stackoverflow.com/questions/1609573/intercepting-links-from-the-browser-to-open-my-android-app 2 Intercepting links from the browser to open my Android app. jamesh 2009-10-22T19:53:20Z 2009-10-22T20:14:04Z <p>I'd like to be able prompt my app to open link (instead of the browser) when the user clicks on a URL of a given pattern. This could be when the user is on a web page in the browser, or in an email client, or a WebView in a freshly minted app.</p> <p>For example, click on a YouTube link from anywhere in the phone and you'll be given the chance to open the YouTube app. </p> <p>How do I achieve this for my own app.</p> http://stackoverflow.com/questions/1609573/intercepting-links-from-the-browser-to-open-my-android-app/1609662#1609662 3 Answer by jamesh for Intercepting links from the browser to open my Android app. jamesh 2009-10-22T20:09:37Z 2009-10-22T20:09:37Z <p>Use an android.intent.action.VIEW of category <a href="http://developer.android.com/reference/android/content/Intent.html#CATEGORY%5FBROWSABLE" rel="nofollow">android.intent.category.BROWSABLE</a>.</p> <p>From Romain Guy's <a href="http://android-developers.blogspot.com/2008/09/android-photostream.html" rel="nofollow">Photostream</a> app's <a href="http://code.google.com/p/apps-for-android/source/browse/trunk/Photostream/AndroidManifest.xml" rel="nofollow">AndroidManifest.xml</a>, </p> <pre><code> &lt;activity android:name=".PhotostreamActivity" android:label="@string/application_name"&gt; &lt;!-- ... --&gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.VIEW" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;category android:name="android.intent.category.BROWSABLE" /&gt; &lt;data android:scheme="http" android:host="flickr.com" android:pathPrefix="/photos/" /&gt; &lt;data android:scheme="http" android:host="www.flickr.com" android:pathPrefix="/photos/" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; </code></pre> <p>Once inside you're in the <a href="http://code.google.com/p/apps-for-android/source/browse/trunk/Photostream/src/com/google/android/photostream/PhotostreamActivity.java" rel="nofollow">activity</a>, you need to look for the action, and then do something with the URL you've been handed. The <code>Intent.getData()</code> method gives you a Uri.</p> <pre><code> final Intent intent = getIntent(); final String action = intent.getAction(); if (Intent.ACTION_VIEW.equals(action)) { final List&lt;String&gt; segments = intent.getData().getPathSegments(); if (segments.size() &gt; 1) { mUsername = segments.get(1); } } </code></pre> <p>It should be noted, however, that this app is getting a little bit out of date (1.2), so you may find there are better ways of achieving this.</p> http://stackoverflow.com/questions/277178/intercepting-url-before-navigation/1609561#1609561 0 Answer by jamesh for Intercepting URL before navigation jamesh 2009-10-22T19:51:50Z 2009-10-22T19:51:50Z <p>You may want to have a look at <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler</a>: </p> <blockquote> <p>... Web Debugging tool that enables capture, replay, and modification of HTTP and HTTPS traffic from virtually any application.</p> </blockquote> <p>From what I understand it acts as a lightweight proxy which can do all sorts of cool stuff as defined by a .NET script.</p> <p>You can also set it up such that you can run mobile devices through it, if that's of interest to you. </p> http://stackoverflow.com/questions/1587886/how-to-toggle-the-option-returned-by-connectivitymanager-getbackgrounddatasetting/1597701#1597701 0 Answer by jamesh for How to toggle the option returned by ConnectivityManager.getBackgroundDataSetting() ? jamesh 2009-10-20T22:33:56Z 2009-10-20T22:33:56Z <p>The short answer is you can't. </p> <p>The longer answer is you <em>shouldn't</em>. It is one of the <a href="http://developer.android.com/reference/android/provider/Settings.Secure.html" rel="nofollow">secure settings</a>, and as such shouldn't be manipulated directly. </p> <p>The docs in the link above state:</p> <blockquote> <p>Secure system settings, containing system preferences that applications can read but are not allowed to write. These are for preferences that the user must explicitly modify through the system UI or specialized APIs for those values, not modified directly by applications. </p> </blockquote> <p>The easiest way to do this is to point the user to the correct settings activity, using the <code>SYNC_SETTINGS</code> action:</p> <pre><code> Intent intent = new Intent("android.settings.SYNC_SETTINGS"); intent.addCategory("android.intent.category.DEFAULT"); startActivity(intent); </code></pre> <p>This is most likely to break the flow of your app, but will make sure the user is aware of the change to the settings.</p> http://stackoverflow.com/questions/241131/how-do-i-attach-source-code-locations-to-plugins-in-my-eclipse-rcp-target-platfor 0 How do I attach source code locations to plugins in my Eclipse RCP target platform? jamesh 2008-10-27T19:29:28Z 2009-10-19T22:24:52Z <p>I've got a workspace with multiple RCP plugin projects.</p> <p>We've set the target platform, so we can build against a standard set of plugins, but are not able to see source code and Javadoc for all the platform plugins.</p> <p>The Windows -> Preferences -> Plug-in Development -> Target Platform -> Source Code Locations page doesn't seem to have any effect when I add the eclipse directory (it only allows you to add directories). </p> <p>Copying the source jars from the eclipse directory into the target platform has a similar effect.</p> <p>What am I doing wrong? How do I attach a set of Source jars to my target platform?</p> http://stackoverflow.com/questions/45803/service-to-make-an-audio-podcast-from-a-video-one 1 Service to make an audio podcast from a video one? jamesh 2008-09-05T13:24:01Z 2009-10-19T13:11:32Z <ol> <li>Video podcast</li> <li>???</li> <li>Audio only mp3 player</li> </ol> <p>I'm looking for somewhere which will extract audio from video, but instead of a single file, for an on going video podcast.</p> <p>I would most like a website which would suck in the RSS and spit out an RSS (I'm thinking of something like Feedburner), though would settle for something on my own machine.</p> <p>If it must be on my machine, it should be quick, transparent, and automatic when I download each episode. </p> <p>What would you use?</p> <p><b>Edit:</b> I'm on an Ubuntu 8.04 machine; so running ffmpeg is no problem; however, I'm looking for automation and feed awareness.</p> <p>Here's my use case: I want to listen to <a href="http://video.google.com/videosearch?q=google+techtalks&amp;so=1&amp;output=rss" rel="nofollow">lectures</a> at Google Video, or <a href="http://groups.csail.mit.edu/mac/classes/6.001/abelson-sussman-lectures/" rel="nofollow">Structure and Interpretation of Computer Programs</a>. These videos come out fairly often, so anything that's needed to be done manually will also be done fairly often. </p> <p>Here's one approach I'd thought of:</p> <ul> <li>download the RSS</li> <li>parse the RSS for enclosures, </li> <li>download the enclosures, keeping a track what has already been downloaded previously</li> <li>transcode the files, but not the ones done already</li> <li>reconstruct an RSS with the audio files, remembering to change the metadata.</li> <li>schedule to be run periodically</li> <li>point podcatcher at new RSS feed.</li> </ul> <p>I also liked the approach of gPodder of using a <a href="http://wiki.gpodder.org/wiki/Time_stretching#Using_the_post-download_script_hook" rel="nofollow">post-download script</a>.</p> <p>I wish the <a href="http://www.openp2p.com/pub/a/p2p/2003/01/07/lazyweb.html" rel="nofollow">Lazy Web</a> still worked.</p> http://stackoverflow.com/questions/1539211/deploying-a-javafx-application-onto-a-j2me-handset 1 Deploying a JavaFX application onto a J2ME handset jamesh 2009-10-08T17:11:25Z 2009-10-10T10:21:26Z <p>I've generated a barely minimal JavaFX (1.2) app, using Netbeans 6.7.1.</p> <p>Now I have come to put the app on a) an emulator b) a device. </p> <p>I can't seem to find anywhere in the tooling which will help me do either. </p> <ul> <li>what am I missing/doing wrong</li> <li>any thoughts on a very easy handset to get up and running?</li> </ul> http://stackoverflow.com/questions/1327594/on-scaling-tags-in-a-tag-cloud 3 On scaling tags in a tag cloud jamesh 2009-08-25T11:14:37Z 2009-09-10T19:54:16Z <p>I am implementing a tag cloud on a mobile device. The details of data-model etc, are not particularly important here. My question is about the scaling of tags:</p> <p><strong>What is the 'best' expression to map tag frequency to font size?</strong></p> <p>I have looked at <a href="http://blogs.dekoh.com/dev/2007/10/29/choosing-a-good-font-size-variation-algorithm-for-your-tag-cloud/" rel="nofollow">this post</a> discussing linear and logarithmic scaling and <a href="http://stackoverflow.com/questions/613274/fitting-tag-cloud-to-available-space/672802#672802">this answer</a> from Adrian Kuhn sketch of a polynomial approach for inspiration. However, I seem to remember a post some place on the interwebs with a lot more exploration on this issue.</p> <p>I have also found some "<a href="http://www.joelamantia.com/tag-clouds/10-best-practices-for-displaying-tag-clouds" rel="nofollow">best practices</a>" on a blog, though am unsure of the providence of the best practices. These make no comment on frequency scaling.</p> <p>What alternatives do I have for tag scaling, and which is the preferred/standard method? I am also considering minimum fontsizes, maximum number of tags, colors, etc.</p> <p>Edit: As per the discussion in <a href="http://stackoverflow.com/questions/1240263/preferable-tag-cloud-visualization-formats">this question</a>, I am interested in the "standard" tagcloud, with font size variations.</p> http://stackoverflow.com/questions/277319/what-is-the-most-interesting-bug-you-have-fixed 14 What is the most interesting bug you have fixed? jamesh 2008-11-10T07:55:57Z 2009-09-05T20:45:29Z <p>On a recent round of interviews, one interviewer at "a leading brand technology company" asked - as an ice breaker - this question. I thought it was a good question, worth asking (and warning) others.</p> <p><em>Interesting</em> can mean a multitude of things, so there a few more suggested constraints to make this a valid question: </p> <ul> <li>minor cause, major effect</li> <li>unexpected place in the code</li> <li>deterministic cause, non-deterministic effect</li> <li>non-deterministic cause, deterministic effect</li> </ul> <p>Props to answers which admit fault.</p> <p>I don't think this necessarily means: </p> <ul> <li>the hardest to track down</li> <li>the strangest symptoms</li> <li>the dumbest programming errors</li> </ul> <p>What's important is that the bug is interesting, and that you fixed it.</p> http://stackoverflow.com/questions/1347200/google-earth-rich-client-or-rich-internet-architecture/1350037#1350037 1 Answer by jamesh for Google Earth - Rich Client or Rich Internet Architecture? jamesh 2009-08-29T00:38:08Z 2009-08-29T00:38:08Z <p>The term RIA originated as a marketing term, from Adobe. They were using it to describe Apollo, which was renamed AIR.</p> <p>Purely as a marketing term, and not a clearly scoped definition, its precise meaning is debatable. Each definition has at least one major counter-example which one would probably not call an RIA.</p> <p>For example: </p> <ul> <li>RIAs is a Javascript application which runs in a browser. i.e. GMail <em>is</em>, but Google Earth <em>is</em> <em>not</em>.</li> <li>RIAs run on the client, but not in the browser, and have a sizeable conversation with an online service. i.e. Tweetdeck <em>is</em>, but so is <em>Thunderbird</em>.</li> </ul> <p>The terms thick/rich client is a similarly contested word, and is set-up to be in contrast with a Thin Client; which IIRC, were diskless terminals that did all processing on the central mainframe.</p> <p>The JavaPosse had a very good treatment on this subject in <a href="http://www.javaposse.com/index.php?post%5Fid=362561" rel="nofollow">this episode</a>.</p> http://stackoverflow.com/questions/1209505/right-click-keyboard-short-cut-for-eclipse/1345994#1345994 2 Answer by jamesh for “Right Click” keyboard short cut for Eclipse? jamesh 2009-08-28T09:39:06Z 2009-08-28T09:39:06Z <p>On the old Apple branded external keyboards, <strong>the menu button</strong> is to the right of the space bar (Alt Gr, on PC style keyboards). Looking at the newer keyboards, and the Mac Book Pros, it doesn't seem to be there (guess it went the same way as the Home, End, Page Up, Page Down and Delete keys).</p> <p>Having a poke around the <strong>Preferences -> Keys preference page</strong>, I don't think there is a way of revealing the entire context menu. </p> <p>Many of the sub-menus are available from the keyboard - the ones I have committed to <strong>muscular memory</strong> are: </p> <ul> <li>Alt ⌘ T - refactoring menu, and the various refactorings available from the keyboard, using the modifiers Alt ⌘</li> <li>Alt ⌘ S - Source menu, and various operations beginning with Shift ⌘ - including organize imports, reformat.</li> <li>Shift ⌘ T - open type </li> <li>Shift ⌘ R - open resource</li> </ul> <p>If all else fails, it is usually worth looking at <strong>Shift ⌘ L</strong> - which shows all current keyboard mappings in a hover on the side of the screen.</p> <p>With these shortcuts, I would recommend learning one a day. Their culmulative effect is considerable.</p> <p>I appreciate that this does not answer your question, but I hope it solves your problem.</p> http://stackoverflow.com/questions/1327594/on-scaling-tags-in-a-tag-cloud/1327831#1327831 1 Answer by jamesh for On scaling tags in a tag cloud jamesh 2009-08-25T12:00:07Z 2009-08-25T12:00:07Z <p>There is an excellent discussion in <a href="http://files.blog-city.com/files/J05/88284/b/insearchofperfecttagcloud.pdf" rel="nofollow">this pdf</a>, which discusses scaling, clustering, and truncating on the tags to display.</p> http://stackoverflow.com/questions/1319793/order-by-on-different-columns-in-different-directions-in-sqlite 1 ORDER BY on different columns in different directions in SQLite jamesh 2009-08-23T22:45:28Z 2009-08-24T12:28:40Z <p>I have a table defined by: </p> <pre><code> CREATE TABLE bar_table ( _id INTEGER NOT NULL PRIMARY KEY, index INTEGER NOT NULL DEFAULT '65535', _date DATE ) </code></pre> <p>My basic select statement is:</p> <pre><code>SELECT * FROM bar_table ORDER BY &lt;your-clause-here&gt; </code></pre> <p>How do I order my selection by index ascending, and date descending? i.e. small indexes come before large indexes. In the event that two indexes are the same, the later date is to come first.</p> <p>The documentation is pointing me towards COLLATion, ubut I'm not really sure what that is.</p> http://stackoverflow.com/questions/1243066/does-android-support-near-real-time-push-notification/1305569#1305569 1 Answer by jamesh for Does Android support near real time push notification jamesh 2009-08-20T11:36:41Z 2009-08-20T13:37:56Z <p>If you can depend on the Google libraries being there for you target market, then you may want to <strong>piggy back on GTalk</strong> functionality (registering a resource on the existing username - the intercepting it the messages as they come in with a BroadcastReceiver).</p> <p>If not, and I expect <a href="http://blogs.zdnet.com/Burnette/?p=533" rel="nofollow">you can't</a>, then you're into <strong>bundling your own versions of XMPP</strong>. This is a pain, but may be made easier if XMPP is bundled separately as a standalone library.</p> <p>You may also consider <a href="http://danielmiessler.com/blog/the-pubsubhubub-protocol" rel="nofollow">PubSubHubub</a>, but I have no idea the network usage of it. I believe it is built atop of XMPP.</p> http://stackoverflow.com/questions/1086283/getting-document-position-in-a-webview/1224565#1224565 0 Answer by jamesh for Getting document position in a WebView? jamesh 2009-08-03T20:52:12Z 2009-08-03T20:52:12Z <p>The approach I took was as follows:</p> <p>In the <code>onSaveInstanceState()</code> method, calculate how far down the page the user had scrolled.</p> <pre><code> int contentHeight = webView.getContentHeight(); int scrollY = webView.getScrollY(); float scrollPercent = ((float) scrollY / ((float) contentHeight)); </code></pre> <p>Stash that in the bundle. When restoring the page in the <code>onCreate()</code> method, wait for the page to finish loading (in <code>WebClient.onPageFinished()</code>), scroll to the recorded position:</p> <pre><code> int contentHeight = webView.getContentHeight(); int y = (int) ((float) contentHeight * scrollRatio); webView.scrollTo(0, y); </code></pre> <ul> <li>Using a <code>float</code> and calculating a ratio works in the case of flipping between landscape and portrait.</li> <li>May work <strong>well enough</strong> but not <strong>perfectly</strong> when mixed with autoresizing images.</li> <li>Scale may also be taken into account </li> </ul> http://stackoverflow.com/questions/1221534/require-a-password-to-uninstall-remove-application/1224497#1224497 0 Answer by jamesh for Require a password to uninstall/remove application jamesh 2009-08-03T20:38:36Z 2009-08-03T20:38:36Z <p>This is a hard problem. I can think of at least one non-evil use-case for it.</p> <p>e.g. Stolen Phone Recovery app - you wish to deter ne'er-do-wells from uninstalling the app.</p> <p>In this case, I can think of two sensible assumptions which would stop me implementing what you're looking for: </p> <ul> <li>the thief is unaware of your app, so will not try to uninstall it. </li> <li>the thief is aware of your app, and switch it off until he can get it to an iron box<code>*</code> to re-install the OS.</li> </ul> <p><code>*</code> For the uninitiated: an <a href="http://en.wikipedia.org/wiki/Faraday%5Fcage#Objects%5Fthat%5Fmay%5Fact%5Fas%5FFaraday%5Fcages" rel="nofollow">iron box</a> will prevent the device sending or receiving electromagnetic signals. </p> <p>Of course, this answer amounts to <a href="http://en.wikipedia.org/wiki/YAGNI" rel="nofollow">You Ain't Going To Need It</a>, though I suspect you have already thought this through.</p> http://stackoverflow.com/questions/1188524/what-is-the-maximum-length-a-url-can-be-to-be-opened-in-a-j2me-browser 2 What is the maximum length a URL can be to be opened in a J2ME browser? jamesh 2009-07-27T14:33:26Z 2009-07-28T16:57:47Z <p>What is the maximum length URL?</p> <p>This is may be handset dependent; on a desktop, it is definitely browser dependent, as discussed in <a href="http://stackoverflow.com/questions/417142/what-is-the-maximum-length-of-an-url/417184">this question</a>.</p> <p>I am interested in specifications or references as much as empirical data.</p> <p>My particular usecase is passing a very long (about 1600 character) URL to a <code>MIDlet.platformRequest(String url)</code>, which is failing. The majority of the URL (some 1575 characters) is query.</p> <p>Are there any other considerations for passing very long URLs about (e.g. mobile proxies and gateways truncating the URL)?</p> http://stackoverflow.com/questions/1188524/what-is-the-maximum-length-a-url-can-be-to-be-opened-in-a-j2me-browser/1195391#1195391 0 Answer by jamesh for What is the maximum length a URL can be to be opened in a J2ME browser? jamesh 2009-07-28T16:57:47Z 2009-07-28T16:57:47Z <p>Short answer: it depends, but probably long enough.</p> <p>Long answer, following investigation on SonyEricsson J2ME emulator (WTK 2.2.4), a K610i, and Samsung U700V.</p> <p><hr /></p> <p>Empirically testing: from the emulator, the <code>platformRequest()</code> passes the URL straight to the desktop browser (Firefox in this case).</p> <pre><code>http://test.example.com/?q=2048xxxxxxxxxxxxxxxxxxxxxxxxxxxx... xxxxxxxxxxxxxxxxxx2048 </code></pre> <p>Looking at the logs of a test server, we see we can pass through very long URLs from the emulator to the desktop to the server.</p> <p>On a device (in this case, a SonyEricsson K610i, user agent: "SonyEricssonK610i/R1CB Browser/NetFront/3.3 Profile/MIDP-2.0 Configuration/CLDC-1.1") can handle at least a URL of at least 3072 characters (upper bound c.3800).</p> <p>On a second device Samsung U700V, user agent: "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.7) Gecko/20060909 Firefox/1.5.0.7 MG(Novarra-Vision/7.3)", the lower bound for URL length was 2048, but upper bound was less than 3072. Note that this could be a problem with Novarra transcoder, which has been known to (at least) re-write user-agent strings.</p> <p>Without the Novarra transcode (switching networks), the U700V has a user agent "SAMSUNG-SGH-U700-Vodafone/BUGK1 SHP/VPP/R5 NetFront/3.4 Qtv5.3 SMM-MMS/1.2.0 profile/MIDP-2.0 configuration/CLDC-1.1", and has a lower bound of 3072 chars.</p> <p><hr /></p> <p>This effectively ends my interest in the answer to this question, as this empirical testing invalidates my theory that an upper bound on URL length is causing my problem. </p> <p>However, for completeness, I will include a potential cause of my problem: </p> <p>The URL needed to connect has at least two query parameters. The ampersands separating the queries seem to confuse the emulator. </p> <p>The emulator silently drops the second parameter.</p> <p>On the Samsung, without a second parameter, the browser connects, but the long parameter is corrupted or missing.</p> <p>On the K610i when a second parameter is used, the browser does not start properly. </p> http://stackoverflow.com/questions/1068483/how-to-override-component-name-for-svn-uri-in-buckminster-rmap-file/1080025#1080025 1 Answer by jamesh for How to override component name for svn uri in buckminster RMAP file jamesh 2009-07-03T16:20:11Z 2009-07-03T16:20:11Z <p>Your regular expression looks to be the problem.</p> <p><code>(?:X)</code> is a non-capturing group, so the <code>$1</code> will not be defined.</p> <p>I would suggest:</p> <pre><code>&lt;bc:match pattern="^com\.initec\.richedit((?:.\w+)*)$" replacement="com.initec.richtext$1" /&gt; </code></pre> http://stackoverflow.com/questions/1028858/useful-eclipse-java-code-templates/1079925#1079925 3 Answer by jamesh for Useful Eclipse Java Code Templates jamesh 2009-07-03T15:50:17Z 2009-07-03T15:50:17Z <h2>Format a string</h2> <p>MessageFormat - surround the selection with a MessageFormat.</p> <pre><code> ${:import(java.text.MessageFormat} MessageFormat.format(${word_selection}, ${cursor}) </code></pre> <p>This lets me move a cursor to a string, expand the selection to the entire string (Shift-Alt-Up), then Ctrl-Space twice.</p> <h2>Lock the selection</h2> <p>lock - surround the selected lines with a try finally lock. Assume the presence of a lock variable.</p> <pre><code>${lock}.acquire(); try { ${line_selection} ${cursor} } finally { ${lock}.release(); } </code></pre> <p>NB <code>${line_selection}</code> templates show up in the <strong>Surround With</strong> menu (Alt-Shift-Z). </p> http://stackoverflow.com/questions/373335/suggestions-for-a-cron-like-scheduler-in-python/1886643#1886643 Comment by jamesh on Suggestions for a Cron like scheduler in Python? jamesh 2009-12-11T10:31:45Z 2009-12-11T10:31:45Z Commenting would be the best way to say this, together with an upvote. The order of answers is not guaranteed, so its context cannot rely on it. However, I do understand you don't have enough points to comment on Brian's answer, or upvote. http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash/69198#69198 Comment by jamesh on What is your single most favorite command-line trick using Bash? jamesh 2009-12-04T10:04:53Z 2009-12-04T10:04:53Z This helps on Mac Laptops that don't have home and end keys. http://stackoverflow.com/questions/222093/how-to-run-eclipse-launch-configurations-programmatically Comment by jamesh on How to run Eclipse launch configurations programmatically? jamesh 2009-12-04T09:47:11Z 2009-12-04T09:47:11Z However, this does not consider running unit tests, running RCPs, applets or OSGi configurations. http://stackoverflow.com/questions/1701136/determining-the-best-k-for-a-k-nearest-neighbour/1702288#1702288 Comment by jamesh on Determining the best k for a k nearest neighbour jamesh 2009-11-21T19:50:00Z 2009-11-21T19:50:00Z For such a small search space, a GA seems a little intense. The two global optima are at k=1 and k=n (why I started with k=2), and the approach to k=n may be quite asymptotic. http://stackoverflow.com/questions/1701136/determining-the-best-k-for-a-k-nearest-neighbour/1704699#1704699 Comment by jamesh on Determining the best k for a k nearest neighbour jamesh 2009-11-14T16:09:27Z 2009-11-14T16:09:27Z Good point, I'd forgotten about Kohonen maps. http://stackoverflow.com/questions/1701136/determining-the-best-k-for-a-k-nearest-neighbour/1701226#1701226 Comment by jamesh on Determining the best k for a k nearest neighbour jamesh 2009-11-09T17:41:07Z 2009-11-09T17:41:07Z I got the WP link, thanks for the clippage. I'm not sure I understand your final paragraph. http://stackoverflow.com/questions/1701136/determining-the-best-k-for-a-k-nearest-neighbour/1701215#1701215 Comment by jamesh on Determining the best k for a k nearest neighbour jamesh 2009-11-09T17:37:10Z 2009-11-09T17:37:10Z The plane is a geographical, i.e. continuous surface. http://stackoverflow.com/questions/1641049/hiding-images-that-failed-to-load/1643289#1643289 Comment by jamesh on Hiding images that failed to load. jamesh 2009-10-30T21:32:35Z 2009-10-30T21:32:35Z This is exactly what I was looking for. Thanks. http://stackoverflow.com/questions/1559843/what-problems-have-you-solved-using-artificial-neural-networks/1601927#1601927 Comment by jamesh on What problems have you solved using artificial neural networks? jamesh 2009-10-22T21:19:22Z 2009-10-22T21:19:22Z The NEAT algorithms are really cool. A bit difficult to implement (essentially tracking the history of a mutation, IIRC, and then using the history in the crossover), but quite biologically sound. http://stackoverflow.com/questions/1539211/deploying-a-javafx-application-onto-a-j2me-handset/1547575#1547575 Comment by jamesh on Deploying a JavaFX application onto a J2ME handset jamesh 2009-10-11T23:16:14Z 2009-10-11T23:16:14Z Thanks. When reading the docs, I had taken it to mean that there were lots out there, but there was also an early access to the WinMo phones too. WinMo the first and only... http://stackoverflow.com/questions/1441319/whats-the-best-approach-to-recognize-patterns-in-data-and-whats-the-best-way-t/1441437#1441437 Comment by jamesh on What's the best approach to recognize patterns in data, and what's the best way to learn more on the topic? jamesh 2009-09-28T11:25:37Z 2009-09-28T11:25:37Z +1 for Dilation &amp; Erosion. http://stackoverflow.com/questions/274374/the-most-significant-project-management-mistakes/915523#915523 Comment by jamesh on The most significant project management mistakes jamesh 2009-09-14T13:58:44Z 2009-09-14T13:58:44Z Not sure I understand this. Can you explain it a bit more? http://stackoverflow.com/questions/1418223/efficiency-of-sort-algorithms/1418229#1418229 Comment by jamesh on Efficiency of Sort Algorithms jamesh 2009-09-14T11:26:59Z 2009-09-14T11:26:59Z @MedicineMan. Your response to @DVK was a little too defensive. There are some good companies out there who completely agree with DVK - this is Paint The Fence stuff. http://stackoverflow.com/questions/454315/how-do-you-format-date-and-time-in-android/456941#456941 Comment by jamesh on How do you format date and time in Android? jamesh 2009-09-07T23:31:20Z 2009-09-07T23:31:20Z This is the android.text.format.DateFormat rather than java.text.DateFormat. http://stackoverflow.com/questions/1282475/where-can-i-learn-more-about-datastructure-tricky-questions/1282571#1282571 Comment by jamesh on Where can I learn more about datastructure tricky questions? jamesh 2009-08-28T21:44:37Z 2009-08-28T21:44:37Z This has pulled me out of at least one tricky interview question I can think of. Excellent book.