IRC log of #meego for Friday, 2010-09-10

mecelight on and everything00:00
*** DarkUranium has left #meego00:00
*** zs has quit IRC00:01
*** bergie has quit IRC00:01
*** arcticrobot has quit IRC00:07
*** dvoid has quit IRC00:09
*** mostafa_ has quit IRC00:14
*** th3hate has quit IRC00:14
*** lolloo has joined #meego00:16
*** auke has quit IRC00:19
smithnahi, could anyone tell me how to use navit with gypsy/geoclue (what's used with meego)?  I saw the line reference on the wiki, but it didn't seem to work...00:19
mecehmm.. is this supposed to have any applications or something? Seems very empty.00:19
smithnaAlso, if I may, how do I use the xfce4-mixer to get sound out of spdif?  I've basically turned everything on (and volume up) without any luck.00:20
*** kieppie has joined #meego00:22
*** smhar has quit IRC00:23
kieppiehi guys. I'm trying to install v.1 on my eee 701, but getting an no-PAE error @ boot. there's conflicting info on the forum, with it working for some users & not for others.00:23
kieppieany idea, please00:24
*** marciom has quit IRC00:24
*** auke has joined #meego00:26
*** aquatix has quit IRC00:26
*** mlfoster has joined #meego00:28
*** Vanadis has quit IRC00:28
CosmoHillhey auke k00:29
CosmoHillcurse you tab compleete00:30
aukeheh00:30
CosmoHillcomment ça va?00:31
auketres bien, merci00:31
CosmoHillexcerlent00:31
aukeexcusez l'absence des accents propres00:32
CosmoHillhehe00:32
*** sar3th is now known as sar3th|away00:32
thiago_homesetxkbmap -symbols 'us(alt-intl)'00:32
CosmoHillI read that with the first t :/00:32
aukeall these years working with linux and I haven't found an easy way to add accents to characters yet00:33
aukeapart from opening gucharmap XO00:33
CosmoHillI've been kinda learning french in #lfs-fr00:33
aukeI got plenty of french in school, and vacations in switzerland and france00:34
*** equim has quit IRC00:34
*** fnordianslip has joined #meego00:34
CosmoHillmum said if I get a job with Blizard in franch they give you french lessons00:34
*** renato has quit IRC00:34
*** bergie has joined #meego00:35
*** epx has quit IRC00:37
*** mece has quit IRC00:38
*** bergie has quit IRC00:41
*** smhar has joined #meego00:43
*** leandroal has quit IRC00:45
*** vlcn has quit IRC00:49
*** arcticrobot has joined #meego00:50
Stskeeps209/209 sessions voted for, time for sleep :P00:50
*** pmcgowan has quit IRC00:54
DawnFosteranyone want to help me with a random mysql query (for MeeGo metrics)?00:54
DawnFostersomething isn't working, and I've never been much of a db expert00:54
*** Dr_Who has quit IRC00:55
*** puffin has quit IRC00:57
Stskeepsas with most help questions, it's probably better to ask the question instead of asking for help :)00:57
*** dspeed has quit IRC00:58
mikhas"Dont ask to ask"00:59
*** Ian-- has quit IRC00:59
*** pH5 has quit IRC00:59
DawnFosterwell, it's pretty off topic, but here you go:01:00
thiago_homeyou want a random query?01:00
DawnFosterData model: http://tools.libresoft.es/data_model_mlstats01:00
* thiago_home suggests SELECT RAND();01:00
*** dspeed has joined #meego01:00
DawnFostermy query:01:00
DawnFosterselect p.email_address, year(m.first_date) as y, monthname(m.first_date),count(*) as c, m.mailing_list_url, n.name from messages as m,messages_people as p,people as n where m.message_id=p.message_ID and p.email_address=n.email_address and month(first_date)=8 and year(first_date)=2010 and m.mailing_list_url='http://lists.meego.com/pipermail/meego-commits/' group by n.name, month(m.first_date) order by y, month(m.first_date), c;01:00
DawnFostertrying to see who (by name, not email address) is posting to meego commits01:00
DawnFosterit returns a null set01:00
DawnFosterthis query works by email address, for example:01:01
DawnFosterselect p.email_address, year(m.first_date) as y, monthname(m.first_date),count(*) as c, m.mailing_list_url from messages as m,messages_people as p where m.message_id=p.message_ID and month(first_date)=8 and year(first_date)=2010 and m.mailing_list_url='http://lists.meego.com/pipermail/meego-commits/' group by p.email_address, month(m.first_date) order by y, month(m.first_date), c;01:01
DawnFosterbut the names are in a different table (people)01:01
thiago_homemy SQL is a bit rusty, but if it's a different table, you need a join01:02
tremnite all, sweet dreams01:02
DawnFostersorry, I should have dumped that to pastebin - i'm violating my own guidelines again :)01:02
Stskeepsthe text was on one line, so it doesn't qualify for pastebin ;)01:03
DawnFosterinner join = comma01:03
mikhasthiago_home, the join is right there, in the where clauses01:03
mikhasit's just a very expensive way to write up a join ;-)01:03
DawnFosterit's joining 3 tables01:03
DawnFosterwell, it's a tiny db01:03
DawnFosteron my hard drive01:04
DawnFosterso going for "works" over elegant :)01:04
StskeepsDawnFoster: if you don't manage to get an answer tonight, prod w00t (viroteck at viroteck.net) - he's quite good with this kind of stuff and always helpful :)01:04
* Stskeeps heads to bed01:04
mikhasI feel like you want to split that in two parts: First join so that you have a result table containing all needed columns. then filter by "having by"01:04
DawnFosteralso, this is what it looks like when community managers white sql queries01:04
DawnFosterstskeeps: thanks & dneary is pretty good with mlstats, too01:05
thiago_homeI'd say remove the where clauses and the grouping until it starts producing results, then put them back in01:06
DawnFostermikhas: can you give me an example of how that would look?01:06
DawnFosterthiago_home, yeah, good itea01:06
* thiago_home is off to bed too01:06
DawnFosternight guys01:06
*** panaggio has quit IRC01:07
mikhas"select .... from ... where ... having ${some_condition}"01:07
*** Ian-- has joined #meego01:07
*** trem has quit IRC01:07
csdbDawnFoster: so it seems that this is the major difference between the 2: p.email_address=n.email_address01:08
csdbhave you checked that email_address is in the same format on both tables?01:08
*** rescbr has joined #meego01:08
csdbmaybe one's "blabla@blabla.com" and the other is "<blabla@blabla.com>" ?01:09
*** rescbr has quit IRC01:09
DawnFostereverything "n" is new in this query01:09
DawnFostercsdb: I thought so, but I should verify01:09
*** Eiskis has joined #meego01:10
*** thiago_home has quit IRC01:10
*** rescbr has joined #meego01:10
csdbright, but that is the only added part that is influencing the selection right?01:11
*** CosmoHill has quit IRC01:11
*** csdb has quit IRC01:11
*** csdb has joined #meego01:11
*** bpeel_away is now known as bpeel01:12
*** mord_ has joined #meego01:14
*** rescbr has quit IRC01:14
*** rescbr has joined #meego01:15
mikhasmessages_people is the join table for messages and people, so first part is to get the join right "join people.email_address = messages_people.email_address and messages_people.message_id = messages.message_id"01:15
mikhasthen, the where clause would contain the ML name "messages.mailing_list_url"01:15
mikhasand the whole thing can then be grouped by people.name (or people.username)01:16
*** ColKilkenny has quit IRC01:16
*** rescbr has quit IRC01:16
*** Xisdibik has quit IRC01:17
DawnFostermikhas: let me give that a shot01:17
*** rescbr has joined #meego01:17
mikhasthen, either use having to filter for the dates, or use this first query as a subquery, and run the date filters in the where clause of the second query01:17
*** guardian_ has joined #meego01:18
*** dailylinux has quit IRC01:20
*** Armi^ has quit IRC01:20
*** guardian has quit IRC01:20
*** mord has quit IRC01:20
*** smhar has quit IRC01:20
*** rstreif has quit IRC01:20
*** baraujo has quit IRC01:20
*** Brik_ has quit IRC01:20
*** mwichmann has quit IRC01:20
*** mmeeks has quit IRC01:20
*** tuxer has quit IRC01:20
*** poutsi has quit IRC01:20
*** guardian_ is now known as guardian01:20
*** sjg156 has joined #meego01:21
*** MoRpHeUz has quit IRC01:21
*** smhar has joined #meego01:21
*** rstreif has joined #meego01:21
*** baraujo has joined #meego01:21
*** Brik_ has joined #meego01:21
*** mwichmann has joined #meego01:21
*** mmeeks has joined #meego01:21
*** tuxer has joined #meego01:21
*** poutsi has joined #meego01:21
*** Eiskis has quit IRC01:23
*** sjg156 has quit IRC01:23
*** baraujo has quit IRC01:23
*** puffin has joined #meego01:24
*** matgnt has quit IRC01:25
*** dspeed has quit IRC01:26
*** dspeed has joined #meego01:27
*** andre__ has quit IRC01:28
*** alvaro__ has quit IRC01:30
*** abinader has quit IRC01:33
*** luck has quit IRC01:33
*** dchaverri26 has quit IRC01:36
*** pvdm has joined #meego01:37
*** OptX has quit IRC01:38
*** yrgd has joined #meego01:41
*** mikhas has quit IRC01:42
*** CosmoHill has joined #meego01:43
*** edisson has quit IRC01:45
*** aquatix has joined #meego01:50
*** hwoarang has joined #meego01:52
*** carloscesa has quit IRC01:54
*** duchnull has joined #meego01:55
*** bpeel is now known as bpeel_away01:55
*** dspeed has quit IRC01:56
*** FunkyPenguin has quit IRC01:57
*** Luping has quit IRC01:57
*** dspeed has joined #meego01:57
*** vlcn has joined #meego01:58
*** vlcn has quit IRC02:00
*** aquatix has quit IRC02:03
*** smhar has quit IRC02:03
*** rstreif has quit IRC02:03
*** Brik_ has quit IRC02:03
*** mwichmann has quit IRC02:03
*** mmeeks has quit IRC02:03
*** tuxer has quit IRC02:03
*** poutsi has quit IRC02:03
*** aquatix has joined #meego02:03
*** smhar has joined #meego02:03
*** rstreif has joined #meego02:03
*** Brik_ has joined #meego02:03
*** mmeeks has joined #meego02:03
*** tuxer has joined #meego02:03
*** poutsi has joined #meego02:03
*** ablasche has quit IRC02:05
*** ablasche has joined #meego02:05
*** felipec has quit IRC02:10
*** panaggio has joined #meego02:12
*** lolloo has quit IRC02:16
*** lolloo has joined #meego02:31
n900-space..02:32
n900-spacewow i am still connected02:32
*** Flanbix has quit IRC02:32
CosmoHillcyas02:34
*** CosmoHill has quit IRC02:34
*** Flanbix has joined #meego02:38
*** mitsutaka_ has quit IRC02:38
*** kieppie has left #meego02:39
*** chriadam|away is now known as chriadam02:39
smithnaHow do I use the xfce4-mixer to get sound out of spdif?  I've basically turned everything on (and volume up) without any luck.02:41
*** DawnFoster has quit IRC02:46
*** efleury has quit IRC02:48
*** DawnFoster has joined #meego02:52
*** auke has quit IRC02:53
*** niala has quit IRC02:53
*** auke has joined #meego02:54
Saviqsmithna: tried #xfce? also, you're probably using pulseaudio, so try pavucontrol if xfce4-mixer doesn't give you a way to select card outputs02:55
smithnaSaviq: didn't think about #xfce -- will do02:56
*** DawnFoster has quit IRC02:56
smithnaThanks02:56
*** RhymeswAlbert has joined #meego03:00
*** pvdm has quit IRC03:02
*** fnordianslip has quit IRC03:11
*** fnordianslip has joined #meego03:13
*** Saviq is now known as Saviq_afk03:19
*** duchnull has quit IRC03:19
*** fredy has quit IRC03:21
*** dspeed has quit IRC03:23
*** dspeed has joined #meego03:24
*** DawnFoster has joined #meego03:28
*** mitsutaka has joined #meego03:30
*** smhar has quit IRC03:31
*** mitsutaka has quit IRC03:33
*** dl9pf has joined #meego03:37
*** dl9pf has joined #meego03:37
*** dl9pf_ has quit IRC03:37
*** bef0rd has joined #meego03:40
*** Brik_ has quit IRC03:45
*** brik has joined #meego03:45
*** pinheiro has quit IRC03:48
*** epx has joined #meego03:49
*** Erkan_Yilmaz_ has joined #meego03:51
*** cmarcelo has quit IRC03:52
*** pinheiro has joined #meego03:52
*** Erkan_Yilmaz has quit IRC03:54
*** bef0rd has quit IRC03:56
*** smhar has joined #meego03:57
*** pinheiro has quit IRC04:00
*** pcacjr has joined #meego04:01
*** leinir has quit IRC04:02
*** AlexG has joined #meego04:12
*** glin has joined #meego04:17
*** Xisdibik has joined #meego04:20
*** smithna has quit IRC04:22
*** pinheiro has joined #meego04:26
*** Xisdibik has quit IRC04:28
*** dchang has joined #meego04:28
*** mitsutaka has joined #meego04:29
*** pinheiro has quit IRC04:31
*** leandroal has joined #meego04:31
*** epx has quit IRC04:33
*** mitsutaka has quit IRC04:33
*** mitsutaka has joined #meego04:34
*** mlfoster has quit IRC04:36
*** yrgd has quit IRC04:36
*** mostafa_ has joined #meego04:39
*** b-man` has joined #meego04:39
*** csdb has quit IRC04:40
*** wasikevin has joined #meego04:44
*** pinheiro has joined #meego04:47
*** DawnFoster has quit IRC04:52
*** neopsis has joined #meego04:53
*** davidchang has joined #meego05:02
*** dcthang has joined #meego05:05
*** rescbr has quit IRC05:05
*** mitsutaka has quit IRC05:05
*** dchang has quit IRC05:06
*** glin has quit IRC05:06
*** glin has joined #meego05:07
*** rescbr has joined #meego05:07
*** luist has joined #meego05:08
*** pinheiro has quit IRC05:08
*** pinheiro has joined #meego05:17
*** leandroal has quit IRC05:21
*** arcticrobot has quit IRC05:26
*** smhar has quit IRC05:26
*** davidchang has quit IRC05:31
*** glin has quit IRC05:31
*** sheepbat has joined #meego05:35
*** pinheiro has quit IRC05:38
*** pcfe has quit IRC05:39
*** pcfe has joined #meego05:39
*** pcfe has joined #meego05:39
*** glin has joined #meego05:43
*** dcthang has quit IRC05:46
*** dcthang has joined #meego05:47
*** paulliu has joined #meego05:47
*** bef0rd has joined #meego05:47
*** davidchang has joined #meego05:49
*** yanli has joined #meego05:51
*** luist has quit IRC05:54
*** Xisdibik has joined #meego05:55
*** Xisdibik has quit IRC05:56
*** panaggio has quit IRC05:57
*** lolloo has quit IRC05:58
*** mmkassem has joined #meego06:07
*** lolloo has joined #meego06:15
*** mitsutaka has joined #meego06:21
*** MacDrunk has joined #meego06:22
*** vaughan has joined #meego06:30
*** vaughan is now known as Guest4202506:31
*** Kubuntiac has joined #meego06:34
*** mwichmann has joined #meego06:40
*** sar3th|away is now known as sar3th06:40
*** lolloo has quit IRC06:41
*** mwichmann has quit IRC06:41
*** glin has quit IRC06:43
*** davidchang has quit IRC06:43
*** mitsutaka_ has joined #meego06:47
*** mitsutaka has quit IRC06:47
*** mostafa_ has quit IRC06:50
*** Openfree` has quit IRC06:55
*** glin has joined #meego06:55
*** davidchang has joined #meego06:56
*** marcels has joined #meego06:57
*** puffin has quit IRC07:01
*** rstreif has left #meego07:02
*** mitsutaka_ has quit IRC07:03
*** Kubuntiac has quit IRC07:06
*** lolloo has joined #meego07:07
*** Kubuntiac has joined #meego07:07
*** mitsutaka has joined #meego07:08
*** lolloo has quit IRC07:09
*** mitsutaka has quit IRC07:13
*** timoph|away is now known as timoph07:18
*** marcels has quit IRC07:26
*** Openfree` has joined #meego07:27
*** marcels has joined #meego07:29
*** phinaliumz has quit IRC07:29
*** dani_l has quit IRC07:29
*** mitsutaka has joined #meego07:30
*** dani_l has joined #meego07:32
*** DocScrutinizer has quit IRC07:34
*** DocScrutinizer has joined #meego07:34
*** AlexG has quit IRC07:35
*** AlexG has joined #meego07:35
*** zeddii has quit IRC07:37
*** zeddii has joined #meego07:37
*** kkszysiu has quit IRC07:38
*** slonopotamus has joined #meego07:47
*** lgombos has quit IRC07:47
*** lgombos has joined #meego07:47
*** mitsutaka has quit IRC07:49
*** kkszysiu has joined #meego07:50
*** mitsutaka has joined #meego07:51
*** neopsis has quit IRC07:56
*** neopsis has joined #meego07:57
*** johnx has quit IRC07:57
*** smhar has joined #meego08:00
*** mrmoku|a` has joined #meego08:02
*** sar3th is now known as sar3th|away08:03
*** mrmoku|away has quit IRC08:05
*** mitsutaka has quit IRC08:05
*** johnx has joined #meego08:06
*** hhartz has joined #meego08:19
*** Kompo has joined #meego08:22
*** mitsutaka has joined #meego08:23
*** mitsutaka_ has joined #meego08:24
*** mitsutaka has quit IRC08:24
*** mitsutaka_ has quit IRC08:25
*** mitsutaka has joined #meego08:28
*** pohly has joined #meego08:28
*** johnx has quit IRC08:30
*** vanadis has joined #meego08:31
*** rescbr has quit IRC08:33
*** ayoy has joined #meego08:38
*** ayoy has joined #meego08:38
*** slonopotamus_ has joined #meego08:39
*** slonopotamus has quit IRC08:40
*** slonopotamus_ is now known as slonopotamus08:40
*** calvaris has joined #meego08:41
*** Riussi has joined #meego08:42
*** lolloo has joined #meego08:43
*** villev has joined #meego08:44
*** amjad has joined #meego08:44
*** RhymeswAlbert has left #meego08:47
*** tackat has joined #meego08:47
*** Job1 has quit IRC08:47
*** kko_ has joined #meego08:48
*** Mat_Matan has joined #meego08:49
*** tmikola has joined #meego08:50
*** timakima|away is now known as timakima08:51
*** sandst1|away is now known as sandst108:52
*** rescbr has joined #meego08:54
*** MostafaDaneshvar has joined #meego08:56
*** ismael has joined #meego08:57
*** slonopotamus has quit IRC08:57
*** marcels has quit IRC09:00
*** jani has quit IRC09:03
*** leinir has joined #meego09:04
*** ubIx has joined #meego09:04
*** danielwilms has joined #meego09:05
*** johnx has joined #meego09:06
*** jani has joined #meego09:07
*** amjad has quit IRC09:08
*** jani is now known as Guest6304509:08
*** ubIx_ has quit IRC09:08
*** smoku has left #meego09:08
*** thiago_home has joined #meego09:12
*** mitsutaka has quit IRC09:13
*** aapo has joined #meego09:14
*** markey has quit IRC09:19
*** mitsutaka has joined #meego09:19
*** amjad has joined #meego09:21
*** markey has joined #meego09:24
*** leinir has quit IRC09:26
*** Luping has joined #meego09:27
*** Luping has left #meego09:28
*** dvoid has joined #meego09:28
*** bef0rd has quit IRC09:29
*** bef0rd has joined #meego09:29
*** tekojo has joined #meego09:29
*** tekojo has joined #meego09:29
*** leinir has joined #meego09:30
*** eggonlea has joined #meego09:31
*** jlamadon has joined #meego09:32
*** ablasche has quit IRC09:35
*** sheepbat has quit IRC09:35
*** ablasche has joined #meego09:36
*** abstract3d has quit IRC09:38
*** jrocha has joined #meego09:38
*** abstract3d has joined #meego09:38
*** Erkan_Yilmaz_ has quit IRC09:40
*** pvdm has joined #meego09:43
*** dneary has joined #meego09:44
*** dneary has quit IRC09:44
*** dneary has joined #meego09:44
*** kraiskil has joined #meego09:44
*** theopensourcerer has joined #meego09:49
*** tommim has joined #meego09:49
*** ZogG has quit IRC09:52
*** ZogG has joined #meego09:54
*** hari_ has joined #meego09:56
*** michaelg|nok has joined #meego09:58
*** lolloo has quit IRC09:59
*** Mat_Matan has quit IRC09:59
*** dneary has quit IRC10:02
*** tealbird has joined #meego10:04
*** piggz has joined #meego10:04
*** tealbird has left #meego10:05
*** ScottishDuck has quit IRC10:05
*** thiago_home has quit IRC10:12
*** hari_ has quit IRC10:15
*** guardian has quit IRC10:15
*** ysyrota has joined #meego10:16
*** lolloo has joined #meego10:17
*** amjad has quit IRC10:21
*** dvoid has quit IRC10:21
*** Flanbix has quit IRC10:22
*** AlexG_ has joined #meego10:23
*** hari_ has joined #meego10:25
*** Flanbix has joined #meego10:27
*** chriadam is now known as chriadam|away10:28
*** Guest2125 has quit IRC10:28
*** Guest2125 has joined #meego10:28
*** fcrozat|gone is now known as fcrozat10:28
*** zeddii has quit IRC10:30
*** calvaris has quit IRC10:31
*** zeddii has joined #meego10:31
*** bef0rd has quit IRC10:33
*** lbt is now known as lbt_10:33
*** mardy has quit IRC10:36
*** dharman has joined #meego10:37
*** neopsis has quit IRC10:37
*** mardy has joined #meego10:38
*** arkub has joined #meego10:39
*** bergie has joined #meego10:42
*** Flanbix has quit IRC10:42
*** smhar has quit IRC10:42
*** mardy has quit IRC10:42
*** mardy has joined #meego10:43
*** fabiomssilva has joined #meego10:43
*** tilppis has joined #meego10:44
*** Flanbix has joined #meego10:46
*** mardy has quit IRC10:48
*** pinheiro has joined #meego10:48
*** mardy has joined #meego10:49
*** townxelliot has joined #meego10:49
*** lolloo has quit IRC10:51
*** c|oneman has joined #meego10:53
c|onemanawesome10:53
*** mardy has quit IRC10:53
c|onemanI thought meego was a third os  seperate from maemo until tonight10:53
KubuntiacWelcome to the revolution, my friend :)10:54
c|onemaninstead, I discover it's a serious project, backed by intel, with a build that runs on some netbooks already10:54
*** sandst1 is now known as sandst1_lunch10:55
KubuntiacIntel *and* Nokia :)10:55
Stskeepsc|oneman: and handset10:55
Stskeeps(s)10:55
KubuntiacYeah, those netbook vids are pretty sweet10:55
c|onemanit runs on the n900?10:55
c|onemanwhat else?10:55
Stskeepsaava10:56
tmzt_libva isn't?10:56
tmzt_oops, old10:56
tmzt_gone a piss off ali again10:56
Myrttimoin10:57
c|onemanI've got a Dell Mini 10v, gonna try it tommorow10:57
*** dcthang has quit IRC10:57
KubuntiacI want to try it on my Dell Latitude XT2 and see how the multitouch goes...10:58
KubuntiacNot quite a netbook, but hey10:58
KubuntiacStill curious how they're handling multitouch, when MeeGo is Linux based and MT in Linux still seems to be forming...10:59
*** mitsutaka has quit IRC10:59
MyrttiRobot101: http://forum.meego.com/showthread.php?t=1377 *nudge*10:59
*** Job1 has joined #meego11:00
*** guardian has joined #meego11:01
*** nicu has joined #meego11:02
*** AlexG_ has quit IRC11:02
*** AlexG_ has joined #meego11:03
*** AlexG has quit IRC11:04
*** mardy has joined #meego11:04
*** githogori has quit IRC11:05
*** TermanaN900 has joined #meego11:05
*** Gibba has joined #meego11:06
*** AlexG_ has quit IRC11:06
*** AlexG has joined #meego11:06
*** armika has quit IRC11:07
*** mardy has quit IRC11:07
*** armika has joined #meego11:08
*** swc|666 has quit IRC11:08
*** ayanes has joined #meego11:08
*** mardy has joined #meego11:10
*** mardy has quit IRC11:11
*** dm8tbr has joined #meego11:12
*** ColKilkenny has joined #meego11:12
*** dcthang has joined #meego11:13
*** florian_kc has joined #meego11:14
*** florian_kc is now known as florian11:15
*** mardy has joined #meego11:15
*** fnordianslip has quit IRC11:17
*** lbt has joined #meego11:19
*** mardy has quit IRC11:20
*** Patina has quit IRC11:21
c|onemandoes meego have flash support yet?11:25
Stskeepson x8611:25
c|onemanya11:26
*** stonda has quit IRC11:26
*** Patina has joined #meego11:27
w00t_c|oneman: that was an answer, not a question :p11:27
*** stonda has joined #meego11:27
c|onemanwell uh.. so was mine!11:27
c|onemanI was answering me!11:28
c|oneman(yes, they will totally buy this)11:28
*** Guest63045 is now known as jani11:28
*** wasikevin has quit IRC11:29
*** gabor has joined #meego11:30
*** mardy has joined #meego11:31
*** tilppis has quit IRC11:33
*** stonda has quit IRC11:33
*** stonda has joined #meego11:34
*** vlj has joined #meego11:35
*** amjad has joined #meego11:35
*** mardy has quit IRC11:36
*** oh-dm8tbr has quit IRC11:36
*** mardy has joined #meego11:36
*** smhar has joined #meego11:39
*** wasikevin has joined #meego11:40
*** TermanaN900 has quit IRC11:40
*** fabiomssilva has quit IRC11:41
*** mardy has quit IRC11:41
*** fabiomssilva has joined #meego11:41
*** mardy has joined #meego11:42
*** SWFu has joined #meego11:43
*** ablasche has quit IRC11:44
*** ablasche has joined #meego11:45
*** ckandeler has quit IRC11:45
*** ckandeler has joined #meego11:46
*** mardy has quit IRC11:46
*** mardy has joined #meego11:47
*** Kubuntiac has quit IRC11:47
*** sandst1_lunch is now known as sandst111:48
*** calvaris has joined #meego11:51
*** smoku has joined #meego11:51
*** arfoll has joined #meego11:51
*** slaine has joined #meego11:52
*** FunkyPenguin has joined #meego11:53
*** tackat has quit IRC11:53
*** amjad has quit IRC11:55
*** kko_1 has joined #meego12:00
*** ZogG has quit IRC12:00
arfollis there opengl ES 2 libs for meego handset?12:00
*** bpeel_away is now known as bpeel12:01
*** kko_ has quit IRC12:01
*** ZogG has joined #meego12:01
Stskeepsfor n900 there is, at least12:01
arfolland for aava?12:02
Stskeepsunsure if they work12:02
arfollwhat package is the libGLESv2.so?12:02
Stskeepspvr-bin?12:02
arfollcheers, wish they'd stop those obscure names12:03
Stskeepsyou haven't seen the first of it.12:03
Stskeeps:P12:03
arfollI'm hoping GLes may work better than the gl2 on the aava drivers12:03
arfollawesome, it's definately in there - now to find if the driver works with it...12:04
*** lokesh has joined #meego12:05
timophoh. http://lwn.net/Articles/404248/12:06
*** Saviq_afk is now known as Saviq12:06
*** yanli has quit IRC12:06
Stskeepsoh that's nice12:06
fabiomssilvathat is great ! :)12:07
Stskeepsslaine: ^12:07
*** lmoura__ has joined #meego12:07
lokeshhow to get zypper working behind a proxy on the handheld meego image ?12:08
lokeshon a netbook12:09
Stskeepsexport http_proxy ?12:09
*** lmoura_ has quit IRC12:10
*** mitsutaka has joined #meego12:10
slaineYeah, it's totally awesome, I retweeted it earlier12:10
*** abstract3d has quit IRC12:13
*** dneary has joined #meego12:17
*** wasikevin has quit IRC12:18
*** n900-space has quit IRC12:18
*** c|oneman has quit IRC12:18
*** DarkUranium has joined #meego12:22
*** kontio has joined #meego12:30
*** andre__ has joined #meego12:30
*** vltR has quit IRC12:32
*** vltR has joined #meego12:33
DarkUraniumo/12:34
*** SWFu64 has joined #meego12:36
*** maxayu has quit IRC12:37
*** SWFu has quit IRC12:40
*** SWFu64 has quit IRC12:41
*** SWFu has joined #meego12:41
*** marcoil has joined #meego12:42
*** tackat has joined #meego12:46
*** m-vo has quit IRC12:49
*** CosmoHill has joined #meego12:51
*** niqt has joined #meego12:54
*** javiF has joined #meego12:54
CosmoHillcool: http://www.phoronix.com/scan.php?page=news_item&px=ODU4Mg12:54
CosmoHillshould be very helpful for meego12:54
*** jusliukk has joined #meego12:58
*** AlexG has quit IRC13:02
*** Tili has joined #meego13:13
*** messerting has joined #meego13:13
messertingHi folks, I'm googling trying to find out how I can type sms on my laptop and send them via bluetooth from my N900 (Maemo). Anyone?13:14
messertingSeems gammu isn't the right tool here http://wammu.eu/phones/nokia/4016/13:14
CosmoHillI think you can with the Ovi suite13:15
CosmoHillhowever I will point out (cos others will) that this is #meego, not #maemo13:16
*** hhartz has quit IRC13:16
messertingCosmoHill: Thanks. I forgot to mention that I'm on a linux desktop, and ovi suite isn't available, right? Anyway - I'm moving to #maemo :)13:19
adeuswriting a app and pushing the message via ssh to it should be simple enough :)13:20
messertingadeus: Actually, that would be okay by me - but how do I send and sms from the console (on the device?)13:21
*** vlj has quit IRC13:21
adeushttp://wiki.maemo.org/PyMaemo/Phone_call_and_SMS_examples13:22
*** lcukn900 has joined #meego13:22
fabiomssilvaif you are familiar with QT, you can make a app that send it. Use the Qt Mobility libs13:22
messertingadeus: wow, great! thanks!13:22
messertingnot too familiar with QT programming (yet..)13:23
fabiomssilva:)13:23
*** amjad has joined #meego13:23
*** kyb3R_ has joined #meego13:23
adeusif sending the message is all you want, those python examples should do great13:24
messertingA bit strange that the N900 is not supported by eg. opensync, kmobiletools, gammu etc (or am I wrong?)13:25
*** dl9pf has quit IRC13:26
*** dl9pf has joined #meego13:26
*** zs has joined #meego13:26
*** lmoura_ has joined #meego13:32
*** lmoura__ has quit IRC13:34
*** tekojo has quit IRC13:35
*** MostafaDaneshvar has quit IRC13:36
*** tekojo has joined #meego13:37
*** tekojo has joined #meego13:37
*** Riussi has quit IRC13:37
*** bvogel has joined #meego13:40
*** bvogel has quit IRC13:44
*** bvogel has joined #meego13:45
*** bvogel has quit IRC13:48
*** bvogel has joined #meego13:48
*** bvogel has quit IRC13:50
*** mke has joined #meego13:50
*** mke has quit IRC13:51
*** mker has joined #meego13:52
*** Riussi has joined #meego13:56
*** mitsutaka has quit IRC13:57
*** luist has joined #meego14:01
*** zaheerm has joined #meego14:03
*** hhartz has joined #meego14:04
*** glin has quit IRC14:10
*** hansonlaputa has joined #meego14:12
*** schoenemann has quit IRC14:13
amjadreally getting a CEO from microsoft will increase nokia's market share in US??14:15
amjaddont think so14:15
thiagomicrosoft business14:16
thiagobesides, it's not the trading of CEOs that increases market share14:16
thiagoit's an indirect consequence14:16
thiagobut, one commenter at engadget had a suggestion: "Zune on Meego?"14:17
*** schoenemann has joined #meego14:17
amjad:)14:17
CosmoHillyou sure you have that the right way around?14:18
CosmoHill"meego on zune" would make more sense14:18
lcuknice CosmoHill14:19
lcuknow you are thinking with portals14:19
amjadny one here going to developer day on 14 in bay area??14:20
CosmoHillby bay area you mean far far away in america?14:21
amjadyes14:21
th0br0i think that a simple reason might be that, at least that's what a us friend of mine told me earlier, the us image of nokia is rather... bad14:22
*** dneary has quit IRC14:22
amjadi lived in us for 7 years14:22
amjadnever ever saw a nokia phone in best buy or circuit city14:23
th0br0yeah14:23
CosmoHillwe have a Best Buy in the UK, I was surprised14:23
Stskeepswhile in europe it's difficult to avoid seeing nokia phones in supermarkets14:23
Stskeeps:P14:23
th0br0wish we had a chipotle elsewhere than london ;)14:23
CosmoHillhehe14:23
CosmoHillmy first nokia was a 3310 :)14:23
CosmoHillfriend sat on it and cracked the screen :(14:24
fabiomssilvain Nokia land... you see nokia everywhere  !!!14:24
fabiomssilva:)14:24
amjadi got google htc dream, though 6 months after it was released14:24
thiagoamjad: I have a few friends who will be there14:24
CosmoHilland by nokia land you mean thiago's office?14:24
th0br0amjad: me too. and i bricked it 3 days later ;)14:24
fabiomssilvaFinland :)14:24
* CosmoHill giggles14:25
amjadi wanted to win android developer contest, played with android rc5 but then could not get lbs working on it, now it is just an antique piece were i test my java skills :)14:26
lcukdid anyone manage to get meego on the nokia netbook happily yet? (google search is a bit useless)14:26
Stskeepslcuk: yes, long ago14:26
th0br0nokia netbook?14:26
amjadnokia netbook??14:26
lcukStskeeps, but thats not a general thing is it?14:26
*** hansonlaputa has quit IRC14:26
lcukie now the owners of the netbook still have to be ninjas?14:27
th0br0aah nokia booklet 3g14:27
lcukyes14:27
CosmoHilllcuk: search on youtube, i saw meego running on one on there14:27
amjadso dell streak is out, you guys working for meego support on it or dell is working on it??14:27
th0br0http://www.fsf.org/news/oracle-v-google mh, nice reply.14:28
lcuki know theres "running on xyz" but can a normal person with a booklet just install the default meego image?14:28
*** priyanka has joined #meego14:28
priyankaHi is meego supported on IMX51 board14:28
thiagolcuk: just samurais now14:29
*** dcthang has left #meego14:29
lcukthanks thiago14:29
Stskeepspriyanka: ARMv6, ARMv7?14:30
*** mker has quit IRC14:30
*** jln has quit IRC14:31
*** davidchang has quit IRC14:32
th0br0https://one.ubuntu.com/music/ huh, ubuntu really tries more and more to copy osx :(14:32
*** calvaris has quit IRC14:32
lcukthiago, how could a user level custom image be made available to nokia booklet owners who wanted meego?14:33
CosmoHillnow if only they still supported powerpc14:33
*** ismael has quit IRC14:33
thiagolcuk: no clue...14:33
th0br0:)14:33
Stskeepslcuk: mic214:33
Stskeeps:P14:33
thiagolcuk: I've only ever seen one person run Linux on those booklets14:33
th0br0CosmoHill: noone does that though nowadays, except for arch maybe?14:33
CosmoHill:(14:33
* CosmoHill wonders if meego will run on powerpc (at some point)14:34
lcuki bet theres a metric shittonne of Nokia branded booklets around which would benefit from a meego advert14:34
priyanka@Stskeeps ARM v714:35
Stskeepspriyanka: then it likely works :)14:36
Stskeepspriyanka: you need to drop in own GLESv2 libs though14:36
priyankaok, is there ny working image available ?14:36
Stskeepsgrab the meego n900 core image from weekly builds and go from there14:37
Stskeepswe're a bunch of meego ARM people in #meego-arm - we don't do support but we usually push people in the right direction14:38
priyanka@STSkeeps ok good14:38
th0br0isn't that support then?14:39
CosmoHillStskeeps: towards the door?14:39
Stskeepsth0br0: no, because we don't do their homework for them14:39
Stskeeps:P14:39
CosmoHillsounds good to me, I'd rather me pointed in the right direction and learn for myself than get the answers spoon feed to me14:39
CosmoHillwish is what some of my classmates want14:40
th0br0i agree...14:40
CosmoHillnobody's commented on my blog :(14:40
CosmoHillon the plus side the updated spam blocker seems to be working14:40
lcukcould those 2 things be linked ;)14:41
th0br0;)14:41
CosmoHill:o14:42
* CosmoHill headbangs desk14:42
lcukCosmoHill, cant comment on your blog if you don't paste the link14:42
CosmoHillhttp://black-flag.co.uk/wordpress/2010/09/03/qmake-on-powerpc/14:42
*** baraujo has joined #meego14:42
CosmoHillJust relieased, I compiled a new clamav rpm but forgot to install it on my server14:43
th0br0why do you have clamav on your server?14:43
th0br0do you have so many windows clients?14:43
CosmoHillcos it's connected to windows computers14:43
th0br0k14:43
CosmoHilleven tho my desktop under windows 7 is the only computer without an AV14:44
th0br0AVs slow you down :(14:45
CosmoHillwhich is why it's not on my desktop14:45
CosmoHilllaptop has one because it's a laptop, so it's connected to all sorts of networks14:45
th0br0yeah.14:45
CosmoHillwhich reminds me, smbtree is a fun command14:45
th0br0oh yes :D14:45
CosmoHillI ran it yesterday by mistake, printed all the shares on the university network14:46
th0br0;)14:46
fabiomssilvaany nice findings ? ;)14:47
CosmoHillI think some of them were student laptops14:47
fabiomssilvaSo you got a treasure map, but you do not have dig the hole ! :)14:48
CosmoHillwhat I was trying to do was to connect to a SAN from mac OS X, under windows it's the student's H drive14:48
CosmoHill(btw if you didn't know my real name before you do now [but only if you read my blog])14:49
th0br0or if you hovered over the link in your quassel window, jonathan ;)(14:50
CosmoHill:o14:50
th0br0CosmoHill: you going to dublin?14:50
CosmoHillnope14:50
*** puffin has joined #meego14:51
th0br0:(14:51
fabiomssilvaI have here a desktop computer with a nVidia Card. How can I make the SDK run properly with the chroot and Xephyr ?14:51
th0br0fabiomssilva: there is uhm lemme check, i saw it yesterday14:51
CosmoHillthe journey would be described as "several anxiety attacks later"14:51
th0br0CosmoHill: you got problems with flying?14:51
th0br0fabiomssilva: http://wiki.meego.com/User:Vljn14:51
CosmoHillth0br0: duno, never flown14:51
th0br0oh ok.14:52
CosmoHillfabiomssilva: there's something on the forum about nvidia and Xephyr14:52
fabiomssilvatnks :)14:52
*** eti has joined #meego14:52
*** lmoura__ has joined #meego14:52
*** lmoura_ has quit IRC14:53
*** messerting has quit IRC14:54
*** timoph is now known as timoph|away14:57
*** mfabiop has joined #meego14:57
* CosmoHill goes to nom lunch, bbl14:57
*** alvaro__ has joined #meego14:58
*** E-P has quit IRC14:58
*** matgnt has joined #meego15:02
*** arcticrobot has joined #meego15:05
*** marciom has joined #meego15:06
* CosmoHill should be getting a powermac this evening / tomorrow15:08
*** armika has quit IRC15:10
*** mwichmann has joined #meego15:11
*** armika has joined #meego15:11
*** pavank10 has joined #meego15:13
*** ayoy has quit IRC15:14
*** tchan has quit IRC15:17
*** pcacjr has quit IRC15:18
*** diegobz has quit IRC15:18
*** mardy has quit IRC15:18
CosmoHillhmm15:18
*** puffin has quit IRC15:18
CosmoHillmeego has slightly different rules on avatars than the forum I'm from15:18
CosmoHillaww what? no animations :(15:18
*** eti has quit IRC15:18
*** diegobz_ has joined #meego15:18
*** tchan1 has joined #meego15:18
*** diegobz_ is now known as diegobz15:18
*** diegobz has joined #meego15:18
*** pcacjr has joined #meego15:18
*** mardy has joined #meego15:18
*** infobot has quit IRC15:18
*** DeuX has quit IRC15:19
*** DeuX has joined #meego15:19
*** luist_ has joined #meego15:20
CosmoHillis it good or bad that this guy is spamming the KPC forum but is too stupid to realise he doesn't have a signature to advertise in?15:20
*** Guest27908 has joined #meego15:21
CosmoHillhttp://forums.kustompcs.co.uk/showthread.php?p=477482#post47748215:22
CosmoHillguess which guy is the idiot spammer15:22
*** mardy has quit IRC15:23
*** ucomesdag has joined #meego15:23
*** mardy has joined #meego15:24
*** luist has quit IRC15:24
*** luist_ is now known as luist15:24
*** javiF has quit IRC15:25
*** mardy has quit IRC15:28
*** nicu has left #meego15:29
*** jusliukk has quit IRC15:31
*** bpeel is now known as bpeel_away15:33
*** mardy has joined #meego15:35
*** ayoy has joined #meego15:35
*** felipec has joined #meego15:36
*** piggz_ has joined #meego15:39
*** mardy has quit IRC15:39
*** jln has joined #meego15:39
*** piggz has quit IRC15:40
*** mardy has joined #meego15:40
*** luck has joined #meego15:40
*** ayoy has quit IRC15:43
*** mardy has quit IRC15:44
*** mardy has joined #meego15:45
*** mdz has quit IRC15:46
*** ScottishDuck has joined #meego15:48
*** bergie has quit IRC15:49
*** Mat_Matan has joined #meego15:51
*** amjad has quit IRC15:52
*** lizardo has joined #meego15:53
*** tmikola has quit IRC15:53
*** carloscesa has joined #meego15:58
*** hari_ has quit IRC15:59
*** ismael has joined #meego16:02
*** pmcgowan has joined #meego16:04
*** TheVirtualVortex has joined #meego16:04
*** CosmoHill has quit IRC16:05
*** diegohcg has joined #meego16:06
*** thopiekar has joined #meego16:07
*** DarkUranium has left #meego16:08
*** TomaszD_ has joined #meego16:08
*** TheVirtualVortex has quit IRC16:09
*** TheVirtualVortex has joined #meego16:09
*** jmcphers has quit IRC16:10
*** mfabiop has quit IRC16:10
*** mfabiop has joined #meego16:10
*** jmcphers has joined #meego16:10
*** sar3th|away is now known as sar3th16:10
*** efleury has joined #meego16:11
*** tchan1 is now known as tchan16:12
*** tchan has quit IRC16:12
*** tchan has joined #meego16:12
*** TheVirtualVortex has quit IRC16:15
*** mdz has joined #meego16:16
*** niqt has quit IRC16:16
*** aapo has quit IRC16:16
*** phinaliumz has joined #meego16:17
*** rescbr has quit IRC16:17
*** mitsutaka has joined #meego16:18
*** TheVirtualVortex has joined #meego16:19
*** TheVirtualVortex has joined #meego16:19
*** dwmw2 has quit IRC16:20
*** dwmw2_gone has joined #meego16:21
*** kontio has quit IRC16:21
*** t3rm1n4l has joined #meego16:22
*** renato has joined #meego16:23
*** dchaverri26 has joined #meego16:25
*** Jef91|Work has joined #meego16:26
*** killeus has joined #meego16:27
Jef91|WorkAnyone know what the status of the MeeGo N900 port is, functionality wise?16:27
Stskeepswell, usually, you check our test reports16:27
Stskeepsbut what are you interesed in knowing?16:27
*** mardy has quit IRC16:28
Jef91|WorkData/wifi functional yet?16:28
Stskeepswifi's functional, data not yet, but we had audio calls and sms16:28
Stskeepsaudio calls remains to be integrated. all code is published, but main trunk is in feature freeze.16:28
Stskeepsdata not yet == UI doesn't work with it16:29
Stskeepsit does work if you do it manually16:29
Stskeepsaudio calls are in UI too. initiate/receive16:29
*** sandst1 is now known as sandst1|away16:29
*** mardy has joined #meego16:30
*** mirek2 has quit IRC16:31
Jef91|WorkGreat, sounds like it is coming along well.16:31
Jef91|WorkCan I dual boot it off an SD card?16:31
*** bergie has joined #meego16:33
Stskeepsyes, you load the kernel using flasher -l -k -b16:33
Stskeeps(non destructive)16:33
Stskeepswe're working on a u-boot based multiboot16:34
*** mardy has quit IRC16:34
*** mardy has joined #meego16:35
Stskeepskeep in mind we're work in progress, so some things are slow, weird, broken, etc16:35
Stskeepswe're actively bug fixing16:35
*** carloscesa has quit IRC16:35
Jef91|WorkI'm aware :)16:36
Jef91|WorkThanks for the update though, looking forward to have a choice of OS on my n90016:36
Jef91|WorkWonder which will be ready first, NitDroid or MeeGo XD16:36
th0br0nitdroid?16:36
th0br0n900 droid?16:36
Jef91|WorkYes th0br016:36
StskeepsJef91|Work: does it matter? :)16:36
Jef91|WorkI have that on my SD currently, it is semi functional.16:36
StskeepsJef91|Work: our goal is for meego to work on n900 for a bloody long time16:37
Jef91|WorkStskeeps - Of course it does. Choice is one of the most important things about FOSS :)16:37
*** TomaszD_ has quit IRC16:37
*** TomaszD has quit IRC16:37
*** tekojo has quit IRC16:37
*** puffin has joined #meego16:38
toggles_wStskeeps: is this with the daily release?16:39
Stskeepstoggles_w: hm?16:39
*** mardy has quit IRC16:39
toggles_wStskeeps: the ui etc? meego.com just specs n900 will boot to xterm16:40
*** mardy has joined #meego16:40
Stskeepstoggles_w: sure, tablets-dev.meego.com/meego-codedrop.php16:41
Stskeepsfull ui16:41
*** zutesmog has joined #meego16:41
*** zaheerm has quit IRC16:41
toggles_wthanks16:41
*** vlj has joined #meego16:42
vljhi16:42
vljis there a .ks for development build ?16:42
toggles_wno go, url doesn't work16:42
Stskeepserr16:42
Stskeepsdoh16:42
Stskeepstablets-dev.nokia.com/meego-codedrop.php16:43
toggles_wAhh, thansk16:43
lcukStskeeps, do you know whether there is a guide showing how to let users install their qt or other apps into the meego weekly.  even if its copy binary+run16:43
lcukor do they also need to first build a whole sdk at this point16:43
lcukie, can you take an already build qt 4.6/4.7 binary and use it directly?16:44
*** ragner has joined #meego16:44
*** mardy has quit IRC16:45
*** mardy has joined #meego16:46
*** MoRpHeUz has joined #meego16:46
*** HuuGo1 has quit IRC16:47
*** kraiskil has quit IRC16:47
*** pkt has joined #meego16:47
*** pkt has left #meego16:48
*** Guest27908 has quit IRC16:49
*** Jef91|Work has left #meego16:49
*** calvaris has joined #meego16:50
*** mardy has quit IRC16:50
*** kko_1 has quit IRC16:52
*** kko_ has joined #meego16:52
*** piggz__ has joined #meego16:52
*** Gibba has quit IRC16:53
*** fnordianslip has joined #meego16:54
*** piggz_ has quit IRC16:56
*** mardy has joined #meego16:56
*** amjad has joined #meego16:56
*** RhymeswAlbert has joined #meego16:57
*** mardy has quit IRC17:01
*** jeansch has joined #meego17:01
*** timoph|away is now known as timoph17:01
*** mardy has joined #meego17:01
*** pinheiro has quit IRC17:03
*** Kompo has quit IRC17:04
*** mardy has quit IRC17:06
*** mardy has joined #meego17:07
*** tzy has joined #meego17:10
*** calvaris has quit IRC17:11
*** mardy has quit IRC17:11
*** pinheiro has joined #meego17:12
*** mardy has joined #meego17:12
*** iberlynx has joined #meego17:12
*** tzy has quit IRC17:13
*** tzy has joined #meego17:13
*** tzy has joined #meego17:13
*** ctusar has joined #meego17:16
*** mardy has quit IRC17:16
*** TheVirtualVortex has quit IRC17:16
*** sheepbat has joined #meego17:17
*** mardy has joined #meego17:18
*** fredy has joined #meego17:18
*** Eiskis has joined #meego17:19
*** CosmoHill has joined #meego17:19
*** slaine has quit IRC17:20
*** carloscesa has joined #meego17:21
*** RhymeswAlbert has left #meego17:22
*** dvoid has joined #meego17:22
*** mardy has quit IRC17:22
CosmoHillanyone know how to run a whole GUI remotely17:22
CosmoHilllike instead of running firefox over ssh, i can run the whole desktop?17:23
*** mardy has joined #meego17:23
ScottishDuckVNC17:24
*** slaine has joined #meego17:26
*** mardy has quit IRC17:27
*** pinheiro has quit IRC17:27
vljthere is no -march=atom in src.rpm for meego 1.0 ???17:28
*** mardy has joined #meego17:28
vljho sorry I found them17:28
*** kko_ has quit IRC17:30
*** DawnFoster has joined #meego17:31
Stskeepsmorn dawn17:31
DawnFostermorning stskeeps17:31
DawnFosteror evening - ok, I haven't had tea yet :)17:31
Stskeepsuniversal greeting time should probably be in irc guidelines too ;)17:32
*** mardy has quit IRC17:33
*** mardy has joined #meego17:34
*** ismael has quit IRC17:37
*** ismael has joined #meego17:37
*** HuuGo has joined #meego17:37
*** smoku has quit IRC17:38
*** mardy has quit IRC17:38
*** mardy has joined #meego17:39
*** h4xordood has joined #meego17:39
*** h4xordood has left #meego17:39
*** pinheiro has joined #meego17:39
*** wdreamer has joined #meego17:41
*** zutesmog has quit IRC17:44
*** mardy has quit IRC17:44
*** mardy has joined #meego17:44
*** smoku has joined #meego17:45
*** tommim has quit IRC17:45
CosmoHillhmm17:45
CosmoHillit would seem I've kinda been banned from the network :/17:46
th0br0huh?17:47
th0br0which network?17:47
CosmoHilluni17:47
th0br0why's that? your lab?17:47
*** marja has quit IRC17:47
CosmoHillit's cos I did a port scan17:47
th0br0and they detected that?17:48
CosmoHillyep17:48
*** glunardi has joined #meego17:48
th0br0you scanned the whole network?17:48
*** mardy has quit IRC17:49
CosmoHillnope17:49
CosmoHilljust my server to see if VNC was open17:49
th0br0then why did they ban you from the network? a self-scan is perfectly legal17:49
*** mardy has joined #meego17:50
CosmoHillduno17:50
CosmoHillit's scripted17:50
th0br0and most importantly, how did they notice that this quickly...17:50
th0br0scripted mmh17:50
CosmoHillwhat's funny is that even ban you from the page saying you've been banned17:50
CosmoHilland my switch sounds like it's grinding metal :/17:50
CosmoHillseems I can't open any new connections but I can keep the ones I have17:51
*** pcacjr_ has joined #meego17:52
*** pinheiro has quit IRC17:52
CosmoHillI think what I'll do now is shut down my stuff and move to another lab17:53
CosmoHillbut first I'll ask the tech about my switch17:53
th0br0lol17:53
*** Alam has joined #meego17:54
*** piggz__ has quit IRC17:54
th0br0your it sucks :P17:54
*** mardy has quit IRC17:54
*** DawnFoster has quit IRC17:54
*** DawnFoster has joined #meego17:55
*** mardy has joined #meego17:55
*** luist has quit IRC17:56
CosmoHillhe says I have a magical touch17:56
*** dneary has joined #meego17:57
th0br0how so?17:58
th0br0besides, did you scan just a specific port?17:58
CosmoHillhe's implying that I break things17:58
*** infobot has joined #meego17:58
th0br0ask him what you broke?17:58
*** mitsutaka has quit IRC17:58
th0br0or do you really tend to do that17:58
th0br0oh. your switch.17:58
CosmoHillthe latter :(17:58
*** vanadis has quit IRC18:00
*** mardy has quit IRC18:00
*** mardy has joined #meego18:00
*** smoku has left #meego18:02
*** mitsutaka has joined #meego18:02
*** luist has joined #meego18:02
*** bergie has quit IRC18:03
*** leinir has quit IRC18:03
*** eggonlea has quit IRC18:04
*** mardy has quit IRC18:05
*** mardy has joined #meego18:05
*** ab is now known as ab[out]18:06
*** dvoid has quit IRC18:07
*** mardy has quit IRC18:07
*** armika has quit IRC18:08
*** pinheiro has joined #meego18:08
*** MoRpHeUz has quit IRC18:08
*** armika has joined #meego18:09
* CosmoHill packs up and moves :(18:10
CosmoHillI basically walk up and down the hall with computers on a chair18:10
*** jlamadon has quit IRC18:11
*** MacDrunk has quit IRC18:12
*** DeuX has quit IRC18:14
*** mardy has joined #meego18:16
*** MostafaDaneshvar has joined #meego18:16
*** MacDrunk has joined #meego18:17
*** rescbr has joined #meego18:17
*** pvdm has quit IRC18:17
*** timoph is now known as timoph|away18:18
*** DeuX has joined #meego18:21
*** mardy has quit IRC18:21
*** mardy has joined #meego18:21
th0br0bbl.18:23
vljali1234: did you write the list of package that contains ssse3 code ?18:23
ali1234yes18:23
vljcan you put it on the wiki ? :)18:24
*** SWFu has quit IRC18:24
ali1234for which version?18:24
vlj1.0.118:25
*** mardy has quit IRC18:26
ali1234vlj: http://pastebin.com/ZtqwBtzQ18:26
vljthx18:26
ali1234in short, glibc is the only package in 1.0.118:27
*** mardy has joined #meego18:27
*** vlj has quit IRC18:29
*** mardy has quit IRC18:31
*** dwmw2_gone is now known as dwmw218:31
*** townxelliot has quit IRC18:34
*** MacDrunk has quit IRC18:36
CosmoHillI can't believe that apart from the monitors and computers, that the whole cluster stuff fits into one box18:37
*** mardy has joined #meego18:38
*** efleury has quit IRC18:38
*** Dr_Who has joined #meego18:41
*** mardy has quit IRC18:42
CosmoHillbye bye .o/18:43
*** CosmoHill has quit IRC18:43
*** Tili has quit IRC18:45
*** amjad has quit IRC18:45
Myrttiprocrastination'r'us. Not that I had anything better to do than to make myself a forum avatar...18:46
MyrttiDOH.18:46
*** Vanadis has joined #meego18:46
*** Alam has quit IRC18:47
Myrttiand yes, it's pink.18:47
*** Dr_Who has quit IRC18:47
*** mker has joined #meego18:47
*** mardy has joined #meego18:48
*** Erkan_Yilmaz has joined #meego18:49
*** t3rm1n4l has quit IRC18:50
*** whitewine has joined #meego18:50
*** mker has quit IRC18:51
*** mardy has quit IRC18:52
GAN900Myrtti, we'd worry about you if it weren't.18:53
*** mardy has joined #meego18:54
*** slonopotamus has joined #meego18:54
Myrtti18:54
*** slonopotamus_ has joined #meego18:57
*** slonopotamus has quit IRC18:57
*** slonopotamus_ is now known as slonopotamus18:57
*** mardy has quit IRC18:58
*** gabor has quit IRC19:00
*** sandman_ has quit IRC19:02
*** murrayc has joined #meego19:03
*** townxelliot has joined #meego19:05
*** guardian has quit IRC19:06
*** CosmoHill has joined #meego19:07
*** efleury has joined #meego19:09
*** thopiekar has quit IRC19:10
*** Thierry__ has quit IRC19:12
*** mlfoster has joined #meego19:15
*** arfoll has quit IRC19:15
*** arkub has quit IRC19:15
*** csdb has joined #meego19:15
*** wasikevin has joined #meego19:17
*** wasikevin has quit IRC19:18
*** GAN900 has quit IRC19:18
*** amjad has joined #meego19:18
*** luist has quit IRC19:19
*** GeneralAntilles has quit IRC19:19
*** danielwilms has quit IRC19:20
*** danielwilms has joined #meego19:20
*** lbt has quit IRC19:20
*** mardy has joined #meego19:20
*** lokesh has quit IRC19:20
*** cmarcelo has joined #meego19:22
*** mardy has quit IRC19:25
*** slonopotamus has quit IRC19:30
*** mardy has joined #meego19:31
*** tmikola has joined #meego19:31
*** Armi^ has joined #meego19:32
*** juliank has joined #meego19:32
*** mikhas has joined #meego19:33
*** bergie has joined #meego19:34
*** mardy has quit IRC19:35
*** mardy has joined #meego19:36
*** tmikola has quit IRC19:38
*** MoRpHeUz has joined #meego19:40
*** danielwilms has quit IRC19:41
*** mardy has quit IRC19:41
*** Moku has quit IRC19:42
*** wasikevin has joined #meego19:45
*** dailylinux has joined #meego19:45
*** ysyrota has quit IRC19:45
*** wasikevin has quit IRC19:45
*** mardy has joined #meego19:47
*** Tili has joined #meego19:47
*** h4xordood has joined #meego19:50
*** mardy has quit IRC19:51
*** ColKilkenny has quit IRC19:55
*** ColKilkenny has joined #meego19:56
*** mardy has joined #meego19:58
*** efleury has quit IRC19:59
*** githogori has joined #meego19:59
*** bef0rd has joined #meego20:02
*** mardy has quit IRC20:02
*** h4xordood has quit IRC20:05
*** ismael has quit IRC20:05
*** ismael has joined #meego20:07
*** fcrozat is now known as fcrozat|gone20:08
*** mardy has joined #meego20:08
*** lbt_ is now known as lbt20:09
CosmoHilldoes meego have sdl?20:10
*** bergie has quit IRC20:10
*** efleury has joined #meego20:11
*** dneary has quit IRC20:11
*** linuxdaily has joined #meego20:11
*** dailylinux has quit IRC20:12
*** mardy has quit IRC20:13
*** mardy has joined #meego20:14
amjadbuilding netbook-mtf image20:14
slaineCosmoHill: it should do yes20:14
*** townxelliot has quit IRC20:15
CosmoHillcool20:15
*** mikhailz has quit IRC20:15
*** lauri has quit IRC20:16
CosmoHillnow how do I put openttd into an RPM :)20:16
*** pavank10 has quit IRC20:16
*** MoRpHeUz has quit IRC20:17
*** MoRpHeUz_ has joined #meego20:17
*** pcacjr_ has quit IRC20:18
*** mardy has quit IRC20:18
*** mardy has joined #meego20:19
*** Moku has joined #meego20:19
*** hhartz has quit IRC20:20
amjadopenttd has .deb??20:21
CosmoHillnot as far as I know20:22
CosmoHillI looked on their website and they have generic tarballs for i68620:22
amjadis this what you are looking at??20:23
amjadhttp://www.openttd.org/en/download-stable20:23
LoCusF_alien perhaps?20:23
*** mardy has quit IRC20:24
amjadyes thats what i was getting to , alien20:24
*** tchan has quit IRC20:24
LoCusF_or just check out the dir structure of the binaries and do a spec based on them20:24
CosmoHilloh i see them now]20:24
*** mardy has joined #meego20:24
*** manju has quit IRC20:26
*** linuxdaily has quit IRC20:27
*** mitsutaka has quit IRC20:29
*** mardy has quit IRC20:29
*** tchan has joined #meego20:29
*** mardy has joined #meego20:30
*** dailylinux has joined #meego20:31
*** cmarcelo_ has joined #meego20:32
*** cmarcelo has quit IRC20:32
*** pcacjr_ has joined #meego20:33
*** mardy has quit IRC20:34
*** mardy has joined #meego20:35
*** cmarcelo_ has quit IRC20:36
*** tackat has quit IRC20:38
*** bef0rd has quit IRC20:39
*** mardy has quit IRC20:39
*** _BuBU has quit IRC20:41
*** slaine has quit IRC20:42
*** mardy has joined #meego20:46
*** luist has joined #meego20:46
*** theopensourcerer has left #meego20:46
*** efleury has quit IRC20:47
*** andredieb has joined #meego20:48
*** luist_ has joined #meego20:49
*** mardy has quit IRC20:50
*** carloscesa has quit IRC20:50
*** mardy has joined #meego20:51
*** pvdm has joined #meego20:51
*** leinir has joined #meego20:52
*** luist has quit IRC20:52
*** luist_ is now known as luist20:52
*** felipec has quit IRC20:53
*** florian has quit IRC20:54
*** mardy has quit IRC20:55
*** leinir has quit IRC20:56
*** leinir has joined #meego20:56
*** amjad has quit IRC20:59
*** mardy has joined #meego21:01
*** cmarcelo has joined #meego21:04
*** cmarcelo has joined #meego21:04
*** mimic has joined #meego21:06
*** DrHalan has joined #meego21:06
*** mardy has quit IRC21:06
*** mimic is now known as elkippy21:06
elkippyhi21:06
DrHalanhey, anoyne using meego on the n900 here?21:06
*** mardy has joined #meego21:07
*** cmarcelo_ has joined #meego21:08
*** cmarcelo has quit IRC21:08
CosmoHillDrHalan: yes but I'm not one of them21:08
DrHalanCosmoHill: do you know what they experienced? is it useable. are there major features still missing?21:09
*** DrHalan has left #meego21:09
CosmoHillsorry I'm not up to date with that21:09
*** DrHalan has joined #meego21:09
CosmoHillwell screw you21:09
CosmoHilleep you came back21:09
DrHalan^^21:09
CosmoHillsorry I'm not up to date with that21:09
DrHalanno problem21:09
DrHalanjust curious21:10
CosmoHillI don't know if phone calls are possible yet21:10
*** efleury has joined #meego21:10
*** toniher has joined #meego21:11
*** tealbird has joined #meego21:11
*** carloscesa has joined #meego21:11
*** mardy has quit IRC21:11
*** Savago has joined #meego21:11
*** Saviq is now known as Saviq_afk21:12
*** schend has joined #meego21:12
*** DrIDK has joined #meego21:12
*** mardy has joined #meego21:12
*** fredy has quit IRC21:13
*** luist_ has joined #meego21:13
*** fredy has joined #meego21:14
*** luist has quit IRC21:15
*** luist_ is now known as luist21:15
th0br0CosmoHill: i think they are21:16
th0br0at least placing / receiving calls21:16
*** slonopotamus has joined #meego21:17
*** mardy has quit IRC21:17
DrHalanmh do you guys know what maemo uses for im? is it telepathy? if so i wonder how the skype support was made21:17
RST38hit is telepathy21:18
*** DrIDK has quit IRC21:18
*** fredy has quit IRC21:19
*** fredy has joined #meego21:19
*** MoRpHeUz_ is now known as MoRpHeUz21:21
*** ninan_ has joined #meego21:22
*** ninan has quit IRC21:23
*** richieeee72 has joined #meego21:25
*** kkszysiu has quit IRC21:34
JaffaDrHalan: Skype wrote telepathy and libosso-abook integration.21:35
*** luist has quit IRC21:35
*** lcuk2 has joined #meego21:36
JaffaDrHalan: A Skype bloke was talking about it at Maem Summit 200921:36
*** lcukn901 has joined #meego21:36
*** lcukn900 has quit IRC21:38
*** lcuk has quit IRC21:38
*** mardy has joined #meego21:38
*** lcuk2 is now known as lcuk21:39
*** lcuk has quit IRC21:39
*** lcuk has joined #meego21:39
*** tackat has joined #meego21:40
*** TomaszD has joined #meego21:40
*** lcukn901 has quit IRC21:41
*** Saviq_afk is now known as Saviq21:41
*** lcukn900 has joined #meego21:41
*** mlfoster has quit IRC21:42
*** luist has joined #meego21:42
*** luist has quit IRC21:42
*** mardy has quit IRC21:43
*** mairas has joined #meego21:43
*** efleury has quit IRC21:44
*** lmoura__ has quit IRC21:45
*** efleury has joined #meego21:45
*** lmoura has joined #meego21:45
*** rescbr has quit IRC21:47
*** rescbr has joined #meego21:48
*** iberlynx has quit IRC21:52
*** mardy has joined #meego21:54
elkippyhey is anyone aware of how meego rund on the samsung n140?21:55
elkippyruns*21:55
CosmoHillis it on the supported hardware list?21:55
slonopotamusaccidentally?21:56
slonopotamus:P21:56
*** pcacjr_ has quit IRC21:57
*** miksuh has quit IRC21:57
*** miksuh has joined #meego21:57
*** TomaszD has quit IRC21:58
CosmoHill?21:59
sivuhmmm... obs repository is stuck in status "outdated(building)"21:59
*** Flanbix_- has joined #meego21:59
sivueven tho no packages are building21:59
*** mardy has quit IRC21:59
*** tzy has quit IRC21:59
sivuand every package in project shows "finished (recalculating)"22:00
*** efleury has quit IRC22:00
*** felipec has joined #meego22:01
sivuah.. scheduler had died22:01
elkippyoh i dont think so, but it has an atom22:02
elkippyis there a definitive list somewhere?22:02
*** mitsutaka has joined #meego22:02
vgradeCosmoHill, that was funny22:03
* CosmoHill is confused22:04
*** juliank has quit IRC22:04
vgradeyour reply, screw you :)22:04
CosmoHill:)22:04
CosmoHillnormally people don't come back in when I do that22:05
*** mardy has joined #meego22:05
vgradewe should log that one for the MeeGo greeters22:05
*** niala has joined #meego22:05
CosmoHillhttp://www.daimi.au.dk/~cvm/data/irssistats.aug.html << see my random quoet22:06
CosmoHillit makes no sense without context22:06
CosmoHill(and because it's me, it might even make sense with contexts)22:06
*** sar3th is now known as sar3th|away22:06
vgradedo we have the Cambridge 4 yet22:08
CosmoHillno idea22:08
*** Flanbix_- has quit IRC22:09
*** mardy has quit IRC22:09
CosmoHillsee what we have on the forums22:09
*** Flanbix_- has joined #meego22:10
*** mardy has joined #meego22:10
*** cyborg-one has quit IRC22:11
*** mardy has quit IRC22:11
*** efleury has joined #meego22:11
*** cyborg-one has joined #meego22:13
*** Mat_Matan is now known as zimna_wodka22:13
*** zimna_wodka is now known as Mat_Matan22:13
DrHalanlol i thought there would be dozends of people here using meego on a cellphone22:14
*** Tili has quit IRC22:15
*** hurewitz has quit IRC22:15
CosmoHillthey're exspensive tho22:17
*** abstract4d has joined #meego22:17
DrHalanbought my n900 on ebay for 300 euros. its not that much imo22:18
ali1234but you can't actually use it yet22:19
DrHalanwell i am using maemo its just awesome22:19
DrHalani was wondering how far the development of meego is22:19
DrHalanmaemo's multitasking is nice22:20
mikhasI'd say it's more than nice22:21
*** mardy has joined #meego22:21
DrHalani was wondering if the the gui is running in an x server22:21
ali1234the last system i had that didn't have multitasking was a C6422:22
DrHalanxD22:22
ali1234so i find it kind of hard to get excited about that22:22
DrHalanwell its the first cellphone with real multitaksing fo rme22:22
DrHalanand the first mobile devic ethat has some kind of composition manager running22:25
*** murrayc has quit IRC22:26
*** Armi^ has quit IRC22:27
*** richieeee72 has left #meego22:27
*** lcukn900 has quit IRC22:28
*** DawnFoster has quit IRC22:28
*** abstract4d is now known as abstract3d_22:30
*** lauro has joined #meego22:33
vgradeCosmoHill, I think we have a quorum for the Cambridge group22:34
*** jrocha has quit IRC22:34
*** bleeter_ has joined #meego22:35
*** pohly has quit IRC22:36
CosmoHillvgrade: cool22:36
CosmoHillnow you'd need a location22:36
CosmoHilli know the ARU is in cambridge and you might be able to get a room there if you uneed one22:37
vgradeARU22:37
*** bleeter has quit IRC22:38
*** bleeter_ is now known as bleeter22:38
*** elkippy has quit IRC22:38
CosmoHillAnglia Ruskin University22:38
vgradedo you know anyone there?22:39
CosmoHillI'm at the Chelmsford campus22:40
*** mirr0r has quit IRC22:40
*** mirr0r has joined #meego22:40
DrHalanmh22:41
DrHalanmeego 1.1 is supposed to be released in october the homepage says. i guess ill wait until then to try it out22:41
th0br0CosmoHill: your in cambridge?22:41
*** kulve has quit IRC22:41
CosmoHillno, chelmsford22:41
DrHalanthough i reall ylike to use bleeding edge stuff22:41
th0br0is that close?22:41
*** zuh has quit IRC22:41
CosmoHill50 miles i think22:41
th0br0k22:42
th0br0ever been to oxford?22:42
CosmoHillnope22:42
CosmoHillI've been cambridge once22:42
th0br0k22:42
CosmoHillI think I was 1622:46
*** killeus has quit IRC22:46
CosmoHillwait, 1722:46
*** _BuBU has joined #meego22:46
DrHalani am looking for a blog entry or test report about running meego on the n90022:51
DrHalancant find anyhting :(22:52
Stskeepswiki.meego.com has a fair bunch22:52
Stskeepsunder QA22:52
DrHalantahnks22:53
DrHalanbut form the videos meegos design looks worse than maemo... maybe i don't upgrade at all22:53
*** toniher has quit IRC22:54
* lbt curses (initramfs) $22:54
Stskeepswhat crashed now?22:54
lbtI'm upgrading ... :)22:54
*** paulliu has quit IRC22:55
lbtnew machines, new disks, new raid arrays22:55
Stskeepsah22:55
CosmoHillyay22:55
* Stskeeps pats his zfs install22:55
lbtyeah... "it should work"... "hmmm"22:55
Stskeepsforgot it exists at times22:55
Stskeeps:P22:55
* lbt coughs "opensolaris"22:55
lbtand giggles...22:55
Stskeepssure, but it just works22:56
Stskeeps:P22:56
Stskeepsdoes exactly what i need it to22:56
lbtwoo... it got bored waiting for rootfs to appear22:56
lbtyeah... I know... sometimes...22:56
*** abstract3d_ is now known as abstract3d22:56
CosmoHillno more open solaris >.<22:56
Stskeepswell, minus that i don't have it using the LEDs on the front panel, but solaris kernel driver programming..22:56
*** whitewine has quit IRC22:56
Stskeepshttp://www.amazon.com/Intel-Entry-Storage-System-SS4200-E/dp/B0012J0MYW <- my favourite intel product22:57
*** pvdm has quit IRC22:59
CosmoHillis it good or bad that todays home servers are yesterday's home computers?22:59
Stskeepsit's typical22:59
Stskeeps:P22:59
lbthmm not on .co.uk23:00
CosmoHillmy server was my home computer :)23:00
lbtbut I saw it last time23:00
lbtit is very nice23:00
Stskeepsproduct is discontinued now23:00
th0br0pretty sweet, Stskeeps23:01
*** dspeed has left #meego23:01
Stskeeps(it allows serial access if you wire it up and has upgradable ram.)23:01
Stskeepsand own booting, so it qualified as a hackable device ;)23:02
CosmoHillhttp://kustompcs.co.uk/acatalog/info_1201.html23:02
Stskeepsdoesn't look gf friendly23:03
CosmoHillthe hell's a gf?23:03
Stskeepsgirlfriend23:03
*** lsm5 has joined #meego23:03
CosmoHillyou missed the joke23:03
*** lsm5 has quit IRC23:03
Stskeepsprobably23:03
Stskeeps:P23:03
ShadowJKand that intel thing is?23:03
StskeepsShadowJK: url above23:04
ShadowJKand that intel thing is gf friendly?23:04
Stskeepssure, it's pretty soundless and doesn't look horrible23:04
Stskeepsand fairly minimal23:04
*** DawnFoster has joined #meego23:04
CosmoHillStskeeps: if you add some straps it would look like a handbag23:05
Stskeepshehe23:05
Stskeeps:P23:05
ShadowJKI think I've heard all the variants of aesthetics installing fibreoptics into people's houses by onw..23:05
*** lsm5 has joined #meego23:06
CosmoHillhow about this; http://kustompcs.co.uk/acatalog/info_1023.html23:06
ShadowJKOne guy had his cable going up to the roof, and down into a room through the ceiling, running ontop of a painting and a wallclock on the white ceiling. He concluded "This will be awesome once I paint the room matte black like the cable"23:06
Stskeepsi'm fairly happy me and my wife are both kinda minimalists.. more 'clean' rooms23:07
Stskeepsmade it easier to move countries, too :P23:07
CosmoHillShadowJK: my friend got ethernet in this room, his room is white and the cable is blue >.<23:07
ShadowJKjust paint the room blue23:07
ShadowJKthat's what I did23:07
ShadowJK(and then my cables turned out to be gray=23:08
ShadowJK)23:08
Stskeepsi gave up trying to put words on colors beyond the basic ones..23:08
CosmoHilllol23:08
lbthttp://www.novatech.co.uk/novatech/prods/components/cases/cases/LianLi/PC-B71B.html23:08
CosmoHillnice23:09
lbtit is gorgeous23:09
lbtso nicely engineered23:10
CosmoHillhttp://kustompcs.co.uk/acatalog/info_1442.html23:10
CosmoHillLian Li are nice but out of my budget :(23:10
CosmoHillI have one of there 2 cd drive bays to 3 hard drives adapters23:10
CosmoHillstupid thing sticks out the front of the case >.<23:10
CosmoHillwait, my link would be a useless server23:11
ShadowJKI'm not sure I want aluminium23:11
lbtShadowJK: you do23:11
*** MoRpHeUz_ has joined #meego23:11
lbtmuch better heat xfer23:12
*** MoRpHeUz has quit IRC23:12
lbtmuch nicer than a crappy steel one23:12
CosmoHillStskeeps: does your gf life anime?23:12
CosmoHill*like23:12
CosmoHillhttp://black-flag.co.uk/files/server.jpg23:12
StskeepsCosmoHill: not like i do23:13
CosmoHillin that case the link is for you, not her23:13
Stskeepsheh :P23:14
*** kulve has joined #meego23:14
CosmoHillI decorated it when it was my desktop case incase anyone is wondering why I have a pretty server23:15
ShadowJKlbt, but noisier since it's lighter?23:16
CosmoHillhttp://black-flag.co.uk/files/server.jpg anime sever ftw23:16
CosmoHillcrap wrong window23:16
ShadowJKThis heat transfer thing is like some sort of scam anyway. My Q9550 is perfectly happy inside my tripple-layer insulated Antec P182 case..23:16
CosmoHillShadowJK: i think it depends on the construction23:16
lbtShadowJK: Lian Li are pretty solid...23:16
CosmoHillmy steel server rattles and wobbles cos it bends23:16
lbthow do I make /dev/disk/by-uuid appear? udevadm trigger should create it....23:17
*** MostafaDaneshvar has quit IRC23:17
*** MoRpHeUz_ has quit IRC23:19
*** Vanadis has quit IRC23:20
CosmoHillever wondered how you make a hamster disapear?23:23
CosmoHillsimple: http://black-flag.co.uk/files/toffelaptop.jpg23:24
CosmoHillslam that laptop shut23:24
*** schend has quit IRC23:25
*** niala has quit IRC23:26
*** cmarcelo_ has quit IRC23:29
th0br0CosmoHill: so you like animuh?23:29
CosmoHillyes23:29
th0br0:D23:29
th0br0mh, i think we had this discussion in the past.23:30
CosmoHillmaybe23:30
CosmoHillI wonder if the local meego meeting will turn into an anime club :/23:30
th0br0;P the local meego meeting? you seem to have high anticipations23:31
ScottishDuckSayonara Zetsubou Sensei23:31
CosmoHill*by local I mean within 55 miles23:31
th0br0ah ok23:31
*** guardian has joined #meego23:32
*** mlfoster has joined #meego23:33
*** mairas has quit IRC23:33
kyb3Ronly 11 days to our first local meego meeting at Tampere :) Yay!23:35
*** TSCHAK has quit IRC23:35
th0br0:) wish we had sth like that going here.23:35
ShadowJKkyb3R, many people coming?23:36
kyb3R7 confirmed and 3 maybe23:36
th0br0sweet23:38
kyb3Rand 15 members in the network23:38
th0br0how many related to nokia?23:38
kyb3Rhaven't counted ;)23:38
th0br0:P23:38
*** carloscesa has quit IRC23:38
*** armika has quit IRC23:39
kyb3Ri would say, about 1/3 is somehow related to nokia, a guess23:39
th0br0ok23:40
*** ismael has quit IRC23:40
CosmoHillhow many of which own nokias?23:40
Stskeepsin finland, probably many..23:41
Stskeeps:P23:41
th0br0:D23:41
kyb3R:)23:42
ShadowJKor samsungs :P23:43
vgradeCosmoHill, just sent begging letter to ARM in Cambridge, for meeting space, I'll post it on the forum23:43
CosmoHillcool23:44
* CosmoHill curses qgil23:44
kyb3R?23:44
*** sheepbat has quit IRC23:44
*** armika has joined #meego23:45
CosmoHillI knew if I posted on the forums people would put me in charge23:45
*** Flanbix_- has quit IRC23:47
*** guardian has quit IRC23:47
kyb3Rmight be a stupid question, but could qgil be labelled as BDFL in Meego community?23:47
Stskeepsno23:47
Stskeepsthat's TSG23:47
Stskeepsquim has a nominated role within the CO, afaik23:48
kyb3Rok23:48
mikhaswhenever I read TSG, I wonder why I never heard about that TV series. And then I remember what it really means.23:48
*** TSCHAK has joined #meego23:52
*** baraujo has quit IRC23:52
*** ragner has quit IRC23:52
*** lizardo has quit IRC23:53
*** tackat has quit IRC23:53
*** TSCHAK has quit IRC23:54
*** xnt14 has quit IRC23:55
*** TSCHAK has joined #meego23:56
*** xnt14 has joined #meego23:56
*** zs has quit IRC23:56
*** xnt14 has quit IRC23:57
*** rodarvus_ has joined #meego23:57
*** sheepbat has joined #meego23:59
*** rodarvus has quit IRC23:59

Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!