johnsq | apt-cache search glibc | 00:00 |
---|---|---|
RST38h | Considering that c++ is nothing more than an extension to c that adds member functions to structures (see cfront and friends) | 00:00 |
Luke-Jr | kkrusty: to prove GNU's C++ compiler is the real problem, not te language | 00:00 |
Jaffa | RST38h: i.e. the engineering could've been simpler if trying to maintain C source compatibility weasn't necessary. | 00:00 |
RST38h | Jaffa: Not really :) | 00:00 |
Luke-Jr | RST38h: there's also function mangling | 00:00 |
RST38h | Jaffa: C compatibility is the best thing about C++. Pretty much any C++ specific feature added on top of that is a mess | 00:00 |
Luke-Jr | RST38h: and the stdlib | 00:00 |
RST38h | Jaffa: You can pretty much choose any feature | 00:00 |
RST38h | Jaffa: exceptions, templates, RTTI - all fucked up | 00:01 |
RST38h | STL hehe | 00:01 |
Jaffa | RST38h: Why do you need C compatibility? Use a C compiler if you want to compile C | 00:01 |
RST38h | Jaffa: A lot of people use C++ as a tidier version of C that allows for better code management | 00:01 |
Jaffa | RST38h: So, in other words, you think C++ is overengineered and overcomplicated. Which has resulted in it being shit. | 00:01 |
RST38h | Jaffa: C++ is perfect for that | 00:01 |
* kkrusty wonders if Luke-Jr could try realview's toolkit or some other | 00:01 | |
RST38h | Jaffa: Only if you start using C++ specific features extensively, you mess things up (usually) | 00:02 |
derf | Luke-Jr: The C++ language is undecidable. There's no reason to expect a C++ compiler to _ever_ be as fast as C. | 00:02 |
johnsq | in the language shootout is the c++ version the fastest | 00:02 |
RST38h | Jaffa: BTW, Java ended up the same way, started "light", ended up as a tumor. | 00:03 |
jaska | it was malignant from the start :) | 00:03 |
derf | Java didn't get nearly as bad as C++. | 00:03 |
trofi | c++ in slightly stricter than C on type conversion. -Wc++-compat helps a lot in some cases | 00:03 |
RST38h | derf: Oh it did really, just look at the runtime size | 00:03 |
Luke-Jr | derf: C++ is mostly just C with additional syntax | 00:04 |
Luke-Jr | derf: there is nothing inherently slower about it | 00:04 |
derf | RST38h: Runtime library is a completely separate issue. | 00:04 |
RST38h | derf: Luke is right | 00:04 |
jaska | and java is.. ickier, memory consumption and lack of stuff like operator overloading, unsigneds | 00:04 |
kkrusty | Luke-Jr templates | 00:04 |
derf | Luke-Jr: That "additional syntax" is part of what makes it undecidable. | 00:04 |
jaska | and the generics implementation is a kludge | 00:04 |
Luke-Jr | kkrusty: templates are just syntax | 00:04 |
RST38h | derf: What people perceive as C++ "slowness" really comes from using specific C++ features | 00:04 |
derf | There's no reason for the compiled _code_ to be slower. | 00:04 |
derf | I'm talking about the compiler. | 00:04 |
RST38h | derf: As long as you avoid these features you are ok | 00:04 |
derf | Luke-Jr made comments about both. | 00:04 |
Luke-Jr | derf: ok, templates excuse the compiler slowness a bit maybe | 00:05 |
RST38h | derf: Compiler will be slower, especially if using templates | 00:05 |
derf | RST38h: In practice, nobody avoids those features. | 00:05 |
RST38h | derf: Not really, lots of people do | 00:05 |
kkrusty | Luke-Jr theres a lot going on with templates in the backend | 00:05 |
RST38h | derf: People in our group mostly do | 00:05 |
derf | RST38h: You are by far the exception, not the rule. | 00:05 |
kkrusty | mangeling, demangeling, removing duplicates etc | 00:05 |
RST38h | derf: Not really | 00:05 |
RST38h | derf: Just realistic, and there are more realists than you think | 00:06 |
*** fab has quit IRC | 00:06 | |
RST38h | derf: Of course, if you get folks fresh out of the same UMD, and let them code without additional tutoring, you end up with a mess | 00:06 |
derf | Luke-Jr: There's also the fact that all the "object oriented" crap means you need 50,000 inline functions for good performance, and the fact that these are all in the header files means anytime you change the API even slightly, you have to recompile everything. | 00:06 |
parigaudi | c++ with qt is quite clean | 00:06 |
RST38h | derf: Or a bunch of Indians imported | 00:06 |
*** glyn has joined #maemo | 00:07 | |
Luke-Jr | derf: it doesn't mean that at all | 00:07 |
derf | RST38h: What do you think most of industry is? | 00:07 |
Luke-Jr | derf: and if you do the same things with C, you need to recompile everything too | 00:07 |
RST38h | derf: I do not really care. The shittier most of industry is, the more contract work for me :) | 00:07 |
Luke-Jr | though I will admit, the "new" operator could be replaced with a method | 00:07 |
*** macmaN6789 has joined #maemo | 00:07 | |
derf | There are a _lot_ more incompetent programmers than competent ones. | 00:07 |
trofi | in any language | 00:07 |
*** glyn has quit IRC | 00:08 | |
derf | And I agree with you, except for the part where I have to maintain these people's code. | 00:08 |
RST38h | derf: You usually get to rewrite it piece by little piece | 00:08 |
RST38h | derf: If you feel sadistic, may insist on them fixing it, although it is kinda pointless | 00:08 |
derf | trofi: Yes, but C++ _encourages_ poor programming practices. The obvious way to do things is usually horrible. | 00:08 |
trofi | derf: i disagree :] | 00:08 |
RST38h | derf: Fortunately, very few cases of that where I work | 00:09 |
RST38h | derf <--- essentialy correct | 00:09 |
RST38h | How many students had to drop classes after getting lost in overloaded operators...ah... | 00:09 |
* RST38h sheds a crocodile tear | 00:09 | |
RST38h | anyways, sleep time | 00:10 |
derf | My TA once threatened to fail a project of mine because he didn't think I had done it. | 00:10 |
trofi | every popular language has proglems with herds of incompetent people. no matter how strict it is | 00:10 |
RST38h | derf: I never threatened, just failed. | 00:10 |
jophish | johnsq, I fixed the problem by manually making symlinks | 00:10 |
derf | We were supposed to impelement a disk cache in some data structure... I overloaded the member reference operators, etc., so none of the actual data structure code changed. | 00:10 |
trofi | they Will do write if bool_var.toString().length() < 5 | 00:10 |
jophish | probably a bad idea though | 00:10 |
crashanddie | trofi, C doesn't have any problems | 00:10 |
trofi | crashanddie: oh really? | 00:11 |
RST38h | derf: as long as it worked, wouldn't be a problem, at least with me as a ta | 00:11 |
crashanddie | trofi, yeah :P | 00:11 |
trofi | so vhy do people use valgrind? | 00:11 |
derf | I told him what an idiot he was, and he came back later insisting I had a memory leak. | 00:11 |
RST38h | derf: never a good idea to call tas idiots | 00:11 |
derf | So I showed it running on several billion records in a few hundred K of RAM, and said, "Nuh uh." | 00:11 |
crashanddie | trofi, because they can't keep track of their memory usage? :P | 00:11 |
derf | RST38h: Well, I didn't use those exact words, of course. | 00:11 |
RST38h | derf: Firstly, they usually aren't. Secondly, they have got a few dozen of you, and it may really get to them at the end of office hours | 00:11 |
derf | I was polite. I'm not stupid. | 00:12 |
* RST38h once told a student that the problem was in his DNA. Student left enlightened. | 00:12 | |
trofi | :] | 00:12 |
derf | But this only goes to prove my point... code like that is unreadable and unmaintainable. Just by looking at the code you have no idea what is actually going on. | 00:12 |
derf | In order to figure it out you have to read some other code somewhere else that you may have no idea is there. | 00:13 |
RST38h | derf: That is why overloading stuff is rarely a good idea | 00:13 |
RST38h | derf: And we haven't even started on STL! =) | 00:13 |
derf | I don't think anyone could successfully argue STL is a good idea. | 00:13 |
RST38h | derf: Hell, we haven't even started on that "cute" iostreams library that looks soooo nice in examples | 00:13 |
RST38h | All those << and >>> | 00:14 |
RST38h | Until you have to print formatted output, to a string :) | 00:14 |
trofi | and .imbue(locale) | 00:14 |
trofi | RST38h: doesn't boost have printf alike writer? | 00:15 |
RST38h | derf: The traditional argument for STL is "Somebody already implemented those data structrues so I do not have to" | 00:15 |
derf | Anyway, personally I've found the minor limitations of using C are greatly worth the assurance that no one will use C++ features in my projects. | 00:15 |
RST38h | trofi: One more mention of Boost and I throw up. | 00:15 |
RST38h | trofi: There is standard stdio though, and it works every time for every use case, unlike the artifical C++ stuff | 00:16 |
trofi | yep | 00:16 |
derf | The only sad thing about stdio is that there's no way to write new FILE * backends. | 00:16 |
johnsq | about compilers some thinking about tcc for armv6? | 00:16 |
trofi | but it's unchecked | 00:16 |
derf | But that's a library issue. | 00:16 |
trofi | i have to use GCC' format attrs to ensure formats are san | 00:16 |
RST38h | derf: implement your own STDIO functions and wrap. | 00:17 |
RST38h | No big deal, done in ZLib. | 00:17 |
RST38h | Definitely SLEEP now. | 00:17 |
*** simon_ has joined #maemo | 00:21 | |
*** adeel has quit IRC | 00:22 | |
*** florian has joined #maemo | 00:25 | |
mavhc | we should all write in objective C | 00:27 |
*** filip42 has quit IRC | 00:27 | |
nomis | mavhc: thats very subjective. | 00:29 |
mavhc | subjective C: int like, whatever; | 00:31 |
nomis | heh :) | 00:32 |
*** greentux has quit IRC | 00:32 | |
johnsq | we should speak about languages, the problem is that there are too less developers. | 00:34 |
kkrusty | I would be happy to be a developer for maemo if someone promised to hound me if I didnt get work done | 00:35 |
kkrusty | *maemo based projects | 00:35 |
mavhc | get work done | 00:37 |
kkrusty | can you write angry emails and tell me what to work on? | 00:39 |
kkrusty | well if you say "get work done" I'll just start working harder at my real job :D. | 00:40 |
*** zehrique has quit IRC | 00:41 | |
*** zehrique has joined #maemo | 00:41 | |
*** simon_ has quit IRC | 00:42 | |
mavhc | still need a good podcast downloader/player/deleter | 00:42 |
Stskeeps | gpodder? | 00:43 |
kkrusty | canola? | 00:43 |
*** sin18 has quit IRC | 00:44 | |
kkrusty | I always have to convert videos with tablet-encode so canola and gpodder are useless to me | 00:44 |
mavhc | for video videocenter's ok | 00:45 |
mavhc | I did use canola, but it won't run now, something corrupt, and it's bloated | 00:45 |
mavhc | does gpodder have a player too? | 00:45 |
kkrusty | I saw the first season of prison break on the tablet a while ago without tablet-encode. The fences really slowed down the video | 00:46 |
mavhc | canola, but audio only, much less ram usage, and better keyboard control for skip fordward/back 5/30 seconds | 00:46 |
kkrusty | mavhc: same here. | 00:47 |
mavhc | and don't include the pause/resume bug | 00:47 |
mavhc | atm I use videocenter or browser to dl, media player to play, with the recent added playlist, and media player to delete, video center's set to play with mplayer, so audio has no UI | 00:50 |
kkrusty | I download on my PC with miro, convert with tablet-encode and play with media player or mplayer | 00:53 |
*** adeel has joined #maemo | 00:53 | |
*** kkrusty has left #maemo | 00:57 | |
*** wazd_ has joined #maemo | 01:00 | |
*** wazd has quit IRC | 01:00 | |
*** wazd_ is now known as wazd | 01:00 | |
*** bilboed has quit IRC | 01:05 | |
*** roue has joined #maemo | 01:11 | |
*** wazd has quit IRC | 01:12 | |
*** Macer_ has joined #maemo | 01:18 | |
*** gentooer has joined #maemo | 01:18 | |
*** jophish has quit IRC | 01:19 | |
gentooer | I no longer need my n800 (getting an android phone soon!) and want to sell it on ebay, but I have installed a modified bootloader and a SD install. what's the easiest way to reset everything to factory settings? | 01:20 |
johnsq | gentooer: yes, install the flash file from nokia | 01:23 |
gentooer | johnsq, ok and that will get rid of the bootloader as well? | 01:23 |
johnsq | yes, when set flashing initfs. | 01:24 |
gentooer | ok thanks | 01:24 |
johnsq | I wouldn't sell it, there still many uses for it and you will not get much for it. | 01:26 |
gentooer | i really like it, but I only use it for wifi internet when I travel, music, and sshing into my desktop. all of which can be done with android | 01:27 |
gentooer | i've got 4gb and 8gb SD, two cases, charger, stylus.. i'd be happy with $100 for it | 01:28 |
johnsq | good luck and high price. | 01:29 |
*** Macer has quit IRC | 01:30 | |
gentooer | really, that's high? first one that came up on ebay was already at $105 | 01:30 |
johnsq | no i mean, i wish you getting enough money. | 01:32 |
gentooer | oh heh, thanks :) | 01:32 |
*** djcb has quit IRC | 01:35 | |
*** KurtKraut has joined #maemo | 01:36 | |
*** johnsq has quit IRC | 01:42 | |
*** adeel has quit IRC | 01:45 | |
*** adeel has joined #maemo | 01:48 | |
*** L0cutus has quit IRC | 01:49 | |
*** glima is now known as glima[AWAY] | 01:49 | |
*** jnettlet has joined #maemo | 01:54 | |
*** L0cutus has joined #maemo | 01:55 | |
*** SHADOW_V has joined #maemo | 02:02 | |
*** Macer_ is now known as Macer | 02:02 | |
*** smackpotato1 has joined #maemo | 02:12 | |
*** SHADOW_V1 has quit IRC | 02:18 | |
*** zehrique has quit IRC | 02:22 | |
*** adeel has quit IRC | 02:22 | |
*** zehrique has joined #maemo | 02:22 | |
*** elninja has quit IRC | 02:25 | |
*** L0cutus has quit IRC | 02:41 | |
*** florian has quit IRC | 02:42 | |
*** ccooke has quit IRC | 02:44 | |
*** Kt_ has quit IRC | 02:48 | |
*** Kt_ has joined #maemo | 02:48 | |
*** jgoss has quit IRC | 02:48 | |
*** hellwolf has quit IRC | 02:55 | |
*** smackpotato1 has quit IRC | 02:55 | |
*** smackpotato has joined #maemo | 02:55 | |
Luke-Jr | what does ログイン名(大文字を使用してはいけません)* mean? | 02:58 |
*** fysa has joined #maemo | 02:59 | |
Luke-Jr | gentooer: I'd flash Mer and advertise it as a bonus ;) | 02:59 |
*** pnk has joined #maemo | 03:00 | |
Noma | Luke-Jr: google translated: Login name (do not use capital letters) * :p | 03:00 |
Luke-Jr | ah, good | 03:01 |
Luke-Jr | Google has an English copy | 03:01 |
Luke-Jr | http://74.125.95.132/search?q=cache:LFH21dmJmfkJ:https://garage.maemo.org/account/register.php+https://garage.maemo.org/account/register.php&cd=1&hl=en&ct=clnk&gl=uk | 03:01 |
pnk | hi guys, i have question to you, my file chooser's opening time is very long, how can i speed it up? (running on maemo sdk/gtk/hildon) | 03:02 |
Luke-Jr | OH YAY | 03:03 |
Luke-Jr | registering lets me change language to English | 03:03 |
*** ccooke has joined #maemo | 03:04 | |
pnk | guys somebody met this problem? | 03:04 |
*** ukki has left #maemo | 03:05 | |
*** hellwolf-n810 has joined #maemo | 03:06 | |
*** VDVsx has quit IRC | 03:08 | |
*** jnettlet has quit IRC | 03:08 | |
*** herz1 has joined #maemo | 03:10 | |
*** s0me0ne_0utside has joined #maemo | 03:15 | |
*** smackpotato1 has joined #maemo | 03:19 | |
*** smackpotato has quit IRC | 03:19 | |
*** smackpotato1 has left #maemo | 03:19 | |
*** ttmrichter has joined #maemo | 03:19 | |
*** AltC has joined #maemo | 03:20 | |
*** romullo1 has joined #maemo | 03:24 | |
*** romullo1 has quit IRC | 03:24 | |
*** herzi has quit IRC | 03:25 | |
*** romullo has quit IRC | 03:26 | |
*** s0me0ne_0utside is now known as s0me0ne_0utside_ | 03:26 | |
*** s0me0ne_0utside_ is now known as s0m0ne0utsdeTher | 03:29 | |
*** hannesw has quit IRC | 03:31 | |
*** zehrique has quit IRC | 03:33 | |
*** parigaudi has quit IRC | 03:37 | |
*** gentooer has quit IRC | 03:39 | |
*** romullo has joined #maemo | 03:41 | |
*** sisto has joined #maemo | 03:45 | |
*** doc|home has joined #maemo | 03:45 | |
*** lcuk has quit IRC | 03:46 | |
*** zehrique has joined #maemo | 03:48 | |
*** adeel has joined #maemo | 03:50 | |
*** brolin has quit IRC | 03:51 | |
*** rapadura_man has joined #maemo | 04:02 | |
*** Luke-Jr has quit IRC | 04:04 | |
*** Luke-Jr has joined #Maemo | 04:04 | |
*** radic__ has joined #maemo | 04:07 | |
*** radic_ has quit IRC | 04:09 | |
*** tulkastaldo has quit IRC | 04:09 | |
*** doc|home has quit IRC | 04:12 | |
bef0rd | Hola | 04:16 |
s0m0ne0utsdeTher | Hossa too | 04:23 |
*** man_in_shack has quit IRC | 04:37 | |
*** pnk has quit IRC | 04:41 | |
*** ScriptRipper_ has joined #maemo | 04:52 | |
*** sisto1 has joined #maemo | 05:00 | |
Macer | well | 05:02 |
Macer | after using nexenta and opensolaris.. nexenta kind of sucks :) | 05:02 |
*** torkiano_ has quit IRC | 05:02 | |
Macer | opensolaris makes a much cleaner server | 05:03 |
*** ScriptRipper_ has quit IRC | 05:06 | |
*** TheFatal has joined #maemo | 05:07 | |
*** EdLin has joined #maemo | 05:07 | |
*** ScriptRipper has quit IRC | 05:08 | |
*** Guilherme has joined #maemo | 05:09 | |
*** sisto has quit IRC | 05:19 | |
*** b-man has joined #maemo | 05:24 | |
*** b-man is now known as b-man16 | 05:24 | |
*** kkrusty has joined #maemo | 05:25 | |
b-man16 | *cough* | 05:27 |
*** b-man16 is now known as FireFox` | 05:29 | |
* FireFox` overloads his tablet while using gcc | 05:35 | |
* kkrusty is done with a python script that does bt queries and then speaks its findings with flite | 05:36 | |
kkrusty | s/bt/bluetooth/ | 05:36 |
* FireFox` is building a LFS system on his tablet :) | 05:36 | |
kkrusty | this should be fun; going to work and hearing all the names of bluetooth devices | 05:38 |
kkrusty | that I encounter on the way | 05:38 |
*** EdLin_ has joined #maemo | 05:38 | |
kkrusty | its also going to tell me when I last encountered a device, kind of a way to tell when I last met someone | 05:39 |
Luke-Jr | kkrusty: how about the device's security level, type, etc? | 05:42 |
Luke-Jr | "this guy you met exactly a week ago, and just met again, has an insecure phone" | 05:42 |
kkrusty | Luke-Jr well that isnt done yet | 05:42 |
kkrusty | Luke-Jr will depend on there being the desired functionality through python | 05:43 |
Luke-Jr | :þ | 05:43 |
*** glima[AWAY] is now known as glima | 05:45 | |
*** croppa has quit IRC | 05:45 | |
*** croppa has joined #maemo | 05:46 | |
*** EdLin has quit IRC | 05:46 | |
*** FireFox` is now known as b-man16 | 05:47 | |
kkrusty | Luke-Jr consider it on my todo list though | 05:48 |
* kkrusty heads off to bed | 05:49 | |
Luke-Jr | kkrusty: waiiit | 05:49 |
*** kkrusty has left #maemo | 05:49 | |
Luke-Jr | aww | 05:49 |
b-man16 | hm | 05:49 |
Luke-Jr | b-man16: he has an earlier curfew than you! | 05:50 |
b-man16 | XD | 05:50 |
Luke-Jr | b-man16: how goes the Gentoo? | 05:51 |
b-man16 | something came up this morning and i wasn't able to re install it :( | 05:51 |
Luke-Jr | why re-install?! | 05:51 |
b-man16 | a couple of days ago i removed it for webos hacking | 05:52 |
*** roue has quit IRC | 05:52 | |
Luke-Jr | x.x | 05:53 |
*** adeel has quit IRC | 05:53 | |
Luke-Jr | b-man16: need more SD cards? | 05:53 |
b-man16 | yeah xD | 05:53 |
Luke-Jr | I have more than I know what to do with XD | 05:53 |
* b-man16 only has a 4gb and 2gb card XD | 05:54 | |
Luke-Jr | would be nice if I had a second slot on my N810 for removable | 05:54 |
* Luke-Jr has 8 GB, 4 GB, and 2 GB, he thinks | 05:54 | |
b-man16 | heh | 05:54 |
* b-man16 is thinking about buying an 8gb | 05:55 | |
b-man16 | i need it XD | 05:55 |
*** adeel has joined #maemo | 05:55 | |
*** pcfe has joined #maemo | 05:56 | |
CutMeOwnThroat | is there some howto that lists the steps to crosscompile with scratchbox from 686-debian-lenny to maemo4.1? | 05:56 |
b-man16 | luke-jr: btw, did you see my new site? http://b-man.xceleo.org/ | 05:57 |
Luke-Jr | b-man.xceleo.org | Welcome | 05:57 |
Luke-Jr | This slideshow requires Adobe Flash Player 9.0 (or higher). JavaScript must be enabled. | 05:57 |
Luke-Jr | Enter | 05:57 |
b-man16 | hm | 05:57 |
b-man16 | you don't have flash? xD | 05:57 |
Luke-Jr | of course not | 05:58 |
Luke-Jr | I hate that crap | 05:58 |
Luke-Jr | plus, it's propreitary | 05:58 |
Luke-Jr | I'm perfectly happy with STANDARDS-COMPLIANT web | 05:58 |
Luke-Jr | which apparently doesn't include your site | 05:58 |
b-man16 | heh | 05:58 |
*** EdLin_ is now known as EdLin | 05:59 | |
b-man16 | i'm working on making it use jquery instead of flash ;) | 05:59 |
CutMeOwnThroat | nice... dancing desktops... exactly the cpu-hog you want to forget somewhere in the background | 05:59 |
b-man16 | lol | 05:59 |
CutMeOwnThroat | the pages behind that have pretty good performance though | 06:00 |
CutMeOwnThroat | they print "null" in a couple of ms | 06:00 |
*** GAN800 has joined #maemo | 06:02 | |
b-man16 | it's a work in progress ;) | 06:02 |
*** myosound has joined #maemo | 06:03 | |
CutMeOwnThroat | so you decided to make all the useless fancy stuff first and see if some content turns up lateron? | 06:03 |
Luke-Jr | lol | 06:03 |
*** pcfe` has quit IRC | 06:03 | |
*** pcfe is now known as pcfe` | 06:03 | |
CutMeOwnThroat | sorry if that sounded a bit unfriendly, but I got Views on this | 06:04 |
CutMeOwnThroat | of course, with all the blogs and youtube videos around the word "content" gets a new meaning also | 06:05 |
CutMeOwnThroat | mind to put "Last updated Feb 9 1856" on the bottom of the pages | 06:07 |
*** b-man has joined #maemo | 06:11 | |
*** b-man is now known as FireFox16 | 06:12 | |
*** glima is now known as glima[AWAY] | 06:17 | |
*** FireFox16 has quit IRC | 06:18 | |
*** Fox has joined #maemo | 06:18 | |
* Fox jumps on #anime | 06:21 | |
*** |thunder has joined #maemo | 06:21 | |
* CutMeOwnThroat sends 10 dogs after Fox | 06:23 | |
Fox | lol | 06:23 |
* Fox runs into a hole | 06:23 | |
*** b-man16 has quit IRC | 06:24 | |
* CutMeOwnThroat watches as the dogs dig Fox out and tear him to pieces | 06:25 | |
CutMeOwnThroat | they call it a sport, btw. | 06:26 |
* Fox figures out another route away from danger | 06:26 | |
CutMeOwnThroat | you're already in pieces! | 06:26 |
* Fox is agenst sports that include harming animals | 06:28 | |
* CutMeOwnThroat 's against animals that include harming sports | 06:29 | |
CutMeOwnThroat | actually I couldn't care less about sports | 06:29 |
Fox | i just dont like the idea of killing animals as a sport | 06:30 |
Macer | are there any folding@home irc #s? | 06:30 |
Luke-Jr | every time I see a bunny | 06:30 |
Luke-Jr | I think about cooking it up for supper | 06:30 |
Fox | :P | 06:30 |
Luke-Jr | just ask my wife | 06:30 |
CutMeOwnThroat | she's a bunny? | 06:31 |
Fox | rofl | 06:31 |
Luke-Jr | no -.- | 06:31 |
Luke-Jr | I comment on the idea sometimes | 06:32 |
*** Sargun has quit IRC | 06:32 | |
CutMeOwnThroat | isn't that cruel if she's a bunny? | 06:33 |
Fox | lol | 06:33 |
* Luke-Jr glares at Fox, aka b-man | 06:35 | |
Fox | dont call me an idiot then :p | 06:35 |
Luke-Jr | Fox: don't use flash then | 06:35 |
Luke-Jr | Fox: what are you? | 06:38 |
*** rapadura_man has left #maemo | 06:41 | |
*** adeel has quit IRC | 06:44 | |
*** jgoss has joined #maemo | 06:51 | |
*** b-man has joined #maemo | 06:56 | |
*** b-man is now known as Guest54455 | 06:56 | |
*** romullo has quit IRC | 06:56 | |
*** Guest54455 is now known as Fox` | 06:57 | |
*** Fox has quit IRC | 06:57 | |
*** Fox` is now known as Fox | 06:58 | |
*** myosound has quit IRC | 07:00 | |
*** wazd has joined #maemo | 07:07 | |
*** rapadura_man has joined #maemo | 07:10 | |
RST38h | wazd: time to go is NOW. | 07:10 |
*** wazd has quit IRC | 07:19 | |
*** rapadura_man has quit IRC | 07:21 | |
*** rapadura_man1 has joined #maemo | 07:21 | |
*** t_s_o has quit IRC | 07:30 | |
*** Fox is now known as FireFox` | 07:32 | |
*** gentooer has joined #maemo | 07:37 | |
*** rapadura_man has joined #maemo | 07:40 | |
*** rapadura_man1 has quit IRC | 07:41 | |
*** z4chh has quit IRC | 07:44 | |
*** sisto1 has quit IRC | 08:01 | |
*** rapadura_man has left #maemo | 08:04 | |
*** rkirti has joined #maemo | 08:05 | |
*** philipl has quit IRC | 08:06 | |
*** philipl has joined #maemo | 08:08 | |
*** rapadura_man has joined #maemo | 08:12 | |
* GAN800 sighs at pig-headed silliness. | 08:13 | |
GAN800 | I can see this FBReader insanity is going to be a difficult and time wasting fight. | 08:14 |
*** zehrique has quit IRC | 08:14 | |
*** SHADOW_V1 has joined #maemo | 08:14 | |
* GAN800 doesn't get why slightly easing the support for users who may number in the tens at the clear expense of the rest of your thousands of users is so important. | 08:15 | |
*** Kt_ has quit IRC | 08:19 | |
*** Kt- has joined #maemo | 08:19 | |
*** wnka has joined #maemo | 08:25 | |
*** wnka has left #maemo | 08:26 | |
*** timeless_mbp has joined #maemo | 08:29 | |
*** SHADOW_V has quit IRC | 08:31 | |
*** adeel has joined #maemo | 08:32 | |
*** gentooer has quit IRC | 08:35 | |
*** wazd_n800 has joined #maemo | 08:47 | |
wazd_n800 | morning maemo) | 08:48 |
rkirti | wazd_n800: morning | 08:50 |
*** Sargun has joined #maemo | 08:50 | |
*** Zhilin_n800 has joined #maemo | 08:52 | |
*** Zhilin_n800 is now known as wazd | 08:52 | |
*** igagis has joined #maemo | 08:53 | |
*** EdLin_ has joined #maemo | 08:54 | |
*** adeel has quit IRC | 08:55 | |
*** wazd_n800 has quit IRC | 08:59 | |
*** adeel has joined #maemo | 09:00 | |
*** adeel has quit IRC | 09:00 | |
*** Jucato has quit IRC | 09:06 | |
*** EdLin has quit IRC | 09:09 | |
*** EdLin_ is now known as EdLin | 09:10 | |
*** user_ has joined #maemo | 09:11 | |
*** user_ is now known as labaudio | 09:12 | |
labaudio | !ny clue about rgb njoy format table??? | 09:12 |
Macer | there is no plot to alice in wonderland | 09:17 |
*** FireFox` has quit IRC | 09:22 | |
*** bef0rd has quit IRC | 09:24 | |
*** adeel has joined #maemo | 09:25 | |
Stskeeps | GAN800: worst part is that the scenario might be needed - people do not always have internet connections avail at all for tablets, but they do have usb storage access | 09:25 |
*** wazd has quit IRC | 09:28 | |
*** wazd_n800 has joined #maemo | 09:30 | |
*** greentux has joined #maemo | 09:31 | |
*** wazd_n800 has quit IRC | 09:31 | |
*** wazd_n800 has joined #maemo | 09:31 | |
*** doc|home has joined #maemo | 09:34 | |
*** KurtKraut has quit IRC | 09:36 | |
*** Vulcanis has quit IRC | 09:52 | |
*** macmaN6789 has quit IRC | 09:55 | |
*** SHADOW_V has joined #maemo | 09:56 | |
*** wazd_n800 has quit IRC | 09:58 | |
*** Vulcanis has joined #maemo | 10:00 | |
*** mmatth1 has joined #maemo | 10:01 | |
*** mmatth has quit IRC | 10:02 | |
*** rapadura_man has left #maemo | 10:04 | |
*** adeel has quit IRC | 10:08 | |
*** Vulcanis has quit IRC | 10:08 | |
*** L0cutus has joined #maemo | 10:09 | |
*** SHADOW_V1 has quit IRC | 10:10 | |
*** Vulcanis has joined #maemo | 10:12 | |
*** TheFatal has quit IRC | 10:20 | |
*** kevinverma has joined #Maemo | 10:20 | |
*** christefano has joined #maemo | 10:30 | |
*** macmaN6789 has joined #maemo | 10:44 | |
*** Kt- has quit IRC | 10:49 | |
*** Kt_ has joined #maemo | 10:49 | |
*** L0cutus has quit IRC | 10:51 | |
*** hannesw has joined #maemo | 10:56 | |
*** qwerty12 has joined #maemo | 11:00 | |
*** kevinverma has quit IRC | 11:03 | |
*** ds3 has quit IRC | 11:17 | |
*** ds3 has joined #maemo | 11:18 | |
*** frade_home has joined #maemo | 11:21 | |
*** Jaffa has quit IRC | 11:27 | |
*** Jaffa has joined #maemo | 11:27 | |
*** lcuk has joined #maemo | 11:27 | |
Jaffa | Morning, all | 11:27 |
*** filip42 has joined #maemo | 11:28 | |
lcuk | mornin jaffa, chan \o | 11:28 |
*** lbt has joined #maemo | 11:29 | |
*** jnettlet has joined #maemo | 11:29 | |
*** SHADOW_V has quit IRC | 11:30 | |
*** slonopotamus has joined #maemo | 11:30 | |
*** ustunozgur has joined #maemo | 11:32 | |
*** timeless_mbp has quit IRC | 11:35 | |
*** andrei1089 has quit IRC | 11:36 | |
*** timeless_mbp has joined #maemo | 11:36 | |
*** andrei1089 has joined #maemo | 11:37 | |
*** adeel has joined #maemo | 11:40 | |
*** lopz has quit IRC | 11:46 | |
*** stv0 has joined #maemo | 11:48 | |
*** t0h has quit IRC | 11:50 | |
*** t0h has joined #maemo | 11:53 | |
*** adeel has quit IRC | 11:53 | |
*** ZakkmN800 has joined #MAEMO | 11:58 | |
*** ignacius has joined #maemo | 12:06 | |
*** hannesw has quit IRC | 12:10 | |
*** Jalen has joined #maemo | 12:13 | |
*** ZakkmN800 has quit IRC | 12:15 | |
*** bilboed has joined #maemo | 12:15 | |
*** macmaN6789 has left #maemo | 12:20 | |
*** macmaN6789 has joined #maemo | 12:24 | |
*** Vulcanis has quit IRC | 12:24 | |
*** Jalen64 has quit IRC | 12:28 | |
*** christefano has quit IRC | 12:28 | |
*** stv0 has left #maemo | 12:29 | |
*** ZakkmN800 has joined #MAEMO | 12:30 | |
*** ZakkmN800 has quit IRC | 12:31 | |
*** ZakkmN800 has joined #MAEMO | 12:32 | |
*** konttori__ has joined #maemo | 12:33 | |
*** Jucato has joined #maemo | 12:46 | |
*** hellwolf has joined #maemo | 12:50 | |
*** pnk has joined #maemo | 12:53 | |
pnk | hi guys, i have problem with gtk and textview, i'm trying to display utf-8, but gets error :/ (my code&errors pastebin.com/d9b47d1f) Could anybody help me, please? | 12:55 |
*** ZakkmN800 has quit IRC | 13:06 | |
*** hellwolf has quit IRC | 13:07 | |
*** stiev3 has quit IRC | 13:10 | |
*** eichi has joined #maemo | 13:13 | |
*** ScriptRipper has joined #maemo | 13:15 | |
*** pvanhoof has joined #maemo | 13:15 | |
*** VDVsx has joined #maemo | 13:18 | |
*** rkirti has quit IRC | 13:29 | |
*** ScriptRipper_ has joined #maemo | 13:31 | |
* lcuk stops pulling hair out | 13:31 | |
*** rkirti has joined #maemo | 13:33 | |
*** derf has quit IRC | 13:40 | |
*** florian has joined #maemo | 13:41 | |
*** ScriptRipper has quit IRC | 13:44 | |
*** ScriptRipper_ is now known as ScriptRipper | 13:48 | |
*** harbaum__ has joined #maemo | 13:48 | |
*** s0m0ne0utsdeTher has quit IRC | 13:53 | |
*** b0unc3 has quit IRC | 13:53 | |
*** fab has joined #maemo | 13:59 | |
*** qwerty12 has quit IRC | 14:03 | |
*** udovdh has quit IRC | 14:04 | |
*** qwerty12_N810 has joined #maemo | 14:05 | |
*** L0cutus has joined #maemo | 14:08 | |
*** hellwolf has joined #maemo | 14:10 | |
*** lizone has joined #Maemo | 14:12 | |
*** frade has joined #maemo | 14:15 | |
*** thopiekar has joined #maemo | 14:20 | |
*** hellwolf has quit IRC | 14:22 | |
*** Myrtti has joined #maemo | 14:26 | |
*** andrei1089 has quit IRC | 14:38 | |
*** andrei1089 has joined #maemo | 14:38 | |
*** matt_c has joined #maemo | 14:41 | |
*** ustunozgur has quit IRC | 14:46 | |
*** torkiano has joined #maemo | 14:51 | |
*** matt_c has quit IRC | 14:58 | |
*** hannesw has joined #maemo | 15:05 | |
*** florian has quit IRC | 15:09 | |
*** thopiekar has quit IRC | 15:10 | |
*** thopiekar has joined #maemo | 15:11 | |
*** harbaum__ has quit IRC | 15:32 | |
*** lopz has joined #maemo | 15:41 | |
lopz | hi | 15:42 |
*** karatchov has joined #maemo | 15:43 | |
*** z4chh has joined #maemo | 15:45 | |
*** z4chh has quit IRC | 15:50 | |
*** z4chh has joined #maemo | 15:52 | |
*** rkirti is now known as rkirti|away | 15:52 | |
*** panku has joined #maemo | 15:53 | |
*** Sho_ has joined #maemo | 15:54 | |
*** L0cutus has quit IRC | 15:56 | |
*** karatchov has left #maemo | 15:56 | |
*** udovdh has joined #maemo | 15:56 | |
*** derf has joined #maemo | 16:01 | |
*** pnk has quit IRC | 16:03 | |
*** juergbi has joined #maemo | 16:04 | |
*** bobpaul has joined #maemo | 16:07 | |
bobpaul | when the new browser first came out you could switch backends. mozilla is pretty heavy and really bogs down on some sites. Can one still change backends? is there a webkit backend? | 16:10 |
qwerty12_N810 | google webkit-eal | 16:11 |
qwerty12_N810 | or if you hate default browser entirely: google tear | 16:11 |
bobpaul | thanks. eal sounds familiar. it's been a while ;) | 16:12 |
*** EdLin_ has joined #maemo | 16:13 | |
*** bobpaul has quit IRC | 16:16 | |
*** lizone has quit IRC | 16:17 | |
*** EdLin has quit IRC | 16:17 | |
*** udovdh has quit IRC | 16:20 | |
*** bilboed-tp has joined #maemo | 16:24 | |
n6pfk | I have several full screen videos which were playing nicely on the N810 using mplayer. Now the show as less than full screen with distorted colors. Is there a way to restore the play back? | 16:25 |
*** hannesw has quit IRC | 16:36 | |
*** hannesw_ has joined #maemo | 16:36 | |
n6pfk | Ok I changed the -vo to x11 and it now plays nice. | 16:38 |
*** thopiekar has quit IRC | 16:42 | |
*** lizone has joined #Maemo | 16:43 | |
*** Raho has joined #maemo | 16:44 | |
*** EdLin has joined #maemo | 16:45 | |
Raho | Hello! I'm looking for a description on how to install the os2007 "hacker edition" on the 770, using a WindowsXP computer. Does someone have a link to a tutorial or a flashing software? | 16:47 |
Mikho | http://wiki.maemo.org/Updating_the_tablet_firmware | 16:48 |
*** jophish has joined #maemo | 16:50 | |
*** lizone has quit IRC | 16:52 | |
*** EdLin_ has quit IRC | 17:01 | |
*** tonikitoo has quit IRC | 17:01 | |
*** drjnut has quit IRC | 17:04 | |
*** drjnut has joined #maemo | 17:04 | |
*** ignacius has quit IRC | 17:13 | |
*** doc|home has quit IRC | 17:15 | |
*** ttmrichter has quit IRC | 17:16 | |
jophish | booting from a flash card, can I use ext2/3 instead of fat32? | 17:20 |
jophish | for the internal memory card | 17:20 |
*** stv0 has joined #maemo | 17:21 | |
*** cjdavis has quit IRC | 17:31 | |
*** cjdavis has joined #maemo | 17:32 | |
*** z4chh has quit IRC | 17:32 | |
*** ustunozgur has joined #maemo | 17:34 | |
*** stv0 has left #maemo | 17:34 | |
*** z4chh has joined #maemo | 17:34 | |
labaudio | !ny clue about rgb njoy format table??? | 17:40 |
*** z4chh has quit IRC | 17:40 | |
*** z4chh has joined #maemo | 17:41 | |
GAN800 | Stskeeps, weird thing, though, is that FBReader seems to be the only one that does. | 17:41 |
GAN800 | Supporting the offline use-case is particularly silly in Fremantle. | 17:42 |
Stskeeps | GAN800: admittedly - but i agree that the user/ requirement for locally installed debs is insane | 17:42 |
*** z4chh has joined #maemo | 17:43 | |
Stskeeps | i'd like to see the reasoning for that one | 17:43 |
*** EdLin has quit IRC | 17:47 | |
*** udovdh has joined #maemo | 17:49 | |
GAN800 | Protecting the user | 17:52 |
GAN800 | They can't uninstall them later. | 17:52 |
Stskeeps | ah. | 17:57 |
*** croppa has quit IRC | 18:03 | |
*** croppa has joined #maemo | 18:03 | |
*** radic__ has quit IRC | 18:04 | |
*** frade has quit IRC | 18:04 | |
*** tamp4x has joined #maemo | 18:06 | |
*** rkirti|away is now known as rkirti | 18:06 | |
*** bilboed-tp has quit IRC | 18:07 | |
*** rkirti has quit IRC | 18:11 | |
Jaffa | keesj: ping | 18:15 |
Jaffa | GAN800: ping | 18:15 |
*** L0cutus has joined #maemo | 18:18 | |
GAN800 | pong? | 18:19 |
Jaffa | see pm :) | 18:20 |
*** Macer_ has joined #maemo | 18:20 | |
*** doc|home has joined #maemo | 18:22 | |
*** labaudio has quit IRC | 18:22 | |
*** Free_maN has joined #maemo | 18:23 | |
*** udovdh has quit IRC | 18:24 | |
jophish | is there any way to flash the rootfs from a fiasco image to the internal sd card | 18:25 |
jophish | I've tried playing around with the options | 18:25 |
*** tamp4x has left #maemo | 18:25 | |
*** lcuk has quit IRC | 18:26 | |
*** z4chh has quit IRC | 18:27 | |
*** Macer has quit IRC | 18:31 | |
*** z4chh has joined #maemo | 18:32 | |
ShadowJK | jophish, I imagine it wouldn't be easy | 18:32 |
jophish | ah ok | 18:32 |
ShadowJK | well, flashing it could be trivial, but reading it isn't :) | 18:32 |
jophish | ah, no simple way | 18:33 |
jophish | I may as well flash the flash | 18:33 |
jophish | and copy that over | 18:33 |
jophish | with the script here: http://wiki.maemo.org/Booting_from_a_flash_card#Clone_to_the_card | 18:33 |
ShadowJK | the internal flash is jffs2, which isn't designed for mmc/sd type storage | 18:33 |
jophish | sure | 18:33 |
ShadowJK | The image on the internal flash is jffs2, I mean | 18:34 |
jophish | yes, that makes sense | 18:34 |
*** herz1 has quit IRC | 18:34 | |
jophish | Just wanting a clean install on the internal sd | 18:34 |
*** johnsq has joined #maemo | 18:34 | |
jophish | but then what do I do with the internal flash | 18:34 |
jophish | going to be wasted space I guess | 18:34 |
johnsq | Hi | 18:34 |
jophish | hi | 18:35 |
ShadowJK | well it's just 256M of wasted space.. ;) | 18:35 |
jophish | I wonder if I could install mer there | 18:36 |
jophish | or another os | 18:36 |
jophish | they have a flashable image | 18:36 |
*** dieb_ has quit IRC | 18:36 | |
johnsq | buy a 16gb card than you didn't need the 256mb | 18:37 |
jophish | sure, I don't need it anyway | 18:38 |
jophish | just being a pedant | 18:38 |
jophish | so, clean install of diablo | 18:39 |
jophish | shift that to the internal mmc | 18:39 |
jophish | (which is one big ext2 partition) | 18:39 |
jophish | then install mer on the flash | 18:39 |
jophish | *big ext2 partition, except for a 128mb swap | 18:40 |
jophish | nothing's wrong with that? | 18:40 |
johnsq | why not ext3? | 18:40 |
jophish | yes, I meant that | 18:41 |
jophish | thanks | 18:41 |
jophish | would it be difficult to share the home partitions between them | 18:41 |
jophish | on the internal ssd | 18:42 |
*** Raho has quit IRC | 18:42 | |
johnsq | I would only share the data directory. | 18:42 |
jophish | what do you mean by that | 18:43 |
jophish | symbolic links in each OS's home to the same places? | 18:44 |
*** dieb_ has joined #maemo | 18:44 | |
johnsq | in the home are also the . files, which I wouldn't share just documents. | 18:44 |
jophish | alright | 18:44 |
jophish | so for the mer home, all the documents and whatnot, symlink to the the maemo's home's folders | 18:45 |
*** radic has joined #maemo | 18:45 | |
johnsq | yeah | 18:45 |
jophish | that does seem like a sensible thing to do | 18:45 |
jophish | thanks for youe help | 18:45 |
jophish | your* | 18:45 |
jophish | I wonder if there is anything else I can share between the two | 18:46 |
*** dieb_ has quit IRC | 18:47 | |
*** hannesw_ has quit IRC | 18:50 | |
*** z4chh has quit IRC | 18:50 | |
*** z4chh has joined #maemo | 18:53 | |
*** KurtKraut has joined #maemo | 18:55 | |
*** radic has quit IRC | 18:55 | |
*** t_s_o has joined #maemo | 19:03 | |
*** dieb_ has joined #maemo | 19:05 | |
*** shpaq has quit IRC | 19:08 | |
*** avs has joined #maemo | 19:09 | |
*** Raho has joined #maemo | 19:12 | |
*** Raho has quit IRC | 19:13 | |
*** christefano has joined #maemo | 19:14 | |
*** SHADOW_V has joined #maemo | 19:15 | |
jophish | e2fsprogs is not in extras, should I correct the wiki page here: http://wiki.maemo.org/Booting_from_a_flash_card#Install_the_necessary_tools | 19:16 |
*** trofi has quit IRC | 19:17 | |
*** croppa has quit IRC | 19:21 | |
*** ustunozgur has quit IRC | 19:21 | |
*** croppa has joined #maemo | 19:21 | |
*** qwerty12_N810 has quit IRC | 19:24 | |
*** qwerty12_N810 has joined #maemo | 19:24 | |
*** z4chh has quit IRC | 19:25 | |
*** trofi has joined #maemo | 19:26 | |
jophish | in what package is sfdisk included? | 19:27 |
jophish | not in e2fsprogs | 19:27 |
qwerty12_N810 | it comes with the table | 19:27 |
qwerty12_N810 | t | 19:27 |
jophish | hmm | 19:28 |
jophish | I don't seem to have it | 19:28 |
jophish | clean diable flash | 19:28 |
*** jegp has joined #maemo | 19:28 | |
qwerty12_N810 | and you're root? | 19:28 |
jophish | ah that was it | 19:28 |
jophish | only shows up as root | 19:29 |
*** z4chh has joined #maemo | 19:29 | |
jophish | thanks | 19:29 |
*** z4chh has quit IRC | 19:30 | |
*** frade_home has quit IRC | 19:32 | |
*** frade_home has joined #maemo | 19:33 | |
*** mcpi has joined #maemo | 19:33 | |
*** z4chh has joined #maemo | 19:34 | |
jophish | where could I find mke3fs | 19:35 |
*** z4chh has quit IRC | 19:42 | |
slonopotamus | mkfs -t ext3 | 19:43 |
johnsq | mkext2 -j | 19:43 |
keesj | Jaffa: Pang! | 19:43 |
*** z4chh has joined #maemo | 19:43 | |
jophish | I'm afraid I don't have either of those commands | 19:44 |
*** t_s_o has quit IRC | 19:44 | |
johnsq | jophish: sorry mke2fs is it | 19:44 |
jophish | with journalling I presume | 19:45 |
johnsq | yes with -j you get than the ext3, I have used -I 128 to make inodes smaller and use less space | 19:45 |
jophish | uppercase I? | 19:46 |
johnsq | yes | 19:46 |
jophish | listed on die.net as a lowercase | 19:47 |
johnsq | seems that the maemo version didn't have it | 19:47 |
jophish | ah | 19:48 |
*** jegp has left #maemo | 19:48 | |
slonopotamus | -t ext3 is igeologically more correct :P | 19:49 |
johnsq | slonopotamus: my kernel with make n800_defconfig, didn't compile, the correct is make nokia_2420_defconfig | 19:50 |
*** AI6PG has joined #maemo | 19:51 | |
jophish | thanks | 19:52 |
*** z4chh has quit IRC | 19:54 | |
*** AI6PG has quit IRC | 19:54 | |
slonopotamus | johnsq, i recommend layman -S, there were problems again with cx3110x, hope they are all resolved now | 19:54 |
johnsq | I currently compile the X part, so I can't test. but it is in the queue | 19:55 |
slonopotamus | k. X should be easy | 19:55 |
*** glima[AWAY] is now known as glima | 19:55 | |
* slonopotamus still has weird things with keypad actually | 19:55 | |
johnsq | I will see, I have expierience with the linux input layer. | 19:57 |
*** z4chh has joined #maemo | 19:57 | |
slonopotamus | good | 19:57 |
slonopotamus | johnsq, what xorg version btw? | 19:58 |
johnsq | slonopotamus: x11-base/xorg-server-1.5.3-r6 | 19:59 |
Jaffa | keesj: it was about the summit stuff, but I've made my idea public(ish) now :) | 20:01 |
*** t_s_o has joined #maemo | 20:01 | |
jophish | -t ext3 didn't work | 20:01 |
jophish | so I used 'j | 20:01 |
johnsq | check if you have enough files, before you fill the flash. | 20:02 |
jophish | what do you mean? | 20:04 |
*** qwerty12_N810 has quit IRC | 20:05 | |
*** qwerty12_N810 has joined #maemo | 20:05 | |
johnsq | jophish: the the number of inodes is big enough. | 20:05 |
*** shpaq has joined #maemo | 20:05 | |
jophish | too late, already formatted it | 20:06 |
jophish | using -I 128 | 20:07 |
johnsq | Is didn't change the number of inodes, only the size. | 20:07 |
jophish | that's what I though | 20:07 |
jophish | thought | 20:07 |
jophish | I susnt change -i | 20:07 |
jophish | what could the problem's be with using the default? | 20:08 |
jophish | didn't* | 20:08 |
johnsq | you get out of space on the flash | 20:08 |
johnsq | happend me compiling gcc after many hours | 20:09 |
*** slonopotamus has quit IRC | 20:09 | |
johnsq | tune2fs -l /dev/mmcblk... <- to check | 20:10 |
jophish | 245269 inodes | 20:11 |
jophish | that's lots of files | 20:11 |
johnsq | yea, I had only 90k | 20:12 |
jophish | what did you do | 20:12 |
jophish | copy and reformat I guess | 20:12 |
johnsq | yes. backup on pc, reformat now with 1million and back | 20:13 |
jophish | is there any way to change the default mount options, specifically to add noatime | 20:13 |
qwerty12_N810 | in latest diablo, noatime is default | 20:14 |
johnsq | i don't know but you can change them with tune2fs, but if mount from maemo supports it? | 20:14 |
jophish | ah great | 20:14 |
johnsq | why is sys-fs/sshfs-fuse masked on arm gentoo? | 20:17 |
*** rapadura_man has joined #maemo | 20:22 | |
jophish | this script: http://www.nmacleod.com/nokia/bin/nupgrade.sh | 20:23 |
jophish | changing the partition to p1 should make it consider the first partition instead of the second | 20:23 |
jophish | it says in the blurb that only the second partition is considered, this is not a technical reason? | 20:24 |
*** pcfe` is now known as pcfe | 20:26 | |
*** Meizirkki has joined #maemo | 20:29 | |
*** L0cutus has quit IRC | 20:30 | |
*** disco_stu_N800 has joined #maemo | 20:38 | |
*** slonopotamus has joined #maemo | 20:41 | |
*** z4chh has quit IRC | 20:41 | |
*** z4chh has joined #maemo | 20:43 | |
*** ukki has joined #maemo | 20:44 | |
*** disco_stu has quit IRC | 20:44 | |
*** disco_stu_N800 is now known as disco_stu | 20:45 | |
*** glima is now known as glima[AWAY] | 20:52 | |
*** radic has joined #maemo | 20:52 | |
*** matt_c has joined #maemo | 20:53 | |
*** TheJere has quit IRC | 20:54 | |
*** dieb__ has joined #maemo | 21:00 | |
*** borism_ has joined #maemo | 21:00 | |
radic | will it work to dump /dev/mtdblock4 to a file on a SD-Card? | 21:02 |
johnsq | why shouldn't it work? | 21:02 |
*** torkiano has quit IRC | 21:03 | |
radic | hmm | 21:03 |
*** borism has quit IRC | 21:06 | |
slonopotamus | please open http://gitorious.org/mer in microb and any other browser. do you see same thing? | 21:11 |
jophish | what am I supposed to be seeing? | 21:12 |
qwerty12_N810 | no. does the page have an rss feed? | 21:12 |
johnsq | yes, i see the rss logo with firefox | 21:13 |
jophish | me too | 21:14 |
jophish | I see the feed in mocrob | 21:14 |
jophish | microb* | 21:14 |
*** dieb_ has quit IRC | 21:14 | |
slonopotamus | i wonder whos bug it is | 21:14 |
slonopotamus | s/whos/whose/ | 21:14 |
infobot | slonopotamus meant: i wonder whose bug it is | 21:15 |
lbt | what's the prob slonopotamus? (no microb to hand) | 21:16 |
slonopotamus | lbt, microb shows activity log on white bg and nothing else | 21:16 |
lbt | ah | 21:16 |
slonopotamus | can make a shot, if you want | 21:17 |
lbt | not for me right now.. :) food in a sec | 21:17 |
slonopotamus | looks like gitorious gives rss feed instead of page contents to microb | 21:19 |
jophish | wonder why? | 21:19 |
jophish | must be a deliberate feature | 21:19 |
slonopotamus | maybe they just don't like microb :) | 21:20 |
*** matt_c has quit IRC | 21:20 | |
jophish | "heheh this will surely confuse them!" | 21:21 |
slonopotamus | maybe something wrong with microb Accept-Encoding feature | 21:21 |
slonopotamus | rss has same url as page itself? (no ff here) | 21:22 |
slonopotamus | that's just a wild guess | 21:22 |
*** matt_c has joined #maemo | 21:22 | |
*** Vulcanis has joined #maemo | 21:23 | |
*** matt_c has quit IRC | 21:24 | |
*** wazd has joined #maemo | 21:27 | |
jophish | How is the virtual memory organised in maemo | 21:27 |
jophish | because I think that I have a ghost virtual memory file | 21:28 |
slonopotamus | wtf is 'ghost virtual memory file'? | 21:28 |
jophish | does maemo create a hidden file for virtual memory? | 21:29 |
jophish | because I think I have two on me memory card | 21:29 |
jophish | because I'm missing about 128mb space | 21:29 |
jophish | probably exactly | 21:29 |
qwerty12_N810 | /media/mmc2/.swap | 21:30 |
johnsq | swapfile | 21:30 |
jophish | so there can't be more than one? | 21:31 |
wazd | heya maemo | 21:32 |
qwerty12_N810 | hullo wazd | 21:33 |
jophish | howdy | 21:33 |
wazd | just got back from nokia mobile camp | 21:33 |
wazd | have some really interesting shocking info bout maemo but don't know if I'm allowed to tell it :D | 21:33 |
Corsac | (does “tumbler” rings a bell around?) | 21:34 |
slonopotamus | wazd, maemo is deprecated? :) | 21:34 |
wazd | guess how many maemo devices will come up in 2010? (instead of rx-51 and rx-71 in 2009) | 21:34 |
slonopotamus | 0 | 21:34 |
wazd | instead = along | 21:35 |
Stskeeps | wazd: does mer devices count? ;p | 21:35 |
wazd | Stskeeps: fremantle only :D | 21:35 |
Corsac | wazd: 42? | 21:35 |
jophish | 44? 12.6? | 21:35 |
Corsac | wazd: Pi ? | 21:35 |
wazd | you will be really surprised :) | 21:36 |
jophish | oh, be rational Corsac! | 21:36 |
Corsac | :)) | 21:36 |
wazd | 14! | 21:36 |
jophish | i? | 21:36 |
Corsac | e? | 21:36 |
johnsq | I need only one. | 21:36 |
qwerty12_N810 | 14? | 21:36 |
jophish | 14? | 21:36 |
wazd | well, that was my reaction :) | 21:36 |
jophish | wow | 21:36 |
jophish | all nokia or what? | 21:36 |
Corsac | how many not from nokia? | 21:36 |
wazd | I was like "eeer, fourteen?@) | 21:36 |
wazd | Corsac: dunno bout this | 21:37 |
johnsq | has the maemo on screen keyboard cursor keys? if not who has designed it? | 21:38 |
wazd | rx-71 exists and it's cool :) | 21:38 |
Corsac | do you have an ETA for leaks? | 21:38 |
Corsac | :> | 21:38 |
johnsq | engadget.com has e72 | 21:38 |
wazd | I haven't signed any NDA so I don't think that I'll be punnished for this | 21:38 |
Corsac | maemo based?? | 21:38 |
*** ceyusa has quit IRC | 21:39 | |
Stskeeps | wazd: did they make you write on a big piece of paper? | 21:39 |
Stskeeps | if so, did you look under it? :> | 21:39 |
wazd | no, it was just an ordinary discussion with nokia related person :) | 21:39 |
wazd | but not nokia employee | 21:40 |
Stskeeps | russian "ordinary" = "plenty of vodka included"? ;) | 21:40 |
johnsq | lol | 21:40 |
wazd | Stskeeps: nah, there were no alcohol at all :( | 21:40 |
*** rapadura_man has quit IRC | 21:40 | |
jophish | 14, that's quite a lot | 21:41 |
Corsac | hmhm, e72 looks nice | 21:41 |
Corsac | but I'm not sure it'll match against the n900 | 21:42 |
Corsac | ¬¬ | 21:42 |
wazd | as i was told rx-71 is a slider phone :) | 21:42 |
Corsac | well, if they manage to correctly handle calendar, contacts sync etc. | 21:42 |
wazd | haven't seen it for myself anyway | 21:42 |
*** simon_ has joined #maemo | 21:42 | |
wazd | Corsac: full pim | 21:42 |
Corsac | for fremantle> | 21:42 |
Corsac | ? | 21:42 |
Stskeeps | yeah, but that one is known | 21:42 |
wazd | Corsac: yep | 21:42 |
Corsac | \o/ | 21:43 |
*** gnuton has quit IRC | 21:44 | |
*** beav1s has joined #maemo | 21:44 | |
*** krutt has quit IRC | 21:45 | |
*** beav1s is now known as krutt | 21:45 | |
jophish | what's 12mb+2mb+156mb, maemo seems to think it's 343mb | 21:48 |
wazd | what else can I tell you without being killed :) | 21:48 |
Stskeeps | wazd: i can tell by your joy that i should buy one anyway :P | 21:49 |
jophish | have you any pictures? | 21:49 |
*** ScriptRipper has quit IRC | 21:49 | |
wazd | jophish: are you crazy? :) | 21:49 |
jophish | used space on a card | 21:49 |
ShadowJK | the internal flash is compressed | 21:50 |
*** t_s_o has quit IRC | 21:50 | |
jophish | this is the internal sd card | 21:51 |
jophish | says in use 343MB | 21:51 |
jophish | however all it has on it, is a clone of the internal flash | 21:51 |
jophish | after a clean flash | 21:52 |
qwerty12_N810 | yes, and like ShadowJK said, the internal flash is compressed. your sd card is not | 21:52 |
jophish | oh I see | 21:52 |
jophish | sorry | 21:52 |
*** herzi has joined #maemo | 21:59 | |
*** frade_home has quit IRC | 22:01 | |
*** kkrusty has joined #maemo | 22:05 | |
kkrusty | hmmm I got 173 new bluetooth lookup results in 3 hours. | 22:06 |
*** abner has joined #maemo | 22:06 | |
kkrusty | and Im sick of hearing "xxxx first found now" | 22:07 |
*** harbaum__ has joined #maemo | 22:07 | |
*** Meizirkki has quit IRC | 22:07 | |
*** Firebird has quit IRC | 22:08 | |
*** Meizirkki has joined #maemo | 22:08 | |
*** Meizirkki has joined #maemo | 22:10 | |
*** qwerty12_N810 has quit IRC | 22:11 | |
jophish | how does maemo mount the external sd card? | 22:11 |
*** qwerty12_N800 has joined #maemo | 22:11 | |
jophish | because I moved maemo to the internal sd card, and it has trouble finding the card | 22:12 |
jophish | I can see it all in xterm, after manually mounting it | 22:12 |
jophish | but it doesn't appear in the file manager | 22:12 |
*** ignacius has joined #maemo | 22:12 | |
slonopotamus | maemo needs first partition to be fat32 | 22:13 |
slonopotamus | s/32// | 22:13 |
infobot | slonopotamus meant: maemo needs first partition to be fat | 22:13 |
jophish | hmm, that'd odd | 22:13 |
jophish | because when I boot into maemo (exactly the same) on the internal flash, it detects the card | 22:13 |
jophish | at the moment it's ext3 | 22:13 |
*** L0cutus has joined #maemo | 22:18 | |
johnsq | jophish: mine shows both card, i made only 1 ext3 partion on each | 22:18 |
jophish | that's the same setup as me | 22:18 |
jophish | I see the internal card, with one ext3 partition | 22:18 |
jophish | but no external card | 22:18 |
*** avs has quit IRC | 22:20 | |
jophish | oh rats, now I can't even see the internal card, despite booting off it | 22:21 |
jophish | but I can see the external one | 22:21 |
jophish | what a conundrum! | 22:21 |
slonopotamus | hehe | 22:21 |
*** frade_home has joined #maemo | 22:25 | |
*** Macer_ is now known as Macer | 22:26 | |
jophish | taking out the external card causes me to reboot | 22:26 |
jophish | sigh | 22:26 |
*** SHADOW_V has quit IRC | 22:26 | |
*** SHADOW_V has joined #maemo | 22:27 | |
*** gnuton has joined #maemo | 22:29 | |
jophish | and when the external card isn't in, I don't see the internal card | 22:29 |
jophish | but plugging it in while maemo is running allows me to see it | 22:30 |
*** jegp has joined #maemo | 22:30 | |
*** SHADOW_V has quit IRC | 22:30 | |
*** SHADOW_V has joined #maemo | 22:30 | |
qwerty12_N800 | N810? https://bugs.maemo.org/show_bug.cgi?id=2747 | 22:31 |
*** gentooer has joined #maemo | 22:32 | |
jophish | that's exactly the one | 22:32 |
*** SHADOW_V has quit IRC | 22:33 | |
*** SHADOW_V has joined #maemo | 22:33 | |
*** Meizirkki has quit IRC | 22:33 | |
*** SHADOW_V has quit IRC | 22:34 | |
*** SHADOW_V has joined #maemo | 22:34 | |
lbt | Jaffa: can you upgrade git on badger? | 22:38 |
*** Sargun has quit IRC | 22:38 | |
Jaffa | lbt: hmm, tricksy. It's debian stable so... can you check if it's in the backports? | 22:39 |
*** kkrusty has quit IRC | 22:39 | |
lbt | oh, I thought it was 1.5.x in stable.... | 22:39 |
lbt | is it oldstable? | 22:40 |
lbt | http://packages.debian.org/lenny/git-core ? | 22:41 |
Jaffa | Hmm, yeah - oldstable | 22:42 |
Jaffa | 1.5 in etch-backports | 22:43 |
*** Sargun has joined #maemo | 22:44 | |
*** richieeee72 has joined #maemo | 22:44 | |
*** richieeee72 has left #maemo | 22:44 | |
lbt | you may be interested in http://wiki.maemo.org/Mer/Build/UsingGitorious#Moving_a_Package_to_Gitorious | 22:44 |
Jaffa | lbt: upgrading git | 22:46 |
lbt | great - ta :) | 22:46 |
Jaffa | andrew@badger:~ $ git --version | 22:48 |
Jaffa | git version 1.5.6.5 | 22:48 |
*** SHADOW_V1 has joined #maemo | 22:48 | |
*** myosound has joined #maemo | 22:49 | |
lbt | ta | 22:49 |
*** harbaum__ has quit IRC | 22:55 | |
jophish | rats, seems like I cane ave rotation and a mmc card fix | 22:57 |
*** k-s[AWAY] is now known as k-s | 22:57 | |
jophish | oh well, never used rotation much anyway | 22:57 |
*** SHADOW_V has quit IRC | 22:57 | |
qwerty12_N800 | compile your own kernel :) | 22:58 |
*** konttori__ has quit IRC | 22:58 | |
jophish | this is another one of those slippery slopes | 23:00 |
jophish | when I start to compile my own, it will break other things | 23:00 |
locutus | win 37 | 23:00 |
jophish | compiling a kernel for the NDS was a nightmare | 23:01 |
*** myosound has quit IRC | 23:03 | |
jophish | how can I get a new kernel onto maemo which is on the internal sd card | 23:04 |
*** trickie has quit IRC | 23:05 | |
*** cmvo has quit IRC | 23:07 | |
*** jegp has left #maemo | 23:08 | |
RST38h | moo all | 23:09 |
jophish | hi | 23:10 |
*** SHADOW_V has joined #maemo | 23:11 | |
*** ezadkiel_mB has joined #maemo | 23:11 | |
qwerty12_N800 | jophish: unzip/untar file containing zImage and as root, run fiasco-flasher -f -k <path to zImage>. The kernel is on a separate partition in the flashed that is used by whatever system you're booting into be it flash, mmc etc | 23:12 |
jophish | I see | 23:12 |
jophish | thanks very much | 23:12 |
johnsq | qwerty12_N800: but no separate kernel for different boots. | 23:13 |
*** LinuxCode has joined #maemo | 23:13 | |
qwerty12_N800 | johnsq: indeed | 23:13 |
jophish | presumably, two maemo's would use the same kernel, but what about mer? | 23:14 |
qwerty12_N800 | mer uses whatever kernel happens to be flashed to the tablet | 23:15 |
jophish | ok | 23:15 |
*** bilboed has quit IRC | 23:19 | |
*** SHADOW_V1 has quit IRC | 23:20 | |
johnsq | somebody working on new bootloader (xloader iirc) | 23:22 |
johnsq | +? | 23:22 |
Stskeeps | johnsq: if you bust NOLO, X-loader you have bricked your device quite hard | 23:23 |
Stskeeps | so no, we're just happy with x-loader | 23:23 |
johnsq | sure this a problem, but it is nokia fault, that it can only boot one kernel image. | 23:24 |
Stskeeps | .. how is this a fault | 23:24 |
jophish | is there any way to change where maemo puts the virtual memory file? | 23:25 |
Stskeeps | afaik i think it can boot from sd too but that's another topic | 23:25 |
*** z4chh_ has joined #maemo | 23:28 | |
*** philipl has quit IRC | 23:29 | |
*** z4chh has quit IRC | 23:29 | |
*** profoX` has joined #maemo | 23:36 | |
*** timeless_mbp has quit IRC | 23:37 | |
*** Free_maN has quit IRC | 23:37 | |
*** timeless_mbp has joined #maemo | 23:37 | |
*** qwerty12_N800 is now known as qwerty12_N800_ | 23:38 | |
*** SHADOW_V1 has joined #maemo | 23:39 | |
*** juergbi has quit IRC | 23:39 | |
*** christefano has quit IRC | 23:41 | |
*** glima[AWAY] is now known as glima | 23:41 | |
*** pH5 has joined #maemo | 23:42 | |
*** lizone has joined #Maemo | 23:44 | |
*** profoX` has quit IRC | 23:44 | |
*** igagis has quit IRC | 23:46 | |
*** SHADOW_V2 has joined #maemo | 23:48 | |
*** SHADOW_V has quit IRC | 23:56 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!