IRC log for #webos-internals on 20090913

00:00.27rwhitbyI reckon I should be able to stat the file, then allocate the string to the right size, then read the file into it.
00:00.58rwhitbythe problem is the file is read line by line.
00:01.31rwhitbyhttp://git.webos-internals.org/?p=services/ipkgservice.git;a=blob;f=org/webosinternals/ipkgservice/IPKGService.java
00:01.52rwhitbylines 109 to 129
00:02.04rwhitbyand 131 to 156
00:02.38rwhitbyI need help from a Java guru on how to reduce the memory usage of those two functions.
00:09.51raebhow big, generally, are the files you are reading
00:11.25raebim assuming they are plain text files, not too big
00:12.55raebif so, get file size, and load the entire file into string, and then do search n replace for line delim maybe
00:13.11raebthough stringbuilder is said to be memory concious
00:13.15raebcoded so, anyway
00:13.22raebextends string buffer instead of allocating a new one
00:13.23raebetc
00:13.46raebbut if you know the size of the data your'e loading, why not allocate all at once
00:14.07rwhitbyraeb: largest is 382K
00:14.39rwhitbyraeb: I'm a Java newbie, so a patch would be very welcome from a Java guru
00:14.42*** join/#webos-internals medicnancy (n=IceChat7@cpe-24-193-142-41.nyc.res.rr.com)
00:15.31rwhitbyand we can tell how big it is (I assume) by stat'ing the file (but I have not done that in Java before - I can do it easily in C, Perl, Python, ... ;-)
00:16.13medicnancyanyone on the channel know much about the depot functions?
00:16.54oilknows that it sucks
00:17.31medicnancyevery app I've looked at, including the news app in the book uses methods that are not documente
00:18.21Eguymedicnancy: welcome to palm's documentation
00:18.26Eguynothing is in the documents
00:18.28medicnancyI'm just about ready to use the HTML 5 stuff. seems like more work then I want to do
00:19.00oildepot != html5
00:19.42medicnancyI know
00:19.48raebFile f=new File(file); FileReader fr=new FileReader(f); char[] c = new char[(int)f.length()]; fr.read(c,0,(int)f.length());
00:20.10raebc.toString() = your file, with line breaks still innit
00:21.18raebdo a replace on it for your delim
00:21.22raebeither regexp
00:21.24raebor whatever
00:21.57rwhitbyraeb: oh, in readList I need to count the Packages: lines
00:21.57*** join/#webos-internals PreHero (n=chatzill@ip68-97-117-139.ok.ok.cox.net)
00:22.17rwhitbythat will actually be the big one, the non-list files are small
00:22.47raebreturn new String(c).replace('\n', (char)delim);
00:23.05oilrwhitby: i dont think im actually using that count you send
00:23.09raebunless delim is more than 1 char
00:23.54rwhitbyraeb: actually, in this case the delim will be \n for the lists files, so we can leave as-is
00:24.03raebsweet, return new String(c);
00:24.44rwhitbyok, so that allocates twice the size of the file temporarily, and then char[] c goes out of scope and gets collected some time later.
00:25.02rwhitbyany way to do it with only allocating the size of the file max?
00:25.27raebnew char[...] allocates memory for the file, fr.read shoudl read it directly into that memory
00:25.46rwhitbyright, but you do another new in the return
00:25.53raebreturn new String(C) may reallocate, so instead use return (string) c;
00:26.15raebyeah, cast to string should be ok, i'd think
00:26.19raebi'm not a java guru hehe
00:26.43rwhitbyI also wonder whether it will be better for the service to allocate on each call, or just keep a single global allocation of the largest file and reuse that for each call to readList
00:26.45oilwonders if the service should simply be rewritten in c now that there is headers
00:27.48rwhitbyoil: I haven't seen a working example of an application using a C service with subscriptions yet.
00:28.04rwhitbybut I'm sure it's not far off.
00:28.14raebyeah, maybe... if you release your memory pointers java mem manager shoujdl clean it up
00:28.15oilwell i could whip up an app for puffs battery service real fast
00:28.19oilif you just need to see it
00:28.33raebbut to avoid garbage collection, you can allocate your list buffer at a higher scope and reuse it
00:29.18*** join/#webos-internals joesmith (n=joesmith@ip68-0-127-22.tu.ok.cox.net)
00:29.48joesmithhey yall
00:30.43zsocpeers at joesmith
00:30.45oilhey
00:31.33joesmithwhat is the name of the development chat room, I forgot :D
00:32.14rwhitbyjoesmith: this one, and #webos
00:32.27joesmithohh its just webos
00:32.36joesmithI feel silly
00:32.45oilyou should
00:32.50oilxD
00:33.16joesmithhmm my question might be ok in here, where are app cookies stored?
00:33.23zsocdefinitely, very silly
00:33.31joesmith;(
00:33.44oilon the pre
00:33.46zsocmore sill
00:33.48zsocy
00:33.52joesmithlol
00:34.05oilin a folder
00:34.18joesmithdo you know what folder?
00:34.25oilits probably named cookies
00:34.31oilbut no, i dont know
00:34.44zsoci'd imagine the one you store them in
00:35.29joesmithright..... well I was under the impression the app cookies were all in a central location
00:36.07*** join/#webos-internals gregoiregentil (n=gregoire@adsl-71-135-123-10.dsl.pltn13.pacbell.net)
00:36.26zsocfind cookies doesn't get me anywhere, but i'm not terribly familiar with the find command
00:38.16*** join/#webos-internals nebula1 (n=nebula@c-76-119-208-54.hsd1.ma.comcast.net)
00:38.30zsocheh, i found his answer, good thing he's patient.
00:46.30rwhitbyoil: I thought of another alternative: You could subscribe to rawlist, and get back an initial package with total file size, then individual messages of about 1K or so each (containing up to that size of complete Package entries), and then a final flag in the last packet.  Then you could do the progress bar according to the size of data received, and I can only need to allocate 1K at a time.
00:46.51rwhitbys/initial package/initia packet/
00:47.24rwhitbysave sending 385K across dbus in one hit ...
00:47.35oilwe think thats the problem?
00:49.45*** join/#webos-internals edektor (n=edektor@173-129-59-244.pools.spcsdns.net)
00:51.28zsocthe problem, it's sending 385k across dbus in one hit.
00:51.58*** join/#webos-internals PreGame (n=PreGame@unaffiliated/pregame)
00:51.58*** mode/#webos-internals [+v PreGame] by ChanServ
00:53.47gregoiregentilHello, I'm Gregoire Gentil, the founder of Always Innnovating, the guy behind the Touch Book: http://www.alwaysinnovating.com. This device run an OMAP3530, a touchscreen, an accelerometer, a keyboard, very similar to the Pre. I would like to try to run webOS on it. I have extracted a July-2009 webOS rootfs to the SD second partition and used our kernel http://www.alwaysinnovating.com/wiki/index.php/Kernel. The s
00:53.49*** join/#webos-internals raeb_ (n=quassel@c-67-176-112-120.hsd1.co.comcast.net)
00:53.56*** part/#webos-internals nebula1 (n=nebula@c-76-119-208-54.hsd1.ma.comcast.net)
00:54.25oilrwhitby: if we think thats the problem, make the change to the service, and ill change the app
00:54.29oilwe can see if it fixes anything
00:54.45*** join/#webos-internals michael_ (n=chatzill@cpe-65-27-137-22.cinci.res.rr.com)
00:55.42msbullockhello all
00:55.49zsocgregoiregentil, are you a telemarketer?
00:56.21gregoiregentilzsoc: No!
00:58.03zsocgregoiregentil, oh.. ok. that message seemed particularly scripted is all
00:58.13gregoiregentilzsoc: Not sure to understand your question. The Touch Book is a cool device and a serious effort based on OMAP3530 (Beagleboard-like). We have optimized our own OS (starting from OE/Angstrom) and we are now investigating some other OS including Android and WebOS
00:58.53gregoiregentilI'm not spaming here... My objective is to run WebOS on a device which is not a Palm Pre. A cool challenge...
00:59.16*** join/#webos-internals Rob____ (n=chatzill@c-76-115-227-233.hsd1.or.comcast.net)
00:59.25zsocI agree, that is a cool challenge indeed.
01:00.09gregoiregentilthe funny part is that our device + our kernel + the WebOS rootfs works! I mean, I get something like shown here: http://www.alwaysinnovating.com/download/webos.jpg
01:00.21PreHeroI love webos, i think it would be a pretty good system for netbook type devices.  what parts of it are copyrighted?
01:00.37gregoiregentilPreHero: you mean the Touch Book?
01:00.41gregoiregentilwe are quite open source
01:00.46oilwebos isnt
01:00.55gregoiregentilGo to our wiki, you will see that we are publishing as much as we can
01:01.08PreHeroI meant webos
01:01.19PreHeroI think its great that your product is so open!
01:01.22gregoiregentilI don't intend to do anything commercial with WebOS. Right now, I'm just taking a look and want to do a proof of concept. Nothing more
01:01.40msbullockKind of an odd ball question, but I was talking today to someone that said them and their son and his friend (both with developer Android handsets) set up an SSL like Certificate encrypting their SMS messaging to one another on their Android phones. I've tried searching the web for information on this but came up blank. 1.) Could this be possible? 2.) If yes, would it be possible to do on...
01:01.42msbullock...the Pre with it's Certificate management?
01:02.25oilmsbullock: maybe?
01:02.45zsocer. doesn't pidgin support some type of encryption?
01:03.34gregoiregentilSo, if anybody has any clue about the video on the Palm Pre / WebOS, I'm interested to discuss. We are using DSS2 on our system and as I see something on my screen, I guess that WebOS is using something similar.
01:03.44PreHerogregoiregentil, how does your chip compare to the ones in the pre?  are they able to support the openGL standards?
01:03.53gregoiregentilExactly, the same...
01:04.02gregoiregentilWe have some 3D OpenGL games too
01:04.17gregoiregentilwe have also the same DSP video chip like on the Pre
01:04.32gregoiregentilHardware, it's very close.
01:04.53*** join/#webos-internals helofrom_ (n=helofrom@CPE0018f85a0c72-CM00407b8799dc.cpe.net.cable.rogers.com)
01:05.15PreHerohmm, the idea is that if its able to run on the one system, it should be able to port with a little elbow greasy, in theory
01:06.36helofrom_The virtual keyboard doesn't display the key's actual size the all get sized the same causing big layout problems
01:07.34zsocUnfortunately webOS is not opensource, and therefore i imagine would be very difficult to port.
01:09.12*** join/#webos-internals PreGame (n=PreGame@unaffiliated/pregame)
01:09.12*** mode/#webos-internals [+v PreGame] by ChanServ
01:09.26gregoiregentilI'm not trying to port anything. More to glue different pieces for a proof of concept
01:09.29rwhitbyoil: let's see whether splitting into chunks slows anything down
01:09.37Decimation_do i hear talk of webOS on a PC?
01:09.46rwhitbyoil: we can always adjust the chunk size to optimise speed vs space
01:09.49zsocDecimation_, adults are talking now, shush
01:10.00Decimation_zsoc: lmao, cut it out.
01:10.05Eguyouch
01:10.05gregoiregentilDecimation_: Correct.
01:10.14Eguythat was pretty harsh zsoc
01:10.22Eguynot even I would of said such a thing
01:10.57rwhitbygregoiregentil: you know that you can't redistribute webOS, right?
01:11.17rwhitbyit's proprietary Palm code, not open source.
01:11.45zsocIs that the universal measurment of harshness? Would Eguy say it? -> Not so harsh. Would Eguy not even say it? -> Harsh
01:11.49gregoiregentilrwhitby: yes. it's what I wrote above in this chat room. No commercial effort here.
01:12.04Eguyyes zsoc
01:12.20gregoiregentilrwhitby: I'm just trying for fun to run this cool WebOS on a different hardware. Proof of concept and learning experience. Nothing more.
01:12.34rwhitbygregoiregentil: no probs, just making sure :-)
01:13.06gregoiregentilrwhitby: it's a good question and it's now clear for the records in case a Palm employee reads that...
01:13.19oilim not even sure how webos would feel on a netbookk/tablet
01:13.36rwhitbygregoiregentil: there seem to be lots of people (not you) who seem to think that webOS is open source, and the one thing that Palm has specifically come into this channel to warn us about is redistributing copyright files.
01:13.42Eguyplease state your intensions for the record Mr. gregoiregentil :P
01:13.53Decimation_zsoc: cut the age jokes please ;)
01:13.55Eguyoil: I would reckon a bit small
01:13.59zsocit might even be more interesting to rebuild something from the ground up, touch screen linux overlay wise
01:14.08oili mean, cards are nice and all on a 3 inch screen
01:14.22oilbut wouldn't i want to be able to have more the one up for interaction on a larger screen?
01:14.31oillike a browser window AND email
01:14.38oilinstead of having to constantly switch back and forth?
01:14.46oilseems like you would just use a full os on such a device
01:14.56Rob____foleo redux
01:15.33oilrwhitby: feel free to make the change, and ill do hte mojo
01:16.17gregoiregentilWell, that's an interesting discussion, and I'm sure that the Palm folks have made a lot of thinking about this. I was hoping to have more technical information and ideas to move in my funny/non-commercial/proof-of-concept experience.
01:16.50*** join/#webos-internals helofromseattle (n=helofrom@CPE0018f85a0c72-CM00407b8799dc.cpe.net.cable.rogers.com)
01:18.07*** join/#webos-internals daybreak1199 (n=glowstic@99.171.191.144)
01:19.29rwhitbygregoiregentil: sure, this is a good place to have that discussion on that basis.
01:19.49rwhitbyoil: ok, but not today, maybe in 9 or 10 hours time.
01:20.02gregoiregentilrwhitby: thanks.
01:20.09oilwell thats only 2am my time xD
01:22.15zsocand 7 over here lol.
01:23.22helofromseattleThe virtual keyboard on my pre doesn't display the keys properly
01:23.29helofromseattleHelp please
01:23.55PuffTheMagicrwhitby: re: ipkgservice... it reallly annoying me that everytime it installs it changes the fs back to ro... i think it should store the state before an install/remove and then restore the state afterwards
01:23.57oildoesnt know anything about the keyboard
01:24.31rwhitbyPuffTheMagic: sure
01:25.03PuffTheMagiccool, thanks
01:26.06rwhitbyPuffTheMagic: feel free to make the change if you get to it before me - I won't be touching it for about 5 hours, then I'll be working on this memory problem.
01:26.29helofromseattleCan anyone help me with my keyboard prob
01:26.50PuffTheMagicoh im in no rush... i just did a huge overhaul to my battery service to support monitoring stuff besides the battery
01:27.18rwhitbyPuffTheMagic: cool. no worries.
01:27.21PuffTheMagicrwhitby: did you have any interest in doing ipkgservice over in C?
01:27.53rwhitbyPuffTheMagic: yeah, I think it should be that eventually.
01:28.52PuffTheMagicwell now that i know enough about to do subscriptions in C it shouldnt be too hard to make it in C
01:29.10PuffTheMagicdidnt you say there is libipkg
01:29.42rwhitbyPuffTheMagic: I'll be watching to see how well the battery app and service work together, including how easy your installation postinst and prerm are.
01:30.29rwhitbyyes, there is a libipkg I think.
01:30.42rwhitbybbiab
01:31.26Decimation_is disappointed he can so quickly interprit what bbiab means... what has the internet done to me.
01:31.46PuffTheMagiclol
01:33.17Eguylol
01:38.29zsocremembers the day he figured out what bbiab meant
01:39.39Decimation_sadly can't remember a time when he didn't :/
01:44.54PreHerodoes anyone know offhand where to find copyrights for a particular game?
01:45.52PreHerothe copany that created the game in question (Hexxagon) was Argo Games, who no longer exist
01:49.14*** join/#webos-internals doodums (n=thadood@c-75-66-217-39.hsd1.tn.comcast.net)
01:51.52TemplarianPreHero: wikipedia sometimes says.
01:55.56Rick_homePreHero:   frequently the idea of "created" is fuzzy    consider "reversi" vs "othello"
01:56.14Rick_homethe latter term is a trade mark, but the GAME, invented in 1890, went out of patent a long time ago.
01:57.02Rick_homeAlso, recognize that there is a difference between COPYRIGHT and PATENT.  you can not copyright a games game-play-mechanism.  You can COPYRIGHT the board, but the game itself, the process of moving pieces or whatever, can only be patented, and that only lasts 17 years.
02:00.40TemplarianPeople tend to get in trouble when they say "The webOS version of ____"
02:01.10DecimationTemplarian: palm says thats what you are supposed to do..
02:02.17rwhitbyok, who's ready to do a sanity test on a new ipkgservice ?
02:02.41Rick_home::Rick Hides his head under the desk and screams "NO NO  NOT TONIGHT NO!!!"  :-)
02:03.31rwhitbyhttp://ipkg.preware.org/feeds/testing/all/org.webosinternals.ipkgservice_0.8.7_all.ipk
02:03.49rwhitbyI need someone to tell me it works fine with current Preware version before I release it publicly.
02:05.35Decimationrwhitby: whats it do? lol
02:05.59rwhitbythis one does the reduction in memory reallocations as per the discussion with raeb earlier.
02:06.37Decimationim installing it along with the current preware on a stock phone.
02:06.42rwhitbyraeb_: I had to do the new String at the end - for some reason fr.read returned 40 less bytes than what f.length said.
02:07.17Decimationrwhitby: works fine..
02:08.31TemplarianDecimation: Were exactly do they say that?
02:08.55PreHeroso if i want to recreate the experience of hexxagon on the pre, what are my options?
02:09.21DecimationTemplarian: idk, some guy on precentral asked about copyright name issues
02:09.25TemplarianPreHero: don't say hexxagon. Just rename it and make the game.
02:09.34Decimationand some posted with a link to some palm forum post or something
02:09.38Decimationand it said that.
02:11.07PreHerothanks...ive never written for webos, so i was going to try the instructions for porting over javascript games on the site
02:12.41rwhitbyipkgservice 0.8.7 is now in the public feeds.
02:12.47*** join/#webos-internals ameng|home (n=fm@221.220.209.136)
02:13.16Decimationis there a webOS widget that allows a developer to make a list with checkboxes next to em?
02:13.22Decimationlike, next to each entry in the list.
02:19.31*** join/#webos-internals Max__ (n=Max@72.243.164.154)
02:26.44destinalDecimation: re: copyright, it honestly doesn't matter what palm says
02:27.52destinalDecimation: and as Rick_home mentioned, the only real issues with games if you're not copying code or images are only trademark (on the name) and patent (on the rules)
02:28.13Rick_homeDecimation:   yes,  it's called a LIST
02:28.19Rick_homea list can have ANYTHING in it
02:28.36*** join/#webos-internals theo (n=theo@cpe-65-189-49-223.cinci.res.rr.com)
02:28.54DecimationRick_home: i was saying something along the lines for an app that allows you to check a bunch of contacts, for mass text messaging
02:29.08Decimationor possibily a change to the contact selection scene in the messaging app
02:29.19Decimationwould this have that use.
02:31.34theowhats going on tonight??
02:33.59rwhitbytheo: new version of ipkgservice which hopefully doesn't trigger oom's
02:34.39theoawesome, havent gone throught the logs yet, have you started alpha testing yet
02:34.59theonow going through the logs to see what he missed
02:35.40rwhitbytheo: it's in the public feeds.
02:37.10theorwhitby: 0.8.7 correct??
02:37.14rwhitbyyep
02:37.33theochecking it out
02:37.43rwhitbyhttp://forums.precentral.net/showthread.php?p=1889721
02:39.34theonever had that problem, connections never reset, however every so often i would need to restart luna to restart the package manager
02:42.47theoseems like everything works well
02:43.10oilhopes so
02:43.22oilgets back to work on using flags
02:44.24rwhitbyoil: yeah, I'm hoping this is a quick fix for those problems, and we can do the longer term improvement later.
02:44.31rwhitbybbl
02:44.34Templarian(just installed it and everything appears to work good, but never had those problems described).
02:46.10*** mode/#webos-internals [+v bpadalino] by ChanServ
02:51.25theocrossing his fingers hoping to see ohio state win tonight
02:58.06theowonders if oil ever won that checkers game
03:02.18*** join/#webos-internals kesne (n=Kesne@pool-173-50-235-167.ptldor.fios.verizon.net)
03:02.54kesneugh
03:03.09kesneI'm the only one not drunk at a party
03:03.11ashi__colohmm since the update, i'm having trouble getting preware to load.
03:03.27theothats never fun
03:03.31kesneYeah
03:03.33kesneWell
03:03.42kesneIt'd be bad if I was drunk
03:04.00theoonly if you remember
03:04.06kesneNah
03:04.08kesneI'm 15
03:04.17theoyes then that would be bad...lol
03:04.24kesnehaha
03:05.00oilget off the computer and go get drunk
03:05.01ashi__coloyay, loaded on 5th try.
03:05.10*** join/#webos-internals heisenman (n=heisenma@adsl-76-254-33-188.dsl.pltn13.sbcglobal.net)
03:06.04oilgets another jack and coke, brb
03:06.14theolol
03:06.40*** join/#webos-internals MrNfector (n=mrnfecto@ip68-105-113-134.sd.sd.cox.net)
03:06.55Rick_homeI hate being at a party full of drunks
03:06.58Rick_home:-(
03:07.00Rick_homesorry for you
03:08.17kesneHaha
03:08.19kesneIt sucks
03:08.32kesneAlright
03:08.34kesnegot to go
03:10.38PreHerogot the new package, everything seems to be running better for me...ive had the problems with loading.  ive started up 10 times so far, it works everytime vs about a 60-40 split before
03:10.57PreHerosorry, talking about the preware package manager
03:11.24bpadalinoevery other time i run preware, the ipkg manager crashes my jvm
03:11.28bpadalinoit's kind of interesting
03:11.34bpadalinoalways an out of heap memory crash
03:11.37PreHerothe new or old?
03:11.50bpadalinonot sure .. 0.8.5 ?
03:11.53bpadalinoso probably old
03:12.03MrNfectorwebOS Quick Install is refusing to detect my Pre, so I haven't tried the new package manager yet.
03:12.04PreHeroyep, go get the 8.7
03:12.35PreHerolol, that sucks...make sure you are in dev mode
03:13.18MrNfectorDur, that would likely be the issue, lol. You have to be in dev mode for quick install to work?
03:13.26PreHeroyep
03:13.53MrNfectorI hate having to reboot it so often, but ok.
03:14.48PreHeroyeah, thats my only complaint lol...i use preware as often as possible for that very reason, that and the fact that its so easy to use!
03:15.00MrNfectornods
03:24.49DecimationMrNfector: you know, there is no need to take your phone out of dev mode ever.. lol
03:25.34MrNfectorHrm, I thought it presented a security issue?
03:26.01PreHerothats also what i hear...dev mode opens up all the ports on your phone correct?
03:26.19Decimationlol, there is no "real" security issue.
03:26.25MrNfectorThat was my understanding.
03:26.48Decimationokay, ports are open.
03:26.54Decimationexplain to me what is gonna happen.
03:27.07oilidk check out that thread on pc
03:27.19oilhes super paranoid someone is gonna hack his pre
03:27.38*** join/#webos-internals PreGame (n=PreGame@unaffiliated/pregame)
03:27.38*** mode/#webos-internals [+v PreGame] by ChanServ
03:28.25MrNfectorWell, it is basically just a lowend linux computer you can stick in your pocket. It could happen. =p
03:28.50*** join/#webos-internals PreHero_ (n=chatzill@ip68-97-117-139.ok.ok.cox.net)
03:30.31MrNfectorI'm not that concerned, but there have been vulns regarding phones before, so it's not something I'd just blow off.
03:31.32oillol
03:33.13PreHero_oil, you sayin that you leave your phone in dev mode?
03:33.29*** join/#webos-internals Zuchmir2 (n=Zuchmir-@ool-18bd3bfc.dyn.optonline.net)
03:33.29oilyeah
03:33.30theomines always in dev mode also
03:33.37oilrarely a day goes by its not hooked up to my computer being used in said devmode
03:33.38oilyou know
03:33.40oilto develops
03:33.46oildevelope
03:33.49oilshit
03:34.10oiltakes another drink of jack and coke
03:34.11PreHero_hmm, swear i heard something about otherwise...maybe from the tooting instructions is what im thinking
03:34.16theojust waiting for someone to figure out his evdo ip so they can send him a virus
03:34.36theolol.... tooting
03:34.47PreHero_haha
03:35.11PreHero_looks like your not the only one doing bicep curls
03:35.20theobelieves the word rooting should be replaced with tooting
03:35.49PreHero_just kidding, ive just been up for too many hours to not check what im typing lol
03:44.28*** join/#webos-internals PreGame (n=PreGame@unaffiliated/pregame)
03:44.28*** mode/#webos-internals [+v PreGame] by ChanServ
03:52.39*** join/#webos-internals PreHero (n=chatzill@68.97.117.139)
03:53.30*** join/#webos-internals kesne_ (n=Kesne@pool-173-50-235-167.ptldor.fios.verizon.net)
03:54.21geistsends a virus to everyones evdo ip address
03:54.39geistdownloads a script to your /tmp
03:55.20oilputs some funny shit in there for geist to see
03:55.28PreHerohaha
03:55.30theolol
03:57.11oillike that "between lines 26 and 27" image
03:59.25bpadalinogeist, hacker
03:59.48geistaww yeah
04:00.04bpadalinohow goes the weekend, geist ?
04:00.13geistnot too bad
04:00.22geistjust wqandered up to the city to poke around
04:00.30geistsitting at a coffee shop now, Ritual
04:00.47Templariangeist: what city?
04:00.49bpadalinoooh, did you check out the clover coffee machine there ?
04:00.54geistyeah, i
04:01.02geistyeah im sitting about 3 feet from it now
04:01.06geistjust inside the door to the left
04:01.26geistjust reached over and touched it
04:01.31bpadalinoooohh, fancy
04:01.47geistthough ive visited my buddies at android, and they have one too at google
04:02.00geistthing with the clovers is its all in the settings
04:02.07geistyou can still make bad cups of coffee with it
04:02.19bpadalinoyeah - i had thought about making one myself.. it doesn't seem like it would be that difficult
04:03.47bpadalinohow do your buddies like it over at google ?
04:03.57geisti think theyre just as stressed as we are
04:04.10geistno doubt its a nice place to work, amenity wise
04:04.20geistbut ive seen the android office many times, its a packed mess
04:04.26geistthey have no space
04:04.54geistbut i have a party to go to tomorrow with the dalvik guy. hes a buddy of mine from the danger days
04:05.03geistill ask him hows it going nowadays
04:05.13bpadalinooh awesome - those presentations were very interesting ..
04:05.28geistyep. a lot of android is a continuation of danger really
04:05.39geistthe bqasic strategy is pretty much the same, a lot of the same key players
04:05.49bpadalinocool ideas when it came to the dalvik stuff
04:06.04geistyep, it was a lot of stuff we came up with when at danger, but didnt get a chance to do
04:06.14geistso a lot of it didnt come out of a vacuum
04:06.20geistreal hard experience led to it
04:06.35bpadalinoi'm pretty happy google has the cash to do as much as it does
04:06.45bpadalinoand let people do what they want as well
04:08.34bpadalinowere you able to do the faster file transfers for novacom ?
04:10.57geisthmm?
04:11.20geistwhat do ou mean?
04:11.42bpadalinoi thought you were going to try sending more windows and be less send wait for ack, send next packet, etc ..
04:11.57geistoh yeah
04:12.08geistwell, for better or worse i dont really work on novacom anymore
04:12.17geistwe actually just hired a guy a few weeks ago to deal wityh it full time
04:12.22geistso ive given him the brain dump
04:12.42geisttheres at least one big rewrite that needs to happen on the device side to simplify it
04:12.42bpadalinowow, cool
04:12.52geistand theres a lot more emphasis that we need to make on the windows tools
04:12.55geistsince it clearly stinks
04:12.59bpadalinoindeed
04:13.16geistbtw, i put the source to the novaterm for windows back up
04:13.41bpadalinocool - thanks
04:13.51geistso yeah, its a mixed bag. id like to have finished off a lot of novacom stuff, but realistically im more useful in other areas
04:14.03bpadalinoso are you back to kernel work ?
04:14.07geistyeah
04:14.17geistim much more useful to the company taking things ferom zero to mostly working
04:14.24geistand then handing it off
04:14.30geistsuch as bootie, novacom, etc
04:14.36bpadalinoso bringing up new boards, architectures, etc ?
04:15.06geisttheoretically
04:15.15bpadalinonice
04:15.21geistwell, its not a real secret that we have more stuff to do
04:15.26bpadalinoabsolutely
04:15.36oillol
04:15.38geistclearly i cant tello you about future stuff, but we have more things coming, obviously
04:16.13bpadalinoobviously .. as an employee, do you get a good clear direction from management ?
04:16.22destinalI don't think anyone believes that pre and pixi are the only devices webos will support (or even that the current architecture can't use serious innovations from time to time)
04:16.22geistyep
04:16.26bpadalinothat's great
04:16.35geistyeah, cdm keeps me in the loop
04:16.40bpadalinovery awesome
04:16.56bpadalinoi hate being a cog in the system
04:17.14geistpalm is still small enough to know whats going on mostly
04:17.22bpadalinohow many meployees ?
04:17.24bpadalinoemployees rather
04:17.35geist900 or so i think
04:17.42bpadalinothat is pretty good
04:17.48geistbut the kernel team at least has to know pretty much everything that happens
04:17.55geistwe tend to be the first that get exposed to anything new
04:17.56oillol
04:17.58oilyeah
04:18.04bpadalinoindeed
04:18.12oilyou would hope the kernel isn't the last thing on the list
04:18.12oillol
04:18.15geistright
04:19.21geisti also tend to be the default guy to go visit the factory when in various stages of device building
04:19.23bpadalinois palm large enough to ask things of companies like TI or Samsung for their processors ... to add better support ?
04:19.25geisti went to china 3 or 4 times for pre
04:19.38bpadalinooh, i didn't realize you were into the manufacturing aspect too
04:19.47bpadalinodo you have a group of guys who do the layout for you guys too ?
04:19.58geistsort of. being that i do bootie, or at leas tknow it better than anyoine else
04:20.05geistit has a mfg aspect, since its the first thign that runs
04:20.25bpadalinodid you write the factory test as well?
04:20.29geistso when in the very initial stages of anything, it makes sense to have a bootloader/kernel guy/gal there to debug anything if it happens
04:20.32geistno, thankfully i didn
04:20.34geistdidnt
04:20.52geisti did diagnostics in the past, and it sucked
04:20.57bpadalinoheh
04:21.02geistbut since it wrote the bootloader for iphone as well, i had a similar role there
04:21.17bpadalinowent to china a few times for the iphone too ?
04:21.23geisti have the dubious honor of booting the very first iphone, hot off the assembly line
04:21.33oilnice
04:21.37geistwe had to fix a couple of voltage regulators, but i booted the first proto
04:21.46bpadalinocongrats
04:21.53geistyeah, went to china for the iphone
04:21.57TemplarianNice.
04:22.07bpadalinoi never see any boards until they've been thoroughly smoke tested and JTAG'd
04:22.08geistits weird too, since apple and palm tend to stay at the same hotel
04:22.19geistyou go downstairs for breakfast and hook up with your old apple buddies
04:22.20PreHerowhat is the reason for the difference in boot times for the pre vs the iphone?  i understand the version differences and time spent on the process
04:22.27Templarian(my bosses son is the engineer for the Chumby device he's always over in china for that kind of stuff).
04:22.34geist'hey, hwat are you doing here?' 'oh, just visiting.. hehe'
04:23.30geistPreHero: completely different universe
04:23.34geistapples and oranges
04:23.39bpadalinooh, before i forget, chrisa requests old omap boards of something that you're hoarding .. and requests an oscope too ;)
04:23.51geistbut i know the bootloader on both runs in about the same amount of time
04:24.09geistthey both take a half second or so to boot, and about a second to load the kernel, and hand off
04:24.21geistso its in the 1-2 second range from my point of view
04:24.28bpadalinoyeah - you guys get into linux pretty quickly ... it's nice
04:25.22geistyep, most of the time spent is just phisically reading the couple MB off the flash
04:25.30geistwhich takes in the 500ms range
04:26.27geistcould optimize it but itd involve running the sdio part in dma mode, whic would require a lot more code, whiich would make the bootloader too large (64k size limit)
04:26.39geistand then itd only get back a few hundred ms
04:26.47geistwhich isnt really worth it in the grand scheme of things
04:26.51bpadalinoindeed
04:27.36PreHerothanks
04:27.47geistalso, bootie runs the cpu at like 128mhz, to keep the power low
04:27.53geistwhich adds a few hundred ms too
04:28.15*** join/#webos-internals nebula1 (n=nebula@c-76-119-208-54.hsd1.ma.comcast.net)
04:28.37bpadalinoessentially no perceived change in the grand scheme of things
04:28.46geistright
04:29.34bpadalinoespecially when lunasysmgr takes quite a while to load up .. and java as well
04:29.46geistyep
04:30.42DraXmmmmm ritual coffee..
04:30.52bpadalinoare you active on the lkml or just take what you're given ?
04:31.02lmorchardI liked Blue Bottle better :)
04:31.11DraXi like blue bottle better as well
04:31.16DraXbut ritual is still good. :)
04:31.21lmorchardbut they're both pretty awesome
04:31.22lmorchardyesh
04:31.35TemplarianI can't wait till they get to the point where they can just work on optimizations and start recoding some of that startup stuff.
04:31.59geistbpadalino: trying to be more proactive about giving back
04:32.06geistbut to be honest our kernel for pre is a mess
04:32.12PreHerois that what the bulk of the time is during a reset? the lunasysmgr and java? the time waiting during the boot images going back and forth?
04:32.18geistits based on essentially a rogue fork of omap code from ti
04:32.24geistwhich isnt really anything like the mainline
04:32.29geistso theres little to give back
04:32.40bpadalinoprehero, yes
04:33.03geistPreHero: yeah, from a cold boot, linux is running within about 5-6 seconds
04:33.26PreHerowow, i didnt realize that the linux startup was that quick
04:33.28bpadalinogeist, so you're making it nice and pretty now ?
04:33.38bpadalinonovacom is up pretty quick
04:33.45bpadalinoi think the emulator takes longer to boot than the pre does
04:33.54geistyeah, wouldnt be surprised
04:34.40geisti think itll get faster as we released updates
04:34.49*** join/#webos-internals daybreak1199 (n=glowstic@99-171-191-144.lightspeed.sndgca.sbcglobal.net)
04:34.55bpadalinogeist, how is TI's documentation for the omap3?  our experience with the omap2 is terrible ... absolutely terrible
04:34.56geisti know folks have been looking at it
04:35.02geistbpadalino: MUCH better
04:35.05TemplarianTheoretically the Pre doesn't need java right? I mean its core stuff could all be written in c++ right?
04:35.21geistti is really trying to be the default hobbyist arm cpu
04:35.24bpadalinoTemplarian: true - but it's a lot of code
04:35.30geistthey have as much as possible documented, etc
04:35.31DraXdoes th chip y'all are using have the arm java acceleration stuff?
04:35.38geistnah, no one does
04:35.40bpadalinogeist, that sounds better ..
04:35.54geistnot even sure that cortex-a8 supports it anymore
04:35.58bpadalinoit doesn't
04:35.59geistarm has certainly deprecated it
04:36.04DraXahh
04:36.13Templarianbpadalino: yea... not a theory that would ever be done.
04:36.15geistjazelle was a total bust as far as i can tell
04:36.20bpadalinoyeah it was
04:36.31DraXdidn't know
04:36.41geisttrouble is you had to license a big pile of black box from arm to use it
04:36.51geistand then you had to run precisely java vm bytecodes
04:37.10geistwe could never use it at danger because our jvm was custom and used a transcoded bytecode (precursor to dalvik)
04:37.13bpadalinoit was just easier for them to say "get a good jvm"
04:37.19bpadalinoah cool
04:37.25geistand anyway, it could only really run simple opcodes
04:37.36geistanything remotely interesting, like a virtual call, required that you trap into your code anyway
04:37.46geistand really the bulk of work in any large java system is stuff like that
04:38.09DraXyeah
04:38.41geistokay, better get going
04:38.53geistneed to go get in the car and head back to the south bay
04:39.04bpadalinolater
04:39.09geistand need to walk halfway across the city to get back to my car
04:39.17bpadalinothat sounds windy
04:39.22geistmaybe ill see a movie at the metreon
04:39.24geistanyway, ta ta
04:39.38DraXgeist: you could just grab bart..
04:41.58Rick_homeLeave bart alone,  the poor boy has troubles enough coming from the family he does.
04:42.34DraX:)
04:43.23daybreak1199sorry to interrupt...anyone here from San Diego?
04:44.38PreHerofrom midwest here
04:46.05daybreak1199im in san diego now...born and raised in oklahoma though
04:46.20PreHeroha, marine?
04:46.29daybreak1199lol yeah...
04:49.19*** join/#webos-internals bsdbandit (n=csh11@wsip-24-249-123-207.hr.hr.cox.net)
04:53.30*** join/#webos-internals christefano1 (n=christef@prod02.pvpn.sfo.witopia.net)
05:02.40*** join/#webos-internals edektor_ (n=edektor@static-208-187-122-54.bbsc.net)
05:28.42*** part/#webos-internals nebula1 (n=nebula@c-76-119-208-54.hsd1.ma.comcast.net)
05:44.20*** join/#webos-internals Gadfly (n=Gadfly@12.157.56.197)
05:59.19*** join/#webos-internals Orion_PK (n=OrioNPK@c-75-72-37-51.hsd1.mn.comcast.net)
05:59.40*** join/#webos-internals kesne (n=Kesne@pool-173-50-235-167.ptldor.fios.verizon.net)
06:11.10daybreak1199a quick way to find out of dropbear ssh or open ssh is running using the novacom terminal?
06:16.24daybreak1199dropbear ssh is in the root@castle:/opt/bin    dir right?
06:17.37daybreak1199am in the wrong channel?
06:29.47geistDraX: well,  walked up and picked up the muni at the church station
06:31.25DraXthat works
06:33.55geisthe took the midnight train going anywhere
06:53.21kesneCheckers Contest
06:53.22kesnehttp://keen-studios.net/2009/09/25000-checkers-downloads/
06:55.08DraXgeist: we had an awesome transit meltdown friday. :D
06:55.51*** join/#webos-internals daybreak1199 (n=glowstic@99-171-191-144.lightspeed.sndgca.sbcglobal.net)
07:03.00oil"building the future"?
07:03.16oilkeels over laughing
07:03.27daybreak1199anyone available to help with openssh or dropbear ssh?
07:03.51oilknows nothing about it
07:04.01kesneI don't maintain the website
07:04.04kesneso don't ask me
07:04.19oillol
07:04.31oilwhats the something good?
07:04.36oilan ipk for the pro version?
07:04.41kesneAnd more
07:04.48oillike?
07:04.54kesneWell
07:04.56kesneGood stuff
07:05.06rwhitbydaybreak1199: read the descriptions on those apps
07:05.29rwhitbybbl
07:05.45daybreak1199thanks for the reply...i have just having issues...i'll go back and reread
07:09.51daybreak1199could someone take a look at this game and see if it would be an easy port into an app   http://vrdefendery3k.com/
07:10.09*** join/#webos-internals PreHero (n=chatzill@ip68-97-117-139.ok.ok.cox.net)
07:14.05kesnedaybreak1199, just a TD game
07:14.26daybreak1199TD ?  not sure what that stands for kesne
07:14.37kesneTower Defence
07:15.29daybreak1199lol yah..im kinda slow tonight..
07:16.24daybreak1199nite all
07:21.20oillooks at his towerdefense game code and sighs
07:23.10kesneoil: Just release it
07:23.13kesnewho cares?
07:23.18Eguyoil: get to work
07:23.24oillols @ how much that one looks like his
07:23.59oilexcept mine sucks cause its not really fun to play
07:24.03oiland im not an artist
07:24.05kesneoil your right
07:25.03kesneHaha
07:25.03oiland mine only has 2 tower types right now
07:25.10kesneLatest checkers comment: penisland.com
07:25.18oilhaha
07:25.27kesnexD
07:25.35kesneGod, I love this phone
07:25.46Eguylol
07:25.59Eguymy battery life is so freaking awful
07:26.01oilwhy, cause you can check out penisland.com right from it?
07:26.13kesneoil: :P
07:26.13EguyI think my seidio battery is really only 1150mah
07:26.23EguyI need to call them
07:27.55kesneI just got really pissed at this guy who sent me a support email
07:28.01kesneI bashed him a little
07:28.12kesneMaybe I shouldn't have
07:28.28kesneOh well
07:28.40kesne"app isn't ready, needs to be polished"
07:28.46kesneAnd his issues were all just prefrence
07:28.50kesneugh
07:28.59kesneI know checkers isnt that good
07:29.05kesneI know blocked is 100x better
07:29.09kesnebut lets get over that
07:29.12oillol
07:29.15kesneit's still annoying
07:29.18oilcheckers isnt bad
07:29.23kesneno, the AI is
07:29.26oilwell
07:29.28oilyeah, it is
07:29.32kesnePlaying two player is fine.
07:29.33oilbut blocked doesnt have any ai
07:29.39kesneExactly
07:29.50kesneI'm so happy that I'm rewriting it
07:29.55oildotgame has ai
07:29.56punzada<PROTECTED>
07:29.58oilits a little slow
07:29.59oilbut i think its ok
07:30.01punzadayou two are STILL talking about this?
07:30.03punzada>>
07:30.08oilit just started back up
07:30.25kesneThis time it's totally in agreement
07:30.29kesneCheckers AI sucks
07:30.35kesneI'm completely rewriting it
07:30.39kesneMaking it SMART
07:30.43kesneBUT settable
07:30.46kesne:)
07:30.48oillol
07:30.49punzadaake sure you have an easter egg where it randomly cheats
07:30.56punzadaor you see a hand come over and tip the board
07:31.05oilmake sure it doesn't do the same back and forth infinity times
07:31.10kesneI wont
07:31.17kesneI've already made sure
07:31.24kesneAdded a variable called annoy
07:31.28kesneUser setable
07:31.32oillol
07:31.45kesneif you set annoy to 2, it can only go back and forth 2 times
07:32.35kesne:D
07:32.58oilsets it to -1
07:33.01kesneYeah
07:33.08kesneFreak it out
07:33.56kesneAND the new AI will be on Checkers Pro AND checkers ;)
07:34.09kesneI'm not forcing users to play bad versions of games
07:34.15oillololol
07:34.57kesneAnyway, I'm off
07:34.59kesnelater
07:52.35*** join/#webos-internals christefano (n=christef@c-76-23-159-24.hsd1.ma.comcast.net)
08:10.32rwhitby17705 downloads of Preware since 03 Sep.
08:10.40oillol
08:10.56Eguystaggering
08:10.58rwhitby14772 downloads of ipkgservice
08:11.26rwhitbyso 3 people with problems in the PreCentral forums is not that significant ;-)
08:11.51rwhitbyof course that will include web crawlers ;-)
08:12.55oillol
08:13.03oilwhat are they doing crawling .ipk files?
08:14.34rwhitby8703 downloads from WebOS Quick Install
08:14.56rwhitby5733 downloads from Preware
08:16.18rwhitbyYahoo and Google are both spidering the ipkgs
08:16.21oillol
08:17.06rwhitbyGoogle only spidered 12 times
08:17.24rwhitbyYahoo 31 times
08:18.18rwhitbythinks kesne's 25000 is chicken feed ...
08:18.29oillol
08:18.34oilsince what, thursday?
08:18.43Eguypreware in the app catalog?
08:18.46Eguy:P
08:18.50oilsubmits it
08:18.58oilthen bitches about it not being accepted
08:19.09oiltakes his ball and goes home
08:19.26rwhitby32425 downloads of ipkgs per day from ipkg.preware.org in the last 10 days
08:21.42rwhitbybbl
08:26.25oilhow many mb/gbs is that?
09:06.03*** join/#webos-internals edektor_ (n=edektor@173-129-59-244.pools.spcsdns.net)
09:27.11rwhitbyoil: oh, we don't really too much care about the mb's/gb's - osuosl has at least 3 10Gb/sec pipes to Internet2, the CPU on www.webos-internals.org peaks at about 10%, the memory peaks at about 50%, there is on average only about 20 simultaneous connections, and the outgoing traffic peaks at about 1MBit/sec.
09:31.53oilah
10:01.12*** join/#webos-internals greg_roll (i=3cf2679e@gateway/web/freenode/x-pvjkevtnfnrpvwnk)
10:20.51*** join/#webos-internals christefano1 (n=christef@prod00.pvpn.sfo.witopia.net)
10:33.50rwhitbyok, my proposal for the Dropbear and OpenSSH packages that are installable without requiring Linux command line access are that they by default allow access on wifi only through the normal ssh port 22, with ssh key authentication only.  We're going to teach people how to use ssh properly by default.
10:34.44rwhitbyof course, the Pixi doesn't have wifi, so we'll need to think about what to do for it when it is released ...
10:35.23*** join/#webos-internals FreeTim (n=freetim@pool-98-118-16-52.bstnma.east.verizon.net)
10:42.01*** join/#webos-internals ameng1 (n=fm@221.220.209.136)
10:54.30oilrwhitby: if there is directions for installation
10:54.41oilits totally going to not get fallowed
11:05.17rwhitbyoil: sure, and if the directions for activating key authentication is not followed, then it simply will not connect. fail-safe :-)
11:06.19rwhitbyoil: hey, you'll be a good alpha tester for this, since you haven't installed optware using the manual method previously.
11:06.42oillol
11:07.08freakoutshakes head at oil's laziness.
11:07.39rwhitbyfreakout: I believe in oil's case it's a case of principles, not laziness.
11:07.40oilim sure someone else will be willing to test it out right after a doctor xD
11:08.00oilactually
11:08.01freakoutoil has principles?
11:08.16oilwhen the pre first came out
11:08.17oili joined here
11:08.17oiland attempted to go through the directions
11:08.17oilbut it didnt work
11:08.20oilthe tools wouldnt connect to my pre
11:08.23oilso i left
11:08.28oilcause i couldnt get help at the time
11:08.35oillol
11:08.42freakoutthis channel is full of snobs
11:08.53freakout:P
11:09.47freakoutPeople turn up and say PLZ HELP MI PRE IS RETIRED
11:10.01freakoutand you turn them away.
11:10.32rwhitbyoil: you know what happened that day?  (I just looked at the logs)
11:10.57oilno
11:11.00rwhitbyoil: you asked for help at "Jun 13 05:33:16 <oil> i try to run talk.py, and get errors"
11:11.08oilseriously
11:11.43rwhitbythen this happened: "Jun 13 05:42:21 <cdm> Why are you trying to write code in thumb?  Nothing on pre is compiled that way..."
11:12.00freakouthahaha
11:12.23rwhitbythen this: "Jun 13 05:42:56 <geist> cdm: not true, bootie is in thumb2"
11:13.23freakoutOooo, internal division within Palm
11:13.28freakoutblogs madly
11:15.43oilso yeah
11:15.46oilbut now i dont have to know any of that
11:15.49oiland just write the mojo
11:18.32rwhitbybbiab
11:51.55rwhitbyok, I need a guinea pig for dropbear and openssh
11:57.48oilwhich package was it that didn't have a java restart in it?
11:58.01oilaccel service?
12:01.19rwhitbyyep accelservice
12:01.26rwhitbyoil: ^^
12:01.31oilyeah
12:03.56jetteroI read somewhere that palm might not continue to ship prototype with webos... seems unlikely to me ...
12:04.03oilyeah
12:04.12oilespecially considering how many apps are probably using it
12:04.18jetteroright...
12:04.31oilpreware is the first app ive written that isn't using it
12:04.34jetteroI was thinking about using jquery (which I know by heart) instead, but I imagine prototype will continue to be there and it's the same thing basically
12:04.36oiland, ive missed some of its features
12:05.06jetteroI found some prototype for jquery peeps type docs and ... I'm just going to use prototype
12:05.25oillol
12:05.30oilive never used jquery
12:05.33oilbut ive used prototype a lot
12:06.07jetteroif I do an Ajax.Request(get) and the get sets a cookie... will my app store the cookie somewhere automatically? is the app like a little browser?
12:06.42jetterodoes each app get its own cookie jar? or do they share?
12:07.25oilim pretty sure they're stored via appid
12:07.31oili use the same name in multiple apps
12:07.34oilwithout any problems
12:07.57oilyeah the app is like a little browser
12:07.59jetteroI definitely don't mean setting a cookie by hand, I mean the website I'm hitting via ajax
12:08.06oiloh
12:08.06oilthat
12:08.07oili dont know
12:08.12jetteroyeah
12:08.15jetteroI'll have to just play with it
12:08.20jetterothe docs are a little thin here. ;)
12:08.22oilmaybe its tied to the cookies stored from the browser?
12:08.29oilit would be interrested to see what you find out
12:08.33oili would be*
12:08.44jetteroany idea where the cookies, depots and sqlites are stored for apps?
12:08.48jetteroI'm going to have to poke around in there
12:08.51oilno clue
12:11.16jettero:)
12:12.46oilrwhitby: git version of preware now obeys the flags
12:13.03oilstill not doing dependencies yet
12:13.08oilbut, its almost ready :)
12:14.06oilgoes to sleeps now
12:15.35rwhitbyoil: awesome, I'll test it out.
12:15.39oilyea
12:15.41oilit needs thati
12:15.45oili havent tested it on my pre yet
12:15.51oilcause im too lazy to move the usb cable right now xD
12:15.55rwhitbyok
12:16.07oili also added a "launch" button to installed applications
12:16.14oiland a spinner while its doing something
12:16.28oiland removed the update button from patches
12:16.30rwhitbyI just found a bug in how we run postinsts - we need to define $IPKG_OFFLINE_ROOT for update-alternatives to work, so I'm fixing that at the moment.
12:16.39oilforcing a removal and then reinstallation
12:16.54rwhitbywow, lots of new stuf
12:16.58oilyeah
12:17.04oiland if you scroll down then start typing to filter
12:17.08oilit moves back to the top of hte list
12:17.14oilbefore you would get a blank page till you flicked it down
12:17.54oili think i spelled out my changes in all the commit comments
12:17.55oilxD
12:17.57oilok
12:17.59oilsleep
12:18.00oillater
12:58.59*** join/#webos-internals ameng|home (n=flmsxs@221.220.209.136)
13:34.28rwhitbyLooking for alpha testers for ipkgservice 0.8.8
13:34.31*** join/#webos-internals ConfusedVorlon_ (n=Rob@94-169-110-167.cable.ubr22.aztw.blueyonder.co.uk)
13:43.41*** join/#webos-internals greg_roll (i=3cf2679e@gateway/web/freenode/x-ibapgzuzrennrdse)
13:44.14rwhitbyanyone here who can test ipkgservice?
13:57.35*** join/#webos-internals mike_w1 (n=mikew@209.234.72.115)
14:01.56*** join/#webos-internals Ingenium13 (n=josh@c-71-199-97-226.hsd1.pa.comcast.net)
14:03.49rwhitbyPackage Manager Service 0.8.8 is released - no new user visible features, but support for update-alternatives processing in installation scripts (so dropbear and openssh can both be installed, and one gets priority over the over for /opt/bin/ssh and /opt/bin/scp)
14:13.34rwhitbybbt
14:18.25tmztinteresting about thumb2
14:19.08tmztso bootie will have to be changed for pixi, though that'a almost a given for msm
14:20.27*** join/#webos-internals Decimation_ (n=Decimati@d192-24-56-160.try.wideopenwest.com)
14:27.05*** join/#webos-internals rawdr (n=rawdr@cpe-24-209-66-172.woh.res.rr.com)
14:36.35tmztso bootie will have to be changed for pixi, though that'a almost a given for msm
14:36.43tmztsorry
14:39.36*** join/#webos-internals FreeTim1 (n=freetim@pool-71-174-135-223.bstnma.east.verizon.net)
14:46.21*** join/#webos-internals djk1 (n=djk@ool-4573a369.dyn.optonline.net)
15:08.19*** join/#webos-internals alkos333 (n=alkos333@c-98-227-217-190.hsd1.il.comcast.net)
15:22.45*** join/#webos-internals mtkatwork (n=mtk@ool-44c6fcaf.dyn.optonline.net)
15:40.19*** join/#webos-internals mtkatwork (n=mtk@ool-44c6fcaf.dyn.optonline.net)
15:46.01*** join/#webos-internals Templarian (n=Templari@ppp-70-226-81-251.dsl.klmzmi.ameritech.net)
15:46.01*** mode/#webos-internals [+v Templarian] by ChanServ
15:46.03*** join/#webos-internals heisenman (n=heisenma@adsl-76-254-33-188.dsl.pltn13.sbcglobal.net)
15:49.25*** join/#webos-internals ameng1 (n=fm@221.220.209.136)
16:17.12*** join/#webos-internals Gnutoo (n=gnutoo@50.118-226-89.dsl.completel.net)
16:29.31Decimationhey guys.
16:31.30TemplarianHello.
16:40.12*** part/#webos-internals ameng1 (n=fm@221.220.209.136)
16:43.59psykozcan I just rm /opt, and relevant upstart scripts then install the actual preware apps?
16:44.20*** part/#webos-internals gregoiregentil (n=gregoire@adsl-71-135-123-10.dsl.pltn13.pacbell.net)
16:48.24*** join/#webos-internals pen^2 (n=pen@CPE000db91724c9-CM000f9fa84134.cpe.net.cable.rogers.com)
16:54.18Zuchmir2is there instructions somewhere how to use dropbear from preware?
16:57.40psykozit's just an ssh daemon, by default in the past they've had it listening on port 222, so you just ssh to your pre's IP address:222
16:58.54Zuchmir2in preware iut was changed to 22, and requires keys
16:59.13Zuchmir2the q. is how to setup the key pair on PC/pre
17:14.43PuffTheMagicZuchmir2: yo
17:14.49Zuchmir2hi
17:15.14Zuchmir2saw you made major changes to the service
17:15.17PuffTheMagicZuchmir2: im about to push a commit for your review
17:15.22Zuchmir2ok
17:15.27PuffTheMagici just added some memory stuff
17:15.48Zuchmir2ok
17:16.36*** join/#webos-internals alkos333 (n=alkos333@c-98-227-217-190.hsd1.il.comcast.net)
17:16.41PuffTheMagicZuchmir2: actually, i need to send you a nipit
17:16.44PuffTheMagicsnipit
17:16.59PuffTheMagicZuchmir2: http://pastebin.com/m13f7fb1d
17:17.06PuffTheMagicim getting a syntax error and i cant see why
17:17.10PuffTheMagicits probably obvious
17:17.13PuffTheMagicbut im blind righr now
17:17.54PuffTheMagicooh i see it
17:17.55PuffTheMagic:D
17:17.56PuffTheMagiclol
17:20.34Zuchmir2ok, i did not spot the error (w/o compiling), probably have to see which line # the error is on to spot it
17:25.20*** join/#webos-internals kesne (n=Kesne@pool-173-50-235-167.ptldor.fios.verizon.net)
17:25.43kesneMorning all
17:26.20PuffTheMagici had a random NULL in there
17:26.26PuffTheMagicZuchmir2: ok so its pushed
17:26.37PuffTheMagicZuchmir2: the subscription/thread stuff isnt tied in yet
17:26.43PuffTheMagicso just test non-subscriptions
17:26.47PuffTheMagicthe battery stuff works
17:26.56PuffTheMagichavent gotten the mem stuff working yet
17:27.03PuffTheMagicZuchmir2: added some build instructions
17:27.18PuffTheMagicZuchmir2: i didnt add the -rpath stuff yet so idk of it will work for you or not
17:27.21PuffTheMagiclet me know
17:28.54PuffTheMagicahh i think i know why the mem stuff aint working
17:30.43Decimationguys, i just checked, my build date is 5/20/09
17:30.47PuffTheMagickesne: hi
17:30.48Decimationmaybe thats why my pre sucks? lol
17:31.32kesnePuffTheMagic: Good Morning, well, morning for me :D
17:31.47PuffTheMagicwest coast?
17:32.47*** join/#webos-internals HattCzech_ (n=chatzill@cpe-66-69-208-155.austin.res.rr.com)
17:33.03kesneYep
17:33.05kesneOregon
17:33.26PuffTheMagic:D
17:33.52kesneEVERYING WITH webOS 1.2, YOUR APP CATALOG NOW WORKS!
17:34.38*** join/#webos-internals Joesmith_fromcha (n=Joesmith@ip68-0-127-22.tu.ok.cox.net)
17:35.05Decimationits great :)
17:35.37kesneAnd everyone with 1.1, it nows says FREE, not TRY ME
17:36.25Joesmith_fromchawhat says free?
17:36.45kesneApp Price
17:37.21Joesmith_fromchawhich app?
17:37.49Decimationall of them
17:37.51kesneAll of them
17:37.55Decimationthe new app catalog has launched for 1.2
17:38.01Decimationand there are A LOT of changes
17:38.07kesneAnd 1.1 apps now say free
17:38.23Joesmith_fromchaI dont have webos 1.2 I am lame
17:38.29TemplarianHopefully we get the ota update soon.
17:38.46TemplarianFinally it says free that try me thing was confusing.
17:38.51Decimationyeah, i wonder if the guy from palm might announce 1.2 on the engadget show tonight.
17:39.04TemplarianDecimation: I was thinking that also.
17:39.17TemplarianGood publicity if they fixed the itunes thing also.
17:39.39Joesmith_fromchayep
17:39.46PuffTheMagicDecimation: the app catalog auto updates it self?
17:40.10DecimationDecimation, idk, i have 1.2
17:40.21Decimationbut it's live now
17:40.26Decimationscreenshots will be out in a minute
17:40.45Joesmith_fromchaI hope they fix itunes again, I dont use it but I lik to see apple poked
17:40.48kesnePuffTheMagic: No
17:40.49TemplarianPuffTheMagic: 1.2 users had it but the server side wasn't on.
17:40.58kesneIt's downloading prices and stuff serverside
17:41.09kesneThe catalog went offline for an hour or so last night
17:41.17kesneThey changed all try mes to free
17:41.27kesneAnd loaded up the 1.2 server files
17:41.31Decimationand on 1.2
17:41.37Decimationit now gives a list of credit cards you can use
17:41.41Joesmith_fromchamofo battery shiiiiiiiii
17:42.40kesneWebOS 1.2 Catalog Topic: Will be updated with screenshots
17:42.45kesnehttp://forums.precentral.net/palm-pre/202835-1-2-app-catalog.html
17:43.39Joesmith_fromchado you think we will be able to try most apps for free before we buy?
17:44.04Joesmith_fromchaI think I would like to trysomething for free before I pay
17:44.09TemplarianJoesmith_fromcha: it's a developer choice.
17:44.15kesneI think so
17:44.36kesneI'm going for a full free version with added functionality in pro
17:45.13TemplarianI'm going for always free... once I find time to start coding.
17:45.30Joesmith_fromchaI hope so, I think the quickcontacts trial is a good model, but the trial could be shorter
17:45.55Joesmith_fromchalike 2 days or something
17:46.29TemplarianWith trialware it should be long enough for constant use that they get hooked.
17:46.44TemplarianMarketing is fun :)
17:48.33Joesmith_fromchawhen I downloaded checkers from the app cat I can play against the program, wierd.....
17:48.43*** join/#webos-internals HattCzech_ (n=chatzill@cpe-66-69-208-155.austin.res.rr.com)
17:48.55Joesmith_fromchaI hope someone makes a chess app soon
17:49.11TemplarianJoesmith_fromcha: isn't there already?
17:49.14kesneI am making one
17:49.16kesneWell
17:49.18kesneAltering one
17:49.21Joesmith_fromchasweet
17:49.31Joesmith_fromchayeah but it really sucks hard core
17:49.40Joesmith_fromchathe enignie
17:49.44Joesmith_fromchanot the app
17:49.49Joesmith_fromchait cant play
17:50.14Decimationhttp://s219.photobucket.com/albums/cc109/ShiftyEyezz/screenshots/
17:50.18Decimationnew app catalog
17:50.19kesneWOO
17:51.29TemplarianNice.
17:51.36Joesmith_fromchasweet
17:51.57Joesmith_fromchawait isnt pdf viewer stock
17:52.00Joesmith_fromchaand free
17:54.08kesneThose are installed apps
17:54.47Joesmith_fromchadoesnt know up from down
17:55.15Decimationyeah, idk why pdf view doesn't show up as a stock app.
17:56.21kesneBeta Tag still?
17:56.22kesneARg
17:56.34TemplarianMaybe they moved palm apps out of the OTA main update?
17:59.11Decimationmore screenshots being uploaded
17:59.29kesneAlright
17:59.35kesneThanks Decimation!
18:01.40Decimationdone, 4 more added.
18:02.26kesneNo screenshots in checkers? :P
18:02.32Decimationwell, now im overall satisfied with everything 1.2 brings.
18:02.39kesneHaha
18:02.39Decimationkesne: gdial was the first app :P
18:02.46kesneYeah
18:02.48kesneAlright
18:04.16tmztgdial?
18:05.23Decimationtmzt: ?
18:05.34jetteroprototype appears to completely suck.  It fires onSuccess when status=0 because of a host not found. Grrz.
18:05.49jetterois it really an onSuccess when the website doesn't resolve?
18:06.42pen^2i found that out yesterday too
18:06.46tmztwhat is gdial
18:07.02pen^2i don't get why the hell it would return onSuccess
18:07.48jetteroyeah, took me a while.  If I hit a page on a site it can resolve it goes to onFail with the 404
18:08.04jetterobut if I try to get fakefakeafakesite.com it goes to onSuccess with status=0
18:08.15jetterousing Ajax.Request(), which I think is prototype
18:08.34jettero(hit a page that doesn't exist on a site that does... I should say).
18:10.10Joesmith_fromchawhats ajax.request?
18:10.48TemplarianIt's the thingy that lets the thing talk to other things.
18:11.09jetterotries sock puppets
18:14.22Joesmith_fromchadoes it contact the server to validate that something is legit?
18:14.35jetteroJoesmith_fromcha: http://www.prototypejs.org/api/ajax/request
18:15.04Joesmith_fromchathanks
18:19.28raeb_<Templarian> It's the thingy that lets the thing talk to other things. rofl
18:20.40Joesmith_fromchawhat is it used for in an application?
18:21.42jetteroJoesmith_fromcha: you're going to have to reason it out
18:21.56Joesmith_fromcha:D
18:22.15Decimationyou guys, what was the app catalog download limit?
18:22.18Decimation50 or 60?
18:22.22Templarian80
18:22.27Decimationno...
18:22.31Decimationit was like 60?
18:23.27Joesmith_fromchayou can download more then that?
18:23.29TemplarianJoesmith_fromcha: Almost every application talks to an outside server. You basically request information from the server through "requests".
18:24.04Joesmith_fromchawoah I didnt know that apps like calculator talked to a server
18:24.09Rick_homeit is also used to read files from the local file system
18:24.25TemplarianJoesmith_fromcha: "almost every", calc is one of the few.
18:24.43Rick_homeso in an ebook reader, as you move from chapter to chapter you ajax request the next chapter's file from the local file system
18:24.54Joesmith_fromchaahhh
18:25.05Templarian(since loading a full book into ram wouldn't be smart)
18:25.59Joesmith_fromchabut if it connects to an outside server and exchanges data couldlnt it be told to send data, in therory malciously?
18:26.37jetteroyeah, the prototype docs even say that onSuccess is invoked when status is not defined (0 here), which happens on host not found
18:26.38TemplarianJoesmith_fromcha: Of course, but Mojo apps only have access to higher level data.
18:26.42jetteroso that behavior is intentional
18:27.20jetteroJoesmith_fromcha: your web browser constantly connnects to remote servers, some of which are malicious.  Lose any sleep over it?
18:27.31Joesmith_fromchanope :D
18:27.42jetterok, webos is pretty much a fancy web browser
18:27.48jetterorelax
18:27.55Joesmith_fromchaor I could just use lynks and be more happy
18:28.09jetterolynx is a web browser too...
18:28.19jetteroso is links and elinks. :)
18:28.28Joesmith_fromchawhich is ugly
18:28.41TemplarianReal web browsers use cross domain policies, but of course that idea doesn't work on a mobile device.
18:34.53Rob____new app catalog looks fancy
18:35.06kesneStill has limit
18:35.42jetterodid that new update roll out yet? or are you guys just installing it early still?
18:35.51kesneNot yet
18:36.15jetteroyeah, didn't turn up in mine, wondered if they're doing it by region or something
18:39.08DecimationwebOS 1.2 still has a 50 app download limit.
18:39.46Rob____what would be the purpose of that?
18:40.10Decimationwho knows.
18:40.27jetteroseems webos re-scans the image dirs, and mp3 dirs every single time... I'm betting it rescans apps too, and anything more than like 60 or 80 slows down the launcher too much
18:40.33jetterojsut a hunch, no evidence
18:40.44Rob____indexing API
18:43.45kesneHaha
18:43.49kesneI just remembered something
18:43.53kesnepredevcamp.org
18:44.13Rob____and?
18:44.40kesneThe contest....
18:44.59Rob____Heh
18:45.03kesneWho is Rob____?
18:45.10kesneWhen did he get here?
18:45.16Rob____Where is he going?
18:45.57kesnehmm?
18:46.58Decimation;)
18:47.09kesneWhat?
18:47.14kesneConfusioun
18:48.20kesneI broke a little thing off of my pre today
18:48.24kesneI got so mad
18:48.29kesneThen I remembered
18:48.30Joesmith_fromchaNO
18:48.33Joesmith_fromcha:(
18:48.34kesneI don't really care
18:48.49kesneIt doesnt look ANY different
18:49.02XygThe USB door?
18:49.06kesneJust makes it harder to fiddle with the batery door
18:49.10kesneSomething near it, yes
18:49.22psykozI hate the usb door so I took it out as well
18:49.57psykozI need to find the replacement so when I go talk to Sprint about the cracks developing around the usb port they don't look at me like I intentionally abused my phone
18:49.58XygI would remove it, but it increases the drag coefficient on the phone too much
18:50.07Joesmith_fromchaI had a nightmare someone was twisting my pre like an oreo two days ago, I swear to you
18:50.51kesnePixi has a nice thing
18:51.33Xygthat rubberized door is nice
18:51.57kesneYeah
18:52.04kesneWho is Xyg?
18:52.09kesneWhy arent you rob anymore?
18:52.42XygWho is kense?
18:52.54kesneIt's kesne, not kense
18:52.54Xygkesne, rather
18:52.58kesne:P
18:53.02kesneAnd I'm Jordan Gensler
18:53.05kesnejordangens@gmail.com
18:53.07Xygcongratulations
18:53.07psykozwho is keens?
18:53.11kesnesupport@villo.me
18:53.12psykozor who is keesn!
18:53.17psykozhi keesn!
18:53.30psykoz;)
18:53.41kesne:P
18:53.56kesneEveryone says kesne like it's spelled kense
18:54.00kesneit's all good
18:54.59Joesmith_fromchais there anyway two download apps from the app catalog onto the emulator?
18:55.21kesneWell, no way TWO download apps from catalog on emulator
18:55.44kesneAnd not sure about anyway to download apps from catalog on emulator
18:55.49kesneI don't use the emulator
18:56.30*** join/#webos-internals PreGame (n=PreGame@unaffiliated/pregame)
18:56.30*** mode/#webos-internals [+v PreGame] by ChanServ
18:57.32Joesmith_fromchaIknow two lol
18:58.00Joesmith_fromchaI felt bad after I typed that
18:58.06kesneIT's all good
18:58.09kesneIt happens
18:58.34Joesmith_fromchais there one way to download them :D
18:59.03kesnexD
19:00.30Joesmith_fromchaso you can only download 50 apps from the catalog, what about sideloading 50+
19:00.50Xygyou can using preware
19:01.32Joesmith_fromcharight, but does homebrew count as part of the 50?
19:01.44XygI believe Filecoaster installs to the same directory as the app catalog does, so whatever you download with that program counts in that 50
19:02.17Xygnot with preware, as it installs to a different directory
19:02.30Joesmith_fromchareally?
19:02.44Joesmith_fromchanot var/usr/palm/apps?
19:03.03*** join/#webos-internals kesne (n=Kesne@pool-173-50-235-167.ptldor.fios.verizon.net)
19:03.31kesneWait
19:03.41kesneWe are supposed to talk about webOS INTERNALS in here?
19:04.07XygI think so?
19:04.29Joesmith_fromchaso what dir does preware install to?
19:08.36Joesmith_fromchaso how does one get around the max apps?
19:09.37Rick_homepreware installs to /var/usr/palm/applications
19:10.02Rick_homeand the max apps is a limit of the app catalog and of the palm install and not of ipkg -- preware uses ipkg which doesn't CARE
19:10.43Xygthanks for clarifying rick
19:11.41Joesmith_fromchavery cool
19:11.59Rick_homepreware and filecoaster install to the same DIRECTORY but they do it in different WAYS
19:12.09Joesmith_fromchaso as long as you install via ipkg no limit?
19:18.19*** join/#webos-internals kesne (n=Kesne@pool-173-50-235-167.ptldor.fios.verizon.net)
19:19.09Joesmith_fromchawhat would I do if I wanted to download 50 apps from the catalog?
19:19.34Joesmith_fromchaor 51, I cant find it now but I am sure there was a way around it
19:20.54Rick_homeJoesmith_fromcha:   as long as you install from preware, memory limit only
19:21.15Rick_homewhich can be severe if you're installing big apps
19:22.47Joesmith_fromchacan preware install apps from the app catalog?
19:36.31*** join/#webos-internals Max__ (n=Max@72.243.164.154)
19:37.31*** join/#webos-internals doodums (n=thadood@c-75-66-217-39.hsd1.tn.comcast.net)
19:38.34*** join/#webos-internals Gnutoo (n=gnutoo@50.118-226-89.dsl.completel.net)
19:41.03*** join/#webos-internals AgentSmith (n=AgentSmi@c-71-56-237-125.hsd1.co.comcast.net)
19:43.03*** join/#webos-internals Orion_PK (n=OrioNPK@c-75-72-37-51.hsd1.mn.comcast.net)
19:52.58Decimationhttp://www.youtube.com/watch?v=rI7wTuBziEw
19:56.03Joesmith_fromchalol
19:57.14Joesmith_fromchafound it
19:57.32Joesmith_fromchahttp://www.webos-internals.org/wiki/Symlink_Applications
20:02.00*** join/#webos-internals christefano (n=christef@c-76-23-159-24.hsd1.ma.comcast.net)
20:03.53Xyghow to access the emulator with putty?
20:10.55*** join/#webos-internals christefano1 (n=christef@prod00.pvpn.sfo.witopia.net)
20:17.41punzadaso sprints nfl mobile live is garbage their servers must be getting hit hard with everyone trying to use it lol
20:18.15*** join/#webos-internals DieterBohn (n=dbohn@rrcs-67-79-130-162.se.biz.rr.com)
20:33.56Templarianpunzada: yea it just keeps loading.
20:34.24Templariannvm just super slow
20:34.38punzadamine has not been able to connect the last 4 times i tried
20:34.55TemplarianIt spins for like a solid minute.
20:35.06Templarianor more.
20:36.54Templarian3 minutes later and I can see a screen... too bad I don't care about sports. :)
20:39.33punzadathat is too bad ;p
20:39.49punzadaI like the NFL app but have little to no use for the nascar app since.. nascar sucks ;p
20:40.30punzadaError - Cant connect to the server - try again later.
20:40.30punzadalol
20:40.37punzadafail again nfl, fail again
20:48.01oilyawns
20:48.32kesneHey all
20:48.35oilnotices 1.2 app catalog has applications and updates/insatlled sections like preware xD
20:49.30kesneYep
20:49.41kesneI also notice the first word on that
20:51.59Xygcan someone point me to resources on putty'ing into the emulator?
20:52.01oileh?
20:52.10kesneeh?
20:52.50oil"putty'omg"?
20:52.53oiling*
20:52.54oillol
20:52.58Xyg:/
20:53.01oilanyways
20:53.05bpadalinowho maintains the ipkgservice java code ?
20:53.10oilssh to 127.0.0.1
20:53.12oilport 5522
20:53.16Xygthanks oil
20:53.27oilbpadalino: that would be rwhitby
20:53.35bpadalinoah ok ..
20:53.38oilwhy?
20:54.14bpadalinoi think the code should use a static initializer for the class for getting the feeds informations ... so it doesn't have to do it all the time .. or for every object that gets created
20:54.29bpadalinoand then synchronize updates to the static information
20:55.51PuffTheMagicbpadalino: i will me making a new pkgmrg in C shortly
20:56.05bpadalinooh neato
20:56.19PuffTheMagicafter i whip up the upstart service
20:56.26bpadalinowhip it good
20:56.28PuffTheMagic:D
20:56.52PuffTheMagicwhen a pre-service comes along...
20:56.58PuffTheMagic...you must whip it
20:58.08bpadalinoheh
20:58.51PuffTheMagicso besides processes, memory, battery, disk usage
20:59.01PuffTheMagicwhat other "monitors" could i add to ubermonsrv?
20:59.12PuffTheMagicnetstats?
20:59.30bpadalinothat's probably a good thing to keep track of..
20:59.39bpadalinofor all interfaces
21:00.24PuffTheMagiceven know its not "monitor" it think im gonna add method to change the IO scheduler
21:00.37PuffTheMagicoooh
21:00.41PuffTheMagicwhat about cpufreq :D
21:00.47PuffTheMagicshould add that in there too
21:01.12oilput them all on the list
21:01.24PuffTheMagicoil: ?
21:01.47PuffTheMagicoil: was that a yes for cpufreq stuff?
21:02.03oiland netstats
21:02.05*** join/#webos-internals kesne (n=Kesne@pool-173-50-235-167.ptldor.fios.verizon.net)
21:02.08PuffTheMagicyeah
21:02.17PuffTheMagici am never gonna get to the upstart service now
21:02.28oilyou're even got icons!
21:02.42PuffTheMagici better make a 0.1.0 of the ubermonsrv with mem and battery support
21:02.45PuffTheMagicthen to upstart
21:02.53PuffTheMagicand then come back to the monitor
21:02.55oilall wrapped in subscriptions?
21:03.08PuffTheMagicsubscriptions for individual things right now
21:03.12oilah
21:03.13oilok
21:03.17PuffTheMagic"right now"
21:03.19PuffTheMagicthat could change
21:03.27oillol
21:03.45PuffTheMagicthere are like 16 battery methods and 13 methods for mem
21:03.46PuffTheMagic:D
21:03.54PuffTheMagicthere are gonna like 100 methods soon
21:04.23oilthe more info the better the monitor thing
21:06.12kesnewebOS 1.2 this week
21:06.18kesneFor sure
21:08.03PuffTheMagicjust like the past 2 weeks
21:08.48kesneThis time I have a great source
21:08.54kesneIt's almost 100% positive
21:09.06XygJonny R.?
21:11.32*** join/#webos-internals Destroyer661 (n=ORLY@dyn216-8-168-216.ADSL.mnsi.net)
21:11.42*** part/#webos-internals Destroyer661 (n=ORLY@dyn216-8-168-216.ADSL.mnsi.net)
21:15.35gkatsevhttp://blog.wolfire.com/2009/09/preview-of-webkits-webgl-canvas3d/
21:17.24Eguykesne how can you be so sure
21:17.42kesneI just am
21:17.47*** join/#webos-internals eno (n=eno@nslu2-linux/eno)
21:17.47*** mode/#webos-internals [+v eno] by ChanServ
21:18.54tmztgkatsev: sadly that wouldn't be very fast on Pre without the gl driver
21:18.54*** join/#webos-internals christefano (n=christef@c-76-23-159-24.hsd1.ma.comcast.net)
21:20.17*** join/#webos-internals christefano1 (n=christef@c-76-23-159-24.hsd1.ma.comcast.net)
21:24.56EguyI hope so, I am patiently waiting
21:25.59kesneMe too
21:29.07acydlordhaha irony, i'm working on my WebOS projects while wearing a sun microsystems shirt
21:32.26kesne...
21:33.27kesneerg
21:34.15kesneAH
21:34.21kesne29992 downloads
21:35.25bpadalinopalindromes!
21:36.34kesneAHHHH
21:36.39kesne29999
21:37.26bpadalinowhat is being downloaded ?
21:37.37kesnehttp://i650.photobucket.com/albums/uu229/kesne/findapps_2009-13-09_143626.jpg
21:37.39kesneCheckers
21:37.45bpadalinoah cool
21:37.59kesneI wanted to see it at 29999
21:38.03Eguybpadalino: don't bother, it is a crappy app
21:38.10bpadalinoheh
21:38.17Eguy;)
21:38.20bpadalinoonly 3.5 stars :(
21:38.33kesneWell
21:38.38kesneRead the reveiws :/
21:38.42kesneI know why
21:38.48kesneEveryone here knows why
21:39.03kesneAnd Eguy: do you hate me or something xD
21:39.19EguyI am kidding buddy ;)
21:41.08EguyI like the app myself, I usually lose though
21:41.12bpadalinopiece location ?
21:41.15bpadalinothat's the big issue?
21:41.18EguyI am not good with checkers
21:42.22*** join/#webos-internals AZero (n=user@76-193-146-161.lightspeed.kscymo.sbcglobal.net)
21:42.27kesnebpadalino: that and penisland :/
21:42.50*** join/#webos-internals examance1 (n=examance@ip68-99-24-207.om.om.cox.net)
21:42.52bpadalinopenisland.net ?
21:42.55PuffTheMagici love how people are excited about downloads for checkers.... people are drying for a decent game... they will dowload anything at this rate
21:43.05bpadalinomy friend actually runs penisland.net if you want some pens
21:43.17PuffTheMagiclol
21:43.23Eguylol
21:43.42Eguywhat is the deal with penis talk in this room?
21:43.54bpadalinowhoa, who's talking about cock ?!
21:44.01bpadalinoi just like pens
21:44.48acydlordthe reviews in the palm app catalogue always make me lul
21:44.54EguyYes
21:45.03Eguyacydlord: I always end up reading them for fun
21:45.03acydlordits like youtube meets iphone fanboys
21:45.14acydlordme too
21:45.27kesneHaha
21:45.33kesneThe checkers ones are really bad
21:45.49acydlordhavent seen the checkers ones yet
21:45.56acydlordlast one i looked at was lights out
21:46.09kesneOh yeah
21:46.12kesneThat ones is good
21:46.22EguyI haven't read the lights out ones
21:46.52kesne"pretty dum gam"
21:47.01kesne*game
21:47.11acydlordyeah lol
21:47.16*** join/#webos-internals HattCzech (n=chatzill@cpe-66-69-208-155.austin.res.rr.com)
21:47.21kesnePretty dumb person
21:47.40acydlordsome kid posted on my blog one time "your an a$$hole"
21:47.50acydlordi was like GRAMMAR FAIL
21:48.08acydlordwent on for about a page explaining the differences of your and you're
21:48.20acydlord"your stupid" is always one that makes me laugh
21:49.19Xygacydlord: absolutely fascinating.
21:50.24bpadalinoyour ideas intrigue me and i'd like to subscribe to your newsletter
21:50.36acydlordlol
21:50.56acydlordi seem to have opened up a can of worms
21:51.26kesneWoo, we should all watch this: http://forums.precentral.net/palm-pre/202857-jon-rubinstein-speaks-2.html
21:52.07Eguygeesh
21:52.17EguyIt makes you wonder about the owners of the Pre
21:52.36Eguymostly 14 year olds who can't spell or have a comprehension of grammar?
21:57.03kesneEguy: Makes a guy wonder doesnt it
21:57.49EguyYes
21:58.30bpadalinoshould definitely listen in on the earnings conference call on the 17th
21:58.39Eguyhttp://www.engadget.com/2009/09/13/deutsche-telekom-eyeing-sprint-nextel-for-acquisition/ this would be interesting
21:58.47bpadalinothat should be an interesting one since they will probably reveal pre numbers
21:58.49tmzt<PROTECTED>
21:58.50tmztJon just said he "does not know" the processor speed of the Pixie.
21:58.55tmztthe actual speed?
21:59.09bpadalinoit'd be tricky if it were 88MPH
21:59.43tmztit's 528 or 568 or something like that
21:59.48tmztit's not cortex/omap3
21:59.56EguyIt's qualcomm
22:00.10tmztthe engadget review says the interface is fast but not at scaling images and some webpages
22:00.43*** join/#webos-internals dreadchicken (n=deadchic@cpe-67-10-214-58.satx.res.rr.com)
22:00.48Eguywell we know one thing is for sure.... build quality will be WAY up
22:00.52Eguyno oreo
22:01.09Eguynothing to rock side to side
22:01.18bpadalinoarm11 for sure in the msm7200 .. but probably super easy to bring over to umts
22:01.56bpadalinoit does support openGL ES if palm ever wanted to do the 3d thing for all of webos
22:02.32tmztit's not comparable to sgx, assuming it's the same ati imageon gpu from the other msm7k's
22:03.18tmzt16:24 < tmzt> the engadget review says the interface is fast but not at scaling  images and some webpages
22:03.24tmztthe engadget review says the interface is fast but not at scaling some images and some webpages
22:03.55bpadalinoi believe they just do the resizing in software - nothing hardware accelerated about it currently
22:04.37tmztwhich would explain it being faster on the Pre
22:07.13bpadalinoi'd like to see the pixi's power numbers ... i have a feeling they'll be significantly better than the pre due to smaller screen size for one, and only powering one chip instead of both modem and omap
22:09.02kesneEguy: just watch, it WILL wiggle
22:10.22Eguyhah
22:14.36rwhitbymorning
22:14.58tmztbpadalino: there's still a modem, and it's always on on the msm chip, at least partially
22:15.16tmztalso, linux (aurora) doesn't have full power collapse implmented that I know of
22:15.19tmztyet
22:15.25tmztunless it's in 2.6.29 kernel
22:15.30bpadalinoit's a lot less silicon to power
22:18.55EguyHow much is too much? http://www.autoblog.com/2009/09/13/brabus-e-v12-black-baron-is-cloaked-for-speed/ well that about sums it up
22:25.04*** join/#webos-internals EvanDotPro_ (i=Evan@ip72-201-115-158.ph.ph.cox.net)
22:25.12*** join/#webos-internals theo (n=theo@cpe-65-189-49-223.cinci.res.rr.com)
22:29.09*** join/#webos-internals sung (n=sung@mirror6.us.cacheboy.net)
22:29.14*** join/#webos-internals eno (n=eno@nslu2-linux/eno)
22:29.14*** mode/#webos-internals [+v eno] by ChanServ
22:29.14*** join/#webos-internals Max (n=Max@68-242-167-36.pools.spcsdns.net)
22:29.27*** join/#webos-internals bhuey (n=billh@ip68-107-26-122.sd.sd.cox.net)
22:31.19*** join/#webos-internals Hyperiabn (i=deathbli@c-98-207-217-192.hsd1.ca.comcast.net)
22:32.30*** join/#webos-internals Max_ (n=Max@68-242-167-36.pools.spcsdns.net)
22:35.30*** join/#webos-internals rawdr (n=rawdr@cpe-24-209-66-172.woh.res.rr.com)
22:38.37*** join/#webos-internals Zuchmir2 (n=Zuchmir-@ool-18bd3bfc.dyn.optonline.net)
22:39.21acydlordnetsplit?
22:40.36Eguyalways
22:45.29acydlordI actually dont see them often on freenode
22:45.46EguyI have seen it a lot
22:46.21Eguyunless it is a coincidence
22:47.46acydlordmaybe its the server you're on?
22:47.56acydlordor maybe its the server they are on
22:50.02*** join/#webos-internals TIWizard (n=chatzill@pool-71-112-98-61.sttlwa.dsl-w.verizon.net)
22:50.31TIWizardHow do I access the log on the device? /var/log?
22:52.41rwhitbyin /var/log/messages
22:53.51TIWizardOk, is there a command to filter out messages not produced by my app?
22:54.17rwhitbyyep, grep
22:54.26rwhitbyit's a linux box.
22:55.03TIWizardOk, I will look that up.
22:55.05TIWizardThanks
22:55.05rwhitbyTIWizard: which Texas Instruments parts are you a wizard for?
22:55.17TIWizardCalculators
22:55.17rwhitbyomap product line?
22:55.24*** join/#webos-internals netz (n=zn3t@pool-74-99-47-195.chrlwv.east.verizon.net)
22:55.31TIWizardTheir graphing calculators
22:55.41*** join/#webos-internals corq (n=corq@140.150.121.70.cfl.res.rr.com)
22:56.30rwhitbyah, cool.  are you working on a HP calc app for the Pre?
22:56.41TIWizardNo, not right now
22:57.15TIWizardI might in the future, but only after the SDK has expanded a bit...
22:57.26tmztTIWizard: we have a way to do bitmap graphics from native code
22:57.39tmztmaybe even faster than the ti calculators themselves
22:57.49TIWizardNot through the official SDK I assume
22:57.55tmztno
22:58.29*** part/#webos-internals JackieRipper1 (n=jackieri@cpe-24-29-52-250.nycap.res.rr.com)
22:58.40TIWizardWell, maybe after I finish the app I am currently working on
23:00.06kesneMan, I love this band
23:00.57tmztthere's an open vti program right?
23:01.44TIWizardEmulator? Wabbitemu is one, but it is written in C
23:02.02tmztI know there's one for X
23:09.14*** join/#webos-internals Templarian (n=Templari@141.218.15.164)
23:09.14*** mode/#webos-internals [+v Templarian] by ChanServ
23:11.10*** join/#webos-internals JackieRipper (n=jackieri@cpe-24-29-52-250.nycap.res.rr.com)
23:12.53*** join/#webos-internals examancer (n=examance@ip68-99-24-207.om.om.cox.net)
23:17.11*** join/#webos-internals alkos333 (n=alkos333@c-98-227-217-190.hsd1.il.comcast.net)
23:17.29*** join/#webos-internals jcrawford (n=jcrawfor@pool-173-76-100-168.bstnma.fios.verizon.net)
23:19.27*** join/#webos-internals EvanDotPro (i=Evan@ip72-201-115-158.ph.ph.cox.net)
23:19.27*** mode/#webos-internals [+v EvanDotPro] by ChanServ
23:22.48*** join/#webos-internals examance2 (n=examance@ip68-99-24-207.om.om.cox.net)
23:29.57*** join/#webos-internals AgentSmith (n=AgentSmi@c-71-56-237-125.hsd1.co.comcast.net)
23:56.16*** join/#webos-internals todivefor (i=4a62e37d@gateway/web/freenode/x-dahzjxgefhwkwujz)

Generated by irclog2html.pl Modified by Tim Riker to work with infobot.