User mykdavies - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:39:12Z http://stackoverflow.com/feeds/user/23158 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/940841/squeak-system-browser-questions/944460#944460 2 Answer by mykdavies for Squeak System Browser Questions mykdavies 2009-06-03T12:30:52Z 2009-06-03T12:30:52Z <p>"In the bottom pane there should be a bunch of button (browse, senders, implementors, versions, ..., source). " -- switch on the optionalButtons preference in the preferences browser.</p> <p>The "area that I can type in, below the top panes, and above the buttons, but it doesn't appear" sounds like the annotation pane - this gives you summary information about the method you're currently viewing, and it's controlled by the annotationPanes preference. Alternatively you may be referring to the Mercury Panel which is used for fast navigation to other classes and methods; this is (of course :-) controlled by the mercuryPanel preference.</p> <p>If you've been messing around, you may also find that you now have an incorrect system browser selected. Squeak has a choice of browsers which can act as the System Browser. You can choose between them by clicking the menu button on the System Browser and selecting "Choose new default Browser". Open a new browser window to see what effect this has had.</p> http://stackoverflow.com/questions/144730/things-to-consider-when-writing-for-touch-screen/145647#145647 0 Answer by mykdavies for Things to consider when writing for touch screen? mykdavies 2008-09-28T10:50:58Z 2008-09-28T10:50:58Z <p>If you've not already done so, have a look at some of the documentation available for developers on mobile platforms, eg <a href="http://msdn.microsoft.com/en-gb/windowsmobile/bb250568.aspx" rel="nofollow">Windows Mobile</a>, <a href="http://developer.apple.com/iphone/" rel="nofollow">iPhone</a>.</p> http://stackoverflow.com/questions/144661/python-vs-ruby-for-metaprogramming/145504#145504 9 Answer by mykdavies for Python Vs. Ruby for Metaprogramming mykdavies 2008-09-28T08:54:17Z 2008-09-28T08:54:17Z <p>Have you considered Smalltalk? It offers a very simple, clear and extensible syntax with reflectivity and introspection capabilities and a fully integrated development environment that takes advantage of those capabilities. Have a look at <a href="http://squeak.org/Features/Research/" rel="nofollow">some of the work being done</a> in <a href="http://squeak.org/" rel="nofollow">Squeak Smalltalk</a> for instance. A lot of researchers using Squeak hang out on the <a href="http://lists.squeakfoundation.org/pipermail/squeak-dev/" rel="nofollow">Squeak mailing list</a> and #squeak on freenode, so you can get help on complex issues very easily.</p> <p>Other indicators of its current relevance: it runs on any platform you'd care to name (including the <a href="http://isqueak.org/HomePage" rel="nofollow">iPhone</a>); Gilad Bracha is basing his Newspeak work on Squeak; the V8 team cut their teeth on <a href="http://astares.blogspot.com/2008/09/google-chrome-javascript-and-smalltalk.html" rel="nofollow">Smalltalk VMs</a>; and Dan Ingalls and Randal Schwartz have recently returned to Smalltalk work after years in the wilderness.</p> <p>Best of luck with your search - let us know what you decide in the end.</p>