IRC log of #europython for Wednesday, 2008-07-16

*** Aiste has quit IRC00:01
*** lenscape_ has quit IRC02:05
*** MrTopf has quit IRC02:06
*** MrTopf has joined #europython02:06
*** MrTopf has quit IRC02:08
*** MrTopf has joined #europython02:09
*** MrTopf has quit IRC02:27
*** lenscape_ has joined #europython08:55
*** ccm|mac has quit IRC09:03
*** ccm|mac has joined #europython09:18
*** sverrej has quit IRC10:42
*** MrTopf has joined #europython11:03
*** sverrej has joined #europython11:09
*** sverrej has quit IRC11:23
*** Sharebear has joined #europython12:41
*** edgarsj has left #europython13:18
*** menesis has joined #europython14:44
*** Aiste has joined #europython15:04
avnhi Aiste15:10
*** regebro has joined #europython15:15
*** mgedmin has joined #europython15:25
avnmgedmin: "good morning" ? ;)15:45
* mgedmin croaks15:45
tobixenmorning?  what timezone are you in? ;-)15:51
*** menesis has quit IRC15:51
tobixen(or how many beers did you drink yesterday?)15:51
*** Aiste has quit IRC15:55
*** menesis has joined #europython15:57
*** Sharebear has quit IRC16:39
MrTopfWe are on the frontpage of http://slideshare.net17:05
Tvso is a hummingbird with music..17:12
dboddie_Yes, but the hummingbird is clearly trying so hard to be on the front page. :-)17:14
*** povbot` has joined #europython17:21
*** pboddie has joined #europython17:23
MrTopfwell, we hopefully stay longer in our top spot there than the bird ;-)17:23
pboddieReal Estate 2.0?17:24
pboddie2.0 == bubble?17:24
MrTopfI wonder if this is some conference :)17:27
MrTopfif so they wouldn't have to worry about what to discuss17:27
MrTopfthe one on there with 7000+ views is a somewhat awful presentation17:28
mgedminwhich one is that?17:29
*** povbot has quit IRC17:37
MrTopfthe second one in the real estate one17:38
MrTopfreal estate spotlight17:38
dboddie_MrTopf: Still, they managed to get you to view it, so mission accomplished there, I think. ;-)17:40
MrTopfwell, but I don't buy it ;-)17:45
MrTopfand as I understand this is some template. So if anybody wants to sell me a house with this, then good bye ;-)17:45
MrTopfin other news I am not using iMovie to do the videos17:46
MrTopfyou can look in the old location for a new version of the cocos one17:46
MrTopfthis one is a little bit problematic anyway though because of lighting conditions and small fonts17:46
pboddieI'll try and take a look later on.17:47
MrTopfnow I am trying the whole day to do video #2 ;-)17:48
MrTopfIf I wouldn't have mistyped the right dimensions it would be finished now17:48
MrTopfbut now it needs to render again for it's 90 mins17:48
*** sverrej has joined #europython18:31
*** Aiste has joined #europython18:48
*** sverrej has quit IRC19:06
*** Aiste has quit IRC19:07
*** ccm|mac has quit IRC19:30
*** HenrikV has joined #europython19:38
HenrikVdid anyone make a summary on the file system effort?19:39
Tvi should19:40
Tvi've been a bit too braindead -- storm fronts always do that to me19:41
Tvdays spent fighting a headache :(19:41
*** sverrej has joined #europython19:42
*** ccm|mac has joined #europython19:44
*** pboddie has quit IRC19:49
*** MrTopf has quit IRC20:07
*** menesis has quit IRC20:20
tobixenHenrikV: http://eagain.net/gitweb/?p=fs.git20:22
tobixenWe've made an API for communicating with file-system-alike structures, and we've made an implementation for the local fs plus for an in-memory file system20:23
tobixenthere are still some few things missing, though ... like symbolic links, modes, ownership, etc20:23
HenrikVSuper cool20:24
tobixenInterfaces for FTP and tarfiles are being worked on20:25
HenrikVTv, does drinking lots of water help? Also stay off coffee/tea20:25
*** regebro has left #europython20:25
tobixenI'm planning to maybe start up writing a PEP and raise some awareness on the newsgroup/mailinglist20:26
HenrikVI think it would be perfect for Python 3.1 track20:27
*** sverrej_ has joined #europython20:38
*** sverrej has quit IRC20:49
*** emilis_info has quit IRC20:56
*** emilis_info has joined #europython21:00
Tvtobixen: oh btw, your __eq__ etc class is broken21:10
tobixencan you prove it? ;-)21:11
Tvtobixen: it thinks it any two things inheriting that class that are u'/' are equal21:11
Tveven when one might be e.g. remote21:11
tobixenhm21:11
Tvyou changed the isinstance from Path to the mixin class21:11
Tvself.__class__ would be better, but that makes subclasses equal Paths, which isn't automatically so21:12
tobixenIIRC I thought two objects to be equal if their root and pathname is the same21:12
Tvif they're both Paths21:13
Tvin this case, they're equal if they happen to use the utility methods21:13
tobixenif they would be different file systems, the roots would be different21:14
Tvi'm not sure what the root thing is, honestly21:15
Tvwhy does it need it? what's the use?21:16
tobixento identify what file system an object belongs to ... the problem is that when I moved the self._pathname logics to a mixin class I could no longer test if self.other is a (_localfs).path or not21:18
tobixenthat move was strictly not needed for the in-memory fs anyway ... I rethought it a bit.21:19
Tvexactly21:19
Tvyou're moving "what class am i compatible with" to an attribute21:19
Tvi think that's broken, ugly and wrong ;)21:19
tobixenI also thought that self.root could be used for security tests ... i.e. one could add a .chroot()-method later on21:19
Tvdoesn't belong in base fs api21:20
Tvi'm also less than happy about .mkdir()s new boolean args21:20
Tvyou're forcing every single fs to implement both of them21:20
tobixenhm21:20
Tvwhen a utility function could solve the problem for all fs's, not pushing implementation to all of them21:20
tobixenyou do have a valid point.  I did have to duplicate two lines of code, and I was not happy with it21:21
Tvfs.util.maybe_mkdir, fs.util.mkdir_parents, or something21:21
Tvmaybe change the self.root thing to if type(self) is not type(other): return NotImplemented ?21:22
tobixenbut it should be simple to use ... if simple operations requires a utility library to be imported, it will be more difficult to use21:22
Tvscrew subclasses, for now; it's safer to assume they are not comparable21:22
Tvtobixen: well how about class MyFS(object): maybe_mkdir = fs.util.maybe_mkdir21:23
Tvtobixen: or just splitting the functionality to different functions, providing yet another mixin21:24
Tvwith the idea that you only need to define mkdir21:24
tobixenI'd feel more comfortable with the mixin.21:24
Tvfs'es should be easy to write, too -- not just easy to use21:24
Tvsure, whatever floats the boat, as long as it's not kludgy21:24
Tvbut that means we're piling a bunch of "additional crap" into these classes most of them will not want to override21:25
Tvi think that's a bad architecture21:25
Tvi'd be happier with a simple core, no extra methods making a mess of the namespace21:25
Tvbut maybe that would require an vfs-style layer :(21:25
Tvpersonally, i don't think fs.util.maybe_mkdir(p) is all that bad21:26
tobixenI think it's pretty bad ;-)21:27
Tvi'd trade towards making filesystems simpler21:27
Tvlike, my ideal is that a new fs is <100 lines of python, not inheriting anything21:27
tobixenyou really don't like inheritation? :-)21:28
Tvi don't believe in all fses sharing a common base21:28
tobixenI think a proper object should come with "batteries included".  But it may as well be a wrapper class21:28
Tvif you force that, there will be ugly hacks to get around self._pathname etc21:29
Tvthink of it this way:21:29
Tvfile-like objects don't all inherit file (or basefile)21:29
tobixenI'm not at all enforcing subclasses to use self._pathname.  I even found that I didn't want it in the inmem fs :-)21:29
Tvsequence-like objects don't all inherit some sequence class21:29
tobixenfile-like objects does have quite many methods that can be implemented using other of the methods21:30
Tvbut most of the time you only really need the .read() and .close() quacking21:31
tobixenHm21:31
tobixenhttp://www.python.org/dev/peps/pep-3116/21:31
Tvdoes that pep talk at all about how you'd actually use that thing?-o21:32
Tvare you just supposed to inherit some default implementation of the two higher level interfaces, if you implement the raw level?21:33
Tvif so, i don't really see the point of splitting it in three layers21:34
Tvwhen the topmost two are pretty much unchangeable21:34
Tvor is it supposed to be rawio + bufferedwrapper + textwrapper?21:35
Tv"buffer is a reference to the BufferedIOBase object to be wrapped with the TextIOWrapper."21:35
Tvaha21:35
Tvwrapping21:35
tobixenwrapping is possible for us, too21:36
Tvwhere the more abstract layer has the less abstract as an attribute21:36
Tvsure, but then it will wrap all .child etc call results too21:36
Tvgets silly way faster21:36
Tvthink of .walk()21:36
Tvthe amount of extra objects created and destroyed21:36
Tvwhich is why i'm willing to type fs.util.maybe_mkdir(p)21:37
tobixenWe have only two file systems so far.  I think we should implement at least one more, and discuss design issues based on our experiences21:38
Tvor fs.util.copy(src, dst), instead of src.copy(dst)21:38
Tvi don't want to push convenience methods into every filesystem21:39
Tvsure, i should be writing gitfs right now..21:39
*** mgedmin has quit IRC22:14
zethHello All22:27
tobixen/nick All22:29
tobixenHello zeth! ;-)22:29
zethHow are you doing?22:30
tobixentjah22:30
tobixenI have a big backlog of work that needs to be done, and no motivation for doing it22:31
zethI know how you feel22:31
zethI have been distracting myself by trying to work out the PyConUK schedule a bit22:32
zethbut it seems too early still maybe22:32
zethwe don't have all the talks in yet22:32
zethI am cornering people for talks now22:33
tobixenSomeone should go there and talk about our file system library ;-)22:34
zethyou should!22:35
* tobixen ducks22:35
tobixenwhen is it going to be anyway?22:35
zeth12th to 14th September 200822:35
zeth12th is tutorial and warm up day22:36
tobixenI somehow doubt my employer would send me to PyConUK ... and chances are we'll be in Beijing at that time anyway.  But, after all, Stansted is the only sensible international destination we have from our home airport ...22:36
zethwell Stansted <> Birmingham I do all the time22:37
zethI go on the cheap coach22:37
zethbut there is trains also22:37
tobixenI'd rather hitch.  I just took an "eurolines lux" from Riga to Tallinn ... but it was really "eurolines sux"22:37
zeththe coach goes through the countryside, but it is direct so I just fall alseep or do work22:38
zethcool22:38
zethI really like Tallin22:38
zethI prefered Tallin to Vilnius22:38
* zeth ducks22:38
tobixenThey were supposed to have fresh newspapers, free coffee, toilet, TV-entertainment, internet and electricity on the bus.  Two points - they did have electricity and the toilet probably worked22:38
zethI think the British National express has power22:39
Tvelectricity in the toilet seat for the occupant, entertainment for the rest22:39
tobixenTallinn is spelled with two n's, and the Estonians are quite picky on it.  ;-)22:39
Tvand internet for the resulting video22:39
tobixenThey were supposed to have Internet on some British buses also.  We were trailing a bus on the highway while I tried to figure out by google earth when we rented a car in England earlier this year22:39
zethlol22:40
tobixenbut the internet connection didn't work at that bus either.  :-(22:40
zeth   3G card22:40
tobixenso we got lost :D22:40
zethis the way to travel22:40
Tv3g is pretty poor on the road22:40
Tvhopping from station to station too fast to keep up22:40
tobixenbut it's anyway only 3g in the bus22:41
tobixenI had UMTS through my telephone - but then I started replacing my phone abroad every time it got stolen or driven over by a bus22:41
zethright okay, normally I take the 12:40 am Stansted to Bham, so I just sleep anyhow22:42
zeththere is normally a cheap flight from helsinki to stansted, but all the trains have finished22:42
tobixenit seems that the access point settings should be configured on the telephone itself, so buying a telephone abroad, internet through the telephone through my norwegian provider doesn't work anymore22:42
Tvtobixen: but that's only settings22:43
tobixenI've called and emailed and nagged both on customer service and in the shop, but all they could help me with was to get MMS working.  Googling also didn't help.  I dunno ... it's weird22:43
tobixenAnyway, I somehow enjoy spending my time searching for open wifi's and trailing wifi buses on the highway ;-)22:44
zethyeah, I went on a tour once with someone who can do that kismet stuf22:45
zethhe doesn't really want the internet, he just likes breaking them22:45
zethkids hey22:45
Tvall the illegality without any of the benefits22:45
zethyeah, really weird22:46
zethI just have enough to do without Internet22:46
zethif I plan ahead I can fill my computer full of stuff22:46
Tveuropython made me realize how addicted i am to ubiquitous 3g on phone22:46
zethI also puts all the docs I ever need in /usr/share/doc22:47
Tvim, maps, web browsing...22:47
zethso tommi, since you are here, fancy an autumn mini-break in the UK ;)22:49
Tvpyconuk?22:51
zethyup22:51
Tvi actually don't know much about the uk variant22:51
Tvi've seen plenty of ep and one pycon us22:52
zethI didn't mean the lake district ;)22:52
Tvnot convinced either way, currently -- plan is to move to US in october, so it may be a hectic time22:52
Tvbut i should talk about some projects22:52
zethso PyconUK is a bit different to europython, bit the same22:52
zeththe conference venue is not hotel22:52
zethit is a music college22:52
zethin the historic(ish) centre of bham22:53
tobixenep was in CERN two years ago :-)22:53
zethdead centre of town22:53
zethit has a cafe like bit in the middle the same22:53
Tvhehe missed talk submission deadline already22:53
zeththe parties are organised centrally22:53
zeththe talks deadline was a bit optimistic22:53
Tvyeah22:54
Tvzeth: if you want me yammering about fs api and something else, i might actually do that22:54
zethplease do!22:54
Tvi don't really fly for less than two talks ;)22:54
zethsure22:54
zethdo one on one day and one the next ;)22:54
Tvbut i like hallways a lot, too, so it isn't always an organized one22:55
zethor do both on the first day, while you are sober22:55
zethBritish Python people drink a bit22:55
zethyou might have guessed22:55
Tvlet's see, at ep i had.. two talks, lightning talk, fs open space, twisted qabofwtfbbq, another twisted gathering mostly about greenlets where i got invited to and answered some questions, and the fs sprint22:56
zeththe atmosphere is slightly more informal because the venue is closer together22:56
zethand because the main but is at a weekend22:56
zethso the delegates are a bit more diverse22:56
zethand because the main *bit* is at a weekend22:57
zethtoo many bits and buts ;)22:57
Tvso two days, really?22:57
zethso basically only maybe 1/3 or 1/4 will be professional Python people22:57
zethothers will be programmers in other languages22:57
zethor people in other parts of IT22:57
Tvah22:58
zethor people not in IT at all22:58
zeththat is how we got more than Europython just in UK22:58
Tvweird audience for a python conference22:58
Tvi loved the linux-kongresses i went to -- wide background but deeply technical people22:58
zethlike we had one talk from a Police Inspector22:58
zethso the main part of the conference is sat and sun22:59
zeththis year the first event is on Thursday22:59
zetha pub night, mostly the crew and people who did set up22:59
zeththey are the ones there early23:00
zethFriday is tutorials and little informal groups doing stuf23:00
zethf23:00
zethSat and Sun are main days23:00
zeththen we have sprint rooms available on Mon-tue23:00
zeththere is a pub night or dinner every night of course23:00
zethnot sure how else to describe it really23:01
Tv"England".23:01
zethwell we have lots of welsh people23:02
zethand some scots and ireland23:02
zethnot too many from abroad23:02
zeththis year we have three americans coming over23:02
zethlast year we had Christian Tismer and maybe another german or two23:03
zeththe first year we did not tell anyone else abroad about it because we did not want people choosing PyConUK over Europython23:03
zethnow it doesn't matter so much as there is no Europython until next year23:04
Tvhehe23:04
zethand that is in England too23:04
Tvwhich reminds me23:04
Tvwhat was that comment about something else happening close by near that time?23:04
Tvsomebody said something at ep23:04
zethwhich time?23:04
Tvnear pycon uk23:05
zethwell last year there was a Munich Python day at the same time which we tried but failed to link up via video23:05
zethwe didn't have MrTopf23:05
Tvmaybe it was just web2.0 expo, for the yanks23:06
Tvstop at NYC on the way back23:06
zethpass, not sure23:06
Tvor linux kernel summit23:06
Tvdunno23:06
zethI didn't hear anything about it23:06
zethlast year people some went to PyConUK on the way to Kernel summit23:07
zethBirmingham to Oxford is pretty short journey23:07
zethyeah kernel summit is after PyConUK23:09
zethif he is going to both, you could maybe ride in Shuttleworth's jet ;)23:09
Tvyeah not going to the US before Oct23:10
Tvdon't want any extra trouble with visa23:10
zethwell it is easy to come to the UK23:10
zethwe have not left the EU yet ;)23:10
tobixenyet? ;-)23:11
tobixenyou're anyway not in schengen and not in euro-zone and after all a quite isolated country ;-)23:11
Tvyeah not in schengen is pretty much the only real thing in travel23:12
Tveu isn't much easier than rest of the civilized world; schengen is the easy area23:12
Tv(and yes, US is not part of the civilized world..)23:13
tobixenI was travelling through London/Essex quite much this year already due to that line we have to Stansted now.  And last year I went to Ireland and Glasgow.23:13
tobixenThere was very short queues and very little trouble23:13
tobixenMy wife even got through the security control in Glasgow with two knifes in her handbag23:13
tobixenbut when I went through Stansted some weeks ago it was horrible, like 45 minutes queue time for passport control on the way in23:14
Tvlet me put it this way23:14
tobixenand maybe 30 minutes queue time for security control on the way out (of England)23:14
Tvi've been to the US quite a bit23:14
Tvi've never queued under 30 minutes23:14
Tvfor pure immigration only23:14
Tvplus all the other queue points23:14
tobixenI've been once, and it went relatively smooth - but that was before they demolished the WTC23:15
* xorAxAx had 2 journeys to the us, both under 15 min. immigration queue waiting times23:15
xorAxAx(that was JFK and SFO respectively)23:15
Tvtobixen: that was a different country23:15
tobixenthough, I was a bit shocked that they asked me: "what are you going to do in the US?".  That was first time ever I got such a question, and it felt like a private matter :-)23:15
Tvi've seen jfk enough many times to know when the renovation process makes progress, and they change the corridors23:15
tobixenthings were so much easier before the security crazyness23:16
Tvtobixen: ah before .eu, .fi border guards did the same -- easy to pick out the nervous ones23:16
* xorAxAx remembers the day when he was allowed to look into the cockpit as a child :)23:16
xorAxAxno doors in between23:16
tobixenhey, my child was allowed to look into the cockpit just some weeks ago23:16
xorAxAxhmm23:17
tobixenand it's not that long time ago since some asylum seeker went nuts trying to chop up the pilot with an axe in a Norwegian small passenger plane ...23:17
zeththe security is crap23:18
tobixenbut I'm most amazed that my wife was allowed to board in Glasgow with two knifes in her handbag.  One of them was the swiss army knife, it had been in that bag for ages and several flights23:18
zethall just a show23:18
Tvmy favorite security theater story23:19
Tvone time i made the security gate beep23:19
Tvrealized i still had a phone in my pocket23:19
xorAxAxzeth: yeah, i like the tsa comedy group23:19
tobixenonly once?  It beeps on 10% on passengers regardless of whether they have metal on them or not23:19
Tvtook it out, handed it to the guard, said "oh it was probably this"23:19
xorAxAxand how they screen your face, marking some wierd hieroglyphs on your ticket23:19
Tvguard took phone, went to put it on the x-ray, and let me go23:19
Tvso23:19
tobixenheh23:20
Tvif you test positive23:20
zethyeah sounds about right23:20
Tvas long as you have *some* metal, it's alright23:20
zeththe metal in your bones or something23:20
zethor it can't tell the difference23:20
zethin my bag coming back from Europython I took out one laptop23:20
Tvnaah, just remember: if you're carrying a gun, have something innocent too23:20
tobixenTv: sorry to say, but that was an exception.  They are instructed to check you physically - and due to the 10%-thing you are not allowed to go through the scanner again23:20
zethleft the other in23:20
zethnothing23:20
Tvtobixen: it wasn't really an exception, it was more a magician/con-man confidence trick23:21
zethAlso I had a pretty scary set of wires23:21
Tvi didn't mean to do it23:21
Tvbut i realized my timing hit him perfectly23:21
zethA UK plug with a european adapter on the end, perfect ball and chain weapon23:21
tobixenwhen I went to the US, I had a car battery with me to power the laptop.  It really looked like a bomb.  And I was allowed to board with it :-)23:21
Tvjust when he was about to say something, i offered the phone (distracted) and said that it was probably that (these are not the droids you are looking for)23:21
xorAxAxnow try that again with a mustache, tobixen23:21
xorAxAxumm, Tv23:21
zethor strangle the cabin crew with the cord23:21
tobixenyes, cords are excellent for strangling.  I've thought of it23:21
Tvtobixen: uh, big batteries are not allowed on board, even in luggage23:22
zethI almost always forget to take out the liquids23:22
tobixenLearnt that from the James Bond films ;-)23:22
tobixenTv: this was before WTC fell down, remember :-)23:22
zeththe funny thing is, you are allowed smoking stuff such as lighter or matches23:22
Tvtobixen: heh, that rule is actually more about minimizing accidental damage23:22
zethand they sell you scotch and vodka the other side of security23:22
tobixenNot so long ago my child ran through the metal detector with a rucksack on his back ... of course it beeped like crazy, but noone bothered to stop him :-)23:22
Tvtobixen: burning LiIon is not your friend..23:22
zethall you need is one of those little hand soap bottles23:23
tobixenyep, laptop battery _is_ explosive23:23
zeththat my Finnish wife carries everywhere23:23
tobixenand it's fairly trivial to trigger it23:23
Tvzeth: tobacco industry has good lobbyists23:23
zeththat would be thinkening agent23:23
zethstick the soap in the vodka23:23
zethadd a piece of clothing23:23
zethworked for the Finns in the winter war23:23
tobixenbut vodka contains 60% of water, that's quite a lot.23:24
zethtwenty of those in a plane23:24
tobixenI don't think they are allowed to sell strong spirits in the tax free?23:24
zethwell you would certainly need a lot of thickening agent to get it to light at all23:25
zethI think it would be easier and simplier to take over a plane while it is on the runway23:27
zethstart by stealing a suitable vehicle from track side23:28
zethdrive up to the plane23:28
zethtake off23:28
zethYou need a pilot23:28
zethbut not sure if the airline can disable the plane in software remotely?23:29
zethactually that is even better23:29
zethat night, install rootkit on plane23:29
tobixenwhen I was in the military, we all had guns and it was walking distance to the civilian part of the airport.  No fences.  I was thinking more than one time about how easy it would be to take over an airplane ...23:33
zethI suppose motivation is important23:35
zethwhat would you do with it then?23:35
zethdid you hear the thing about the British train stations?:23:36
tobixenno?23:36
zethThey brought in sniffer dogs to sniff for explosives, but they are not allowed to sniff Muslims as dogs are unclean in their religion23:37
tobixenlol23:37
zethI read an article by Bruce Schiender once23:38
zethwhere he explained that profiling is the only thing that works23:38
zethbut it is socially unacceptable23:38
xorAxAxsupported by a lot of surveillance?23:38
zethso they do all this nonsense instead23:38
xorAxAxor how would profiling work without?23:39
zethwith surveillance in the sense of being prepared yes23:40
zethprofile the customers from booking all the way onto the plane23:40
zethbut again you are several million times more likely to be killed in the cab to the airport23:41
zethand no one cares about car crashes23:41
zethso by playing this security show game we have lost23:42
*** MrTopf has joined #europython23:43
zethnot that this has anything to do with Python in Europe23:43
zethunless we can flog them better systems23:43
zethmore dynamic and flexible23:43
xorAxAxso obviously we should start collecting more data and evaluate it better?23:43
xorAxAxa bit like google? wasnt there this eff short story where google does the immigration services for the us23:44
zethWell, imagine it was the British Empire for the moment23:44
zethif they bombed a bus, we would destroy mecca or something23:44
MrTopfHey zeth, xorAxAx23:44
zethwe don't play that game any more23:44
MrTopfI should post 1-2 videos to the blog23:44
xorAxAxi am not loyal to the queen, so thats probably even worse23:44
zethhi MrTopf23:44
zethsince we don't want to play war23:44
zethwe should buy them off23:44
xorAxAxwhich game?23:45
zeththe crusade game23:45
tobixenhm ... googling "google immigration service" doesn't show up anything useful ;-)23:45
zethMaybe like mediveal times, Prince William should do his bit and marry Osama bin Laden's niece23:46
zethMrTopf: wow you have videos done already?23:46
MrTopfzeth: 2 ;-)23:46
zethcool23:46
xorAxAxtobixen: let me google for it :)23:46
MrTopfit of course turned out to be annoying ;-)23:46
MrTopfthe right tools are simply missing23:46
MrTopfI spend one day on trying to automate things like creating intros23:47
tobixenso on next python spring the proper tools should be developed? ;-)23:47
MrTopfthen I noticed that AppleScript sux big time and that Apple has not documented their APXL language properly23:47
MrTopftobixen: well, I wouldn't mind some startup which does a proper video platform23:47
zethMrTopf: I have no control over the blog, that is a pboddie thing23:48
MrTopfI have control over it ;-)23:48
MrTopfit's more about encoding videos what I am annoyed by23:48
MrTopfand things like iMovie, Keynote and so on23:48
MrTopfbut wordpress.com might not allow flash embeds for those videos23:48
MrTopfso I will put in links23:48
zethWhat about Flumotion, does that do it>23:49
zeth?23:49
xorAxAxtobixen: http://www.radaronline.com/from-the-magazine/2007/09/google_fiction_evil_dangerous_surveillance_control_1.php23:49
xorAxAxtobixen: wasnt even eff23:49
zethI know nothing about video23:49
MrTopfzeth: well, I wanted nice looking intros.. flumotion might be good for converting but then again I also would need to learn more about it23:49
MrTopfI should have asked at EuroPython directly ;-)23:49
xorAxAxoh, he is an EFF member23:49
zethbut something called flumotion was used at GUADEC for something once23:49
MrTopfand forced Thomas to do the conversion stuff ;-)23:49
MrTopfanyway, it seems iMovie is doing it for now23:50
MrTopfat least I have some workflow23:50
MrTopfand not 500MB files23:50
MrTopfit just takes it's 90-150 minutes per video to render23:50
xorAxAxMrTopf: did you look at fefes c3 workflow?23:50
MrTopfno23:50
MrTopfdo you have a link23:50
zethcan we have .ogg videos, or some kind of format I can play on my laptop?23:50
MrTopfI am not sure it's applicable though23:51
MrTopfzeth: if you convert it.. ;-)23:51
zethi.e. when on the road23:51
MrTopfI am just doign what iMovie can do23:51
zethwhat format are they in .flv ?23:51
MrTopfmov and flv23:51
zethmov is okay23:51
MrTopfbut with AAC and H26423:51
zethactually flv probably is playable offline23:51
MrTopfI guess it is23:51
zethoh right, so I can put it on my video ipod ;)23:52
zethThat my wife won at a conference23:52
MrTopfyes, I should buy the pro option of blip.tv for a month23:52
MrTopfthen it also produces ipod compatible versions23:52
zethit has the word Google lasered on the back23:52
xorAxAxMrTopf: http://ftp.stw-bonn.de/pub/24C3/matroska/24c3-2250-de-abschlussbericht_fem.mkv23:52
MrTopfxorAxAx: thanks23:53
zethwell on my Linux computer, it makes me ipod video compatible things, but as I said, I know nothing about video23:53
MrTopfeven on Linux nowadays such things should play ;-)23:53
MrTopfand if somebody in the community complains I would have a job for that person ;-)23:53
MrTopfconverting it is actually just running some script23:54
MrTopfit just might take some time23:54
MrTopfand uploading again somewhere of course23:54
zetheverything plays on Linux in Europe, we have no software patents23:54
MrTopfbut even this can be handled if the script is on some server already23:54
zethor not enforcable software patents23:54
zethin US, it is a bit dodgy many media formats on Linux23:54
zethbut technically it works23:54
zeththe european patent office gives out software patents in violation of EU law23:55
zethand in violation of British law23:55
zethbut no one stops it23:55
zethbut the patents it gives out cannot be enforced23:56
zethso you can play any format in Europe23:56
zethMrTopf: out of interest, what are the two talks?23:56
zethand MrTopf are you free in september 12-14th? We could do with media help in PyconUK23:57
MrTopfcocos2d, the game engine and django newforms-admin23:57
MrTopfI am going on vacation on 16th I think so I guess that won't work23:57
MrTopfbut doing video is not hard so I'd think everybody can do it23:58
MrTopfjust use ustream.tv if the network is good23:58
MrTopfthen you don't even need to upload it later as it directly records it23:58
MrTopfand usage is very simple23:58

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