User Ben Combee - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T16:56:33Zhttp://stackoverflow.com/feeds/user/1323http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/90288/how-can-i-segment-my-palm-os-68k-application2How can I segment my Palm OS 68K application?Ben Combee2008-09-18T05:29:25Z2009-12-06T10:55:25Z
<p>If you have an 68K application written using CodeWarrior for Palm OS, how do you assign individual functions to different segments without manually moving files around in the segment tab in the IDE?</p>
http://stackoverflow.com/questions/1822571/interrupt-driven-hd44780-library-for-an-arduino/1836359#18363591Answer by Ben Combee for Interrupt driven HD44780 library for an ArduinoBen Combee2009-12-02T22:36:42Z2009-12-02T22:36:42Z<p>I don't think you need an interrupt for this. Looking at <a href="http://code.google.com/p/arduino/source/browse/trunk/hardware/libraries/LiquidCrystal/LiquidCrystal.cpp" rel="nofollow">LiquidCrystal.cpp</a> in the Arduino distribution, you just need to change the <code>LiquidCrystal::write4bits</code>, <code>LiquidCrystal::write8bits</code>, and <code>LiquidCrystal::pulseEnable</code> code. The first two methods should start by monitoring the busy line (BD7) before writing data, and the last one would be modified to remove the 100us pause.</p>
<p>I think the reason this wasn't done in the default code is that many users of these LCDs just tie R/W to ground so the display is always in write mode, making it impossible to read the BUSY signal. However, this is passed into the library by setting _rw_pin to -1, so the pulse and write code can conditionally use the r/w pin as a way of detecting busy as a speed optimization.</p>
http://stackoverflow.com/questions/15139/building-standalone-applications-in-javascript6Building Standalone Applications in JavaScriptBen Combee2008-08-18T19:52:16Z2009-11-22T10:48:48Z
<p>With the increased power of JavaScript frameworks like YUI, JQuery, and Prototype, and debugging tools like Firebug, doing an application entirely in browser-side JavaScript looks like a great way to make simple applications like puzzle games and specialized calculators.</p>
<p>Is there any downside to this other than exposing your source code? How should you handle data storage for this kind of program?</p>
<p>Edit: yes, Gears and cookies can be used for local storage, but you can't easily get access to files and other objects the user already has around. You also can't save data to a file for a user without having them invoke some browser feature like printing to PDF or saving page as a file.</p>
http://stackoverflow.com/questions/1761105/how-to-use-the-mg-flag-in-cc-4-4-1/1770695#17706950Answer by Ben Combee for How to use the -MG flag in cc 4.4.1?Ben Combee2009-11-20T14:16:22Z2009-11-20T14:16:22Z<p>The -MMD switch appears to be the problem. Try changing that to -MM which should allow the -MG switch to work. According to the GCC documentation at <a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcc/Preprocessor-Options.html" rel="nofollow">http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcc/Preprocessor-Options.html</a>, -MMD is the same as -MM with an impllicit -MF option, and since you've got an output file specified already with -MF, you should be able to use the simpler form.</p>
http://stackoverflow.com/questions/1657222/palm-database-pdb-files-in-java/1770587#17705871Answer by Ben Combee for Palm Database (PDB) files in Java?Ben Combee2009-11-20T13:59:42Z2009-11-20T13:59:42Z<p>The jSyncManager project at <a href="http://www.jsyncmanager.org/" rel="nofollow">http://www.jsyncmanager.org/</a> is under the LGPL and includes classes to read and write PDB files -- look in jSyncManager/API/Protocol/Util/DLPDatabase.java in its source code. It looks like the core code you need from this could be isolated from the rest of the library with a little effort.</p>
http://stackoverflow.com/questions/1219879/developing-console-like-apps-for-palm-os/1753264#17532641Answer by Ben Combee for Developing Console Like Apps For Palm OSBen Combee2009-11-18T02:35:06Z2009-11-18T02:35:06Z<p>The only built-in stdin/stdout interface on Palm OS is the secret "network console". I wrote about this in an old blog entry at <a href="http://palmos.combee.net/blog/HiddenIOConsole.html" rel="nofollow">http://palmos.combee.net/blog/HiddenIOConsole.html</a>. However, there's no C++ binding for this, so you'd need to make your own stream classes that call into these functions, and the old version of the SDK you need is long forgotten on ACCESS's current website. You can probably find it in an old copy of CodeWarrior for Palm OS.</p>
http://stackoverflow.com/questions/1735990/using-classes-with-the-arduino/1753222#17532220Answer by Ben Combee for Using classes with the ArduinoBen Combee2009-11-18T02:24:13Z2009-11-18T02:24:13Z<p>My <a href="http://webduino.googlecode.com" rel="nofollow">Webduino library</a> is all based on a C++ class that implements a web server on top of the Arduino Ethernet shield. I defined the whole class in a .h file that any Arduino code can #include. Feel free to look at the code to see how I do it... I ended up just defining it all inline because there's no real reason to separately compile objects with the Arduino IDE.</p>
http://stackoverflow.com/questions/1468966/rad-and-blinkm-how-to-control-a-blinkm-with-an-arduino-through-rad/1580241#15802412Answer by Ben Combee for RAD and BlinkM, how to control a BlinkM, with an Arduino through RADBen Combee2009-10-16T20:32:41Z2009-10-16T20:32:41Z<p>The BlinkM module talks a protocol called I2C. This is supported in the standard Arduino library as part of <a href="http://arduino.cc/en/Reference/Wire" rel="nofollow">the Wire library</a>, and the BlinkM_funcs.h header that's provided with the sample sketches for the device use that. According to the current RAD todo list, this library hasn't been ported to the RAD IDE yet. Looks like you'll need to use the standard Arduino IDE and C/C++ code to interface with this.</p>
http://stackoverflow.com/questions/217825/is-there-any-similar-tool-for-linux-that-works-like-shark-on-mac-os-x/336149#3361491Answer by Ben Combee for Is there any similar tool for Linux that works like Shark on Mac OS X?Ben Combee2008-12-03T03:26:40Z2009-10-11T13:49:15Z<p><a href="http://oprofile.sourceforge.net/news/" rel="nofollow"><strong>OProfile</strong></a> is a tool that does sampling-based profiling of both your application and the system calls it makes. This allows for seeing detailed information about where it's spending time. It doesn't have a GUI, but there are several front-ends that will let you process the information from the runs.</p>
<p>I've used it extensively, both for desktop applications and for embedded systems. It takes a little effort to interpret the results, but the callgraph output is really useful here.</p>
http://stackoverflow.com/questions/1486099/any-way-to-keep-curls-cookies-in-memory-and-not-on-disk/1490482#14904821Answer by Ben Combee for Any way to keep curl's cookies in memory and not on diskBen Combee2009-09-29T03:46:27Z2009-09-29T03:46:27Z<p>You can use the CURL_COOKIEJAR option, and set the file to "<code>/dev/null</code>" (Linux/MacOSX) or "<code>NUL</code>" (Windows). This will prevent the cookies from being written to disk, but it will keep them around in memory as long as you reuse the handle and don't call <code>curl_easy_cleanup()</code>.</p>
http://stackoverflow.com/questions/1216009/palm-pre-dashboard-notification/1457602#14576021Answer by Ben Combee for Palm Pre Dashboard notification...Ben Combee2009-09-22T00:44:49Z2009-09-22T00:44:49Z<p>A dashboard notification is just another view in the application. Dashboard panels are covered in the Mojo SDK documentation at <a href="http://developer.palm.com/index.php?option=com%5Fcontent&view=article&id=1632" rel="nofollow">http://developer.palm.com/index.php?option=com%5Fcontent&view=article&id=1632</a>.</p>
http://stackoverflow.com/questions/1377875/where-is-the-webos-palm-host-application-found/1457601#14576011Answer by Ben Combee for Where is the WebOS Palm Host application found? Ben Combee2009-09-22T00:42:39Z2009-09-22T00:42:39Z<p>palm-host was a small web server that allowed testing Palm webOS applications in a desktop browser, usually Safari, instead of in the device emulator. With the improvements made in the emulator since the early SDK releases, Palm has removed support for this because the internal Webkit version used on the device has drifted a bit from the version Apple has in their Safari build, and they've got external debugger support on the device/emulator now.</p>
http://stackoverflow.com/questions/989654/palm-pre-emulator/1247031#12470311Answer by Ben Combee for PALM Pre EmulatorBen Combee2009-08-07T21:09:39Z2009-08-07T21:09:39Z<p>The emulator is now available to the public as the webOS developer program has been opened up to wide participation. You can download it along with the SDK from <a href="http://developer.palm.com/" rel="nofollow">http://developer.palm.com/</a></p>
http://stackoverflow.com/questions/1230715/how-to-read-pdb-format-by-javascript/1247024#12470240Answer by Ben Combee for How to read pdb format by javascript?Ben Combee2009-08-07T21:08:07Z2009-08-07T21:08:07Z<p>There is currently no binary file access on webOS, the system that powers the Palm Pre. You can access JSON and XML format data that's delivered either with your application as a text file or downloaded from a web site -- in either case, you make a AJAX-style request from your Javascript code to read the data into memory, then write it back out to a local SQLite database.</p>
<p>Because of this, you'll need a web based utility where users could upload their old application-specific PDB files to be made available to the new webOS application. In addition to the jpilot-db library mentioned before, there's libprc, a C library that comes with the "par" utility, that's good for parsing PDB files, and a PRC/PDB parsing library for python.</p>
http://stackoverflow.com/questions/300185/google-chrome-javascript-version/1125353#11253531Answer by Ben Combee for Google Chrome - javascript versionBen Combee2009-07-14T13:24:08Z2009-07-14T13:24:08Z<p>While Chrome will execute Javascript marked as "javascript1.7", it does not support JS1.7 features like the "let" scoped variable operator.</p>
<p>This code will run on Firefox 3.5 but not on Chrome using V8:</p>
<pre><code><script language="javascript" type="application/javascript;version=1.7">
function foo(){ let a = 4; alert(a); }; foo();
</script>
</code></pre>
<p>If you change language to "javascript1.7" and omit the type, it won't run with JS 1.7 features in Firefox 3.5. The type section is necessary.</p>
<p>This seems to be related to a general WebKit bug, <a href="https://bugs.webkit.org/show_bug.cgi?id=23097" rel="nofollow">https://bugs.webkit.org/show_bug.cgi?id=23097</a>; it may be that Chrome emulates the Safari behavior even though it uses a different engine.</p>
<p><a href="http://www.mail-archive.com/v8-users@googlegroups.com/msg00731.html" rel="nofollow">When asked about supporting JS 1.8 features</a>, the V8 team said they were trying to track the version used in Safari so pages would act the same in both browsers.</p>
http://stackoverflow.com/questions/820229/how-to-resolve-the-near-data-segment-is-bigger-than-64k-problem-on-palm-using-c/1123579#11235790Answer by Ben Combee for How to resolve the 'Near data segment is bigger than 64k' problem on Palm using CodeWarrior9?Ben Combee2009-07-14T05:28:15Z2009-07-14T05:28:15Z<p>There's no good way to solve this problem. 68K code in Palm OS can only access a small amount of static program data, as the 68K instruction set only provides a +-32K offset for addressing data. It would require a major change to the compiler to support going further, as the compiler would need to generated code to do complex pointer arithmetic, and neither CodeWarrior or prc-tools support this.</p>
<p>Here's some tips:</p>
<ul>
<li>If you have large data tables, try moving them into their own resources where you will load and lock their location at runtime. That will move them out of the data section. </li>
<li>Turn on the linker map feature and look at how your data section is being allocated and see if there are large data objects or arrays that you don't need. </li>
<li>Instead of declaring global variables, use global pointers to memory you allocate using MemGluePtrNew.</li>
</ul>
http://stackoverflow.com/questions/1023810/nsbasic-palm-4-4-tutorial/1123561#11235611Answer by Ben Combee for NSBasic/Palm 4.4 TutorialBen Combee2009-07-14T05:24:00Z2009-07-14T05:24:00Z<p>There's a pretty good book about NSBasic/Palm titled <a href="http://rads.stackoverflow.com/amzn/click/0969584466" rel="nofollow">NS Basic Programming for Palm OS</a>. That's probably the best tutorial about the core language and UI designer. It didn't have a very large print run, so used copies are still going in the $25-30 range on Amazon and half.com.</p>
http://stackoverflow.com/questions/1062131/will-the-palm-pre-mojo-sdk-grant-access-to-bluetooth-apis/1123542#11235421Answer by Ben Combee for Will the Palm Pre Mojo SDK grant access to bluetooth apis?Ben Combee2009-07-14T05:15:09Z2009-07-14T05:15:09Z<p>At the moment, there's no access to the Bluetooth stack from the webOS APIs. It's possible that future versions of the system could expose them, but there's no system service for doing things like BT file transport. Currently Bluetooht is only supported for voice, A2DP playback, and AVRCP remote controls.</p>
http://stackoverflow.com/questions/162717/using-systems-standard-edit-menu-in-a-palm-os-app0Using system's standard Edit menu in a Palm OS appBen Combee2008-10-02T14:47:58Z2009-06-21T13:22:50Z
<p>How can I use the standard Edit menu in my Palm OS application, instead of having to implement my own Cut/Copy/Paste/Keyboard handlers?</p>
http://stackoverflow.com/questions/461836/arduino-c-code-can-you-use-virtual-functions-and-exceptions/727836#7278366Answer by Ben Combee for Arduino C++ code: can you use virtual functions and exceptions?Ben Combee2009-04-07T22:23:32Z2009-04-07T22:23:32Z<p>The Arduino environment uses the AVR version of the GCC toolchain. The code is compiled as C++, so you can use classes. Virtual functions are possible; the vtables will be stored in the .data section and have the correct addresses. In fact, the Print base class uses virtual functions to adapt the various "print" methods to the different output types.</p>
<p>Exceptions are not supported because of code space reasons. The Arduino environment passes "-fno-exceptions" to the compiler command line. See <a href="http://code.google.com/p/arduino/source/browse/trunk/app/Compiler.java#518" rel="nofollow">the source</a> for verification of this.</p>
<p>Templates are supported. For example, <a href="http://sundial.org/arduino/?page%5Fid=119" rel="nofollow">this no-cost stream insertion operator technique</a> works fine using a simple template and inline operator.</p>
http://stackoverflow.com/questions/676133/fade-in-multiple-leds-with-arduino/727795#7277950Answer by Ben Combee for Fade in multiple LEDs with ArduinoBen Combee2009-04-07T22:06:55Z2009-04-07T22:06:55Z<p>If you want to throw hardware at the problem, you can hook up your LEDs to an external controller chip, like the TI TLC5940. Those let you program a brightness level per LED and handle the PWM output to the LEDs separately from the ATMega CPU in the Arduino. You only need to reprogram the TLC chip when you want the brightness level to change. There's a nice <a href="http://code.google.com/p/tlc5940arduino/" rel="nofollow">TLC library available to handle communication with the chip</a> on Google Code.</p>
http://stackoverflow.com/questions/727283/are-there-command-line-or-library-tools-for-rendering-webpages-that-use-javascrip/727782#7277820Answer by Ben Combee for Are there command line or library tools for rendering webpages that use JavaScript?Ben Combee2009-04-07T22:03:32Z2009-04-07T22:03:32Z<p>Since JavaScript can do quite a lot of manipulations to the web page's document object model (DOM), it seems like to accurately scrape the content of an arbitrary page, you'd need to not only run a JavaScript engine, you'd also need a complete and accurate DOM representation of the page. That's something you'll only get if you have a real browser engine instantiated. It is possible to use an embedded, not-displayed WebKit or Gecko engine for this, then after a suitable loading delay to allow for script execution, just dump the DOM contents in HTML form.</p>
http://stackoverflow.com/questions/727528/tools-for-coding-conventions-and-analyzing-html-css-javascript-client-side-code/727702#7277020Answer by Ben Combee for Tools for coding conventions and analyzing HTML, CSS, Javascript client side codeBen Combee2009-04-07T21:40:50Z2009-04-07T21:40:50Z<p><a href="http://code.google.com/p/js2-mode/" rel="nofollow">js2-mode for Emacs</a> will catch and highlight some common Javascript errors while you're editing your code. It's not as thorough as the external lint tools, but it's a lot more immediate in its feedback.</p>
http://stackoverflow.com/questions/280173/c-inline-functions-and-memory-use/281812#2818123Answer by Ben Combee for C Inline Functions and Memory UseBen Combee2008-11-11T18:50:39Z2009-02-24T18:32:32Z<p>There are two kinds of memory usage that inline functions will affect:</p>
<p><strong>code size</strong> — in general, inlining code will increase how much memory is used to load your program. This is because there will be multiple copies of the generated code scattered around your program. However, this isn't always true -- if your inlined function was only used once, there's little change, and if the inlined function is very small, you could get a net reduction in code size by removing the function call overhead. Also, the function may be reduced in size by the optimizer that's able to remove code that's not used in the particular inline invocation.</p>
<p><strong>stack usage</strong> — If your inlined functions have lots of local variables, then you may use more stack space. In C, the compiler usually allocates the stack space for a function once upon entry to the function. This has to be large enough to hold all the local variables that aren't stored in registers. If you call a function out-of-line, the stack for that function is used until it returns, when it's released again. If you inline the function, then that stack space will remain used for the whole life of the uber-function.</p>
<p>Inlining won't affect heap usage, as the same allocations and deallocations would occur for the inlined code as would occur for the non-inlined version.</p>
http://stackoverflow.com/questions/419441/need-palm-desktop-datebook-dat-file-format/434605#4346050Answer by Ben Combee for Need Palm Desktop datebook.dat file formatBen Combee2009-01-12T06:26:54Z2009-01-12T06:26:54Z<p>The format, IIRC, is the serialization format used by the Microsoft Foundation Classes (MFC). It's highly dependent on the actual implementation of the C++ objects that are being saved to disc. Since MFC source code comes with Visual Studio, you might be able to look at that to figure out what is happening.</p>
<p>However, with the update to the 4.1 Desktop application, the binary format did change to handle the new fields that were added. I'm not privy to those changes or if the code used the same method that the original desktop did.</p>
http://stackoverflow.com/questions/380354/the-perfect-programmable-christmas-gift/413550#4135501Answer by Ben Combee for The perfect *programmable* Christmas Gift!Ben Combee2009-01-05T15:55:41Z2009-01-05T15:55:41Z<p>Get a <a href="http://store.fundamentallogic.com/ecom/index.php?main_page=product_info&cPath=1&products_id=4" rel="nofollow">USB7 kit from Fundamental Logic</a> - it's a six-digit LED display with a microcontroller and a USB port that you can control from your PC.</p>
<p><img src="http://store.fundamentallogic.com/ecom/bmz_cache/7/7f6176d6f7f86d0f98c24f33506a7c99.image.325x198.jpg" alt="assembled USB7 kit" /></p>
http://stackoverflow.com/questions/352055/best-algorithm-to-strip-leading-and-trailing-spaces-in-c/412384#4123840Answer by Ben Combee for Best algorithm to strip leading and trailing spaces in CBen Combee2009-01-05T06:08:33Z2009-01-05T06:08:33Z<p>If you're on Linux/Windows and have the library glib linked into your program, you can use the the routine <a href="http://library.gnome.org/devel/glib/2.16/glib-String-Utility-Functions.html#g-strstrip" rel="nofollow"><code>g_strstrip()</code></a>.</p>
http://stackoverflow.com/questions/381300/how-can-i-read-an-xml-file-into-a-buffer-in-c/382282#3822820Answer by Ben Combee for How can I read an XML file into a buffer in C?Ben Combee2008-12-19T21:38:16Z2008-12-19T21:38:16Z<p>There are also a bunch of answers for a similar question at <a href="http://stackoverflow.com/questions/238603/how-can-i-get-a-files-size-in-c">http://stackoverflow.com/questions/238603/how-can-i-get-a-files-size-in-c</a></p>
http://stackoverflow.com/questions/140376/what-easter-eggs-have-you-placed-in-code/378214#37821424Answer by Ben Combee for What Easter Eggs have you placed in code?Ben Combee2008-12-18T15:39:11Z2008-12-18T15:39:11Z<p>Back when I was working on the x86 compiler/linker for CodeWarrior Professional, I stuck a couple of easter eggs into the development tools:</p>
<p>If your source code had the line "#pragma gauntlet on" in it, then the compiler would randomly say things like "CodeWarrior needs food badly" through the PC speaker when running on Windows. I recorded four different phrases inspired by the arcade game Gauntlet, converted them to low-bitrate ADPCM sound files, then embedded them as data into the compiler in a file that looked like a lookup table.</p>
<p>Also, if you have a function in your application called "__I_choose_you_Pikachu" (or something close to that), and then ran the "Disassemble" command from the IDE on the object code, you'd get an ASCII drawing of the famous Pokemon character in the output and all of the addresses in the listing from them on would be variations on the phrase "Pika Pika".</p>
<p>Finally, while working on the Palm Foleo device, I added a command to the Linux shell called "mole". When run, it would bring up a "Catch-a-Moleo" game where you threw nets on little moles that popped up out of the ground. Each mole was labeled with the name of a different team member. Alas, the device was never released, so no one got to see that outside of Palm.</p>
http://stackoverflow.com/questions/201782/can-you-use-a-trailing-comma-in-a-json-object5Can you use a trailing comma in a JSON object?Ben Combee2008-10-14T16:02:15Z2008-12-11T10:06:49Z
<p>When manually generating a JSON object or array, it's often easier to leave a trailing comma on the last item in the object or array. For example, code to output from an array of strings might look like (in a C++ like pseudocode):</p>
<pre><code>s.append("[");
for (i = 0; i < 5; ++i) {
s.appendF("\"%d\",", i);
}
s.append("]");
</code></pre>
<p>giving you a string like</p>
<pre><code> [0,1,2,3,4,5,]
</code></pre>
<p>Is this allowed?</p>
http://stackoverflow.com/questions/1761105/how-to-use-the-mg-flag-in-cc-4-4-1/1770695#1770695Comment by Ben Combee on How to use the -MG flag in cc 4.4.1?Ben Combee2009-11-20T23:25:06Z2009-11-20T23:25:06ZThe problem is that -MM is used in a first pass compilation for generating dependency... usually you then run gcc again to actually make the object file. Using -MM with -o is problematic, as you're writing that dependency info to the .o file and make thinks it's updated. But what you've got in the .o is invalid.http://stackoverflow.com/questions/1735990/using-classes-with-the-arduino/1741657#1741657Comment by Ben Combee on Using classes with the ArduinoBen Combee2009-11-18T02:24:57Z2009-11-18T02:24:57ZThe Arduino IDE does some weird preprocessing to make sure everything is forward declared; that's likely the problem with that definition.http://stackoverflow.com/questions/1486099/any-way-to-keep-curls-cookies-in-memory-and-not-on-disk/1490482#1490482Comment by Ben Combee on Any way to keep curl's cookies in memory and not on diskBen Combee2009-11-18T02:19:04Z2009-11-18T02:19:04ZI read through the libcurl source code to verify this before posting.http://stackoverflow.com/questions/419441/need-palm-desktop-datebook-dat-file-format/434605#434605Comment by Ben Combee on Need Palm Desktop datebook.dat file formatBen Combee2009-10-16T20:23:09Z2009-10-16T20:23:09ZRight, the MFC format is used only on the desktop side. Since HotSync ran as a record-level wire protocol between the device and the desktop app, there was no need for the storage formats to be the same for the two applications.http://stackoverflow.com/questions/1148818/standard-or-common-arduino-library-for-parsing-http-requests/1217804#1217804Comment by Ben Combee on Standard or common arduino library for parsing HTTP requests?Ben Combee2009-08-24T14:16:40Z2009-08-24T14:16:40ZI'm the developer of Webduino... hope it worked well for you!http://stackoverflow.com/questions/300185/google-chrome-javascript-version/300231#300231Comment by Ben Combee on Google Chrome - javascript versionBen Combee2009-07-14T13:27:14Z2009-07-14T13:27:14ZGreg, your test isn't sufficient. Chrome/V8 will run the code in the javascript1.7 section, but it didn't actually test JS 1.7 language features. Those aren't supported in Chrome/V8.http://stackoverflow.com/questions/962279/good-tutorials-for-starting-palm-webos-developmentComment by Ben Combee on Good tutorials for starting Palm WebOS development?Ben Combee2009-06-11T00:06:23Z2009-06-11T00:06:23ZThere won't really be any good material until the SDK is released and any developer NDAs in place have been lifted.http://stackoverflow.com/questions/608758/palm-os-problem-porting-a-legacy-e2-app-to-palm-txComment by Ben Combee on Palm OS - problem porting a legacy E2 app to Palm TX Ben Combee2009-04-09T04:36:45Z2009-04-09T04:36:45ZBy custom USB sync, do you mean your own Hotsync conduit or are you using your own USB protocol initiated by the application. If it's a custom solution, what host OS are you talking to?http://stackoverflow.com/questions/380354/the-perfect-programmable-christmas-gift/380561#380561Comment by Ben Combee on The perfect *programmable* Christmas Gift!Ben Combee2009-01-05T15:53:01Z2009-01-05T15:53:01ZAh Jeff... anything to avoid C programming :)http://stackoverflow.com/questions/325384/codewarrior-xml-project-files-schema/340995#340995Comment by Ben Combee on CodeWarrior xml project files schema?Ben Combee2009-01-05T15:46:42Z2009-01-05T15:46:42ZAnother detail I just remembered -- for some panels that didn't have XML code written for them, the export gives you a text-encoded blob of data without any structure.http://stackoverflow.com/questions/399003/is-the-sizeofsome-pointer-always-equal-to-four/399030#399030Comment by Ben Combee on Is the sizeof(some pointer) always equal to four?Ben Combee2008-12-30T16:40:25Z2008-12-30T16:40:25ZSorry, @ApplePieIsGood: ARM THUMB code is still 32-bit code. It's just a technique to compress the instruction size from 32-bits to 16-bits, but the address space is still the same.http://stackoverflow.com/questions/197769/when-is-javascripts-eval-not-evil/197798#197798Comment by Ben Combee on When is JavaScript's eval() not evil?Ben Combee2008-12-21T00:18:17Z2008-12-21T00:18:17ZIf your webserver isn't authenticated via HTTPS, then you could suffer some sort of man-in-the-middle attack where another host intercepts the request and sends its own data.http://stackoverflow.com/questions/376278/parameter-evaluation-order-before-a-function-calling-in-c/376288#376288Comment by Ben Combee on Parameter evaluation order before a function calling in CBen Combee2008-12-18T14:52:23Z2008-12-18T14:52:23ZIt's not really disturbing. If the order of evaluation was defined, then you would have some C/C++ compilers generating less-than-optimal code. For example, if the args are pushed on to the stack from back-to-front, then evaluating them front-to-back means more temp storage to get the call right.http://stackoverflow.com/questions/328936/getting-a-unique-id-from-a-unix-like-system/328997#328997Comment by Ben Combee on Getting a unique id from a unix-like systemBen Combee2008-12-05T20:53:39Z2008-12-05T20:53:39ZWhat defines a host? If I replace the hard drive, is the the same host? If I replace the CPU, is it the same host? What about upgrading the BIOS or reinstalling the OS? There's no unique ID that's on all systems that can't be affected by replacing equipment.http://stackoverflow.com/questions/144735/best-way-to-get-started-with-programming-other-things-than-your-computer/144748#144748Comment by Ben Combee on Best way to get started with programming other things than your computer?Ben Combee2008-12-04T15:39:17Z2008-12-04T15:39:17ZIf you're in the New York City area, NYC Resistor does occasional classes on Arduino programming. I took one in November and it was a great introduction to the board, its programming environment, and how to control devices.