**** BEGIN LOGGING AT Sat May 12 02:59:58 2012 May 12 05:17:44 thanks May 12 05:26:25 awh, I thought dtzWill had made vba work with the pre3 :( May 12 09:37:42 Hello May 12 09:37:46 quick question May 12 09:37:57 Is there any version of the Pre 3 that would work on softbank? May 12 09:38:05 or pre 2 for that matter May 12 15:48:44 * DougReeder waves hello May 12 15:49:34 I've been googling for a patch to get Hulu working, and I'm confused. May 12 15:51:00 The page at http://www.webos-internals.org/wiki/Hulu_Fix says it's in Preware, but I can't find it there. Is it in an apoha feed? May 12 15:56:09 http://forums.webosnation.com/members/524467.html posted a patch onwebos nation - is that the current best method? May 12 22:32:42 anyone know if there's some way to increase the amount of memory provided to a node service? May 12 22:48:25 EricBlade sorta kinda. I know there is a way to do it globally, but not per app. Each node process is limited to something like 22MB or somesuch. May 12 22:48:57 halfhalo: ugh May 12 22:49:52 although depending on why you are running out of memory there are ways to deal with it May 12 22:51:11 well my guess is that multiple calls to XML2JS module are likely the culprit May 12 22:51:39 xml2js isn't streaming, is it? May 12 22:52:21 and you could always make a childprocess per xml2js request to give each its own memory amount. May 12 22:52:57 beating up the internals of other modules isn't high on my list of things i enjoy :| May 12 22:54:30 eh, if xml2js is called in a callback, then its pretty simple to just hijack that and stick a childprocess inbetween May 12 22:54:55 you're unfortunately, over my head now May 12 22:55:30 looks like xml2js is used to convert a giant xml object into a json object May 12 22:55:38 yup May 12 22:55:45 I like it, its a nice module May 12 22:55:54 yeah looks handy May 12 22:55:54 but it does it in one giant gob May 12 22:56:11 sounds like it would be expensive May 12 22:56:25 yes, but its simple May 12 22:56:32 and for most things, simple>expensive May 12 22:57:28 if i pass a google voice response page with a couple hundred messages on the page into this function, which looks like it ultimately is just running a xml2js parser on it, then i get a big ol' OOM May 12 22:58:57 you could try to swap xml2js for a streaming xml parser, but at some point the resulting json will oom you by itself May 12 22:59:59 well raw data wise, a couple hundred sms messages isn't probably that big a deal, but who knows about the internals on keeping track of that sort of a thing May 12 23:03:31 I would try to spawn a child process, run the stuff there, then hand it back to your service, since you can maybe set a max mem size for the child process via a command line arg for node May 12 23:08:51 hmm. well, at this time, i will just get unread messages, and hope that no one needs to exceed whatever bounds is blowing up :| **** ENDING LOGGING AT Sun May 13 02:59:59 2012