[00:11] As I can sync contacts ubuntu one with thunderbird in ubuntu 12.04? === zyga_ is now known as zyga === daker__ is now known as daker [11:04] good morning [11:08] gatox, morning! [11:09] mandel, hi! how are you? [11:09] gatox, good, done with some of the reseach about the fs events.. do you know why we have never considered kqueue? [11:11] mandel, no idea... i saw that long time ago when i was researching fs events for ninja.... but only a quick peek [11:12] gatox, hm.. ok I'm sending a long email to ubunet-discuss, canonical-tech and us (as in people working on the mac) with all the things I have looked at [11:12] mandel, good [11:13] mandel, i talk with alecu yesterday.... as soon as i have something to show here, i'm going to send you (alecu, you and mmcc) the branch, with the explanation of why i did everything, so we can discuss how to improve it, what need to be changed, and so.... [11:14] gatox, how is he doing? [11:14] gatox, I mean alecu :) [11:14] mandel, he seems fine.... he went to google circus yesterday :P [11:15] mandel, and he was really excited with qml [11:15] gatox, hahaha lucky him! [11:26] gatox, boring email sent, can you take a look at it and let me know if I forgot anything? [11:26] mandel, ack..... reading..... [11:28] gatox, I have a feeling that kernel qs is a better idea that reading from the fsevents io.. but I'm not sure.. [12:34] gatox, I'm off to have lunch [12:35] * mandel lunch [12:37] mandel, ack [12:54] good morning [12:54] ralsina, hi [12:54] hi gatox, how are you? [12:54] ralsina, fine.... trying to fix some api things in fs-notif.... to see if i can start with the tests (it's a lot of codeee... i need to test it) [12:55] gatox: cool [12:55] ralsina, you? [12:55] gatox: fine, finally slept 7 hours last night, so better than the last few days [12:55] gatox: for one reason or another I have been sleeping 3-4 hours since saturday [12:56] ralsina, why weren't you able to sleep? [12:56] gatox: well, on saturday I arrived hone at 3:30 from the pyday :-) [12:56] ralsina, the excitment of the pyday :P [12:56] then a family thing on sunday, then my sleep patters were just gone to hell [12:57] ralsina, i hate when that happens...... because you TRY to sleep.... and it's even worse! [12:57] yeah [12:58] so I spent all yesterday trying not to sleep and crashed at 10PM, and woke up today at 5:30, so not that bad [12:58] and tonight it should be ok [13:00] ralsina, the next time you can't sleep, you should go to the hoyts in DOT... it's like be sitting in heaven! jeejjeee so relaxing! [13:01] it's an expensive nap, though ;-) [13:01] or buy a chair like that! [13:01] jeje [13:18] I would need to buy another living room [13:42] morning folks… [13:42] mmcc, hi [13:42] * mandel back [13:42] hey, my schedule this morning is a little weird - I need to take lunch a little early so I'm popping in early [13:43] hi mandel, I saw your note earlier about kqueue - it's good for small things, but you need an open file descriptor for each file you need to monitor, so for our purposes we'd run out of file descriptors [13:43] mmcc, ralsina, gatox, so, what do we use for fs events? (did you read the mail? [13:43] potentially [13:43] I haven't read the mail yet, sorry [13:44] mmcc, yes, that is a problem we currently have with inotify too [13:44] mandel, i vote to give it a try to kqueue..... [13:44] * mmcc fires up his VM to read the email [13:44] …and the VM crashed [13:45] mandel: did [13:45] mmcc: no, we don't run out of file descriptors on inotify we run out of watches [13:45] anyone: I am getting a test failure on ussoc trunk on test_after_timeout_cache_expires [13:45] ralsina, what's the limit on watches? [13:46] mmcc: like 2048 IIRC [13:46] this seems familiar to anyone ? https://pastebin.canonical.com/65732/ [13:47] ralsina, which is similar in the way that you need one per directory [13:47] ralsina: interesting. that's really low… [13:47] mmcc: ha, mine are set to 524288 I suspect I will not run out ;-) [13:47] mmcc: if you have an ubuntu near, read /proc/sys/fs/inotify/max_user_watches [13:47] I just checked 'ulimit -n' on my osx box and got 'unlimited' [13:47] ralsina, I have seen that problem before, why is it happening? [13:48] mandel: not the slightlest idea, I am fixing a completely unrelated thing [13:48] mandel: I intend to submit and not care unless tarmac tells me to [13:48] mmcc, in mine I get ulimit -n: 256 [13:48] mmcc: ulimit -n is 1024 on ubuntu by default, it seems [13:49] ralsina, which distro, and what bug? if you changed something in weblcient it might be the reasons [13:49] my 12.04 ubuntu has 8192 for max watches [13:49] s/reasons/reason [13:49] mandel: ubuntu, I am just tweaking QApplication parameters to add a -testability for elopio [13:49] ralsina, weird.. if you want I can try in mine [13:49] mmcc: I suspect I may have ran into the limit and kicked it a bit higher [13:49] mandel: please [13:50] mandel: if it's just my box, I will ignore it [13:50] mmcc, ralsina, match number of watches in mine is 8192 [13:50] ralsina, that is why I offered a diff machine :) [13:50] mandel: my branch: lp:~ralsina/ubuntu-sso-client/testability [13:51] ralsina: interesting. so what do we do now when we run out of inotify watches? [13:51] if the answer is read the email, ok [13:51] mmcc: we get a support request ;-) [13:51] mmcc: but in order to get that, you need to be syncing 2000 folders, which is unusual [13:51] mmcc, ralsina, we can ask facundobatista, what happens when we run out of watches? [13:51] mandel: it logs an error [13:52] mandel, we stop watching [13:52] hmmmm ubuntu doesn't have a useful "man ulimit" and I ever remember what option is what. [13:52] oh, the watches are only for directories… ok. what about the files? I was under the impression that inotify gave us per-file events? [13:52] http://ss64.com/bash/ulimit.html ralsina [13:52] mmcc: yes, but you only set watches on folders [13:52] I had the dame problem [13:52] same [13:53] I had dame problems but then I got married [13:53] ralsina, mmcc, I'm inclined towards kqs just to avoid the need to run a daemon with root that does that stuff [13:53] if not, we can do the idea of make the daemon listen to a unix domain per user to ensure that we do not let people be evil [13:53] mandel: using a lot of FDs is evil [13:53] mandel: we may make the session crash if we starve other processes that need them [13:54] ralsina: is there really a global pool of fds? this kind of thing is different on different systems [13:54] * mandel is surprised that file systems are not better written.. they seemed easy at uni [13:54] over on solaris I once wrote a program that opened many tens of thousands of files, that was ok [13:54] mmcc: at least on ubuntu, IIRC there is a limit per-user [13:54] mmcc: no idea on OSX [13:54] ralsina: ok, I'll look into that [13:54] ok, no it's per process [13:55] and there is a per-system limit "in some operating systems". Thanks for nothing internet! [13:56] one thought I had a while ago was using kqueue to watch the N files in the most recently changed folders, and fsevents for the rest [13:57] a little complicated but might be the best of both worlds - speed for people with small folders or lots of unused data, and just runs slower if you abuse it with lots of files that change a lot [13:58] it is appealing to avoid a root daemon. the amount of work to do that the officially recommended OS X way is kind of high. I have an email drafted about this that I'll send in a bit [13:58] mmcc: kqueue doesn't require root? [13:59] ralsina: uh, maybe it does [13:59] * mmcc goes to check [13:59] ralsina, mmcc, no, they don't I've tested that already [13:59] ralsina, mmcc, I downloaded and ran the example app (one of the links in the email) and worked straight away [13:59] that is the only thing I have towards them, not root needed [14:00] mandel ralsina, I thought so - I wrote a hacky program to use kqueue to run tests when source changed once, years ago: http://michael-mccracken.net/2009/09/stakeout-info/ I didn't think it required root [14:00] mmcc: cool then [14:02] mmcc, how hard is it to tell launchd (by the way ralsina, is a much better way to launch user daemons/activities over our current approach in sso) to use several unix domain sockets? [14:02] mandel, not hard, you give it a list [14:03] a launchd daemon is an executable and a .plist metadata file that tells the launchd daemon how & when to start (and optionally kill) it [14:03] mandel: there are tons of things we do that could be done better if we had an infinite amount of time ;-) [14:03] so I meant you give it a list in the metadata file [14:04] mmcc, so, my idea would be, using the root daemon, to use a domain socket per user and update that list per new user that wants to use u1 [14:04] mmcc, that way when we get a whitelist we know where it is coming from and can do some security checks, what do you think? [14:06] mandel, I'm not sure if we need one named socket per user. If doing that means we need to change the metadata for the launchd daemon, then it won't work with code signing [14:06] the metadata gets signed with the executable, so if you change it afterwards, launchd will refuse to run it [14:07] mmcc, dammed.. cause I read and read about launchd and if is is a daemon and not an activity (that is a user daemon, right) there is no way lauchd can help us with that.. :( [14:08] right, a "launchd activity" would be appropriate for eg. the SSO stuff, but the fsevents daemon needs to run in system context, as a "launchd daemon" [14:09] there's a way to do this, I'm sure… a root daemon that needs to know which user it's talking to can't be an unexpected use case [14:09] mmcc, I cannot find any docs about it.. [14:10] mandel, at this level, there's a gap in the docs. sometimes you need to read through their code samples === zyga_ is now known as zyga [14:11] mmcc, I'll be reading the entire daemon docs and hope I missed something [14:11] and in some cases if it's well-documented stuff in BSD or POSIX, apple won't have bothered to write new docs about it, or even really point you to the right stuff [14:12] so if the answer is "oh yeah, it's the same on all unixes, just read the man page for accept() or socket() or whatever," then you won't find that in Apple's docs. [14:12] the man pages are all there, but their tech writers assume that if you need to look at them, you already have. or something [14:16] mandel, we need to read over 'man 2 accept' and the SEE ALSOs in there :) [14:17] lets see.. [14:17] * mandel looks [14:18] ralsina: windows 3.0.0 release is live [14:18] \o/ [14:18] \o/ |o| /o/ /o\ [14:18] That was the YMCA dance [14:19] * ralsina is happy [14:19] awesome! [14:20] ok guys, I have to duck out for a bit, call it an early lunch. [14:20] I think I will probably miss the standup, so : [14:20] DONE: lots of research on launchd, code signing, IPC protocols, etc [14:20] TODO: more of the same [14:20] BLCK: no [14:25] mmcc, ralsina, from the apple docs: http://paste.ubuntu.com/977950/ [14:25] gatox, ^ [14:26] * gatox reading... [14:26] ralsina, running your branch: http://paste.ubuntu.com/977952/ [14:28] mandel, just read that. that's OK because we don't need to use the window server [14:29] the 'dedicated user' thing is still a good idea, but since that makes it hard to do drag-to-install, apple made the SMJobBless API that interacts with code signing and launchd [14:31] look at this readme from the relevant sample code: https://developer.apple.com/library/mac/#samplecode/SMJobBless/Listings/ReadMe_txt.html [14:31] and now I am going again… [14:31] * gatox starts with filesystem_notifications tests..... === zyga is now known as zyga-afk [14:58] team, standup in 2' [14:59] mandel: oops, forgot to push [14:59] ralsina, np [14:59] mandel: could you try now? [15:00] me [15:00] me [15:01] me [15:01] thisfred: standup [15:02] mandel: stndup [15:02] me [15:02] ok, mandel is last [15:02] gatox: go [15:02] me [15:02] DONE: [15:02] Finish with filesystem_notifications/darwin.py, some reviews, starting with tests for filesystem_notifications on MAC OS. [15:02] TODO: [15:02] Check filesystem notifications implementation in MAC OS (tests), Fix: Bug #995146, Bug #996025. Include run-mac-tests on u1-client [15:02] BLOCKED: [15:02] No [15:02] Launchpad bug 995146 in Ubuntu One Control Panel "File sync status is incorrect: it reports "File Sync Disabled" but syncdaemon is happy and IDLE" [High,Triaged] https://launchpad.net/bugs/995146 [15:02] Launchpad bug 996025 in Ubuntu Single Sign On Client "NetworkDetectionPage is not being used" [High,Triaged] https://launchpad.net/bugs/996025 [15:02] ralsina, go [15:02] DONE: canonicaladmin sweep, couple of 1-1s, working on a bug for elopio TODO: finish that bug, start another one, doctor's appointment BLOCKED: no NEXT briancurtin [15:02] DONE: installer automation, 1-1, pushed on the installer upload and it was completed this morning [15:02] TODO: switch to embed our own copy of the CRT rather than including and running vcredist.exe [15:02] BLOCKED: None [15:02] NEXT: thisfred [15:02] also TODO: dr. appt at 1300 my time [15:03] DONE: get u1todo ready for workshop [15:03] TODO: last minute fixes if any [15:03] BLOCKED: no [15:03] NEXT: mandel [15:03] DONE: research, think about fs events and the diff approaches. [15:03] TODO: Do a small demo of how we could deal with using a root daemon. [15:03] BLOCKED: no, but problem is hard. [15:06] hola! [15:07] alecu, buenas [15:08] gatox: did I just missed the standup? [15:09] * alecu should go downstairs to get a better internet connection. [15:11] alecu, yep [15:11] alecu: yes you did, but you are exempt [15:11] alecu: rule is, you are in UDS, be in UDS [15:11] * gatox lunch... === gatox is now known as gatox_lunch [15:12] gatox, ralsina: I know I'm except, but I really wanted to listen to it. [15:12] ralsina, mandel's mail from this morning is awesome. [15:12] alecu: I can pastebin if you want [15:12] (my morning at least) [15:12] alecu: yeah, when he thinks before writing stuff, it usually is :-) [15:12] ralsina, don't worry: I'll get it from irclogs.ubuntu.com [15:12] ralsina, lols [15:13] * alecu should also get some breakfast before sessions begin. [15:13] ralsina, gatox: I'll try to be in tomorrow's mumble [15:14] ralsina, you mean when I have time to think ;) [15:14] mandel, oh, hi! [15:14] alecu, hola! how was the circus? [15:15] * mandel misses one uds in 2 years and they get a circus, wtf?! [15:15] mandel, my gripe with kqueue is that afaik we have to keep an open file descriptor per file and folder that we are watching. [15:15] mandel, it was circus + minigolf. [15:16] alecu, yes, that is an issue.. which is a problem if we reach the limit and if that limit is set for the user [15:16] mandel, you would have loved the circus. They had a really tall guy in a tight blue latex bunny suit. [15:17] alecu, lol [15:17] mandel, there were also a lot of nice ladies in oldish outfits, but you'd really liked the bunny man. [15:17] alecu, I would have loved it indeed, the bunny man I mean.. hehe [15:18] mandel, I'm pretty sure pictures will pop up of geeks playing minigolf while circus ladies distracted them. [15:18] alecu, the concern I have with the unix domain socket is the security, one thing we could do is to ask the connecting client to give us a token/cookie that we can only acquire [15:18] alecu, lol dmedia posted a number, well jason [15:19] cool :-) [15:20] mandel, so, a cookie sounds interesting, and we do that for tcp connections in the proxy tunnel, since there's no other way to do it. [15:20] mandel, but for unix domain sockets there are other ways... [15:20] alecu, tell me, tell me [15:20] mandel, like having the root daemon creating the socket in a directory owned by the user with 0600 permissions [15:21] mandel, perhaps in the user's .cache folder. [15:21] mandel, oh, and back to kqueue [15:21] alecu, and we create on for each user? that was my idea wondering if we can use launchd.plist to provide a list of users, but it is not the case [15:22] alecu, we would have to create them per user, which is a little ugly [15:22] mandel, I've no idea about launchd, but I love the fact that you now do :-) [15:22] mandel, per user is fine, I think. [15:23] alecu, he, give me a circus with a guy dressed as a bunny and I'd happily forget it [15:23] alecu, well, per user is not ubber terrible since we do not expect to have 20 users in a laptop or imac [15:23] mandel, right [15:24] alecu, ok, I'll try to write a small example that does that and see what happens [15:24] mandel, and in any case, users that are not logged in will not get any packets in those UDSs, since their files won't be touched. right? [15:25] mandel, also: I think the root daemon should send no packets at all until it's requested by one syncdaemon to start watching a given folder. [15:25] alecu, yes, unless we start supporting things out of $HOME, but that is someones problem atm [15:25] (or recursive folder, even better) [15:25] mandel, well.... right. But we probably want to support stuff out of HOME only when that stuff is owned by the user that started syncdaemon. [15:26] alecu, yes.. I'll do a quick mock and we can see how well it works with several users, might be ready by late tom for us to test [15:26] I'm getting ahead of my head. We should first of it all define what we want to do with out of HOME stuff, and then see how we fit it for all OSs [15:27] mandel, so, let's not worry about out of HOME for the mac port until we are worrying about that for every OS. [15:27] mandel, one last thing. [15:27] alecu: we need to have a design meeting or that when yu are back from UDS [15:27] mandel, regarding kqueue: [15:27] mandel, I'm not saying we should rule out kqueue: we should run some experiments with it too [15:28] mandel, afaik, there's a kqueue reactor that runs ok on mac, so it might be an easier solution. [15:28] alecu, yes, I've seen that in the twisted docs, but we need to test it, it might happen the same as the IOCPReactor [15:29] mandel, I only gave it a quick look, but we surely should look at it in a more deeper way. [15:29] is there, doesn't work [15:40] guyas, launchd creates the socket for you - our root daemon doesn't call socket(), it gets the file descriptor for an already open socket from launchd when it does a "checkin" through launchd's api [15:40] s/guyas/guys [15:41] so, we tell launchd ahead of time in an info.plist (that we have to code-sign with our certificate) which sockets to creatte [15:41] so, I don't think one per user will work with launchd. [15:41] but you *can* get a connection per user, on the single socket. [15:42] might want to look at how mysql does it - it has a single socket at /tmp/mysql.sock, but I'm guessing it manages to do so securely [15:43] mmcc: it uses its own auth system internally [15:43] mmcc: you have to send/get credentials over that socket [15:44] Ah ok. [15:44] mmcc: so, we may do something like a cookie system. The user has to create a cookie file in his $HOME and send the right data over the socket, then the daemon verifies that the user got it from that (secure) file [15:54] ralsina, mmcc, the other idea is to let our daemon to create several sockets, one per user under xdg cache.. I wonder if lancudh allows to do that.. [16:01] Mandel I dont think it will. It wants to create all our sockets for us. [16:01] mmcc, greedy launchd... [16:01] So it can start us on demand and kill us at will [16:03] mmcc_phone, can he? uh.. [16:05] revert the socket. Make the client start one and just send a message 'connect to user blah's socket' [16:06] a-la ftp active mode [16:07] we can inhibit killing. I only mentioned it because it it one reason launchd wants control pf your sockets [16:08] Ralsina hmmm interesting. But it seems like it shouldnt be this hard right? We ought to be able [16:08] mmcc: yes [16:08] To find out what user we connected to when we accept() [16:09] Thats all we need [16:09] * mmcc_phone is sure its in the manpages somewhere but they are not on his phone [16:09] mmcc_phone, ralsina, yes the server can try to connect and request the whitelist of dirs intead of the otherway around === gatox_lunch is now known as gatox === salgado is now known as salgado-lunch [16:20] dobey: ping whenever you have a moment, did you get a chance to think/ask about the aptdaemon problem in installer? [16:22] ralsina: sort of. mvo was going to look at the installer code. will ping him again today before he leaves [16:23] dobey: ack === zyga-afk is now known as zyga [17:20] * briancurtin lunch+doctor [17:25] ok, EOD for me laters! [17:30] gatox, thisfred: may I get a couple of easy reviews? https://code.launchpad.net/~ralsina/ubuntu-sso-client/testability/+merge/105232 [17:30] sure, after u1db workshop [17:32] thisfred: thanks1 [17:33] ralsina, on it [17:35] ralsina, the line 27 of the diff is it necessary?? i'm only looking at the diff, not the whole file [17:35] gatox: looking... [17:36] gatox: the "import os"? Yes [17:36] gatox: or else I can't see os.environ [17:36] ralsina, i was asking because it's the only thing new in that file [17:36] gatox: nope it's not. Line 47 of the diff is in the same file [17:37] oh, wait [17:37] no it's not. [17:37] agreed, let me remove it [17:37] ralsina, ack [17:39] gatox: fixed and pushed [17:39] * gatox looking.... [17:43] gatox: ralsina i just got a response from windows user runing -- "echo %USERPROFILE%" and I got [17:43] the response "C:\Users\Adam""echo %USERPROFILE%" and I got [17:44] Ubuntu One is askinh fim Please choose a folder inside your "C:\SPB_Data" directory [17:44] duanedes1gn, mmmm that's weird.... why is returning another path then..... [17:45] duanedes1gn: is that with 2.0.3? [17:45] duanedes1gn: we had a case a long time ago about if the user had %HOME% set, then we got confused. It *may* be that, but that's fixed in 2.0.3 IIRC === duanedes1gn is now known as duanedesign [17:47] ralsina, everything is ok with the branch, just a minor fix about a lint issue..... i paste it in the MP [17:47] gatox: thanks, my pylint is kinda broken for some reason :-/ [17:47] i can ask him for logs for more info. does not look like our conversation includes version number [17:47] gatox: OTOH, I am on windows ;-) [17:47] ralsina, ahhhhhhh [17:47] duanedesign: you can tell him to update to 3.0.0 which is out today :-) [17:47] gatox: thanks! [17:47] ok :) [17:48] gatox: pushed with lint fix [17:49] ralsina, great [17:53] ralsina, +1 [17:53] gatox: gracias! [17:58] ralsina: I don't understand the branch: when the env variable is *not* there you add the argument? [17:58] thisfred: no, when the variable *is* there [17:58] + if os.environ.get('TESTABILITY', False) and \ [17:58] 48 + 'testability' not in sys.argv: [17:58] 49 + sys.argv.append('-testability') [17:59] ah [17:59] nm [17:59] thisfred: ok, when the variable is set and is not already in argv [17:59] thisfred: just to not put it twice [17:59] ralsina: brainfart. I sort of forgot how get worked [17:59] ralsina: C is rotting my brain [17:59] thisfred: also, that's wrong [18:00] thisfred: C is good for you! C is a vitamin! [18:00] missing - in the second line [18:00] see, I knew there was something wrong! [18:00] thisfred: I wrote it, it *must* have something wrong :-) [18:00] mmcc: I actually liked doing C more than I expected. Or hated it less, if you will ;) [18:01] thisfred: pushed the change [18:01] ralsina: cool [18:01] btw I'm back for good now, sorry about being around intermittently this morning… now making sure I really understand bsd sockets api [18:02] thisfred, C really has its charms. a featureful standard library isn't one of them, but that's OK [18:02] ralsina: also the win32 path does not do that check at all, if that matters [18:02] thisfred: I did it because on the tests I ended with -testability thrice and that looked ugly. IRL it doesn't matter, rally [18:03] kk [18:03] thisfred: also could be argued that the tests for main suck but what's new ;-) [18:03] ralsina: +1 [18:03] thisfred: thanks! [18:03] on the review. The tests sucking I am +0 no idea [18:04] https://en.wikipedia.org/wiki/Rational_ignorance [18:04] tldr: tldr [18:04] he === yofel_ is now known as yofel === zyga_ is now known as zyga [18:10] * gatox finds out..... that in order to test filesystem_notifications in mac, he is going to need some other packages.... [18:10] * gatox starts writing a branch for os_helper [18:14] I have to go to a doctor's appointment, should be back in 90' or so [18:14] ralsina, ack [18:15] gatox, I have a darwin version of os_helper that I hacked together a while ago, are you interested? [18:16] mmcc, ok!! i was just starting to write a branch for that [18:17] it's a short diff, just a sec I'll paste it [18:21] why don't i get this bug? [18:21] dobey: what bug? === salgado-lunch is now known as salgado [18:21] the installer bug [18:22] gatox, here is what I did, diffed against a recent os_helper/linux.py [18:22] http://paste.ubuntu.com/978435/ [18:22] Have a stupid problem. I install ubuntu one music app for android, but I can not figure out how to login to my account [18:23] gatox, I didn't push it anywhere because tests weren't working so I haven't tested it, but hopefully it's a little useful for you :) let me know if anything doesn't make sense [18:23] mmcc, thanks, i'll grab that and make the tests..... thanks! [18:25] dobey: you need to have out-of-date data in apt [18:25] dobey: like, disable nightlies, remove u1, enable nightlies again [18:25] what sort of out of date data? [18:26] dobey: the kind that needs an apt-get update [18:26] and now I am really off === ralsina is now known as ralsina_at_the_d [18:32] No one has any idea how to login to ubuntu one music app? Should I contact support? [18:34] i don't have android [18:34] duanedesign: can you help Captain_Proton ? [18:35] Captain_Proton: do you have Ubuntu One Files installed? [18:35] yes [18:37] i thought it would use that key, but all it show in the music app is the demo songs [18:37] Captain_Proton: it should use that key [18:38] Captain_Proton: can you select 'Demo' at the top of he screen and change the mode? [18:40] Opps, something went wrong... maybe it just my crappy phone :) [18:50] duanedesign, thanks atlest I know how I will play with it see if I can get it to work [18:52] uninstalled it & reinstalled it and it work now :D === ralsina_at_the_d is now known as ralsina [19:07] blah, doctor cancelled === mmcc_emacs is now known as mmcc [19:14] mmcc: based on the nicks you used today I am guessing you have emacs on your phone. [19:17] ralsina: heh, I wonder if that's possible. no, I was on the phone, now I'm using emacs [19:17] mmcc: http://lists.gnu.org/archive/html/guile-user/2011-06/msg00024.html [19:17] I had a scheme REPL on a Palm III once, so that's something... [19:18] mmcc: http://www.emacswiki.org/emacs/EmacsOnAndroid [19:18] mmcc: you first have to install a ROM... with Debian ;-) [19:19] heh. Well, maybe if there's ever an Ubuntu phone, then I can get my emacs there too [19:21] mmcc, do you know how to set the application name in mac for a python application? [19:21] gatox, that's a big question - that's why I punted on the function in os_helper [19:22] yep..... i'm trying to figure it how to do it, but i can't find it [19:22] There isn't really API to do that programmatically [19:22] it's a packaging thing. The app name is a value you set in the Info.plist that's inside your .app bundle [19:22] mmcc, yep..... that's what i'm seeing [19:22] if you don't have a .app bundle, well then you're not an "Application" that should have a name, as far as os x is concerned [19:23] that's one reason why our SSO client has a default python icon - there's a bug for that assigned to me now [19:23] so I think the right thing to do with that os-helper function is to make it a noop [19:24] and we'll take care of it if necessary during packaging [19:27] gatox, does that sound OK to you? should make testing it easy :) [19:27] mmcc, yes..... it sounds right [19:27] gatox: cool [20:08] I knew there had to be an easier way - on BSD, you can call get [20:08] * mmcc getting used to emacs relay chat [20:09] BSD has getpeereid, which tells you the effective user/group ID of the process on the other end of a connected UNIX domain socket [20:10] there's a similar but not exactly compatible linux mechanism using an ancillary message of type "SCM_CREDENTIALS" [20:10] the manpage tells me this is reliable, and a common use is for a server to verify the credentials of its client, so this is the way to go :) [20:24] eod here! bye people! [20:24] bye gatox o/ [20:24] mmcc, bye [20:48] ralsina: support keeps getting reports from turkish users who can't connect, all of them that have tried nightlies report back the same so i filed bug #997326 [20:48] Launchpad bug 997326 in Ubuntu One Client "Users in Turkey can't connect due to invalid Vericert certificate" [High,Triaged] https://launchpad.net/bugs/997326 [20:49] joshuahoover: ack, let's try to find a workaround tomorrow (I am EOD in 10 minutes) [20:49] joshuahoover: let me find something to try [20:49] ralsina: you can't figure out in 10 minutes? [20:49] ;) [20:49] joshuahoover: well, I do have something, but I would need windows to verify it ;-) === tgall__ is now known as Dr_Who [20:50] joshuahoover: on windows control panel, look for certificates, and then would have to look for the valicert certificate and enable it for all purposes [20:50] joshuahoover: that would make the symptom go away at least [20:50] joshuahoover: there is a good chance this is caused by the government firewall of Turkey [20:50] * ralsina remembers internet in turkey: not fun [20:51] ralsina: this is on ubuntu, precise (using nightlies to get the debug info) [20:51] oh :-( [20:52] joshuahoover: then we need to find how to install the valicert certificate in ubuntu [20:52] joshuahoover: I can ask, but not in 8 minutes ;-) [20:52] heh [20:53] joshuahoover: cp /usr/share/ca-certificates/mozilla/ValiCert_Class_2_VA.crt /etc/ssl/certs [20:54] joshuahoover: with all due caveats ;-) [20:54] joshuahoover: and probably a reboot [20:55] heh, k...i can have them try that [20:55] joshuahoover: wait, on my system those two are the same file [20:55] oops [20:55] joshuahoover: maybe in theirs it's not [20:55] ralsina: right, it's in mine too [20:56] ralsina: i'll have them try and let us know one way or the other [20:56] ack === Chipaca` is now known as Chipaca === zyga__ is now known as zyga [23:54] * mmcc goes to play some hockey.