*** ajturner has quit IRC | 00:05 | |
*** pvanhoof has joined #maemo | 00:11 | |
*** mlpug has quit IRC | 00:11 | |
*** TheNickDe has quit IRC | 00:15 | |
*** NickDe has joined #maemo | 00:16 | |
*** nhdezoito_adrian has left #maemo | 00:20 | |
*** ajturner has joined #maemo | 00:24 | |
*** jwb is now known as jwb_gone | 00:25 | |
Pupnik | has anyone tried the patch for xomap which supposedly fixes some Xsp damage issues? | 00:26 |
---|---|---|
Pupnik | https://garage.maemo.org/tracker/index.php?func=detail&aid=531&group_id=164&atid=683 | 00:27 |
*** spect has quit IRC | 00:27 | |
Pupnik | Daniel Stone apparently wants Xsp 'killed' and i have to assume he's got good reasons for that. Still it would be a great help for games and emus if pixel-doubling could be fixed to work reliably | 00:28 |
Tak|work | I don't really care if xsp gets killed, as long as there remains some simple way to get hw-accelerated scaling without being locked into e.g. Xv | 00:29 |
Pupnik | Looking at alternatives to get faster screen updates. It might be possible to use ssvb 's direct frame buffer writing, overlaying some SDL functions (put_rect / page flip?) | 00:29 |
*** etrunko has quit IRC | 00:30 | |
Pupnik | Tak|work: yeah... Does the pixel doubling mean the dsp is unavailable for mp3 sink accelerated playback? | 00:30 |
Tak|work | I don't think so | 00:31 |
Pupnik | i suppose i could test this :) | 00:31 |
Tak|work | I tried a dsppcmsink-based audio driver for a while | 00:31 |
Tak|work | (which didn't seem to conflict) | 00:31 |
Pupnik | ok | 00:31 |
ssvb | Pupnik: maybe Daniel Stone can just implement support for setting (emulating) low resolutions in xserver? this should cover most of current Xsp uses and be more compatible with existing applications | 00:32 |
*** dolske has joined #maemo | 00:33 | |
Tak|work | would work for me | 00:33 |
ssvb | Pupnik: pixel doubling (and arbitrary upscaling on N800) is unrelated to DSP at all, it is done by Epson graphics chip | 00:34 |
ssvb | Tak|work: did you try working directly with DSP tasks for audio output? | 00:36 |
Tak|work | no, not yet | 00:36 |
ssvb | Tak|work: are you going to try? | 00:36 |
Tak|work | I'd like to create a dsp task for the sample generation | 00:36 |
Tak|work | assuming I get a coincidental spike of time and ambition, yes | 00:37 |
*** nhdezoito_adrian has joined #maemo | 00:38 | |
ssvb | Tak|work: deciphering and documenting gstreamer dsp sinks code might be the first step to use Nokia provided DSP tasks bypassing gstreamer layer | 00:39 |
*** nhdezoito_adrian has left #maemo | 00:40 | |
* Tak|work nods | 00:40 | |
Pupnik | you have dsp programming documentation? | 00:40 |
ssvb | Tak|work: it may work more reliable, at least theoretically | 00:40 |
Tak|work | yeah, although prone to breakage when nokia shuffles things around with new releases | 00:42 |
ssvb | Pupnik: here is some report about using dsp on 770 with some simple examples: http://maemo.org/pipermail/maemo-developers/2006-January/002607.html | 00:42 |
*** |tbb| has joined #maemo | 00:42 | |
ssvb | Pupnik: there are lots of TI docs about C55x DSP | 00:42 |
*** NickDe has quit IRC | 00:44 | |
Tak|work | we still don't have source to nokia-provided tasks, do we? | 00:44 |
ssvb | Tak|work: yes, the first thing to verify is if DSP tasks API is the same on 770 and N800 | 00:44 |
*** NickDe has joined #maemo | 00:44 | |
Pupnik | ok not that i will be dsp programming any time soon though :) | 00:44 |
ssvb | Tak|work: I think we may forget any hope about ever seeing these sources | 00:45 |
* Tak|work nods | 00:45 | |
*** Olof has joined #maemo | 00:50 | |
*** polpak has joined #maemo | 00:51 | |
*** cecil has quit IRC | 01:00 | |
*** cecil has joined #maemo | 01:00 | |
*** Tak|work has quit IRC | 01:04 | |
*** ssvb has quit IRC | 01:08 | |
*** Muzero has joined #maemo | 01:09 | |
Muzero | hi to all | 01:09 |
*** korpios has quit IRC | 01:13 | |
* bill20r3 waits patiently for usb-host drivers. | 01:14 | |
Muzero | someone have tried a jvm on nokia 770? | 01:16 |
*** |tbb| has quit IRC | 01:20 | |
*** Muzero has left #maemo | 01:22 | |
*** felipec has quit IRC | 01:24 | |
*** krau has quit IRC | 01:25 | |
*** Muzero has joined #maemo | 01:26 | |
*** Muzero has left #maemo | 01:32 | |
*** sbaturzio has quit IRC | 01:36 | |
*** Andy80 has quit IRC | 01:51 | |
*** luizirber has joined #maemo | 01:55 | |
*** chenca has quit IRC | 01:55 | |
Pupnik | ok easiest way will be to do an execlp() to launch external mp3 dsp playback | 01:56 |
*** k-s[WORK] has quit IRC | 01:56 | |
Pupnik | but can i use gst-tools to detect whether i am currently playing? :) | 01:59 |
*** RealNitro has quit IRC | 02:02 | |
*** Yamazaki-kun has joined #maemo | 02:03 | |
*** flyingfred0 has quit IRC | 02:04 | |
*** flyingfred0 has joined #maemo | 02:05 | |
Pupnik | i could use ps aux |grep gst-launch |grep -v grep | 02:05 |
Pupnik | if that's nonzero, then a song is playing :) | 02:17 |
Pupnik | warning: cannot pass objects of non-POD type `struct std::string' through | 02:21 |
Pupnik | hrmf | 02:21 |
Pupnik | ahh need to cast ogg_name to a 'const char'? | 02:22 |
inz | std::string::c_str() should be what you want | 02:23 |
Pupnik | const char *name is what forked player uses | 02:24 |
Pupnik | can i just do const char *oname; | 02:25 |
Pupnik | and oname = ogg_name ? | 02:25 |
Pupnik | if ogg_name is type "string"? | 02:25 |
sp3000 | hmm | 02:28 |
sp3000 | <maemo-developers@maemo.org>: service unavailable. Command output: Message content rejected | 02:28 |
*** florian_ has joined #maemo | 02:28 | |
sp3000 | I think postfix just dissed me | 02:28 |
*** florian has quit IRC | 02:29 | |
*** florian_ is now known as florian | 02:29 | |
Pupnik | heh i need to find a method of C++ string that returns a pointer to a character array | 02:29 |
*** jonty has joined #maemo | 02:32 | |
sp3000 | c_str | 02:32 |
*** obergix[work] has quit IRC | 02:32 | |
Pupnik | so mychararray = mycstring.c_str ? | 02:33 |
*** yerga has joined #maemo | 02:35 | |
Pupnik | ahh just needed () | 02:37 |
inz | isn't it what I said? | 02:39 |
inz | ;) | 02:39 |
*** Zword has quit IRC | 02:40 | |
*** Zword has joined #maemo | 02:40 | |
*** behdad has joined #maemo | 02:44 | |
*** vivijim has quit IRC | 02:44 | |
*** ajturner has quit IRC | 02:45 | |
*** yerga has quit IRC | 02:45 | |
Pupnik | spawning a gst-launch process doesn't seem like such a terrible idea for music playback | 02:49 |
Pupnik | thanks for the help inz and sp3000 | 02:49 |
*** jonty has quit IRC | 02:51 | |
*** anthm has quit IRC | 02:59 | |
*** unique311 has joined #maemo | 03:02 | |
*** florian has quit IRC | 03:05 | |
*** s-ndh-c has quit IRC | 03:06 | |
*** s-ndh-c has joined #maemo | 03:06 | |
*** pvanhoof has quit IRC | 03:13 | |
*** soleblaze has joined #maemo | 03:13 | |
*** flyingfred0 has quit IRC | 03:14 | |
*** polpak has quit IRC | 03:28 | |
Pupnik | grh gst-launch could use a repeat flag eh? | 03:30 |
*** sabotage is now known as sabotage_afk | 03:32 | |
*** mat has quit IRC | 03:36 | |
*** mat has joined #maemo | 03:38 | |
*** luizirber has quit IRC | 03:47 | |
*** plr__ has joined #maemo | 03:53 | |
*** polac_ has joined #maemo | 03:53 | |
*** Raekkeri_ has joined #maemo | 03:53 | |
*** alump_ has joined #maemo | 03:54 | |
*** wasabi has joined #maemo | 03:57 | |
*** JussiP has quit IRC | 03:58 | |
*** roope has quit IRC | 03:58 | |
*** plr_ has quit IRC | 03:58 | |
*** wiljo has quit IRC | 03:59 | |
*** roope has joined #maemo | 03:59 | |
*** cosmo__ has quit IRC | 03:59 | |
*** cosmo has joined #maemo | 04:00 | |
*** ccjoe has quit IRC | 04:01 | |
*** jacques has joined #maemo | 04:01 | |
*** wiljo has joined #maemo | 04:02 | |
*** JussiP has joined #maemo | 04:02 | |
*** alump has quit IRC | 04:07 | |
*** Raekkeri has quit IRC | 04:07 | |
*** sp3000 has quit IRC | 04:08 | |
*** polac has quit IRC | 04:08 | |
*** kkito has quit IRC | 04:10 | |
*** pdz has joined #maemo | 04:11 | |
*** mat has quit IRC | 04:13 | |
*** pdz- has quit IRC | 04:22 | |
*** Pio has quit IRC | 04:25 | |
unique311 | source for appleII emu...i need | 04:27 |
*** greentux has quit IRC | 04:27 | |
Pupnik | can i test if gst-launch is playing, without resorting to a ps |grep? | 04:36 |
*** greentux has joined #maemo | 04:41 | |
*** _follower_ has joined #maemo | 04:57 | |
*** fcarvalho has quit IRC | 05:08 | |
*** mikemorrison has joined #maemo | 05:43 | |
*** greentux_ has joined #maemo | 05:45 | |
*** greentux has quit IRC | 05:47 | |
Pupnik | ah i need to execlp instead of using system() | 05:56 |
*** ccjoe has joined #maemo | 06:03 | |
*** mat has joined #maemo | 06:24 | |
*** _follower_ has quit IRC | 06:26 | |
*** flyingfred0 has joined #maemo | 06:35 | |
*** pdz- has joined #maemo | 06:42 | |
*** pdz has quit IRC | 06:55 | |
*** unique311 has quit IRC | 07:06 | |
*** _follower_ has joined #maemo | 07:20 | |
*** rkaway has quit IRC | 07:27 | |
*** rkaway has joined #maemo | 07:27 | |
*** _follower_ has quit IRC | 07:31 | |
*** dev has quit IRC | 07:44 | |
*** dev has joined #maemo | 07:44 | |
Pupnik | exult anybody want to test exult? | 07:51 |
Pupnik | pupnik.de/Ultima7_music_stereo_mp3 <- music files | 07:51 |
Pupnik | http://pupnik.de/exult770.html <- exult binary and data files | 07:52 |
Pupnik | ultima 7 game data required | 07:52 |
*** dolske has quit IRC | 08:29 | |
*** djcb has joined #maemo | 08:30 | |
*** _follower_ has joined #maemo | 09:03 | |
*** dolske has joined #maemo | 09:04 | |
*** polpak has joined #maemo | 09:06 | |
*** booiiing has quit IRC | 09:12 | |
*** maemo has joined #maemo | 09:14 | |
*** booiiing has joined #maemo | 09:17 | |
*** shackan has quit IRC | 09:26 | |
*** pleemans has joined #maemo | 09:27 | |
*** djcb has quit IRC | 09:36 | |
*** sKaBoy has joined #maemo | 09:44 | |
*** mikemorrison has quit IRC | 09:51 | |
*** X-Fade has joined #maemo | 09:52 | |
*** Knowledge_ has joined #maemo | 09:57 | |
*** KevinVerma has joined #maemo | 09:58 | |
*** bergie has joined #maemo | 09:59 | |
*** sabotage_afk has quit IRC | 10:01 | |
*** sabotage_afk has joined #maemo | 10:01 | |
*** garrett has joined #maemo | 10:11 | |
*** Knowledge has quit IRC | 10:14 | |
*** sotod has quit IRC | 10:27 | |
*** czr has quit IRC | 10:51 | |
*** _follower_ has quit IRC | 10:51 | |
*** czr has joined #maemo | 10:52 | |
*** Olof_ has joined #maemo | 10:53 | |
*** Olof has quit IRC | 10:53 | |
*** greentux_ has quit IRC | 10:54 | |
*** greentux has joined #maemo | 11:00 | |
Jaffa | Morning, all | 11:08 |
*** dpb has quit IRC | 11:10 | |
*** repejota has joined #maemo | 11:12 | |
*** dpb has joined #maemo | 11:14 | |
*** obergix[work] has joined #maemo | 11:17 | |
keesj | bugger my touchscreen is loosing sentitivity again | 11:24 |
zuh | That seems to be a common problem, I have parts of my screen less sensitive than others and kulve has the whole screen going all funky. I wonder if this is a calibration problem or just simply a hw being crappy... | 11:35 |
*** KevinVerma has quit IRC | 11:35 | |
kulve | I would guess the latter | 11:35 |
kulve | reflashing or recalibrating didn't help at all | 11:35 |
keesj | zuh I had the same problem on the 770 at the place where you click the most | 11:37 |
keesj | that is at the icon to open the main menu | 11:37 |
keesj | it started like that and after the whole vertial line stopped working :( | 11:37 |
*** Phoenigore is now known as PHoeNiGoRe | 11:44 | |
polpak | does anyone know where I can find documentation on building gstreamer plugins so I can actually play videos on the n800 (in my app) ? | 11:45 |
*** PHoeNiGoRe is now known as Phoenigore | 11:45 | |
polpak | so far as I can tell, there aren't any formats that are supported out of the box which is highly frustrating | 11:46 |
kulve | apt-get install gstreamer0.10-tools && gst-inspect | less | 11:48 |
polpak | kulve: yes.. I did that | 11:48 |
kulve | so you see there are video decoders on the device | 11:49 |
polpak | kulve: I might if I was using the device... | 11:50 |
polpak | kulve: I'm using the sdk | 11:50 |
polpak | kulve: do they not put the decoders in the sdk? | 11:51 |
polpak | kulve: cause that makes it a bit challenging to write applications that do video ;p | 11:51 |
*** sbaturzio has joined #maemo | 11:53 | |
kulve | why? compile in the sdk, run on the device.. | 11:53 |
kulve | and yeah, those closed source codecs are not in the sdk | 11:53 |
polpak | ok | 11:54 |
kulve | generally I find running stuff in the cross compilation env (SB) too compilated and problematic and don't anymore even try it.. | 11:54 |
kulve | complicated | 11:55 |
*** bilboed has joined #maemo | 11:55 | |
polpak | kulve: what's the easiest way to transfer files to the device? | 11:55 |
kulve | scp | 11:55 |
kulve | (imo) | 11:56 |
polpak | kulve: what's the username | 11:56 |
kulve | root | 11:56 |
kulve | (because the user 'user' doesn't have a passwd) | 11:56 |
polpak | kulve: presumably there's not a default password? | 11:56 |
kulve | 'rootme' of course :) | 11:56 |
*** jpetersen has joined #maemo | 11:56 | |
kulve | so don't leave your ssh running without changing the passwd while roaming on public wlans.. | 11:57 |
polpak | kulve: indeed | 11:57 |
polpak | kulve: thanks much. You've been most informative | 11:57 |
kulve | np :) | 11:58 |
* polpak has to go get the damned device back from his coworker now | 11:58 | |
polpak | ;p | 11:58 |
*** [pcfe] has joined #maemo | 12:07 | |
*** polpak has quit IRC | 12:07 | |
*** florian has joined #maemo | 12:10 | |
*** bergie has quit IRC | 12:19 | |
`0660 | heh, i'm in a uni lecture where we have a guest lecturer who at least worked in nokia doing stuff for maemo :) | 12:27 |
`0660 | or maybe he was an external contractor there... anyway should be interesting lecture :) | 12:28 |
*** jku__ is now known as jku | 12:33 | |
*** konfoo has quit IRC | 12:34 | |
*** Olof_ has quit IRC | 12:36 | |
*** Olof has joined #maemo | 12:37 | |
inz | `0660, which row you in?-) | 12:38 |
`0660 | left side, no hair :) | 12:39 |
inz | I can see you... ;) | 12:39 |
inz | Last row, on the right ;) | 12:39 |
`0660 | scary :) | 12:40 |
inz | `0660, *phew*, I'm not the oldest student on this lecture (course?) | 13:04 |
gla55 | hehe | 13:05 |
keesj | :p | 13:06 |
inz | Well, there might be someone even older, but 0660 is at least 4 days older than me! | 13:07 |
`0660 | hah, now i feel old even though i'm just 24 :) | 13:07 |
`0660 | :p | 13:08 |
`0660 | heh, he's talking about how to take advantage of oss when doing closed source :) | 13:10 |
c0ffee | strangle him! | 13:11 |
gla55 | there must be someone older there | 13:11 |
osfameron | nothing wrong with taking advantage of OSS in closed source projects | 13:13 |
keesj | just avoid gpl | 13:17 |
`0660 | it's just that he seemed to take it for granted that we would always develop closed source | 13:17 |
inz | 0660, did you close your ears on the part where he told the motivation for keeping parts closed? | 13:18 |
`0660 | though | 13:18 |
`0660 | i might have missed something while focusing in irc :) | 13:18 |
inz | =) | 13:18 |
`0660 | i saw that part | 13:18 |
osfameron | you can use gpl in server side or web applications no problem | 13:19 |
inz | *graah* I'm almost certain I saw dbus 0.61 packaged for dapper somewhere... | 13:20 |
*** einari_ is now known as einari | 13:20 | |
inz | But now I can't find it anywhere... | 13:20 |
inz | I wouldn't like to run the sw inside scratchbox (maemo has 0.61 which has fixed glib bindings) | 13:21 |
inz | (the problem with 0.60 is with aa{sv} signature for a parameter | 13:22 |
inz | +) | 13:22 |
*** jpetersen_ has joined #maemo | 13:33 | |
*** repejota has quit IRC | 13:49 | |
*** jpetersen has quit IRC | 13:49 | |
*** shackan has joined #maemo | 14:06 | |
*** b0unc3 has quit IRC | 14:07 | |
*** b0unc3 has joined #maemo | 14:08 | |
*** b0unc3_ has joined #maemo | 14:15 | |
*** jku_ has joined #maemo | 14:18 | |
*** jku has quit IRC | 14:21 | |
*** jpetersen_ has quit IRC | 14:22 | |
*** robtaylo1 is now known as robtaylor | 14:24 | |
*** fcarvalho has joined #maemo | 14:27 | |
*** b0unc3 has quit IRC | 14:30 | |
*** Phoenigore is now known as PHoeNiGoRe | 14:32 | |
*** ajturner has joined #maemo | 14:40 | |
*** konttori has joined #maemo | 14:43 | |
*** dev has quit IRC | 14:46 | |
*** dev has joined #maemo | 14:46 | |
*** PHoeNiGoRe is now known as Phoenigore | 14:46 | |
*** b0unc3_ is now known as b0unc3 | 14:50 | |
*** Phoenigore is now known as PHoeNiGoRe | 14:51 | |
*** bergie has joined #maemo | 15:03 | |
*** krau has joined #maemo | 15:09 | |
*** sp3000 has joined #maemo | 15:23 | |
*** MikeJ_ has quit IRC | 15:27 | |
*** shackan has quit IRC | 15:28 | |
*** Pupnik_ has joined #maemo | 15:32 | |
*** k-s[WORK] has joined #maemo | 15:34 | |
*** chenca has joined #maemo | 15:35 | |
*** Andy80 has joined #MAEMO | 15:35 | |
Andy80 | Hi | 15:36 |
konttori | hi | 15:36 |
konttori | seems to be radio silence here today. | 15:36 |
konttori | nobody talking anything | 15:36 |
Andy80 | Eheh | 15:37 |
Andy80 | I'm from my 770 :) | 15:37 |
Andy80 | I've a little question: how can I help you with google soc? | 15:38 |
* pahartik at park with Nokia 770 | 15:38 | |
konttori | I didn't understand what you were asking | 15:39 |
konttori | can you rephrase? | 15:39 |
Andy80 | pahartik, lucky you, to have wifi connection at park :) | 15:39 |
Andy80 | konttori, me? | 15:40 |
dpb_ | who says it's wifi? | 15:40 |
Andy80 | right dpb | 15:41 |
pahartik | Andy80: I do not... I use WCDMA/GPRS over Bluetooth everywhere | 15:41 |
*** NickDe has quit IRC | 15:42 | |
*** Pupnik has quit IRC | 15:43 | |
pahartik | Andy80: Except at my cave, where I have Bluetooth access point | 15:43 |
Andy80 | pahartik, ah cool anyway | 15:44 |
pahartik | Andy80: I am very much tied up to mobility | 15:45 |
Andy80 | Eheh | 15:46 |
Andy80 | I'll be back later...see ya! | 15:46 |
*** Andy80 has quit IRC | 15:46 | |
*** NickDe has joined #maemo | 15:46 | |
*** mgedmin has joined #maemo | 15:52 | |
*** KevinVerma has joined #maemo | 15:54 | |
*** X-Fade_ has joined #maemo | 15:59 | |
*** vivijim has joined #maemo | 16:00 | |
*** etrunko has joined #maemo | 16:03 | |
*** X-Fade has quit IRC | 16:16 | |
*** jwb_gone is now known as jwb | 16:16 | |
*** sbaturzio has quit IRC | 16:27 | |
*** jhe_ is now known as jhe | 16:39 | |
*** anthm has joined #maemo | 16:40 | |
Pupnik_ | why do people need google to declare a 'summer of code' to code something? | 16:42 |
*** Pupnik_ is now known as Pupnik | 16:42 | |
anthm | If they did it all 4 seasons it may end up too well designed to earn the trendy "beta" status =D | 16:44 |
*** behanw has quit IRC | 16:46 | |
*** spect has joined #maemo | 16:46 | |
dragorn | I'd guess 2 reasons - college students and HS students (to be generous) have work during the rest of the year, and people suck at self-motivation | 16:47 |
mgedmin | I'm pure genius at sucking at self-motivation... :( | 16:49 |
derf | Pupnik: Also, they get paid. | 17:06 |
derf | It's amazing what students will do for even the smallest amounts of money. | 17:07 |
Pupnik | ./exult: relocation error: ./exult: symbol powf, version GLIBCXX_3.4 not defined in file libstdc++.so.6 with link time reference | 17:08 |
Pupnik | does anyone know why libstdc++.so.6 on the nokia is 3x smaller than the one in scratchbox? | 17:09 |
* Pupnik has to try compiling against the native libstdc++.so.6.3, or find what library in the source is calling powf | 17:10 | |
Pupnik | yeah derf, i suppose getting paid a couple hundred bucks to write something is much more exciting than getting paid to make burgers | 17:11 |
*** Tak|work has joined #maemo | 17:16 | |
*** korpios has joined #maemo | 17:16 | |
dragorn | Pupnik: the easiest reason might be that the one in SB contains debug info | 17:17 |
dragorn | Pupnik: run file on it, see if it says "not stripped" | 17:17 |
Pupnik | yeah notstripped | 17:17 |
dragorn | that'd be why | 17:18 |
Pupnik | i found the code calling the powf though, so pulling it out will at least solve that | 17:18 |
dragorn | it's for debugging in sb | 17:18 |
Pupnik | so i used an inappropriate compile/link option? | 17:18 |
Pupnik | the executeable gets stripped | 17:18 |
dragorn | powf is probably in libm | 17:19 |
dragorn | stripping applies to objects, so a dynlink to a stripped/not stripped object ought to be interchangeable | 17:19 |
Pupnik | that's what i thought. the powf function should still be in the stripped libstdc++ | 17:20 |
*** lardman|afk is now known as lardman | 17:23 | |
lardman | Any Python programmers here? What book(s) would you recommend for reference (coming from C/MATLAB/FORTRAN/C++ background)? | 17:24 |
*** flyingfred0 has quit IRC | 17:24 | |
dragorn | the oreilly learning python book is pretty good | 17:25 |
lardman | and also, does anyone know whether there's a Python PrettyPrinter module available (for equations), or a rendering module for MathML or OpenMath? | 17:25 |
lardman | Programming Python looks like it might be more advanced (=good) | 17:28 |
JussiP | Dive into Python is quite nice and also free. | 17:32 |
lardman | I've just downloaded that to take a look - I could do with a paper book though, I'm not fond of reading on the screen (bring on e-paper!) | 17:34 |
lardman | Looks like it should give me the basics, thanks | 17:35 |
lardman | Lots of internet stuff in there; I'm more interested in GUI stuff (to display the maths studd) | 17:35 |
lardman | s/studd/stuff | 17:35 |
*** bergie has quit IRC | 17:38 | |
Pupnik | woot -O3 worked well for exult! | 17:41 |
*** florian_ has joined #maemo | 17:42 | |
*** florian has quit IRC | 17:44 | |
*** nhdezoito_adrian has joined #maemo | 17:44 | |
*** florian_ is now known as florian | 17:44 | |
*** PHoeNiGoRe is now known as Phoenigore | 17:45 | |
Pupnik | anybody up for some playtesting? | 17:54 |
*** pleemans has quit IRC | 17:56 | |
lardman | http://sourceforge.net/projects/pymathml/ cool :) | 18:05 |
lardman | though dead from the looks of it | 18:06 |
*** jacques has quit IRC | 18:09 | |
*** sabotage_afk is now known as sabotage | 18:10 | |
*** bipolar has joined #maemo | 18:16 | |
*** rkaway has quit IRC | 18:18 | |
*** florian has quit IRC | 18:19 | |
*** florian has joined #maemo | 18:19 | |
k-s[WORK] | lardman: you may look at scipy, numeric and other related projects | 18:20 |
k-s[WORK] | lardman: http://matplotlib.sourceforge.net/ | 18:20 |
k-s[WORK] | lardman: I also find pyx useful http://pyx.sourceforge.net/ | 18:21 |
*** Zenton has quit IRC | 18:21 | |
*** ccjoe has quit IRC | 18:28 | |
*** bergie has joined #maemo | 18:32 | |
*** rkaway has joined #maemo | 18:37 | |
*** fcarvalho has quit IRC | 18:37 | |
*** ccjoe has joined #maemo | 18:40 | |
*** shackan has joined #maemo | 18:42 | |
lardman | k-s[WORK]: Thanks, matplotlib looks good for the graphing side. I've already hacked this code (http://toykeeper.net/programs/pyrpn/) to produce a frontend for yacas, so I don't need much by way of mathematics programming in python atm | 18:44 |
lardman | though I will do when I add other functions, graphing, etc. | 18:44 |
*** Zenton has joined #maemo | 18:44 | |
k-s[WORK] | ok | 18:44 |
lardman | What I do want is to prettyprint the equations that go in and out | 18:45 |
*** dneary has joined #maemo | 18:49 | |
Pupnik | Execution ended after 127221649000 ns | 18:52 |
Pupnik | timer resolution overkill | 18:52 |
lardman | what's that timing? | 18:53 |
*** lmoura has joined #maemo | 18:55 | |
Pupnik | gstreamer mp3 playback | 18:57 |
*** jpetersen has joined #maemo | 19:07 | |
*** lardman is now known as lardman|gone | 19:15 | |
*** fcarvalho has joined #maemo | 19:26 | |
*** gpd has joined #maemo | 19:26 | |
*** KevinVerma has quit IRC | 19:30 | |
*** KevinVerma has joined #Maemo | 19:30 | |
*** behdad has quit IRC | 19:32 | |
gpd | I am currently without a wireless network at home - how can I get my N800 to have access to the net via the USB cable to my laptop? | 19:34 |
gpd | If that is tricky - I just found a USB wireless card that I suppose I could use to setup an ad hoc network to the N800 | 19:37 |
*** fcarvalho has quit IRC | 19:37 | |
zuh | It's nontrivial, but there is few howtos on usb networking: http://test.maemo.org/community/wiki/howto/ (under "Networking") | 19:38 |
*** pleemans has joined #maemo | 19:41 | |
*** anthm has quit IRC | 19:45 | |
*** pleemans has quit IRC | 19:49 | |
*** polpak has joined #maemo | 19:50 | |
*** jurop88 has joined #maemo | 19:51 | |
*** maemo has quit IRC | 19:53 | |
*** sbaturzio has joined #maemo | 19:56 | |
*** niaht has joined #maemo | 19:57 | |
*** pleemans has joined #maemo | 19:57 | |
*** garrett has quit IRC | 20:01 | |
gpd | thanks zuh - as you say, a little complex for right now - I guess I'll wait for my DSL router to arrive ;) | 20:03 |
*** lele has joined #maemo | 20:06 | |
*** greentux has quit IRC | 20:10 | |
*** garrett has joined #maemo | 20:15 | |
*** greentux has joined #maemo | 20:15 | |
*** dg has left #maemo | 20:16 | |
*** Olof has quit IRC | 20:16 | |
*** florian has quit IRC | 20:17 | |
*** krau has quit IRC | 20:19 | |
*** AD-N770 has quit IRC | 20:23 | |
Pupnik | i wonder when it will be possible to make a n770/800 tablet for around 250 dollars | 20:24 |
*** Phoenigore is now known as PHoeNiGoRe | 20:24 | |
*** garrett has quit IRC | 20:24 | |
*** bipolar has quit IRC | 20:24 | |
Pupnik | 400 usd is great, but at lower price points you could see sales explode | 20:25 |
*** obergix[work] has quit IRC | 20:30 | |
*** KevinVerma has quit IRC | 20:33 | |
*** garrett has joined #maemo | 20:33 | |
*** bilboed has quit IRC | 20:38 | |
*** RealNitro has joined #maemo | 20:39 | |
*** nhdezoito_adrian has quit IRC | 20:39 | |
*** garrett has quit IRC | 20:43 | |
Pupnik | heh, playing aklabeth on the 770 now | 20:43 |
*** nhdezoito_adrian has joined #maemo | 20:45 | |
* k-s[WORK] is away: lunch | 20:46 | |
*** k-s[WORK] is now known as ks-[AWAY_WORK] | 20:47 | |
Disconnect | fyi i got 2 of the 4gig non-spec sd cards for my n800. (currently on the wootoff) they work great. | 20:48 |
*** djcb has joined #maemo | 20:52 | |
*** Sulis has joined #maemo | 20:52 | |
*** soldstatic has joined #maemo | 20:52 | |
*** behdad has joined #maemo | 20:53 | |
soldstatic | I LOVE MY INTERNET TABLET | 20:56 |
soldstatic | WOOT! | 20:56 |
Sulis | hehe | 20:56 |
Sulis | i've just got a bluetooth keyboard for mine | 20:57 |
soldstatic | ooo i would like that | 20:58 |
soldstatic | but i dont have the cash | 20:58 |
soldstatic | I'm going overseas in a few weeks, I really want to get a BT GPS receiver | 20:58 |
soldstatic | but again, no cash | 20:58 |
Sulis | yeah, i thought about getting one of those | 20:59 |
soldstatic | Do you have 800 or 770? | 21:00 |
Sulis | 800 | 21:00 |
soldstatic | oo fancy pants arent ya | 21:01 |
*** dneary has quit IRC | 21:01 | |
soldstatic | little webcam and all | 21:01 |
Sulis | had it for a few weeks, but realised that typing anything long with the stylus was a bit painful | 21:01 |
soldstatic | That it is | 21:01 |
soldstatic | I set up ssh on mine so I could do most everything from my laptop | 21:02 |
Sulis | lol, i don't think the little webcam is worth very much to me | 21:02 |
soldstatic | bigger screen and keyboard, easier for maintanence | 21:02 |
soldstatic | what do you use yours for? | 21:02 |
Sulis | just browsing the web and chatting really | 21:03 |
Sulis | i'll see how well it can function as my music player if i get a large memory card... | 21:03 |
mgedmin | it functions adequately | 21:03 |
mgedmin | the media player is a bit silly (press "next" twice very fast, and it'll play one song while showing a different song name) | 21:04 |
soldstatic | I use for media player all the time | 21:04 |
soldstatic | Canola is a great app for media playing | 21:04 |
soldstatic | great for in the car or just regular | 21:04 |
mgedmin | the 1.5-second lag where it continues playing after you press "stop" is also a bit annoying | 21:04 |
soldstatic | I have videos and music and of course lots of internet radio stations | 21:04 |
mgedmin | I used Canola (and liked it a lot), but then it went schizophrenic on me | 21:05 |
soldstatic | ha that sucks | 21:05 |
Sulis | yeah, canola is good, but it's not indexing my music properly atm | 21:05 |
mgedmin | (random play started playing the same track over and over again, things like that) | 21:05 |
*** fcarvalho has joined #maemo | 21:05 | |
soldstatic | Ah wierd | 21:05 |
mgedmin | I suspect that's because Canola uses the same media player engine as the media player | 21:05 |
mgedmin | and I tried to use both at the same time, confusing both horribly | 21:06 |
soldstatic | yes | 21:06 |
mgedmin | (it's not very smart to keep local state when you're controlling a daemon that can also be controlled by other apps) | 21:06 |
mgedmin | anyway, e-books is the killer feature of the n800 for me | 21:06 |
Sulis | that's a good thing about it too, but everytime i update fbreader my library gets wiped, irritating | 21:08 |
soldstatic | yea | 21:09 |
soldstatic | I read more in the last couple months than I have in the last couple years | 21:09 |
mgedmin | Sulis: that's interesting, have you brought that to the attention of fbreader's developers? | 21:10 |
* thoughtfix wanders back | 21:10 | |
*** Sulis has quit IRC | 21:14 | |
*** nhdezoito_adrian has left #maemo | 21:16 | |
* Pupnik plays a game written in 1981 on the n770 :P | 21:18 | |
*** Sulis has joined #maemo | 21:18 | |
Sulis | haha, oops | 21:19 |
Sulis | mgedmin, no i haven't reported it to the developers, tbh i thought that it would be a known issue | 21:19 |
mgedmin | I've upgraded fbreader many times, but I don't think I ever lost my library | 21:20 |
mgedmin | actually, I did when I moved all the books into a different directory :) | 21:20 |
mgedmin | but that's not fbreader's fault | 21:20 |
Sulis | lol, no | 21:22 |
Sulis | i'm gonna have to sort out the shortcuts for this keyboard...all the defaults use the F keys, and this doesn't have any | 21:24 |
Sulis | when was the last firmware update? | 21:29 |
Sulis | and would the sdhc firmware include the nokia updates? | 21:32 |
*** dieguito has joined #maemo | 21:36 | |
*** bergie has quit IRC | 21:37 | |
* ks-[AWAY_WORK] is back. | 21:37 | |
*** ks-[AWAY_WORK] is now known as k-s[WORK] | 21:38 | |
k-s[WORK] | Sulis: what it's not indexing properly? | 21:40 |
k-s[WORK] | mgedmin: I already told you that we do use the same engine and that's the problem reason | 21:41 |
*** vivijim has left #maemo | 21:41 | |
*** vivijim has joined #maemo | 21:42 | |
polpak | How do you ssh into the n800? | 21:42 |
polpak | it's apparently running an ssh daemon | 21:42 |
polpak | but I can't figure out what user/pass to use | 21:42 |
`0660 | root/rootme | 21:44 |
*** vivijim has quit IRC | 21:45 | |
*** vivijim has joined #maemo | 21:45 | |
Sulis | k-s[WORK], it's not indexing my mp3s | 21:50 |
polpak | `0660: yeah, I tried that. It doesn't seem to work. Do I need to change some setting to allow root to login? | 21:50 |
Sulis | polpak, you don't need to change anything | 21:50 |
mgedmin | polpak: which ssh server have you installed -- openssh or dropbear? | 21:51 |
*** viviji1 has joined #maemo | 21:51 | |
polpak | looks like dropbear | 21:53 |
Sulis | i've got the same, and i just ssh right into root, don't need to change anything | 21:53 |
sp3000 | maybe someone already logged in and changed it :) | 21:53 |
polpak | egh | 21:53 |
polpak | probably | 21:53 |
polpak | it's a "work" device | 21:54 |
polpak | I'm supposed to write an app for it | 21:54 |
polpak | and someone apparently already messed it up | 21:54 |
polpak | is there a way to flash it? | 21:54 |
Sulis | what app are you going to write for it? | 21:54 |
polpak | Sulis: that'd be telling ;p | 21:54 |
Sulis | yep, tell tell tell! | 21:55 |
Sulis | :P | 21:55 |
* polpak prefers to keep the lawyers at bay | 21:55 | |
mgedmin | sure, flashing is the way you get OS upgrades on it | 21:55 |
*** viviji1 has joined #maemo | 21:55 | |
polpak | mgedmin: would it reset the device settings also? | 21:55 |
*** nhdezoito_adrian has joined #maemo | 21:56 | |
mgedmin | yes | 21:56 |
Pupnik | no, you can't flash it. it's broken. i will buy it for 150 euro. | 21:56 |
polpak | mgedmin: and how do you do it? | 21:56 |
mgedmin | but you can back up and restore them | 21:56 |
mgedmin | there's a windows GUI app for flashing (that I've never seen) | 21:56 |
polpak | mgedmin: it's a demo system, so there's nothing on it I need | 21:56 |
mgedmin | and cmdline apps for linux/mac os x | 21:56 |
polpak | mgedmin: is there a non-windows app? | 21:56 |
mgedmin | you can get those from somewhere at maemo.org | 21:56 |
polpak | mgedmin: ok, I'll take a look | 21:57 |
mgedmin | you can find documentation about flashing on maemo.org as well | 21:57 |
sp3000 | surprisingly enough the general support site links all directions ;) http://www.nokia.com/A4305010 | 22:00 |
mgedmin | but the URL is not very memorable | 22:00 |
sp3000 | hm, except mac afaict | 22:00 |
sp3000 | sure it is, http://google.com/search?q=update+n800 :P | 22:01 |
*** soldstatic has quit IRC | 22:05 | |
polpak | ... | 22:07 |
polpak | where is the usb port on this thing | 22:08 |
polpak | nrm | 22:08 |
polpak | under the stand | 22:08 |
tigert | yeah | 22:08 |
tigert | well hidden :) | 22:08 |
*** Sonej has quit IRC | 22:10 | |
*** nhdezoito_adrian has left #maemo | 22:10 | |
Pupnik | that's so annoying, why don't they make a wireless usb? | 22:10 |
maddler | evening all... | 22:11 |
* Pupnik salutes maddler | 22:11 | |
inz | Pupnik, if you could also charge with that, it'd be helluva cool | 22:11 |
*** viviji1 has joined #maemo | 22:11 | |
*** viviji1 has quit IRC | 22:12 | |
Pupnik | there are some companies starting to market wireless rechargers | 22:12 |
Sulis | wireless usb...hmm, that does sound nice | 22:12 |
*** KevinVerma has joined #maemo | 22:12 | |
Pupnik | :P | 22:12 |
Sulis | course, bluetooth exists to fill that sort of gap | 22:13 |
Pupnik | i wasn't being serious :) | 22:14 |
Sulis | omg but bluetooth still exists! see what you did! | 22:14 |
*** pancake has joined #maemo | 22:15 | |
*** vivijim has quit IRC | 22:17 | |
Sulis | is there an sdhc firmware with the nokia version 3.2007...... stuff? | 22:26 |
kulve | not in the stock version, afaik | 22:27 |
kulve | zuh made a sdhc enabled kernel available | 22:28 |
kulve | somewhere | 22:28 |
*** nhdezoito_adrian has joined #maemo | 22:28 | |
Sulis | but that would basically be the 2.2006...... version | 22:29 |
kulve | not sure what you mean, I mean this: http://maemo.org/pipermail/maemo-developers/2007-March/009368.html | 22:30 |
Sulis | hmm, well that does answer my question...i think | 22:33 |
Sulis | will have to update my n800 this evening | 22:33 |
*** mgedmin has quit IRC | 22:36 | |
*** krau has joined #maemo | 22:38 | |
zuh | There's a kernel for 2.2005.51 in http://intr.overt.org/n800-sdhc-kernel/ | 22:42 |
Pupnik | huh.. somebody made an embedded java for the 770. http://k-embedded-java.com/downloads.html | 22:43 |
zuh | (as well as for the newer firmware) | 22:43 |
Sulis | zuh, there's no advantage to keeping the old firmware is there? | 22:43 |
zuh | No, quite the opposite. The newer firmware has some video enhancements and naturally bug fixes. | 22:45 |
Sulis | yeah, that's what i thought | 22:46 |
kulve | it seems that the newer have (at least on my use) much better power saving. And it hasn't really crashed once after the update. But the touchscreen is broken, so I haven't used it much lately.. | 22:48 |
*** RpJ has quit IRC | 22:50 | |
*** RpJ has joined #maemo | 22:53 | |
thoughtfix | Hmm ... I' | 22:53 |
Sulis | the touchscreen is broken? i assume that's a hardware issue? | 22:56 |
kulve | yeah | 22:56 |
*** gpd has quit IRC | 22:58 | |
*** pleemans has quit IRC | 22:59 | |
*** vivijim has joined #maemo | 23:00 | |
*** pancake has quit IRC | 23:02 | |
*** gpd has joined #maemo | 23:04 | |
*** gpd has left #maemo | 23:05 | |
*** alump_ is now known as alump | 23:08 | |
*** PHoeNiGoRe is now known as Phoenigore | 23:14 | |
*** kpel has joined #maemo | 23:20 | |
kpel | hi all | 23:20 |
*** sbaturzio has quit IRC | 23:21 | |
* Pupnik 'playtests' some more :) | 23:21 | |
kpel | does the latest maemo release work out of the box for N800? | 23:25 |
Pupnik | i haven't heard otherwise | 23:25 |
kpel | thanks | 23:26 |
*** richieeee72 has joined #maemo | 23:28 | |
kpel | does youtube work properly with maemo or is a flash upgrade needed? | 23:29 |
kpel | (flash as in macromedia flash) | 23:29 |
*** guerby has quit IRC | 23:31 | |
Sulis | kpel, maemo has an optimised version of flash | 23:31 |
kpel | Sulis: so it can play youtube videos without problems? | 23:32 |
Sulis | well i still have the older version of 2007 and it plays but it drops video frames, i don't know if the new version will play without dropping frames | 23:33 |
kpel | does video conferencing work? | 23:34 |
kpel | i'm thinking of buying an N800 and installing maemo | 23:34 |
inz | This is a bit nitpicking, but maemo is actually the SDK, which you really don't want on the device | 23:36 |
*** guerby has joined #maemo | 23:37 | |
kpel | oh, so it's not the actual image then | 23:37 |
kpel | (not that I mind playing with the SDK) | 23:37 |
inz | Has planet.maemo.org stopped updating? | 23:38 |
inz | test.maemo.org's planet has 3 posts not found on planet.maemo.org | 23:39 |
*** pdz has joined #maemo | 23:40 | |
*** richieeee72 has left #maemo | 23:42 | |
*** pdz- has quit IRC | 23:52 | |
*** Sonej has joined #maemo | 23:57 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!