User methym - Stack Overflowmost recent 30 from stackoverflow.com2009-12-14T20:48:58Zhttp://stackoverflow.com/feeds/user/29148http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/215390/available-iphone-web-application-javascript-ui-library-frameworks11Available iPhone Web Application JavaScript UI Library/Frameworksmethym2008-10-18T18:31:55Z2009-09-25T08:42:30Z
<p>I'm starting a web application that will target Mobile Safari on iPhone/iPod Touch. I'm evaluating the available client-side JavaScript/CSS libraries/frameworks that are currently out there.</p>
<p>These are the ones I'm currenlty aware of:</p>
<ul>
<li><a href="http://code.google.com/p/iui/" rel="nofollow" title="iUI">iUI</a></li>
<li><a href="http://clientside.cnet.com/cnet-js-standards/ciui-cnet-iphone-ui/" rel="nofollow">CiUI</a></li>
<li><a href="http://code.google.com/p/iphone-universal/" rel="nofollow">UiUIKit</a></li>
<li><a href="http://webapp.net.free.fr/" rel="nofollow">WebApp.Net</a></li>
<li><a href="http://www.iwebkit.net" rel="nofollow">iWebKit</a></li>
<li><a href="http://developer.apple.com/documentation/AppleApplications/Conceptual/Dashcode_UserGuide/Contents/Resources/en.lproj/Introduction/chapter_1_section_1.html" rel="nofollow">Apple's Dashcode Application</a> - not really a standalone library/framework, but it provides/generates JavaScript, CSS, and images that conform to the native iPhone UI metaphors.</li>
</ul>
<p>Are there any others out there? I want to make sure I'm not missing any before I make a decision. I'm only looking for client-side JavaScript/CSS solutions and building one from scratch isn't an option because of time constraints. No server-side PHP, Ruby, Python, Java, etc. solutions.</p>
<p>I am aware of the <a href="http://stackoverflow.com/questions/8756/iphone-web-applications-templates-frameworks">iPhone web applications, templates, frameworks?</a> question that was asked, but this only mentioned iUI and UiUIKit.</p>
<p>Thank you</p>
http://stackoverflow.com/questions/640885/best-cocoa-objective-c-wrapper-library-for-sqlite-on-iphone3Best Cocoa/Objective-C Wrapper Library for SQLite on iPhonemethym2009-03-12T23:30:22Z2009-08-25T05:18:51Z
<p>I'm developing for the iPhone and am looking for a good Cocoa/Objective-C library for working with SQLite. I don't want to use the standard procedural SQLite C API. I see options at <a href="http://www.sqlite.org/cvstrac/wiki?p=SqliteWrappers" rel="nofollow">sqlite.org</a> under the Objective-C section, but am not sure which is the best in terms of library API design, stability, and functionality. I'd like to use something that's actively being developed and hopefully will be around for a while. Anyone have suggestions based on experience using one?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/211616/hidden-features-of-objective-c/214448#2144484Answer by methym for Hidden features of Objective-Cmethym2008-10-18T02:45:43Z2009-03-04T10:29:43Z<p><strong>Object Forwarding/Method Missing</strong></p>
<p>When an object is sent a message for which it has no
method, the runtime system gives it another chance to handle
the call before giving up. If the object supports a
-forward:: method, the runtime calls this method, passing it
information about the unhandled call. The return value from
the forwarded call is propagated back to the original caller of
the method.</p>
<pre><code>-(retval_t)forward:(SEL)sel :(arglist_t)args {
if ([myDelegate respondsTo:sel])
return [myDelegate performv:sel :args]
else
return [super forward:sel :args];
}
</code></pre>
<p>Content from <a href="http://oreilly.com/catalog/9780596004231/" rel="nofollow">Objective-C Pocket Reference</a></p>
<p>This is very powerful and is used heavily in the Ruby community for the various DSLs and rails, etc. Originated in Smalltalk which influenced both Objective-C and Ruby.</p>
http://stackoverflow.com/questions/219653/ruby-on-iphone/475180#4751800Answer by methym for Ruby on iPhonemethym2009-01-24T00:24:15Z2009-01-24T00:24:15Z<p><a href="http://rhomobile.com/" rel="nofollow">rhomobile</a> is an option to run ruby code on the iPhone, but it's essentially web app development. A web server runs locally on the iPhone and your ruby code renders to standard client side web technologies (html/css/javascript).</p>
<p><a href="http://rhomobile.com/" rel="nofollow">http://rhomobile.com/</a></p>
http://stackoverflow.com/questions/439248/running-vmware-in-vmware/440545#4405453Answer by methym for Running VMware in VMware?methym2009-01-13T19:59:23Z2009-01-13T19:59:23Z<p>I ran into this same problem. I work at a large company where our entire infrastructure is virtual, so if you need a server you get a VMware VM. So I had a couple of Windows 2003 Server Standard Edition based Guest VM's that had 6GB of memory and 200 GB of disk space, but I wanted to run linux and a LAMP stack on them. So I tried to install VMware Workstation on one and I got an error message saying it couldn't be installed within a VM. I also tried Microsoft Virtual PC and got a similar error message. I installed Sun's <a href="http://www.virtualbox.org/" rel="nofollow">VirtualBox</a> and that installed fine, but I couldn't get the networking to work w/in the guest Ubuntu OS. My next step is to try <a href="http://bellard.org/qemu/download.html" rel="nofollow">QEMU</a> although performance might become an issue.</p>
http://stackoverflow.com/questions/214491/pattern-for-wrapping-an-asynchronous-javascript-function-to-make-it-synchronous2Pattern for wrapping an Asynchronous JavaScript function to make it synchronousmethym2008-10-18T03:28:55Z2008-10-18T12:31:04Z
<p>I'm working with a JavaScript API where most of the functions are asynchronous. The API is the <a href="http://webkit.org/blog/126/webkit-does-html5-client-side-database-storage/" rel="nofollow">WebKit JavaScript Database API</a> which is a binding to a subset of functionality to manipulate SQLite3 databases. I understand the design decision to make things async as to not block and provide a responsive user interface. In my situation I know that my usage of the async API calls will execute fast. Since this is the case I'd like to provide my developers a cleaner and easier to use wrapper API that forces synchronous calls.</p>
<p>Here's the async call</p>
<pre><code>db.executeSql(sqlStatement, function(result) {
// do something with result
});
</code></pre>
<p>And here's what I'd like to be able to do</p>
<pre><code>var result = dbWrapper.executeSql(sqlStatement);
// do something with result
</code></pre>
<p>Is there a design pattern/way to do this? A written or linked to code example is preferred. The target platform/broswer is Mobile Safari on the iPhone.</p>
<p>Thank you</p>
http://stackoverflow.com/questions/214348/what-is-the-smallest-extjs-package/214390#2143904Answer by methym for What is the smallest ExtJS package?methym2008-10-18T02:01:46Z2008-10-18T02:01:46Z<p>This link explains the include order
<a href="http://extjs.com/learn/Ext_Getting_Started#What_is_the_proper_include_order_for_my_JavaScript_files.3F" rel="nofollow">What is the proper include order for my JavaScript files?</a></p>
<p>This is the minimum include set</p>
<pre><code><link rel="stylesheet" type="text/css" href="../extjs/resources/css/ext-all.css">
<script type="text/javascript" src="../extjs/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="../extjs/ext-all.js"></script>
</code></pre>
<p>The ext-all.css depends on files in ../extjs/resources/css so you should include that entire directory structure also.</p>
<p>So you'd need the following files at a minimum</p>
<ul>
<li>extjs/resources/*<em>/</em></li>
<li>extjs/adapter/ext/ext-base.js</li>
<li>extjs/ext-all.js</li>
</ul>
<p>If you're not using Ext JS for any of the UI components then you don't need any of the stylesheets and supporting images, but in that case you'd have to question why you're usiing Ext JS since that's it's strong point.</p>
http://stackoverflow.com/questions/214072/ext-js-and-adobe-air/214375#2143752Answer by methym for Ext Js and Adobe Airmethym2008-10-18T01:44:32Z2008-10-18T01:44:32Z<p>I found the best tutorials are on the Ext JS site itself.</p>
<p><a href="http://extjs.com/learn/Tutorial:Introduction_to_Ext_2.0" rel="nofollow">Ext JS Intro Tutorial</a></p>
<p>Ext JS is large JS library that includes a lot of functionality from standard DOM manipulation through the one of the most comprehensive set of JavaScript UI components. Since it's such a large API to learn, I found looking through the samples and the associated source code a the best way to learn.</p>
<p><a href="http://extjs.com/deploy/dev/examples/samples.html" rel="nofollow">Ext JS Samples</a></p>
<p>It's handy to have the Ext JS API docs easily accessible and Jack Slocum's Ext JS Docs AIR app is nice.</p>
<p><a href="http://jackslocum.com/blog/2008/02/14/air-docs/" rel="nofollow">Ext JS API Docs AIR App</a></p>
<p>If your JS isn't too strong, you may want to consider a different JavaScript library/framework. Ext JS is great and some would argue it's the highest quality JS library/framework out there at least from a UI components perspective, but it takes some time to master it since it is so large. If your only going to use a couple of the UI components then you may be ok, but once you get into more complex UI that includes many components and layouts it gets fairly involved.</p>
http://stackoverflow.com/questions/215390/available-iphone-web-application-javascript-ui-library-frameworks/215512#215512Comment by methym on Available iPhone Web Application JavaScript UI Library/Frameworksmethym2008-10-18T21:32:08Z2008-10-18T21:32:08ZThis is very interesting and I wasn't aware of it. Thanks.http://stackoverflow.com/questions/214491/pattern-for-wrapping-an-asynchronous-javascript-function-to-make-it-synchronous/214980#214980Comment by methym on Pattern for wrapping an Asynchronous JavaScript function to make it synchronousmethym2008-10-18T18:00:10Z2008-10-18T18:00:10ZThat makes perfect sense. Thanks for the clear explanation.http://stackoverflow.com/questions/214491/pattern-for-wrapping-an-asynchronous-javascript-function-to-make-it-synchronous/214928#214928Comment by methym on Pattern for wrapping an Asynchronous JavaScript function to make it synchronousmethym2008-10-18T17:58:16Z2008-10-18T17:58:16ZI did look at he way jQuery implements it's $.ajax() function with the use of an async boolean, but it turns out it just passes the async param through to the XMLHttpRequest.open function which is implemented in "native" code (not js) and therefore can force the synchronous behavior.