*** chicks_ has quit IRC | 00:01 | |
*** chicks_ has joined #meego | 00:01 | |
*** AstralStorm has quit IRC | 00:01 | |
*** heffer has quit IRC | 00:01 | |
*** AstralStorm has joined #meego | 00:02 | |
*** solarion has quit IRC | 00:02 | |
*** PostmanPechkin has joined #meego | 00:02 | |
*** PostmanPechk has quit IRC | 00:03 | |
*** smyows has quit IRC | 00:03 | |
*** PostmanPechkin has quit IRC | 00:04 | |
*** marciom_ has quit IRC | 00:04 | |
*** Armi^ has quit IRC | 00:05 | |
*** kanibalv has quit IRC | 00:11 | |
*** lizardo has quit IRC | 00:12 | |
*** javiF has quit IRC | 00:13 | |
DawnFoster | interesting http://www.engadget.com/2010/04/28/hp-buys-palm/ | 00:13 |
---|---|---|
Cosmo | :o | 00:14 |
*** leinir has quit IRC | 00:15 | |
*** kanibalv has joined #meego | 00:15 | |
*** thinkingpotato has joined #meego | 00:16 | |
*** mzanetti_ has joined #meego | 00:20 | |
*** kanibalv has quit IRC | 00:22 | |
*** tgalal has joined #meego | 00:22 | |
*** adorsey has quit IRC | 00:23 | |
*** mzanetti has quit IRC | 00:23 | |
*** SWFu has quit IRC | 00:27 | |
jrayhawk | This means we need to trick bdale into porting Debian to the Pre. | 00:28 |
*** kanibalv has joined #meego | 00:28 | |
*** lazevedo has quit IRC | 00:29 | |
*** lizardo has joined #meego | 00:30 | |
*** lazevedo has joined #meego | 00:31 | |
*** luck has quit IRC | 00:34 | |
*** luck has joined #meego | 00:35 | |
*** Amfi has joined #meego | 00:35 | |
*** ctusar has quit IRC | 00:35 | |
*** Jophish_n900 has joined #meego | 00:37 | |
*** tgalal has quit IRC | 00:37 | |
*** kanibalv has quit IRC | 00:37 | |
*** Joonas has quit IRC | 00:38 | |
*** Jophish_n900 has quit IRC | 00:42 | |
Cosmo | there's a magical way measure how much memory is used by a program? | 00:48 |
thiago_home | no | 00:48 |
thiago_home | modern VM systems are far too complex | 00:48 |
*** kanibalv has joined #meego | 00:49 | |
thiago_home | there isn't a number of "how much memory" a program uses | 00:49 |
Cosmo | VM? | 00:49 |
Cosmo | I was talking about a program I just compiled | 00:49 |
thiago_home | Virtual Memory | 00:49 |
*** Jophish_n900 has joined #meego | 00:49 | |
thiago_home | yes | 00:49 |
Cosmo | I was thinking virtual machine | 00:49 |
Cosmo | I'm using top | 00:49 |
thiago_home | you can measure the total virtual addressable memory | 00:49 |
*** mzanetti has joined #meego | 00:50 | |
*** fredy has quit IRC | 00:50 | |
thiago_home | you can measure the resident set size (the amount of RAM used) | 00:50 |
thiago_home | those both include shared memory, mapped files, etc. | 00:50 |
*** mzanetti_ has quit IRC | 00:50 | |
thiago_home | you can measure heap usage, you can measure private (non-shared) memory | 00:50 |
thiago_home | what do you want? | 00:50 |
Cosmo | to test that my destructor works and deallocates memory | 00:50 |
thiago_home | ah | 00:51 |
thiago_home | then you want valgrind --leak-check=full | 00:51 |
Cosmo | thank you | 00:51 |
thiago_home | you don't want to measure memory, you want to check for leaks :-) | 00:51 |
Cosmo | I knew it began with a V | 00:51 |
*** akeripper has quit IRC | 00:52 | |
*** kanibalv has quit IRC | 00:53 | |
Cosmo | don't I have to compile it with a special flag? | 00:53 |
*** SDP has joined #meego | 00:53 | |
thiago_home | no | 00:54 |
Cosmo | thank you | 00:55 |
*** akeripper has joined #meego | 00:55 | |
Cosmo | erm | 00:58 |
*** smhar has joined #meego | 00:58 | |
*** kanibalv has joined #meego | 00:58 | |
*** mzanetti has quit IRC | 00:58 | |
Cosmo | maybe i shouldn't test it on my server | 00:58 |
Cosmo | if it leaks it wills up the RAM | 00:58 |
*** smhar has quit IRC | 00:58 | |
Cosmo | take up* | 00:58 |
*** mikhas has quit IRC | 00:58 | |
Cosmo | and then the system will come to a hault | 00:58 |
*** smhar has joined #meego | 00:58 | |
jrayhawk | The OOM killer will take care of it at that point. | 00:59 |
thiago_home | the OOM killer will do something | 00:59 |
Cosmo | ? | 00:59 |
thiago_home | you can also limit the amount of addressable memory. See man ulimit. | 00:59 |
jrayhawk | http://linux-mm.org/OOM_Killer | 00:59 |
Cosmo | damn | 01:00 |
Cosmo | just throught, I have a constructor in a sub class | 01:00 |
Cosmo | but it';s not ran in the super class | 01:00 |
*** baraujo has quit IRC | 01:01 | |
thiago_home | constructors are run from least derived to most derived | 01:01 |
thiago_home | depth-first, pre-order graph walking | 01:01 |
Cosmo | *destructor | 01:01 |
thiago_home | destructors are run in the inverse order | 01:01 |
Cosmo | ==8385== LEAK SUMMARY: | 01:01 |
Cosmo | ==8385== definitely lost: 28 bytes in 1 blocks. | 01:01 |
Cosmo | ==8385== indirectly lost: 621 bytes in 22 blocks. | 01:01 |
*** TSCHAKeee has quit IRC | 01:02 | |
*** SWFu has joined #meego | 01:02 | |
thiago_home | valgrind should have told you where those 28 bytes were allocated | 01:02 |
thiago_home | it doesn't tell you where they were leaked, though | 01:02 |
Cosmo | I think it was at the end | 01:03 |
*** TSCHAKeee has joined #meego | 01:03 | |
*** nona has quit IRC | 01:03 | |
Cosmo | damn, where is my metal class map | 01:04 |
*** puffin has quit IRC | 01:05 | |
*** tgalal has joined #meego | 01:06 | |
*** kanibalv has quit IRC | 01:06 | |
*** thinkingpotato has quit IRC | 01:06 | |
Cosmo | so memory leakage is bad, but the OS will deal with it instead of crashing? | 01:07 |
*** kanibalv has joined #meego | 01:07 | |
*** mjv has quit IRC | 01:07 | |
*** trbs has quit IRC | 01:07 | |
thiago_home | well, depends | 01:08 |
thiago_home | a leakage can be something that causes a long-running program to balloon in size | 01:08 |
lcuk | Cosmo, whats the operating system to do with leaky memory from your own app? can't you tidy up after yourself? how would it know difference between leaky code and high use? | 01:08 |
*** anaZ1 has quit IRC | 01:08 | |
thiago_home | you will have adverse effects, because it will cause swapping | 01:08 |
*** GeneralAntilles has quit IRC | 01:08 | |
Cosmo | lcuk: I'm dealing with it] | 01:09 |
thiago_home | not all leaks are like that | 01:09 |
thiago_home | there are leaks that only leaked because the app exited. They aren't real leaks. | 01:09 |
*** mkeir has quit IRC | 01:09 | |
*** TheAppleMan has quit IRC | 01:09 | |
Cosmo | okay I have fake leaks | 01:09 |
*** mkeir has joined #meego | 01:09 | |
*** Mirv has quit IRC | 01:10 | |
*** Savago has quit IRC | 01:10 | |
*** Zeikko has quit IRC | 01:10 | |
*** otep has quit IRC | 01:11 | |
*** kebax has quit IRC | 01:11 | |
*** crysaz has quit IRC | 01:11 | |
*** kulve has quit IRC | 01:11 | |
*** kortsi has quit IRC | 01:11 | |
*** jl___ has quit IRC | 01:11 | |
*** polac has quit IRC | 01:11 | |
*** kebax has joined #meego | 01:11 | |
*** kortsi has joined #meego | 01:12 | |
*** VRe_ has quit IRC | 01:12 | |
*** polac has joined #meego | 01:12 | |
*** VRe has joined #meego | 01:12 | |
*** Zeikko has joined #meego | 01:12 | |
*** vmlemon_ has joined #meego | 01:12 | |
*** Amfi has left #meego | 01:13 | |
*** kanibalv has quit IRC | 01:15 | |
*** roger` has quit IRC | 01:15 | |
*** anaZ has joined #meego | 01:15 | |
*** DawnFoster has quit IRC | 01:15 | |
*** vmlemon_ has left #meego | 01:16 | |
*** Savago has joined #meego | 01:16 | |
*** GeneralAntilles has joined #meego | 01:16 | |
*** rsalveti has quit IRC | 01:16 | |
*** kanibalv has joined #meego | 01:16 | |
*** thiago_home has quit IRC | 01:17 | |
*** tgalal has quit IRC | 01:18 | |
*** otep has joined #meego | 01:19 | |
*** ptl is now known as ptlunregtest | 01:19 | |
*** Mirv has joined #meego | 01:19 | |
*** jl_ has joined #meego | 01:19 | |
*** kulve has joined #meego | 01:20 | |
*** mjv has joined #meego | 01:20 | |
*** crysaz has joined #meego | 01:20 | |
*** DawnFoster has joined #meego | 01:22 | |
*** ptlunregtest is now known as ptl | 01:22 | |
*** roger` has joined #meego | 01:27 | |
*** kanibalv has quit IRC | 01:28 | |
*** njsf_ has joined #meego | 01:28 | |
*** kanibalv has joined #meego | 01:29 | |
*** jsa- has quit IRC | 01:29 | |
*** tgalal has joined #meego | 01:34 | |
trem | nite all, sweet dreams | 01:36 |
*** trem has quit IRC | 01:37 | |
*** prpplague has quit IRC | 01:40 | |
*** deegee_ has quit IRC | 01:40 | |
*** abinader has quit IRC | 01:41 | |
*** dharman has quit IRC | 01:43 | |
*** Savago has quit IRC | 01:43 | |
*** tgalal has quit IRC | 01:43 | |
Cosmo | say I have: exitClass *temp = nextExit | 01:43 |
Cosmo | is there a way i could delete that variable and then return temp witrh another class | 01:44 |
Cosmo | so redefine it as nonplayingClass *temp = firstPerson; | 01:44 |
*** njsf_ has quit IRC | 01:47 | |
*** anselmolsm has quit IRC | 01:47 | |
*** Diod has quit IRC | 01:48 | |
*** aloisiojr has quit IRC | 01:52 | |
*** luck has quit IRC | 01:53 | |
Cosmo | is there a valgrind for windows? | 01:57 |
*** nid0 has quit IRC | 01:59 | |
*** townxelliot has quit IRC | 02:00 | |
*** mitsutaka has joined #meego | 02:02 | |
*** nid0 has joined #meego | 02:04 | |
*** kvasir has quit IRC | 02:10 | |
*** githogori has quit IRC | 02:12 | |
*** zs has quit IRC | 02:15 | |
*** pkt has quit IRC | 02:16 | |
*** ufa_ has quit IRC | 02:17 | |
*** Jophish_n900 has quit IRC | 02:17 | |
*** ufa_ has joined #meego | 02:17 | |
*** felipec has quit IRC | 02:21 | |
*** radhermit has quit IRC | 02:23 | |
*** andyross has quit IRC | 02:23 | |
*** lizardo has quit IRC | 02:24 | |
*** rsalveti has joined #meego | 02:25 | |
*** radhermit has joined #meego | 02:29 | |
*** gaveen has quit IRC | 02:29 | |
*** javispedro has quit IRC | 02:29 | |
*** rsalveti has quit IRC | 02:32 | |
*** bpeel is now known as bpeel_away | 02:36 | |
*** puffin has joined #meego | 02:40 | |
*** puffin has quit IRC | 02:44 | |
*** puffin has joined #meego | 02:45 | |
*** SWFu has quit IRC | 02:47 | |
* Cosmo gets in bed, realises he's left his drink in the kitchen then gets out of bed | 02:47 | |
*** puffin has quit IRC | 02:49 | |
*** kanibalv_ has joined #meego | 02:49 | |
*** t_s_o has joined #meego | 02:49 | |
*** kanibalv has quit IRC | 02:51 | |
*** glunardi has quit IRC | 02:51 | |
*** andyross has joined #meego | 02:52 | |
*** DawnFoster has quit IRC | 02:53 | |
*** koupsaa has joined #meego | 03:00 | |
*** puffin has joined #meego | 03:01 | |
*** koupsaa has left #meego | 03:02 | |
*** andyross has quit IRC | 03:07 | |
*** andyross has joined #meego | 03:08 | |
*** Zeikko has quit IRC | 03:09 | |
*** armika has quit IRC | 03:09 | |
*** deux__ has quit IRC | 03:09 | |
*** FSCV has quit IRC | 03:09 | |
*** sharpneli has quit IRC | 03:09 | |
*** Gizmokid2005 has quit IRC | 03:09 | |
*** ambuli has quit IRC | 03:09 | |
*** jesperht has quit IRC | 03:09 | |
*** mauricek has quit IRC | 03:09 | |
*** nomadalien has quit IRC | 03:09 | |
*** JLP has quit IRC | 03:09 | |
*** zeddii has quit IRC | 03:09 | |
*** juergbi has quit IRC | 03:09 | |
*** markey has quit IRC | 03:09 | |
*** jesperht has joined #meego | 03:10 | |
*** mauricek has joined #meego | 03:11 | |
*** sharpneli has joined #meego | 03:11 | |
*** JLP has joined #meego | 03:11 | |
*** JLP has quit IRC | 03:11 | |
*** JLP has joined #meego | 03:11 | |
*** Gizmokid2005 has joined #meego | 03:12 | |
*** armika has joined #meego | 03:12 | |
*** Zeikko has joined #meego | 03:12 | |
*** ambuli has joined #meego | 03:13 | |
Jartza | what's up? | 03:13 |
*** pillar has quit IRC | 03:15 | |
*** andyross1 has joined #meego | 03:15 | |
*** andyross has quit IRC | 03:15 | |
*** andyross1 has quit IRC | 03:16 | |
*** andyross has joined #meego | 03:16 | |
*** andyross has quit IRC | 03:17 | |
*** kanibalv has joined #meego | 03:18 | |
*** deux__ has joined #meego | 03:18 | |
*** nomadalien has joined #meego | 03:18 | |
*** zeddii has joined #meego | 03:18 | |
*** juergbi has joined #meego | 03:18 | |
*** kanibalv_ has quit IRC | 03:18 | |
dl9pf | can I disable omap wdt on kernel cmdline somwhow ? | 03:25 |
*** rsalveti has joined #meego | 03:25 | |
* Cosmo dances | 03:34 | |
Cosmo | I only lose 14 blocks of memory now, not 22 | 03:34 |
Cosmo | so my new code worek | 03:34 |
*** puffin has quit IRC | 03:37 | |
*** puffin has joined #meego | 03:37 | |
*** heliocastro has quit IRC | 03:38 | |
*** puffin has joined #meego | 03:38 | |
*** W_I has quit IRC | 03:41 | |
*** puffin has quit IRC | 03:43 | |
*** b-man17 has joined #meego | 03:43 | |
Cosmo | ==8663== Address 0x427d7c0 is 24 bytes inside a block of size 28 free'd | 03:43 |
Cosmo | how bad is this? | 03:44 |
b-man17 | what is that from? | 03:44 |
Cosmo | valgruad | 03:44 |
*** kanibalv_ has joined #meego | 03:45 | |
*** kanibalv has quit IRC | 03:45 | |
Cosmo | *valgrind | 03:45 |
b-man17 | ah | 03:46 |
*** hurewitz has joined #meego | 03:47 | |
b-man17 | hmm | 03:47 |
*** rsalveti has quit IRC | 03:47 | |
*** rsalveti has joined #meego | 03:47 | |
Cosmo | I'm pleased that I don't have a memory leak tho | 03:47 |
*** sheepbat has joined #meego | 03:52 | |
* Cosmo flushes his cache :) | 03:55 | |
Cosmo | week 11 of 12 we get told that our programs will almost certainly have a memory leak | 03:55 |
Cosmo | so the longer we work on them the more RAM it will eat | 03:56 |
Cosmo | however my program leaks abnout 650 bytes per go | 03:56 |
*** githogori has joined #meego | 03:56 | |
*** puffin has joined #meego | 03:59 | |
*** hurewitz has quit IRC | 03:59 | |
Cosmo | cyas | 04:00 |
Cosmo | b-man17: nothing's on fire so I can figure it out another day :) | 04:00 |
*** puffin has quit IRC | 04:01 | |
*** Cosmo has quit IRC | 04:01 | |
*** puffin has joined #meego | 04:01 | |
*** puffin has quit IRC | 04:01 | |
Jartza | Cosmo: you are freeing the same block twice? | 04:01 |
*** puffin has joined #meego | 04:02 | |
*** puffin has quit IRC | 04:06 | |
dl9pf | did someone test beagleboard already ? | 04:08 |
*** melik` has joined #meego | 04:10 | |
*** armika has quit IRC | 04:11 | |
*** melik has quit IRC | 04:11 | |
*** glin has joined #meego | 04:14 | |
*** puffin has joined #meego | 04:15 | |
*** armika has joined #meego | 04:17 | |
*** vgrade1 has quit IRC | 04:23 | |
*** kona_ has joined #meego | 04:23 | |
*** kona_ is now known as SharonG | 04:24 | |
SharonG | I went | 04:25 |
*** itdock has quit IRC | 04:26 | |
*** wasikevin has joined #meego | 04:26 | |
*** itdock has joined #meego | 04:27 | |
*** kanibalv has joined #meego | 04:36 | |
*** kanibalv_ has quit IRC | 04:37 | |
*** t_s_o has quit IRC | 04:37 | |
*** cure` has quit IRC | 04:43 | |
*** kanibalv has quit IRC | 04:45 | |
*** NishanthMenon has quit IRC | 04:45 | |
*** SharonG has quit IRC | 04:46 | |
*** vgrade has joined #meego | 04:50 | |
*** yanli has joined #meego | 04:57 | |
*** DawnFoster has joined #meego | 05:02 | |
*** melik` has quit IRC | 05:11 | |
*** kanibalv has joined #meego | 05:13 | |
*** glunardi has joined #meego | 05:14 | |
*** b-man17 has quit IRC | 05:16 | |
*** kanibalv_ has joined #meego | 05:22 | |
*** kanibalv has quit IRC | 05:23 | |
*** III has joined #meego | 05:28 | |
*** fatal__ has joined #meego | 05:40 | |
*** GeneralAntilles has quit IRC | 05:45 | |
*** GAN900 has quit IRC | 05:46 | |
*** pcutler has joined #meego | 05:46 | |
Stskeeps | morning | 05:46 |
*** v-pv has joined #meego | 05:47 | |
III | morning Stskeeps | 05:48 |
* Stskeeps is on n900 on way to .dk | 05:54 | |
*** v-pv has quit IRC | 05:55 | |
*** glunardi has quit IRC | 05:56 | |
*** glunardi has joined #meego | 05:57 | |
*** melik has joined #meego | 05:58 | |
*** edisson has joined #meego | 06:03 | |
*** Shanita has joined #meego | 06:03 | |
*** glunardi has quit IRC | 06:04 | |
*** Moku has quit IRC | 06:04 | |
*** ufa_ has quit IRC | 06:16 | |
*** ufa_ has joined #meego | 06:17 | |
dl9pf | moin | 06:18 |
Stskeeps | moin | 06:18 |
Stskeeps | dl9pf: WAHa_06x36 is working on meego beagle too. check irc logs of this channel, he had some solutions | 06:19 |
*** TSCHAKeee has quit IRC | 06:25 | |
*** TSCHAKeee has joined #meego | 06:25 | |
dl9pf | tnx, grepping | 06:29 |
*** GeneralAntilles has joined #meego | 06:29 | |
*** Unmenschlich has joined #meego | 06:31 | |
*** Unmensch has quit IRC | 06:33 | |
*** ptl has quit IRC | 06:36 | |
*** puffin has quit IRC | 06:39 | |
*** puffin_ has joined #meego | 06:39 | |
*** GeneralAntilles has quit IRC | 06:40 | |
*** ptl has joined #meego | 06:47 | |
*** ptl has joined #meego | 06:47 | |
*** glunardi has joined #meego | 06:58 | |
*** slonopotamus has quit IRC | 07:02 | |
*** ubIx_ has joined #meego | 07:05 | |
*** slonopotamus has joined #meego | 07:08 | |
*** ubIx has quit IRC | 07:09 | |
*** glunardi has quit IRC | 07:10 | |
*** glunardi has joined #meego | 07:11 | |
*** puffin_ has quit IRC | 07:14 | |
*** puffin_ has joined #meego | 07:15 | |
*** tealbird has joined #meego | 07:15 | |
*** sheepbat has quit IRC | 07:17 | |
*** puffin_ has quit IRC | 07:19 | |
*** jmc93739653 has joined #meego | 07:21 | |
*** yanli has left #meego | 07:27 | |
*** srag has joined #meego | 07:30 | |
*** DocScrutinizer has quit IRC | 07:30 | |
*** DocScrutinizer has joined #meego | 07:30 | |
*** DocScrutinizer is now known as DocScrutinizerwa | 07:35 | |
*** DocScrutinizerwa is now known as DocScrutinizer | 07:35 | |
*** tealbird has left #meego | 07:38 | |
*** GeneralAntilles has joined #meego | 07:40 | |
*** GAN900 has joined #meego | 07:40 | |
*** |R has quit IRC | 07:49 | |
*** III has quit IRC | 07:51 | |
*** bhushan has joined #meego | 07:55 | |
*** anbaldwi has joined #meego | 07:56 | |
*** sheepbat has joined #meego | 07:57 | |
*** glunardi has left #meego | 08:10 | |
*** gaveen has joined #meego | 08:12 | |
*** villemv has joined #meego | 08:15 | |
*** slonopotamus has quit IRC | 08:17 | |
*** yanli has joined #meego | 08:19 | |
*** andrei1089 has quit IRC | 08:19 | |
*** tmikola has joined #meego | 08:20 | |
*** Cy8aer has joined #meego | 08:22 | |
*** RST38h has quit IRC | 08:30 | |
*** andrei1089 has joined #meego | 08:31 | |
*** thiago_home has joined #meego | 08:36 | |
*** andrei1089 has quit IRC | 08:37 | |
*** markey has joined #meego | 08:39 | |
*** andrei1089 has joined #meego | 08:42 | |
*** chitti has joined #meego | 08:45 | |
*** andrei1089 has quit IRC | 08:47 | |
*** andrei1089 has joined #meego | 08:48 | |
*** redfish has joined #meego | 08:54 | |
*** andrei1089 has quit IRC | 08:54 | |
*** pohly has joined #meego | 08:57 | |
*** wolfiR has joined #meego | 08:58 | |
*** andrei1089 has joined #meego | 08:59 | |
*** tekojo has joined #meego | 09:04 | |
*** tekojo has joined #meego | 09:04 | |
*** andrei1089 has quit IRC | 09:07 | |
*** thiago_home has quit IRC | 09:11 | |
*** andrei1089 has joined #meego | 09:11 | |
*** andrei1089 has quit IRC | 09:17 | |
*** radhermit has quit IRC | 09:19 | |
*** radhermit has joined #meego | 09:19 | |
*** andrei1089 has joined #meego | 09:19 | |
*** nicu has joined #meego | 09:20 | |
*** ingalsuo has quit IRC | 09:21 | |
*** zalan has joined #meego | 09:24 | |
*** mkeir has quit IRC | 09:26 | |
*** ingalsuo has joined #meego | 09:27 | |
*** Joonas has joined #meego | 09:27 | |
*** tilppis has joined #meego | 09:27 | |
*** leinir has joined #meego | 09:27 | |
*** sebf has joined #meego | 09:27 | |
*** sebf has left #meego | 09:28 | |
*** Stortkanda has joined #meego | 09:34 | |
*** antti has joined #meego | 09:35 | |
*** yanli has quit IRC | 09:36 | |
*** zalan has quit IRC | 09:42 | |
*** antti has left #meego | 09:42 | |
*** zalan has joined #meego | 09:43 | |
*** tekojo has quit IRC | 09:44 | |
*** timeless_mbp has quit IRC | 09:45 | |
*** tilppis has quit IRC | 09:45 | |
*** Coke has joined #meego | 09:46 | |
*** andrei1089 has quit IRC | 09:53 | |
*** gerrymoth has joined #meego | 09:55 | |
*** gerrymoth has quit IRC | 09:56 | |
*** andrei1089 has joined #meego | 09:57 | |
*** timeless_mbp has joined #meego | 10:03 | |
*** timeless_mbp has joined #meego | 10:03 | |
*** Joonas has quit IRC | 10:05 | |
*** andrei1089 has quit IRC | 10:07 | |
*** Joonas has joined #meego | 10:10 | |
*** sepultina has joined #meego | 10:11 | |
*** dvoid_ has joined #meego | 10:12 | |
*** andrei1089 has joined #meego | 10:13 | |
*** bfree has quit IRC | 10:13 | |
*** sheepbat has quit IRC | 10:16 | |
*** wasikevin has quit IRC | 10:20 | |
*** mzanetti has joined #meego | 10:21 | |
*** nicu has quit IRC | 10:23 | |
*** bergie has joined #meego | 10:23 | |
*** nicu has joined #meego | 10:24 | |
*** ysyrota has joined #meego | 10:25 | |
*** bfree has joined #meego | 10:32 | |
*** andrei1089 has quit IRC | 10:35 | |
*** andrei1089 has joined #meego | 10:37 | |
*** sar3th is now known as sar3th|away | 10:38 | |
*** jusliukk has joined #meego | 10:43 | |
*** timeless_mbp has quit IRC | 10:43 | |
*** timeless_mbp has joined #meego | 10:44 | |
*** timeless_mbp has joined #meego | 10:44 | |
*** timeless_mbp has quit IRC | 10:44 | |
*** DawnFoster has quit IRC | 10:44 | |
*** andrei1089 has quit IRC | 10:45 | |
*** dharman has joined #meego | 10:47 | |
*** maclaver has joined #meego | 10:48 | |
*** andrei1089 has joined #meego | 10:49 | |
*** deegee_ has joined #meego | 10:49 | |
*** hunger has joined #meego | 10:57 | |
*** florian_kc has joined #meego | 10:57 | |
*** florian_kc is now known as florian | 10:58 | |
*** javiF has joined #meego | 10:58 | |
*** andrei1089 has quit IRC | 11:00 | |
*** anbaldwi has quit IRC | 11:00 | |
*** tackat has joined #meego | 11:02 | |
*** jrocha has joined #meego | 11:02 | |
*** tibshoot has joined #meego | 11:03 | |
*** dazo_afk is now known as dazo | 11:04 | |
*** andrei1089 has joined #meego | 11:06 | |
*** Stortkanda has quit IRC | 11:07 | |
*** rcc has joined #meego | 11:08 | |
*** SWFu has joined #meego | 11:09 | |
*** richieeee72 has quit IRC | 11:09 | |
*** Termana has joined #meego | 11:10 | |
Termana | good morning | 11:11 |
*** andrei1089 has quit IRC | 11:11 | |
Termana | err | 11:11 |
Termana | its not morning so I don't know why I said morning | 11:11 |
*** maclaver has quit IRC | 11:12 | |
*** Naveen_ has joined #meego | 11:13 | |
*** wasikevin has joined #meego | 11:13 | |
*** edisson has quit IRC | 11:13 | |
*** andrei1089 has joined #meego | 11:14 | |
*** andre__ has joined #meego | 11:20 | |
*** Votan|off is now known as Votan | 11:21 | |
*** andrei1089 has quit IRC | 11:22 | |
*** PolarFox has joined #meego | 11:23 | |
*** townxelliot has joined #meego | 11:23 | |
*** mzanetti has quit IRC | 11:26 | |
*** deegee_ has quit IRC | 11:26 | |
*** zs has joined #meego | 11:27 | |
*** hwoarang has joined #meego | 11:29 | |
*** andrei1089 has joined #meego | 11:31 | |
*** Joonas has quit IRC | 11:37 | |
*** dneary has joined #meego | 11:37 | |
*** andrei1089 has quit IRC | 11:37 | |
*** andrei1089 has joined #meego | 11:37 | |
*** Joonas has joined #meego | 11:40 | |
*** villemv has quit IRC | 11:41 | |
*** deegee_ has joined #meego | 11:42 | |
*** W_I has joined #meego | 11:43 | |
*** sri has joined #meego | 11:43 | |
*** bpeel_away is now known as bpeel | 11:43 | |
sri | in mer rootfs, how can i restrict X to start and directly start console? | 11:45 |
*** andrei1089 has quit IRC | 11:45 | |
*** villemv has joined #meego | 11:45 | |
*** andrei1089 has joined #meego | 11:45 | |
*** sqwable has joined #meego | 11:48 | |
*** tekojo has joined #meego | 11:49 | |
*** tekojo has joined #meego | 11:49 | |
*** andrei1089 has quit IRC | 11:50 | |
*** andrei1089 has joined #meego | 11:51 | |
*** Coke has quit IRC | 11:56 | |
*** mzanetti has joined #meego | 11:57 | |
*** ssvb has quit IRC | 11:58 | |
*** lainwir3d has joined #meego | 12:00 | |
*** timeless_mbp has joined #meego | 12:01 | |
*** timeless_mbp has joined #meego | 12:01 | |
*** slaine has joined #meego | 12:02 | |
*** pavank10 has joined #meego | 12:02 | |
*** andrei1089 has quit IRC | 12:02 | |
*** Joonas has quit IRC | 12:08 | |
*** achipa has joined #meego | 12:11 | |
*** javiF has quit IRC | 12:12 | |
*** Joonas has joined #meego | 12:12 | |
*** SWFu has quit IRC | 12:14 | |
*** hwoarang has quit IRC | 12:16 | |
*** lugkhast has joined #meego | 12:16 | |
*** ufa_ has quit IRC | 12:17 | |
*** andrei1089 has joined #meego | 12:18 | |
*** hwoarang has joined #meego | 12:18 | |
*** ufa_ has joined #meego | 12:18 | |
*** javiF has joined #meego | 12:21 | |
*** hwoarang has quit IRC | 12:21 | |
*** hwoarang has joined #meego | 12:23 | |
*** cure` has joined #meego | 12:23 | |
*** milliams has joined #meego | 12:25 | |
*** maclaver has joined #meego | 12:27 | |
*** andrei1089 has quit IRC | 12:27 | |
*** townxelliot1 has joined #meego | 12:31 | |
*** andrei1089 has joined #meego | 12:31 | |
*** townxelliot has quit IRC | 12:33 | |
*** lugkhast has quit IRC | 12:35 | |
*** lugkhast has joined #meego | 12:40 | |
*** jacquesdupontd has quit IRC | 12:41 | |
*** andrei1089 has quit IRC | 12:41 | |
*** tekojo has quit IRC | 12:41 | |
*** deegee_ has quit IRC | 12:43 | |
*** hwoarang has quit IRC | 12:45 | |
*** deegee_ has joined #meego | 12:45 | |
*** hwoarang has joined #meego | 12:45 | |
*** hwoarang has quit IRC | 12:48 | |
*** hwoarang has joined #meego | 12:50 | |
*** pillar has joined #meego | 12:54 | |
*** TSCHAKeee has quit IRC | 12:58 | |
*** andrei1089 has joined #meego | 13:00 | |
*** pcutler has quit IRC | 13:00 | |
*** vgrade_ has joined #meego | 13:00 | |
*** tekojo has joined #meego | 13:02 | |
*** tekojo has joined #meego | 13:02 | |
*** pcutler has joined #meego | 13:02 | |
*** ubIx_ has quit IRC | 13:07 | |
*** zs has quit IRC | 13:08 | |
*** andrei1089 has quit IRC | 13:08 | |
*** red is now known as reijo-nyberg | 13:11 | |
*** deegee_ has quit IRC | 13:11 | |
*** rego has joined #meego | 13:12 | |
*** glunardi has joined #meego | 13:14 | |
*** deegee_ has joined #meego | 13:20 | |
*** Joonas has quit IRC | 13:20 | |
*** gaveen has quit IRC | 13:22 | |
*** andrei1089 has joined #meego | 13:22 | |
*** mzanetti has quit IRC | 13:24 | |
*** Joonas has joined #meego | 13:24 | |
*** ToArtist has joined #meego | 13:26 | |
*** cyprix has joined #meego | 13:33 | |
*** hunger has quit IRC | 13:34 | |
*** gaveen has joined #meego | 13:35 | |
slaine | !tumbleweed | 13:36 |
*** jmc93739653 has quit IRC | 13:38 | |
Anss| | ~curse Voldemort | 13:40 |
infobot | May you be reincarnated as a Windows XP administrator, Voldemort ! | 13:40 |
*** andrei1089 has quit IRC | 13:42 | |
*** hunger has joined #meego | 13:42 | |
*** smyows has joined #meego | 13:43 | |
*** ragner has joined #meego | 13:44 | |
*** andrei1089 has joined #meego | 13:45 | |
Termana | Anyone know what happened to the 28/4 TSG meeting log? Its not where it normally is (http://trac.tspre.org/meetbot/meego-meeting/2010/) | 13:45 |
*** shankly has joined #meego | 13:46 | |
*** thinkingpotato has joined #meego | 13:46 | |
shankly | hey folks, is there a working image to test meego? | 13:47 |
shankly | the one on the site has no working desktop environment | 13:48 |
Surfa | first release doesn't have desktop environment | 13:49 |
Surfa | it's working, but only on the command line | 13:49 |
tekojo | Termana the meeting was cancelled last minute | 13:49 |
tekojo | both Imad and Valtteri could not make it to a connected location | 13:50 |
shankly | and when we will see it with the de? also a not full working release | 13:50 |
shankly | a pre-alpha, a pre-pre-alpha, a neither alpha | 13:52 |
Surfa | sometimes it's sad that people consider anything without graphical ui as non functional | 13:52 |
Surfa | it's not that long ago when there was no such thing in most environments.. | 13:52 |
shankly | i'm not considering it non functional, but i'd like to see what it will | 13:53 |
Termana | tekojo, ahh ok fair enough. So it hasn't been rescheduled I assume, we are just to wait for next weeks one? | 13:53 |
*** dl9pf_ has joined #meego | 13:54 | |
Termana | Lucky I didn't go getting myself back up at 4 in the morning for it then :P | 13:54 |
shankly | *be | 13:54 |
*** dl9pf has quit IRC | 13:55 | |
shankly | and it's a non sense, to test it on my netbook just to see a shell | 13:55 |
shankly | if i want only a shell, i use debian | 13:55 |
tekojo | Termana: it's the next weeks one directly | 13:55 |
Surfa | shankly, and debian and plain shell are linked to each other how? :) | 13:56 |
timeless_mbp | tekdo you remember who had dns control for meego.com? | 13:56 |
shankly | are not linked, but what I want to say, is that I would like to test meego with the de, and that without de i've nothing to do | 13:57 |
*** andrei1089 has quit IRC | 13:57 | |
shankly | my question, know, is just regarding schedule | 13:58 |
timeless_mbp | mxr.moego.org is what it would look like fwiw | 13:58 |
shankly | is there a date to release an alpha with meego and it's de? | 13:59 |
*** andrei1089 has joined #meego | 13:59 | |
*** tackat has quit IRC | 14:00 | |
tekojo | timless_mbp can't remember, but can ask and get back to you | 14:01 |
*** heliocastro has joined #meego | 14:01 | |
*** heliocastro has joined #meego | 14:01 | |
timeless_mbp | thanks | 14:01 |
*** apoi has quit IRC | 14:02 | |
*** ubIx has joined #meego | 14:02 | |
timeless_mbp | i suppose we could stick mxr.moego.org into the topic so people could play with it for a while | 14:03 |
timeless_mbp | fwiw, i'm trying to index the latest meego repo sources | 14:03 |
timeless_mbp | but my box doesn't have 'xz', and building things is moderately painful | 14:03 |
*** hurewitz has joined #meego | 14:04 | |
tekojo | timeless_mbp I assume you would want mxr.meego.com to point at it? | 14:05 |
*** apoi has joined #meego | 14:06 | |
*** andrei1089 has quit IRC | 14:09 | |
*** ubIx has quit IRC | 14:11 | |
*** andrei1089 has joined #meego | 14:11 | |
*** apoi has quit IRC | 14:12 | |
*** shankly has quit IRC | 14:12 | |
*** ubIx has joined #meego | 14:12 | |
*** apoi has joined #meego | 14:13 | |
*** reijo-nyberg is now known as red | 14:16 | |
*** andrei1089 has quit IRC | 14:17 | |
dl9pf_ | Stskeeps: tnx for the pointer ! works . (still need to poll watchdog, but it runs) | 14:18 |
ShadowJK | moe go :) | 14:22 |
*** HuuGo has quit IRC | 14:22 | |
*** andrei1089 has joined #meego | 14:24 | |
*** nedrichards has joined #meego | 14:25 | |
*** chitti has quit IRC | 14:25 | |
*** mzanetti has joined #meego | 14:27 | |
*** andrei1089 has quit IRC | 14:29 | |
*** tgalal has joined #meego | 14:30 | |
*** andrei1089 has joined #meego | 14:30 | |
*** lugkhast has quit IRC | 14:30 | |
*** lizardo has joined #meego | 14:31 | |
*** wasikevin has quit IRC | 14:35 | |
*** glin has quit IRC | 14:36 | |
*** notmart has joined #meego | 14:36 | |
WAHa_06x36 | well, no luck getting any information about my watchdog troubles yet. | 14:37 |
WAHa_06x36 | maybe I can chmod it 000 at some point in the bootup to kludge it. | 14:37 |
*** maclaver has quit IRC | 14:38 | |
*** bergie has quit IRC | 14:39 | |
*** rsalveti has quit IRC | 14:40 | |
*** baraujo has joined #meego | 14:43 | |
*** aloisiojr has joined #meego | 14:49 | |
*** mzanetti has quit IRC | 14:52 | |
WAHa_06x36 | of course that doesn't work since it doesn't apply to root anyway... sigh. | 14:52 |
WAHa_06x36 | and even using udev rules to rename /dev/watchdog doesn't help! | 14:52 |
WAHa_06x36 | this is some PERSISTENT task that wants to mess with my watchdog. | 14:53 |
*** andrei1089 has quit IRC | 14:53 | |
*** nid0 has quit IRC | 14:53 | |
*** andrei1089 has joined #meego | 14:55 | |
*** javiF has quit IRC | 14:56 | |
*** zaheerm-lp has joined #meego | 14:57 | |
*** bergie has joined #meego | 14:57 | |
*** puffin has joined #meego | 14:58 | |
*** joppu has quit IRC | 14:59 | |
*** fredy has joined #meego | 14:59 | |
*** nid0 has joined #meego | 14:59 | |
*** puffin has quit IRC | 15:00 | |
*** puffin has joined #meego | 15:01 | |
*** drizztbsd has quit IRC | 15:01 | |
*** puffin has quit IRC | 15:05 | |
*** TSCHAKeee has joined #meego | 15:05 | |
timeless_mbp | tekojo: yes | 15:06 |
timeless_mbp | (sorry, meetings) | 15:06 |
*** maswan has quit IRC | 15:08 | |
PolarFox | Meetings, the practical alternative to work. | 15:08 |
*** bergie has quit IRC | 15:09 | |
*** HuuGo has joined #meego | 15:11 | |
chakie_work | rumour has it that someone has actually been in a meeting that was useful | 15:11 |
Anss| | really? | 15:13 |
Anss| | then things must be really bad, if meeting is useful :) | 15:14 |
*** andrei1089 has quit IRC | 15:15 | |
*** andrei1089 has joined #meego | 15:15 | |
Surfa | well, meetings are useful, if they are used correctly.. | 15:15 |
timeless_mbp | tekojo: thanks for the email | 15:15 |
Surfa | with correct people about things that really need meeting | 15:15 |
villemv | better yet, I guy I know once attended a useful telco | 15:15 |
*** hhartz has joined #meego | 15:16 | |
jusliukk | villemv, i bet he was a telco equipment salesperson | 15:16 |
Surfa | well, it completely depends on what do you do and who are you working with | 15:16 |
*** t_s_o has joined #meego | 15:17 | |
Surfa | telcos and meetings do have their purpose and are extremely vital for some things | 15:17 |
Anss| | Surfa, need is the magic word, normally people to tend prefer self organization in this business (imo) | 15:17 |
Anss| | or hobby | 15:18 |
villemv | is there any way a telco beats irc, apart from the fact that some people refuse to use irc? | 15:19 |
Surfa | yes of course.. :) but complex systems are pretty impossible to get up and running if not having meetings.. especially if people are located in china finland and usa for example | 15:19 |
Surfa | villemv, in every way :) | 15:19 |
*** marciom_ has joined #meego | 15:20 | |
Surfa | when you write something down, if there is anything that may be understood incorrectly, it will.. and no one will ask anything because you have to write even more | 15:20 |
Surfa | and if someone asks, then you have 500klines of discussion that is absolutely impossible to follow | 15:21 |
villemv | as opposed to telco, when you have nothing as a record? ;-) | 15:21 |
villemv | not to mention problems with foreign accents, ... | 15:22 |
Surfa | surprisingly there are live meeting solutions for telcos that are used for note taking | 15:22 |
slaine | I've had a lot of meetings this week | 15:22 |
villemv | yeah, note taking but not actual records of what people said | 15:22 |
slaine | most surprisingly productive, for a change | 15:22 |
*** kth has joined #meego | 15:22 | |
Surfa | villemv, it doesn't matter how people say and what.. outcome is important and that's wy meetings should take place in the first place | 15:23 |
villemv | and writing down something complex is much easier than speaking it out, to the extent that you won't bother to do it at all | 15:23 |
villemv | I mean in a spoken setting, you may just choose to neglect to mention something | 15:23 |
Surfa | i haven't met ever a single person that is able to explain themselves better by writing in irc than talking in telco | 15:23 |
Surfa | some do think so but when really trying to work with them, that's not quite the case | 15:24 |
Surfa | you need to call them anyway to clear things up | 15:24 |
villemv | one-on-one call is a different thing | 15:24 |
villemv | it's a conversation, not a conference ;-) | 15:25 |
*** NishanthMenon has joined #meego | 15:25 | |
Surfa | surprisingly also in the telco you can talk one to one, it doesn't mean that everyone should talk all the time | 15:25 |
*** marciom_ has quit IRC | 15:25 | |
villemv | yes, but everyone needs to *listen* | 15:25 |
Surfa | not really, every thing is not in interest of everyone | 15:26 |
villemv | you are stealing everyones time by talking one-on-one for a long time | 15:26 |
Surfa | it doesn't make telcos unuseful, it just how you use them | 15:26 |
Surfa | it's | 15:26 |
Surfa | some thing need to be continued afterwards, some require more people.. that's the skill | 15:27 |
Anss| | i don't know how anything technical can really be communicated trough phone lines, it is difficult even in meeting room situation | 15:27 |
Anss| | *through | 15:28 |
Surfa | if 10 people are talking in the irc, it's always difficult to follow who's responding to who and what comment is intended to what topic.. so i can't see any case where irc would be better | 15:28 |
Surfa | Anss|, how do you plan doing that on irc? :) | 15:28 |
villemv | I dunno, it may be an acquired mindset. i think you can easily follow 4+ conversations on irc if they proceed at moderate pace | 15:29 |
Anss| | using references to some real information. | 15:29 |
Surfa | Anss|, sure.. but you can add some graphs and msc's on the live meeting solutions | 15:29 |
Anss| | www.google.com | 15:29 |
villemv | you can also scroll back to see what was said | 15:29 |
villemv | as opposed to telcos where you need to ask what was just said, "I didn't get the question"... | 15:30 |
villemv | we'd need an objective test for this | 15:30 |
Surfa | villemv, now we have third person in this discussion and it seems to get a little too complex already as Anss| is talking about something I something else and you have your own interests :) | 15:30 |
*** marciom_ has joined #meego | 15:30 | |
Anss| | Surfa, does live meeting work on linux? | 15:30 |
villemv | live meeting VIEWING works on linux | 15:31 |
Surfa | Anss|, not necessarily live meeting, but similar solutions exist on all platforms | 15:31 |
villemv | but you can't share your desktop | 15:31 |
Anss| | i don't have windows, it is not needed for coder. | 15:31 |
Surfa | i've seen actually solution also for symbian | 15:31 |
*** maswan has joined #meego | 15:31 | |
*** jusliukk has quit IRC | 15:32 | |
villemv | telcos are nice for presentation though | 15:32 |
Surfa | villemv, if talking about ms livemeeting, i think that it's web based and should work pretty much on anything with java? | 15:32 |
villemv | argh, just noted I missed a telco :-) | 15:32 |
Surfa | :D | 15:32 |
Surfa | irc is more interesting | 15:32 |
villemv | Surfa: yes, you can view a meeting with the java interfage | 15:33 |
Surfa | villemv, livemeeting viewer i mean | 15:33 |
villemv | but it can't expose your desktop | 15:33 |
Surfa | yep, we're on the same page then | 15:33 |
*** andrei1089 has quit IRC | 15:33 | |
*** Andy80 has joined #meego | 15:33 | |
*** Andy80 has quit IRC | 15:33 | |
*** Andy80 has joined #meego | 15:33 | |
Anss| | im not. sorry :) | 15:35 |
*** rsalveti has joined #meego | 15:35 | |
Anss| | another wasted meeting when i could have cracked few bugs. | 15:35 |
Surfa | hmm, actually sharing should be possible also with web-interface for ms live meeting | 15:35 |
*** javispedro has joined #meego | 15:36 | |
Surfa | ..but not on the linux.. :) | 15:37 |
*** maswan has quit IRC | 15:37 | |
*** andrei1089 has joined #meego | 15:38 | |
*** maswan has joined #meego | 15:39 | |
*** rodarvus_ has joined #meego | 15:39 | |
*** rodarvus has quit IRC | 15:39 | |
*** t_s_o has quit IRC | 15:41 | |
*** optimus has joined #meego | 15:42 | |
*** optimus has left #meego | 15:43 | |
*** alecrim has joined #meego | 15:43 | |
*** maswan has quit IRC | 15:45 | |
*** maswan has joined #meego | 15:46 | |
*** edisson has joined #meego | 15:49 | |
*** tekojo_ has joined #meego | 15:50 | |
*** SDP has quit IRC | 15:50 | |
*** tekojo has quit IRC | 15:51 | |
*** pkt has joined #meego | 15:52 | |
*** t_s_o has joined #meego | 15:54 | |
*** andrei1089 has quit IRC | 15:55 | |
*** apoirier has joined #meego | 15:55 | |
*** florian has quit IRC | 15:57 | |
*** mzanetti has joined #meego | 16:00 | |
*** luck has joined #meego | 16:00 | |
*** edisson has quit IRC | 16:01 | |
*** anselmolsm has joined #meego | 16:02 | |
*** namus has joined #meego | 16:02 | |
*** wasikevin has joined #meego | 16:02 | |
*** mzanetti_ has joined #meego | 16:04 | |
*** ufa_ has quit IRC | 16:04 | |
*** ufa_ has joined #meego | 16:05 | |
*** mzanetti has quit IRC | 16:06 | |
*** maswan has quit IRC | 16:07 | |
*** danielwilms has quit IRC | 16:08 | |
*** namus has quit IRC | 16:08 | |
*** FSCV has joined #meego | 16:08 | |
*** DawnFoster has joined #meego | 16:12 | |
*** Votan is now known as Votan|off | 16:12 | |
*** jmc93739653 has joined #meego | 16:15 | |
*** timeless_mbp has quit IRC | 16:16 | |
*** abinader has joined #meego | 16:16 | |
*** wolfiR has quit IRC | 16:16 | |
*** W_I has quit IRC | 16:18 | |
*** jrocha has quit IRC | 16:19 | |
*** timeless_mbp has joined #meego | 16:23 | |
*** timeless_mbp has joined #meego | 16:23 | |
*** thopiekar has joined #meego | 16:23 | |
*** danielwilms has joined #meego | 16:23 | |
*** notmart has quit IRC | 16:24 | |
*** tmikola has quit IRC | 16:24 | |
*** maswan has joined #meego | 16:25 | |
*** timeless_mbp has quit IRC | 16:27 | |
*** timeless_mbp has joined #meego | 16:27 | |
*** timeless_mbp has joined #meego | 16:27 | |
*** hhartz has quit IRC | 16:28 | |
*** hhartz has joined #meego | 16:28 | |
*** tekojo_ has quit IRC | 16:28 | |
*** leinir has quit IRC | 16:30 | |
*** lugkhast has joined #meego | 16:31 | |
*** maswan has quit IRC | 16:32 | |
*** maswan has joined #meego | 16:39 | |
*** RST38bis has joined #meego | 16:40 | |
*** rodarvus_ is now known as rodarvus | 16:44 | |
*** rodarvus has quit IRC | 16:44 | |
*** rodarvus has joined #meego | 16:44 | |
*** niqt has joined #meego | 16:44 | |
*** maswan has quit IRC | 16:47 | |
*** maswan has joined #meego | 16:47 | |
*** leinir has joined #meego | 16:47 | |
*** leinir has joined #meego | 16:47 | |
*** puffin_ has joined #meego | 16:51 | |
*** glinpus has quit IRC | 16:54 | |
*** glinpus has joined #meego | 16:54 | |
*** jpetersen has joined #meego | 16:58 | |
*** sheepbat has joined #meego | 16:59 | |
*** DawnFoster has quit IRC | 16:59 | |
*** hunger has quit IRC | 17:00 | |
*** zhee has joined #meego | 17:02 | |
*** kth1 has joined #meego | 17:05 | |
*** kth has quit IRC | 17:05 | |
*** Cy8aer has quit IRC | 17:07 | |
*** javiF has joined #meego | 17:08 | |
*** danielwilms has quit IRC | 17:10 | |
*** tackat has joined #meego | 17:13 | |
*** hunger has joined #meego | 17:17 | |
*** srag has quit IRC | 17:18 | |
*** zs has joined #meego | 17:19 | |
*** aboyer has joined #meego | 17:21 | |
*** danielwilms has joined #meego | 17:22 | |
*** jrocha has joined #meego | 17:24 | |
*** Terje_ has joined #meego | 17:24 | |
*** jpetersen has quit IRC | 17:24 | |
*** rcc has quit IRC | 17:24 | |
*** rcc has joined #meego | 17:25 | |
*** danielwilms has quit IRC | 17:31 | |
*** adorsey has joined #meego | 17:32 | |
*** ctusar has joined #meego | 17:35 | |
*** Terje_ has quit IRC | 17:35 | |
*** lainwir3d has quit IRC | 17:35 | |
*** aboyer has quit IRC | 17:35 | |
*** anselmolsm has quit IRC | 17:36 | |
*** dpino has joined #meego | 17:38 | |
*** polac has quit IRC | 17:38 | |
*** bergie has joined #meego | 17:39 | |
* slaine waves at nedrichards | 17:44 | |
slaine | nice to see you back | 17:44 |
* Stskeeps yawns | 17:45 | |
Stskeeps | that was an enjoyable drive | 17:45 |
slaine | Well, you're still alive, that's a bonus | 17:45 |
slaine | nice to be home | 17:45 |
slaine | ? | 17:45 |
nedrichards | slaine: elo | 17:45 |
nedrichards | yes, very nice to be back | 17:45 |
slaine | cool | 17:45 |
Stskeeps | i am wondering what this strange language is people talk here | 17:46 |
Stskeeps | :P | 17:46 |
slaine | Stskeeps: !polish ;) | 17:46 |
*** anselmolsm has joined #meego | 17:46 | |
*** brbrr has joined #meego | 17:47 | |
*** brbrr has left #meego | 17:47 | |
*** t3rm1n4l has joined #meego | 17:47 | |
*** bedgen has joined #meego | 17:48 | |
*** jusliukk has joined #meego | 17:49 | |
bedgen | meego is usefull distr at the moment of not? | 17:49 |
bedgen | for multimedia docs and web brousing | 17:50 |
*** anselmolsm_ has joined #meego | 17:50 | |
*** anselmolsm has quit IRC | 17:51 | |
slaine | bedgen: it's not released yet | 17:52 |
*** jusliukk has quit IRC | 17:52 | |
bedgen | ohh. and when it will? | 17:52 |
slaine | Within the next 33 days | 17:53 |
*** sheepbat has quit IRC | 17:53 | |
*** srag has joined #meego | 17:57 | |
*** niqt has quit IRC | 17:58 | |
*** adorsey has quit IRC | 18:00 | |
*** tackat has quit IRC | 18:00 | |
*** arjan has joined #meego | 18:02 | |
*** bogie11 has joined #meego | 18:07 | |
*** t_s_o has quit IRC | 18:10 | |
*** PostmanPechk has joined #meego | 18:10 | |
PostmanPechk | hi | 18:10 |
PostmanPechk | is anybody here from Moscow? | 18:11 |
*** andyross has joined #meego | 18:12 | |
*** |ToArtist| has joined #meego | 18:14 | |
*** ToArtist has quit IRC | 18:17 | |
*** armika has quit IRC | 18:19 | |
*** armika has joined #meego | 18:19 | |
*** timeless_mbp has quit IRC | 18:22 | |
*** t_s_o has joined #meego | 18:22 | |
*** t_s_o has quit IRC | 18:23 | |
*** VDVsx has joined #meego | 18:24 | |
*** jacquesdupontd has joined #meego | 18:24 | |
*** milliams has quit IRC | 18:26 | |
*** Naveen_ has quit IRC | 18:30 | |
*** bedgen has quit IRC | 18:31 | |
*** carloscesa has joined #meego | 18:32 | |
*** redfish has quit IRC | 18:32 | |
*** notmart has joined #meego | 18:33 | |
*** gaveen has quit IRC | 18:38 | |
*** sri has quit IRC | 18:40 | |
*** RST38bis has quit IRC | 18:40 | |
*** hhartz has quit IRC | 18:43 | |
*** glunardi has quit IRC | 18:44 | |
*** glunardi has joined #meego | 18:45 | |
*** sttwister has joined #meego | 18:45 | |
*** RichardP has joined #meego | 18:49 | |
*** daithib has joined #meego | 18:50 | |
*** milliams has joined #meego | 18:51 | |
*** ysyrota has quit IRC | 18:52 | |
*** orbarron has left #meego | 18:55 | |
*** mlfoster has joined #meego | 18:56 | |
*** hhartz has joined #meego | 18:57 | |
*** wasikevin has quit IRC | 18:57 | |
*** PostmanPechk has quit IRC | 18:58 | |
*** glunardi has quit IRC | 18:58 | |
*** Diod has joined #meego | 18:58 | |
*** glunardi has joined #meego | 18:59 | |
*** wasikevin has joined #meego | 18:59 | |
*** DawnFoster has joined #meego | 19:01 | |
*** arnor has joined #meego | 19:02 | |
Termana | Good morning to the other half of the world that must of just woken up (by the look of all the joins :P) | 19:03 |
*** mlpug has joined #meego | 19:04 | |
*** Openfree has quit IRC | 19:04 | |
* lbt is rather pleased to see the arguing on -dev .... | 19:06 | |
*** lugkhast has quit IRC | 19:08 | |
*** achipa has quit IRC | 19:09 | |
*** HuuGo1 has joined #meego | 19:09 | |
Termana | I'm rather pleased that I feel like I'm CC'ing some rather more important people than me for once :P | 19:10 |
*** adorsey has joined #meego | 19:12 | |
*** mitsutaka has quit IRC | 19:12 | |
*** daithib has quit IRC | 19:12 | |
*** andrei1089 has joined #meego | 19:14 | |
*** mitsutaka has joined #meego | 19:15 | |
slaine | k | 19:17 |
slaine | oops | 19:17 |
slaine | wrong window | 19:17 |
javispedro | lbt: kernel process arguing? | 19:19 |
lbt | yes | 19:19 |
*** bogie11 has quit IRC | 19:19 | |
javispedro | conversation went harsh quickly | 19:20 |
*** nomadalien has quit IRC | 19:20 | |
Stskeeps | it was a question, turned into a bug report, it just had to end there.. | 19:21 |
Stskeeps | as arjan sanely agreed | 19:21 |
*** sar3th|away is now known as sar3th | 19:22 | |
*** kth1 has quit IRC | 19:23 | |
*** mzanetti_ has quit IRC | 19:24 | |
*** t_s_o has joined #meego | 19:25 | |
*** W_I has joined #meego | 19:25 | |
Jaffa | Indeed. | 19:26 |
lbt | kinda don't care... happy to see real, uncensored, life | 19:27 |
*** sttwister has left #meego | 19:28 | |
*** Armi^ has joined #meego | 19:28 | |
*** DawnFoster has quit IRC | 19:30 | |
Termana | I'm not quite sure a bug report would suffice. A bug report would just sweep the subject under the carpet. There seems to be a larger issue than just the Documentation. Arjan still seems to be arguing that Intel control the kernel maintenance, but that the documentation be changed to make it look like Intel are following a process. | 19:31 |
Termana | Which if Intel controls the kernel solely, no one cares weather they are following process or not. | 19:31 |
Stskeeps | no, he said exactly the right thing | 19:32 |
*** hunger has quit IRC | 19:32 | |
arjan | the kernel document is garbage, I hadn't seen it before.... sorry about that | 19:33 |
arjan | we need a simple process that is clear and obvious | 19:34 |
arjan | and in practice we have that | 19:34 |
Termana | Ah right hes right here :P | 19:34 |
arjan | just the document does not match the reality | 19:34 |
arjan | Termana: I'm not arguing that Intel is the sole maintainer. | 19:34 |
arjan | right now we do most of the work there, but there's nokia guys already as well | 19:34 |
GAN900 | What a mess. | 19:34 |
arjan | what I don't understand is the objection to intel having maintainerships in meego | 19:34 |
arjan | because that's what the tone turned into | 19:35 |
*** dharman has quit IRC | 19:35 | |
*** skaboy has joined #meego | 19:35 | |
Termana | Arjan - No, I don't believe the tone has turned into Intel having the maintainership, but more that Intel has FULL maintainership. | 19:35 |
lbt | arjan: I didn't take that impression from the mails | 19:35 |
TSCHAKeee | neither did i | 19:35 |
GAN900 | Nor I | 19:36 |
* TSCHAKeee has been following as well | 19:36 | |
TSCHAKeee | it really just seems like a slight comms snafu | 19:36 |
TSCHAKeee | if anything | 19:36 |
lbt | *nod* | 19:36 |
TSCHAKeee | we've got some aggregate confusion. | 19:36 |
*** apoirier has left #meego | 19:36 | |
lbt | and lots of people saying "mea culpa" and rushing to fix it... apart from Greg who's confused ;) | 19:37 |
TSCHAKeee | quim is right, nothing like this has ever been tried | 19:37 |
*** dneary has quit IRC | 19:37 | |
lbt | but he's allowed. | 19:37 |
TSCHAKeee | hahahahahahaha | 19:37 |
lbt | arjan: anyhow... when you have a minute... I wanted to ask about kiwi vs mic2 | 19:37 |
TSCHAKeee | kiwi ? | 19:37 |
Termana | Which is good in its own way (aggregated confusion). It means that good discussion is happening (?) | 19:37 |
lbt | TSCHAKeee: stay tuned... | 19:37 |
*** skaboy has left #meego | 19:38 | |
arjan | lbt: we looked at kiwi way back, but it didn't do what we wanted | 19:38 |
arjan | lbt: do you have issues with mic2 ? | 19:38 |
lbt | arjan: no | 19:38 |
*** HuuGo1 has quit IRC | 19:38 | |
lbt | I mainly have issues with developing an imaging system that's not as integrated into the build system as it could be | 19:39 |
arjan | there is a whole bunch of integration on the back end | 19:39 |
lbt | I know kiwi is no good today | 19:39 |
arjan | I know that we (almost) have the capability to regenerate images on each build complete etc | 19:39 |
lbt | and I'm writing a version of build that wraps mic2 | 19:39 |
lbt | so right now I'm integrating mic2 into the OBS | 19:40 |
lbt | but... | 19:40 |
*** kvasir has joined #meego | 19:40 | |
lbt | the question is .... do we aim to move towards kiwi and focus our efforts there | 19:40 |
lbt | with the suse/obs developers | 19:40 |
lbt | or do we maintain mic2 and meego maintains the mic2/obs integration | 19:41 |
*** zs has quit IRC | 19:41 | |
arjan | I don't think we have that plan; mic2 is there to stay | 19:41 |
lbt | it feels like we should use kiwi on the "use upstream tools" argument | 19:41 |
lbt | this is gentle exploration BTW | 19:42 |
lbt | I know the kiwi devs would like to help us | 19:42 |
lbt | so it's worth raising the issue for discussion | 19:42 |
*** HuuGo1 has joined #meego | 19:44 | |
Termana | arjan, I don't mean to have offended you at all if you believe I had that intention from my posts to the mailing list and if I have in any way, I am sorry. (re: Intel's maintainership of the MeeGo kernel) | 19:44 |
lbt | arjan: so Nokia should be investing time+resource into mic2 based imaging and meego (not opensuse/OBS) will be maintaining the integration into OBS | 19:45 |
*** mzanetti_ has joined #meego | 19:49 | |
*** prpplague has joined #meego | 19:50 | |
slaine | commute time, catch you all later | 19:51 |
*** slaine has quit IRC | 19:51 | |
*** arnor has quit IRC | 19:53 | |
*** nedrichards has quit IRC | 19:59 | |
Termana | 2:30am here for me. Good night guys | 19:59 |
*** wasikevin has quit IRC | 20:01 | |
*** Termana has quit IRC | 20:02 | |
arjan | lbtL yum | 20:03 |
arjan | yup | 20:03 |
lbt | arjan: fine... I'll get to it ;) | 20:03 |
*** kth1 has joined #meego | 20:04 | |
lbt | arjan: I've already spoken to adrianS and he's confirmed the approach; FYI in case anyone else is working on this. | 20:05 |
*** townxelliot1 has quit IRC | 20:05 | |
*** glunardi has quit IRC | 20:06 | |
*** glunardi has joined #meego | 20:07 | |
*** kth1 has quit IRC | 20:08 | |
*** ufa_ has quit IRC | 20:10 | |
*** ufa_ has joined #meego | 20:11 | |
*** biochimia has quit IRC | 20:13 | |
*** hhartz has quit IRC | 20:13 | |
*** hhartz has joined #meego | 20:14 | |
*** |ToArtist| has quit IRC | 20:18 | |
*** anselmolsm_ is now known as anselmolsm | 20:19 | |
*** cbsch has quit IRC | 20:20 | |
*** glunardi has quit IRC | 20:21 | |
*** Andy80 has quit IRC | 20:24 | |
*** bergie has quit IRC | 20:24 | |
*** trbs has joined #meego | 20:25 | |
*** Votan|off is now known as Votan | 20:26 | |
*** Votan is now known as Votan|off | 20:27 | |
*** CosmoHill has joined #meego | 20:28 | |
* CosmoHill shoots his lecturer | 20:29 | |
*** cbsch has joined #meego | 20:29 | |
Stskeeps | channel is logged | 20:31 |
Stskeeps | :P | 20:31 |
CosmoHill | figuratively speaking | 20:32 |
CosmoHill | <.< | 20:32 |
CosmoHill | >.> | 20:32 |
javispedro | too late, police is coming to scene | 20:32 |
CosmoHill | he did press all the wrong buttons | 20:32 |
*** nomadalien has joined #meego | 20:34 | |
*** OgMaciel has joined #meego | 20:36 | |
*** nomadalien has left #meego | 20:36 | |
*** Shanita has quit IRC | 20:38 | |
*** edisson has joined #meego | 20:38 | |
*** SWFu64 has joined #meego | 20:38 | |
*** thinkingpotato has quit IRC | 20:38 | |
*** armika has quit IRC | 20:40 | |
*** pohly has quit IRC | 20:40 | |
*** megabast has joined #meego | 20:40 | |
*** Moku has joined #meego | 20:41 | |
*** armika has joined #meego | 20:41 | |
*** thiago_home has joined #meego | 20:42 | |
*** floppyears has joined #meego | 20:46 | |
*** milliams has quit IRC | 20:47 | |
*** biochimia has joined #meego | 20:49 | |
*** glunardi has joined #meego | 20:50 | |
*** polac has joined #meego | 21:00 | |
*** zaheerm-lp has quit IRC | 21:01 | |
*** alden has joined #meego | 21:01 | |
polac | Hi! Does anyone know when there will be release with somekind of UX? | 21:03 |
CosmoHill | may i think | 21:04 |
polac | great! | 21:04 |
vgrade | Cosmo, you should not have to think about it,its the most asked question atm | 21:06 |
polac | CosmoHill, Can one read about it somewhere? | 21:06 |
CosmoHill | try milestones or the TSG logs | 21:07 |
GAN900 | Bleh, wish the Summit location selection had been brought out in the open a little sooner | 21:07 |
GAN900 | Open--but not! | 21:07 |
CosmoHill | GAN900: like saying I'm allowed to pick any 6 modules I want and then giving me a choice of 6? | 21:07 |
polac | CosmoHill, thx! I will go and digg deeper. | 21:08 |
CosmoHill | curse you digg.com | 21:09 |
CosmoHill | anyone in here good with object orientated design, C++ and willing to be kidnapped? | 21:10 |
crysaz | :D | 21:10 |
thiago_home | location selection? | 21:11 |
thiago_home | this is not about vote, but about $$ | 21:11 |
thiago_home | or €€ for that matter | 21:11 |
thiago_home | CosmoHill: there's always #c++, but I can lend a hand. | 21:11 |
GAN900 | thiago_home, we didn't have any issue picking Maemo Summit locations. | 21:12 |
GAN900 | Dunno why the process needed to be behind closed doors for MeeGo. | 21:12 |
thiago_home | I think I saw this morning even price quotes in the wiki | 21:13 |
thiago_home | I think that's open | 21:13 |
GAN900 | After the fact | 21:13 |
thiago_home | yeah | 21:13 |
thiago_home | negotiations usually are closed | 21:13 |
GAN900 | Once a location was basically selected and turned out to be subpar | 21:13 |
GAN900 | Well, duh | 21:13 |
Stskeeps | wasn't it tenative? | 21:13 |
GAN900 | So we got about a week to try to find another. | 21:14 |
*** lainwir3d has joined #meego | 21:14 | |
*** lainwir3d has joined #meego | 21:14 | |
thiago_home | so do you want to help? | 21:14 |
CosmoHill | my lecturer said that my design wasn't properly object orientated to which i reacted badly | 21:14 |
GAN900 | Too late now | 21:14 |
javispedro | CosmoHill: You killed it? | 21:14 |
GAN900 | Looks like Amsterdam is likely to be the location. | 21:15 |
polac | CosmoHill, Is your "design" in some public repo? | 21:15 |
CosmoHill | i said something like "f**k you I'm finishing the interface and then that's it" | 21:15 |
thiago_home | do you have better suggestions? | 21:15 |
thiago_home | there's still time | 21:15 |
GAN900 | To get a quote from a venue and deliver all of the needed info by tomorrow? | 21:16 |
GAN900 | Not likely | 21:16 |
CosmoHill | polac: erm one moment, my dns needs updating | 21:16 |
thiago_home | do you know potential venues? | 21:16 |
GAN900 | See the thread on the forums under Community. | 21:16 |
thiago_home | places you'd call? | 21:16 |
*** smyows has quit IRC | 21:17 | |
* thiago_home thinks that there should be an organising committee | 21:17 | |
GAN900 | Is | 21:18 |
GAN900 | All @intel or @nokia, unfortunately. | 21:18 |
javispedro | heh, huelva. | 21:18 |
thiago_home | I don't think it's a problem that negotiations happen behind closed doors. I also don't think it's a problem that discarded locations don't even get mentioned. | 21:19 |
*** rusti has joined #meego | 21:20 | |
thiago_home | the places probably would prefer that way, rather than a stamp on "you're bad" | 21:20 |
*** vgrade has quit IRC | 21:20 | |
CosmoHill | polac: http://62.56.57.201/uni-web/c++/ | 21:20 |
thiago_home | however, participation in the committee should be open to the community | 21:20 |
CosmoHill | the username and password are "ag" | 21:20 |
CosmoHill | ignore the ._ files, I have no idea why my mac makes them | 21:21 |
polac | CosmoHill, let's see, allthough I'm not pro in these things. | 21:22 |
*** grishnav_ has joined #meego | 21:22 | |
CosmoHill | polac: I've been doing c++ for 11 weeks now so.... :p | 21:22 |
*** thopiekar has quit IRC | 21:23 | |
*** hhartz has quit IRC | 21:23 | |
*** hhartz_ has joined #meego | 21:23 | |
CosmoHill | what my lecturer doesn't like is that mapclass interacts with player class in the way that is does | 21:23 |
VDVsx | Amsterdam again ? :( I want to know new cities :D | 21:23 |
thiago_home | CosmoHill: when your professor tells you that it's not OO design, he probably means there's not enough abstraction | 21:23 |
*** grishnav has quit IRC | 21:23 | |
VDVsx | GAN900, have the link to that thread by hand ? :) | 21:24 |
thiago_home | also remember that a class's job is to protect the invariant. So avoid making assumptions of how one class behaves in another's code. Abstract that away. | 21:24 |
*** javispedro has quit IRC | 21:24 | |
*** RST38h has joined #meego | 21:25 | |
*** dpino has quit IRC | 21:25 | |
*** vgrade has joined #meego | 21:25 | |
CosmoHill | do you think that I should move the functions that deal with the player class from mapclass to main.cpp ? | 21:25 |
*** tekojo has joined #meego | 21:25 | |
*** tekojo has joined #meego | 21:25 | |
CosmoHill | cos part of me is just thinking i should finish the interface and not touch the rest of the code | 21:25 |
*** timeless_mbp has joined #meego | 21:26 | |
*** timeless_mbp has joined #meego | 21:26 | |
GeneralAntilles | VDVsx, http://forum.meego.com/showthread.php?t=88 | 21:28 |
VDVsx | GeneralAntilles, thanks | 21:28 |
polac | CosmoHill, little interruption. Now I will look at your code. | 21:28 |
CosmoHill | merci | 21:29 |
VDVsx | wow, not AMS but huelva, lololol | 21:29 |
GeneralAntilles | thiago_home, not the part of the process I'm concerned about. | 21:29 |
GeneralAntilles | VDVsx, read the thread. | 21:29 |
*** thinkingpotato has joined #meego | 21:29 | |
Jaffa | GeneralAntilles: At least there's no sodding Chuck Norris :-/ | 21:29 |
polac | CosmoHill, btw. it's two years when I last coded c++. But I need to refresh my skill because of Qt & meego. :) | 21:29 |
GeneralAntilles | Perhaps I'm just being irritable since I was involved in the selection for 2009. | 21:30 |
GeneralAntilles | Oh well. | 21:30 |
CosmoHill | I plan to go on to Qt in the summer | 21:30 |
*** Diod has quit IRC | 21:30 | |
*** Terje_ has joined #meego | 21:30 | |
Jaffa | GeneralAntilles: That neither qgil nor petermeego seem particularly happy with the venue is... surprising. | 21:32 |
*** grishnav has joined #meego | 21:32 | |
GeneralAntilles | Jaffa, yeah. | 21:32 |
Jartza | lot of interest towards Qt lately :) | 21:32 |
GeneralAntilles | So, let's blame Intel! ;) | 21:32 |
*** grishnav_ has quit IRC | 21:32 | |
Jartza | which is good, as I'm an instructor, teaching for example Qt Programming :) | 21:32 |
Jaffa | GeneralAntilles: Anyone with an @intel.com email address can organise the conference ;-) | 21:33 |
*** javiF has quit IRC | 21:34 | |
*** Terje_ has quit IRC | 21:35 | |
*** jusliukk has joined #meego | 21:36 | |
GAN900 | lol | 21:36 |
* VDVsx notices that petermaemo become petermeego, lol | 21:37 | |
Jaffa | VDVsx: :) | 21:37 |
CosmoHill | yay, my lecturer isn't angry with me :) | 21:40 |
CosmoHill | haha | 21:41 |
*** hhartz_ is now known as hhartz | 21:42 | |
VDVsx | huelva would be nice, but the connections aren't good, Sevilha airport is very small(few flights) and Faro airport in the winter is almost desert :P | 21:42 |
* CosmoHill puts scotland on the list | 21:42 | |
* lbt adds Iceland | 21:42 | |
VDVsx | lol | 21:42 |
lcuk | we should get the volcano to blow again and choose somewhere within walking distance! | 21:43 |
lcuk | lol | 21:43 |
lbt | what could go wrong? | 21:43 |
VDVsx | lbt, extended vacations on Iceland :D | 21:43 |
CosmoHill | anything within mainland europe can be accessed if the volcano does blow | 21:43 |
CosmoHill | i mean you maybe driving for over a day to get there | 21:43 |
CosmoHill | and your flight might land in the wrong country, but it's possible | 21:44 |
* lcuk adds extremely vital request to the forum | 21:44 | |
lcuk | http://forum.meego.com/showpost.php?p=804&postcount=43 | 21:45 |
*** RST38h has quit IRC | 21:47 | |
*** dharman has joined #meego | 21:51 | |
*** hcarrega has quit IRC | 21:51 | |
GeneralAntilles | I say we hold it at VDVsx's new apartment. | 21:53 |
VDVsx | GeneralAntilles, sure, I'm expecting amazing weather here in Nov ;) | 21:54 |
*** otep has quit IRC | 21:55 | |
GeneralAntilles | VDVsx, you provide the cold weather survival gear. :P | 21:55 |
VDVsx | even better I suggest to host the conference in a park near to my house | 21:55 |
*** evilrob has quit IRC | 21:55 | |
*** cos^ has quit IRC | 21:55 | |
*** trHD has quit IRC | 21:55 | |
VDVsx | open space FTW :P | 21:55 |
lcuk | GeneralAntilles, 500 people in VDVsx's appt WOULD be warm | 21:55 |
*** evilrob has joined #meego | 21:56 | |
*** trHD has joined #meego | 21:56 | |
*** cos^ has joined #meego | 21:56 | |
*** rusti has quit IRC | 21:57 | |
CosmoHill | cyas | 21:58 |
*** lainwir3d has quit IRC | 21:58 | |
*** lainwir3d_ has joined #meego | 21:58 | |
CosmoHill | thanks thiago_home | 21:58 |
*** CosmoHill has quit IRC | 21:58 | |
*** ferringb has joined #meego | 22:00 | |
*** RST38h has joined #meego | 22:00 | |
*** hcarrega has joined #meego | 22:02 | |
*** sqwable has joined #meego | 22:04 | |
*** otep has joined #meego | 22:09 | |
*** carloscesa has quit IRC | 22:11 | |
*** seba_ has joined #meego | 22:13 | |
*** wazd has joined #meego | 22:13 | |
*** smyows has joined #meego | 22:16 | |
*** cBuckle has quit IRC | 22:17 | |
*** TSCHAKeee has quit IRC | 22:17 | |
*** TSCHAKeee has joined #meego | 22:17 | |
*** carloscesa has joined #meego | 22:18 | |
*** edisson has quit IRC | 22:21 | |
*** armika has quit IRC | 22:24 | |
*** armika has joined #meego | 22:25 | |
*** thinkingpotato has quit IRC | 22:28 | |
*** hhartz has quit IRC | 22:29 | |
*** hhartz has joined #meego | 22:29 | |
*** zs has joined #meego | 22:31 | |
*** zalan has quit IRC | 22:33 | |
*** armika has quit IRC | 22:39 | |
*** armika has joined #meego | 22:40 | |
*** seba_ has quit IRC | 22:47 | |
*** luck has quit IRC | 22:49 | |
*** luck has joined #meego | 22:51 | |
*** thinkingpotato has joined #meego | 22:53 | |
*** pkt has left #meego | 22:58 | |
*** rcc has quit IRC | 22:58 | |
*** adorsey has quit IRC | 22:58 | |
*** VDVsx has quit IRC | 22:58 | |
*** grishnav_ has joined #meego | 23:00 | |
*** grishnav has quit IRC | 23:02 | |
*** jusliukk has quit IRC | 23:04 | |
*** HuuGo1 has quit IRC | 23:07 | |
*** seiflotfy has quit IRC | 23:14 | |
*** seiflotfy has joined #meego | 23:15 | |
*** mlpug has quit IRC | 23:17 | |
*** marciom_ has quit IRC | 23:21 | |
*** javispedro has joined #meego | 23:22 | |
*** jpwhiting has quit IRC | 23:23 | |
*** thinkingpotato has quit IRC | 23:23 | |
*** smyows has quit IRC | 23:26 | |
*** SWFu64 has quit IRC | 23:27 | |
*** thinkingpotato has joined #meego | 23:28 | |
*** SWFu has joined #meego | 23:32 | |
*** villemv has quit IRC | 23:34 | |
*** thinkingpotato has quit IRC | 23:35 | |
*** trbs has quit IRC | 23:36 | |
*** hhartz has quit IRC | 23:38 | |
*** jusliukk has joined #meego | 23:38 | |
*** sandstorm has joined #meego | 23:40 | |
*** nicu has quit IRC | 23:43 | |
*** sandstorm has quit IRC | 23:46 | |
* lbt looks around... | 23:47 | |
*** p8david has joined #meego | 23:47 | |
*** bspencer has joined #meego | 23:47 | |
*** tekojo has quit IRC | 23:48 | |
*** zaheerm-lp has joined #meego | 23:51 | |
*** Joonas has quit IRC | 23:51 | |
*** carloscesa has quit IRC | 23:52 | |
*** baraujo has quit IRC | 23:52 | |
*** puffin_ has quit IRC | 23:54 | |
*** ragner has quit IRC | 23:55 | |
*** marciom has joined #meego | 23:57 | |
*** jusliukk has quit IRC | 23:58 | |
*** blobben has joined #meego | 23:59 | |
*** SWFu_ has joined #meego | 23:59 | |
*** rsalveti has quit IRC | 23:59 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!