[00:05] [Jonathan Riddell] 12.04 Feature Freeze This Week - http://blogs.kde.org/node/4536 [00:05] [Jono Bacon] Ubuntu Accomplishments Lens - http://www.jonobacon.org/2012/02/15/ubuntu-accomplishments-lens/ === gary_ is now known as Guest36891 [00:21] supposing I had a zillion png files and I wanted to convert them to jpg [00:21] if i put them all on a NFS share and then write a converter program that silent skips png files when a jpg already exists (or rather, if creating it fails due to it already existing), could I run that across multiple machines - ie a cluster? [00:21] it seems like someone would have tried this before. does this type of system have a specific name i can google for more information? [00:22] ali1234: sounds like a trivially parallel task, but you need to manually parallelize your problem set [00:22] it is trivially parallel yes [00:22] i'm not actually doing png to jpg [00:22] even if this means "for i in a*.png" on machine 1, "for i in b*.png" on machine 2, etc [00:23] but the idea is the same: each input file creates exactly one output [00:23] it's a lot slower task as well so bandwidth isn't an issue [00:23] do i really need to split the work like that? can't i just let the NFS handle it for me? [00:24] ie try: for i in *.png... except OSError: pass [00:24] or whatever exception you get when you try to create a file that already exists [00:25] th ereason i ask is because i'll be writing that code anyway so that the whole job can be continued if it is stopped [00:28] i'd like to be able to add and remove machines fromt he cluster at will too :) [00:35] well i'm just going to implement it and see what happens [00:42] ali1234: your problem if you do it in order is obvious, no? [00:42] the obvious problem is that every node will attempt to process every file [00:42] machine 1 sees no foo.jpg, so starts converting foo.png. machine 2 sees no food.jpg, so starts converting foo.jpg. machine 1 finishes conversion, writes foo.jpg [00:42] that supposes that my program doesn't attempt to open the file *first* and then lock it [00:43] that needs to be an atomic operation of course [00:43] the output file i mean [00:43] if that fails, it silently goes to the next file [00:44] the the first instance opens foo.jpg, opens foo.png, converts, writes to foo.jpg [00:44] the second instance attempts to open foo.jpg, fails, then goes to foo1.jpg [00:44] this seems like an obvious idea. it might mean a lot of collisions if all instances were converting several files per second, but they are not [00:45] the actual conversion does about 1 file per minute per CPU core [00:47] actually it would do this: [00:47] if output file exists and is exactly 42 * 32 bytes, skip input file [00:47] what you really want is a parallel job scheduler. [00:47] else attempt to open output file for exclusive writing [00:47] if that fails, skip input file [00:47] else, process the input file [00:48] let's say you have a million images, and 10 machines. you don't split it into ten 100,000 lots, you split it into a whole lot of 60 image lots. [00:48] submit this whole bunch of 60-image jobs to the scheduler [00:48] i specifically don't want to write a job scheduler [00:48] so use one of the shelf? believe ir or not, other humans have done this stuff before [00:49] i've looked at every available system for doing this [00:49] yeah, shoulda stayed in my game rather than trying to help [00:49] they all either don't work like this, are so low level you have to write most of it yourself, or would require me to rewrite the whole thing in java [00:52] this is about the time that people tell me just to use hadoop [00:53] why not just have 1 comp do it over a longer period of time? [00:55] because computers get rebooted in the real world [00:55] therefore the software must be able to skip already processed files [00:55] the easiest way to do that is just to check if the output file already exists [00:55] so, as i said, i have to implement that check anyway [00:56] now, i can either: [00:56] 1) implement the check in a slightly nuanced way that makes it possible to cluster the software with zero extra work [00:57] or 2) go and spend a month learning hadoop and then rewrite the entire software for a feature that will save me perhaps 1 week of processing time [00:58] or index the files in a separate text file, numbered, then process them in that order..... but logging to a file the ones done [00:58] that's basically 3) implement my own half-assed job control server [00:58] so you know which file to start on next time [00:59] yeh [00:59] the worst of all possible options :) [00:59] half-assed is better than been fully assed, if you can't be assed [00:59] ;) [01:00] if it is a one off, I wouldn't go to the trouble of setting something great up [01:00] just do something to get it done [01:00] anyone know how I view POSTDATA in firefoxes web console? [01:01] It was always turned off by default, but now I can't see the on button for it anywhere [01:01] aha, right click on the net button :P [01:20] this is absolutely a job for condor. but i'm sure ali1234 already rejected that one. [01:20] Anyone know a little about RSA and mind me poking them with a couple questions? [01:28] condor eh? [01:29] well let's see. it works by wrapping system calls so my software will run in it [01:29] what it doesn;t do is any kind of job control [01:29] i would need to implement that myself [01:29] so let's say i implement that using the scheme i've outlined above [01:29] then i could run my software on NFS [01:29] *or* i could run it inside condor [01:30] so, condor doesn't actually help me at all [01:31] nobody in the history of computing has ever thrown a bunch of shell scripts at a job scheduler before, clearly [01:32] i'm sure they have [01:33] i think i'm going to go to bed. you have fun with your unique little computing problem [01:33] see here's the problem [01:33] you have totally failed to answer my very simple original question [01:33] all you;ve done is say "that's easy, use this", and then suggested a solution that doesn't actually help at all [01:33] and made lots of sarcastic remarks [01:35] " if i put them all on a NFS share and then write a converter program that silent skips png files when a jpg already exists (or rather, if creating it fails due to it already existing), could I run that across multiple machines - ie a cluster?" [01:35] yes. [01:35] there. question answered. [01:35] was that really so hard? [01:36] however, the scheme you keep outlining for doing it is retarded. but you're really not interested in hearing it. [01:37] but since anything anyone ever in the history of creation has ever said which goes against your preferred technical solutions is clearly wrong, i'll leave it as an exercise to the reader as to why [01:38] nothing says "it's bedtime!" like six years running a parallel computing facility, eh? [01:41] on the contrary, i'm very interested in hearing it, assuming it is a logical, fact-based reason, rather than an argument from authority [01:41] which is so far all you have presented [01:42] isn't there a command to run a command on another machine? [01:42] hamitron: "ssh" [01:42] hmmm, it was something else I recall [01:43] or maybe to run a command on lots of machines [01:43] * hamitron shrugs [01:43] ali1234: fine. in my experience, this is a task which is suited to a batch job scheduler. there are two main classes of batch job schedulers - cycle scavangers like xgrid or condor, and dedicated managers like torque and gridengine [01:45] ali1234: if i were to try and accomplish your task, i would write a bash script which could translate an array job name (e.g. 1098[4].hostname) into some unique set of images to process (an hour is a good measure), submit a big freaking array job, and let the scheduler keep throwing out chunks of work to needy nodes as & when free nodes become available [01:46] ali1234: e.g. if you have a million images numbered 0000001 to 1000000, then do some basic division of $PBS_ARRAYID in your submission script so a single job works on, like, 60 images [01:47] ali1234: batch job scheduling, and shell scripting, are solved problems. "for i in foo do myapp $i" isn't rocket science either. [01:49] how will that system handle a restart of every machine in the entire cluster? [01:49] the job gets marked failed by the scheduler, and is subsequently rescheduled. [01:49] by "the job" i mean "the specific jobid of the job running on a failed device", i.e. one piece of an array juob [01:50] or more than one piece [01:51] worst case the failed jobs get marked as held, and need to be released by the scheduler admin [01:52] so this system requires a database of jobs which are either currently running or failed? [01:52] and presumably the completed ones too [01:53] ali1234: batch submission systems use a daemon on a "master" node, which handles submission of jobs to nodes, and accounting of status. you can read historic information such as job run time, queued jobs, etc [01:55] e.g. http://www.clusterresources.com/torquedocs/commands/qstat.shtml === Lcawte is now known as Lcawte|Away === Twinkletoes_ is now known as Twinkletoes [02:01] i'm totally going to bed now, i have to drive to cambridge tomorrow [02:01] ok. goodnight === joar_ is now known as CosmicB [07:23] morning all [07:54] Morning folks [08:00] morning === himcesjf1 is now known as himcesjf [08:52] aloha [08:52] morning [09:04] Morning [09:30] Morning! [09:31] * BigRedS is surprised each morning to find that 'morning' doesn't tab-complete [09:31] Good morning :) [09:48] From apticron this morning [09:48] * /etc/lsb-release, /etc/issue, /etc/issue.net: Bump version number to [09:48] 10.04.4 in preparation for the point release. [09:48] Surely it should wait until April is here before that change is made? [09:50] * czajkowski waves [09:50] Ello czajkowski :) [09:51] Do I want this as my wedding ring or will people think it's tacky? http://www.kinektdesign.com/product-gear-ring.php [09:53] bigcalm: I think you'll spend forever cleaning it and getting fluff and dirt out of the groves [09:53] czajkowski: that seems likely :( [09:57] gord: new ssd may not fit in x220. bay is 7mm, drive is 9.3mm ⍨ [09:57] Goodness [09:57] popey, yeah you have to be careful, intel ones you can make fit [09:58] too late, ordered the ocz one [09:58] I didn't consider that when I bought one for my laptop. It does fit though thankfully [09:58] http://www.ocztechnologyforum.com/forum/showthread.php?89168-Vertex-3-X220-compability&p=645699&viewfull=1#post645699 [09:58] might fit, others have managed [09:59] I thought there was a standard for laptop drives? [09:59] Good morning all! :) [10:00] Good Morning! [10:01] hmm on the latest update I swich to a different application [10:01] I click on terminal on the left hand side menu and instead of showing me this irc window as before it launches a new terminal [10:01] oh but I do seem to have hud [10:01] * czajkowski peers at gord you broke my laptop didn't you :p [10:02] popey: found it http://thereifixedit.failblog.org/2012/02/03/white-trash-repairs-when-in-doubt-close-your-eyes-and-shove/ [10:04] haha [10:04] Thought you'd like that [10:04] bigcalm: there are numerous standards ☹ [10:05] popey: I think you mean BigRedS ;) [10:09] bah [10:09] just managed to slide another 9mm drive in [10:09] missus [10:09] No worries :) [10:10] Oh my [10:10] such a tight squeeze, the "VOID if removed" stickers came off [10:10] Whoops [10:10] if this goes in, it's never coming out! [10:10] (again, missus) [10:10] Take an angle grinder to it [10:11] some people take the shell off the device [10:17] Ah, that's the lovely thing about standards :( [10:19] and compiz crashes [10:19] bugger [10:21] Why do my chair arms keep sinking? [10:21] Silly Aeron === Lcawte|Away is now known as Lcawte [10:30] * popey wants aeron [10:32] * bigcalm gives popey an Aero [10:32] Sorry, the n fell off [10:32] ah id love an aero [10:32] nice mint one [10:34] good morning everyone, [10:42] morning [10:42] morning MooDoo [10:49] Hayley's laptop has a bad case of the malwares. Tempted to wipe and put Ubuntu on it. Think she might notice the difference though [10:50] bigcalm: not if you theme it to look like windows lol [10:51] or temporarily dualboot [10:52] wubi? [10:52] If MS Office could run 100% perfectly without any faffing on Linux, then I think she would give it a go [10:54] bigcalm: http://www.ylmf.org/en/ [11:07] bigcalm: just tell her it's office 2013 [11:07] "complete redesign" [11:08] reformat. "forget" to back up something important like sims saves. that's always educational for windows users. [11:09] morning all [11:10] morning davmor2 [11:10] MooDoo: morning dude [11:13] davmor2: how are you br'a :) [11:14] MooDoo: tired, but not as tired as czajkowski I wager [11:15] davmor2: why what's she been doing? [11:15] Hi davmor2 [11:16] MooDoo: she staying just up the road shhhhhhh [11:16] bigcalm: hey dude how's life [11:17] davmor2: huh? [11:17] DJones: I don't think that she cares that much about the look of the OS, more that MS Office won't work 100% [11:17] davmor2: still full of curry from last night [11:17] You? [11:18] MooDoo: She has a mini sprint/training with mrevell for her new job so got the 06:23 train to wolves this morning and her hotel is in stone throwing distance [11:18] bigcalm: nice [11:20] \o/ ssd installed [11:21] o/ [11:23] * jpds watches davmor2 throw some stones. [11:23] jpds: no czajkowski needs to be in the hotel for me to hit her with them :P [11:24] jpds: the worrying things is would throw them back :D [11:24] davmor2: Mean. [11:26] * czajkowski waves [11:28] * davmor2 gives czajkowski an empathy hug early trains and working all day == no fun [11:28] I can haz XKCD progress bar in Ubuntu plox? [11:28] I wants XKCD progress bar. [11:28] it's not the worst [11:28] and I get to learn stuff [11:28] so win win tbh [11:29] And you're in Wolverhampton, the centre of the Linux world! [11:29] (I might be embellishing the truth a little) [11:32] just a tiny bit [11:38] Myrtti: man, yeah [11:38] Myrtti: pull random facts from wikipedia based on the displayed time [11:38] Oh man that needs to be implemented [11:39] IKR?!?! [11:39] ☺ [11:39] had to decipher IKR. I like. [11:40] bigcalm: also the centre of Wolverhampton has pork roll shops [11:40] * popey uses gparted to copy/paste his partition from rust to ssd [11:40] Are any of the Thomas train engines black? [11:41] (from the "on topic questions" file) [11:42] Does anyone know the etiquette about finding sponsors for uploads? Is it considered ok to prod someone on IRC? [11:43] i think one is [11:43] happen to know its name? [11:43] the story is that I was waving at it while canoeing on Sunday and then didn't notice the approaching rapid and ended up mashing my face down some rocks [11:43] * Myrtti throws money at the computer screen [11:43] Donald and douglass are black :) [11:43] Mavis [11:43] please someone implement XKCD progress bar [11:43] and Neville [11:44] http://www.myfavoritetoys.com/character-guide/thomas-friends-character-guide.html?limit=all [11:44] "Neville is a black steam engine who looks more like a diesel engine. " [11:44] yeah i think it was neville [11:45] the passengers were waving back :( [11:45] aside: the Llangollen railway is cool beans [11:49] popey, gord: I looked into the code for lenses but it was over my head for now any chance you could throw together an xkcd lens :D [11:50] you know it's what lenses were designed for :D [11:50] i actually don't like xkcd :P so no :P [11:51] gord: okay how about a general COMICS LENS then :D [11:51] RSS lens would be good actually [11:52] heretic gord [11:53] i would like a 'comic' lens which has scopes for multiple online comics like xkcd, dilbert etc [11:53] search for "wedding" and it finds comics for that topic [11:53] or type "today" and get all of todays comics [11:53] I bet there'll be a meme and a lolcats one before too long [11:53] * brunogirin got irc running on phone so no excuse to miss meetings anymore [11:53] uau [11:53] yay even [11:54] popey: as I say I looked at it but the code was way over my head currently for a novice python guy [11:59] even the python lens examples? [12:00] gord: yeah I had a look I'm just not there yet [12:04] gord: don't forget unlike you, I used to drive a Lorry for a living, I've only been learning python for the last few month in any sort of serious fashion and only to make automation easier :) I really am a newbie at programming [12:05] gord: I'll get there just not this release :D [12:05] davmor2: really? [12:05] have you tried programming python *while* driving a lorry? [12:05] it's possible with care and some custom input devices [12:06] gordonjcp: you need all your wits about you with the prats on the road nowadays, especially in a gas tanker :D [12:09] that's true [12:09] text-to-speech works well even in a noisy cab [12:10] and then I used a gearstick-mounted PTT button from a radio to enter stuff in Morse Code [12:10] mostly for controlling an MP3 player, but one day I realised it would work with vim too... [12:10] programming python while you float weightlessly in space is possible, as proven by XKCD [12:18] Myrtti: and back to needing a comics lens again ;) [12:19] I think you all need help with your unity lenses, but I'm just using my computer here thank you very much [12:22] czajkowski: how was you journey up? [12:29] aptitude really needs a --dontbestupid switch [12:31] removed linux-image ? [12:31] haha, not quite [12:31] every time I use it it seems to want to uninstall half my system [12:32] and sometimes it proposes a solution that involves removing two packages, and then when it goes on to say what it's actually going to do, the REMOVED list is about nine screenfuls long... [12:33] Maybe it doesn't need those things [12:33] well, it doesn't *need* them, but I normally want them :) [12:33] Is it a list of suggested removals or a list of what will be removed? [12:34] anyone fancy confirming bug 932718 on 12.04 ? [12:34] Launchpad bug 932718 in unity "Keyboard overlay gets in the way when zooming" [Undecided,New] https://launchpad.net/bugs/932718 [12:34] bigcalm: nah, it's whats to be removed [12:34] stuff like libapache2-mod-php5 [12:34] my impression's probably not helped by only normally turning to aptitude when apt-get is a bit confused [12:35] I sometimes have to use aptitude to force a full upgrade (usually linux images being held back) [12:36] i never use aptitude [12:36] nah, nor i generally. Mostly because of it's fondness for breaking things [12:38] I only seem to need to use it on my parents' viglen mpc-l running 10.04 [12:51] NIS - you lose, I win ! [12:56] ypbind && yplol [12:57] I have defeated it [12:58] hail me, worship me [12:58] ypwin [13:11] Amazon UK - you fail [13:11] AWS has mostly put me off buying things from Amazon [13:11] AWS ? [13:11] I get a feeling of impending doom at abot the second 'a' of the URL [13:12] could you explain, I don't know what you are talking about [13:12] and it sounds curious [13:28] Amazon's cloudy service [13:28] herrro [13:29] er czajkowski go out and come back in, you don't greet us like that now do you [13:29] I do [13:29] herrro [13:29] pah! you're not the czajkowski we know an love, who are you? get her davmor2 [13:30] byebye [13:31] hugs czajkowski :) [13:33] BigRedS: so you don't use amazon shopping due to your concerns on their aws [13:33] (didn't realise you meant aws as their cloud service rather than a shopping function) [13:33] ikonia: haha, well, every time I type the URL I get flashbacks [13:34] Nah, really I've nothing much against it, but I definitely don't have any particular fondness for the company any more [13:34] a little dissapointing, thought you may have had a juicy story of whiy it was bad [13:34] Er, poor I/O, poor networking, poor scalability of their infrastrucutre, poor support [13:34] basically it's pretty bad at all of its selling points [13:34] ooh, I know the cloud service....you're bad mouthing that to the wrong person :) [13:35] ahhhh [13:35] oh, you wanted shop horror stories? Nah, none of those [13:35] I just thought you may have had a juicy story on why AWS->Shopping was linked [13:35] oh, no [13:35] well isn't the shopping hosted on aws? [13:35] I thought that's what aws grew out of. But, yeah, no bad times with the shoppping thing [13:37] it's hosted on "a" aws platfom, not the public one [13:38] oh, yeah [13:43] it's a bold statment to not host it on the public platform ;) [13:43] haha, yeah [13:45] though I like the allegation that aws basically grew out of amazon having built a pretty good foundaton for the shop and then renting it out [13:45] it might well be true, I'm just being a bit cheeky as Amazon have annoyed me today === sagaci_ is now known as sagaci [13:46] haha, I've left the amazony stuff now. Amazon don't get to annoy me daily any more [13:55] mrevell: czajkowski knocking your connection about? :P [13:58] no I'm being good ! [14:00] Where's the fun in being good? :) [14:07] bah I keep setting off hdd by hitting alt with irc [14:07] >:( [14:20] pancro: herrrrro fancy seeing you here [14:23] czajkowski: hola! [14:24] czajkowski: I tend to hang out here but I'm usually quiet [14:24] indeed [14:24] pancro: what did you have for todays lunch ? [14:26] czajkowski: oops, I haven't posted it yet, have I? kidney bean soup with onions and red wine :) a labour of love, I started soaking the beans last night! [14:27] I had yummy sandwiches and fresh fruit [14:27] so there :p [14:27] gord: popey in irssi when you alt 1 is hud jumping out for ye and being annoyingly in the way ? [14:28] don't use irssi [14:28] clearly :) [14:28] but yeah until a fix in compiz lands, hud will launch on other key combinations if you are too quick with them [14:28] i dont have hud installed it seems [14:28] ii unity 5.2.0-0ubuntu4 Interface designed for efficiency of space a [14:28] should that have it? [14:28] or do I need to install it separately? [14:28] that won't have it [14:28] it landed last night but I alt key for all channels on irc and alt 1 keeps launching hud [14:29] it didn't land ;) you are running the staging ppa or something [14:29] * czajkowski knew gord would do it [14:29] fecker;) [14:31] gord: get the vertex 3 ssd.. oh my golly [14:31] popey, how much did it set you back? [14:31] too much [14:31] think i might wait till a US trip and pick one up for half the price ;) [14:31] http://www.ebuyer.com/260707-ocz-240gb-vertex-3-ssd-2-5-sata-iii-6gb-s-read-550mb-s-write-520mb-s-vtx3-25sat3-240g [14:32] hah [14:32] geez, you don't need to read 550MB/s :P [14:32] AlanBell: what's that CRM software yoyu keep pimping to people? [14:36] BigRedS, http://www.vtiger.com/ i believe [14:44] AlanBell: do you have a cms recommendation ? [14:46] CMSMS or WordPress or Drupal [14:46] Depends what you need to do with it [14:46] anyone in here running 12.04 and use a terminal for irc? alt tabbing through my applications will not display my irc terminal? have to keep restarting it [14:47] diplo: aha, ta! [14:47] czajkowski: I do at home, if you nag me this eve I'll see if I can replicate. [14:47] I normally do it in guake [14:48] so if I alt tab through applications I can see it [14:48] but it wont launch [14:48] if I click on terminal on the side bar a new terminal pops out [14:48] if I minimise every single last applcation [14:48] there is my irc window [14:48] :/ [14:49] odd [14:49] I'll not go into my normal diatribe about working in unity right now, given your new employer :) [14:49] BigRedS: good of you [14:58] * czajkowski huggles davmor2 [14:58] czajkowski: you tired yet [14:58] nope [14:58] had tea and bickies so am sorted [14:59] mmmbickies [15:00] * hamitron is trying to cut down [15:03] christel, czajkowski: see when I read that I saw tea and brickies which had a whole different connotation [15:05] how do I find out what package provides a binary in /usr/bin? [15:06] apt-file ? [15:07] davmor2: haha [15:07] davmor2 reads "Dave Amour" to me [15:08] ikonia: hmm, apt-file -f search /usr/bin/java shows nothing [15:08] java is a symlink check out /etc/alternatives [15:09] nothing for /etc/alternatives/java either [15:10] Azelphur: if you do ls -la /usr/bin/java is it a file or a link ? [15:10] it's a link to /etc/alternatives/java [15:10] Azelphur: and then ls -la /etc/alternatives/java [15:11] ikonia: the magical trail ends at /usr/lib/jvm/java-6-openjdk/jre/bin/java which apt-file also doesn't know about [15:11] now that is surprising [15:11] I'm assuming /usr/lib/jvm/java-6-openjdk/jre/bin/java is actually a file [15:11] yep [15:12] but still, I'm mainly trying to get it to use java-7 so if anyone knows what the arg is for update-alternatives that'd be just as handy [15:12] Azelphur: sudo apt-file update first ? [15:12] AlanBell: then sudo apt-file search /usr/lib/jvm/java-6-openjdk/jre/bin/java [15:12] oops [15:12] sorry Azelphur ^ [15:12] or /usr/bin/java [15:13] yep that's got it, ty :P [15:13] there you go [15:13] there is no escape [15:13] and there we go, update alternatives fired off using java 7, much better \o/ [15:27] hello [15:31] hi === chalced is now known as chalcedony [15:40] hello zleap [15:55] hi [15:56] sorry was akf [15:56] afk [15:56] Quiet afternoon [15:56] yeah === myrtti is now known as Myrtti === liam_ is now known as Guest5582 [17:07] [Liam Proven] Still using Ubuntu 10.04? You may find this info about backports of newer kernels very useful. - http://liam-on-linux.livejournal.com/28391.html [17:16] o/ [17:17] choo choo [17:21] afternoon [17:22] I'm now running 12.04 on my laptop and cyanogenmod ice cream sandwich - guess that makes me a cutting edge cool kid :P [17:30] nice === jutnux is now known as wdawd33223 === wdawd33223 is now known as jutnux === jutnux is now known as jutnux_ [18:12] Where's mrevil when you need him? [18:18] mrivvle? [18:22] mrevel, but that's boring [18:23] mrevell even [18:57] hmm [18:58] battery no longer shows that its being drained [18:58] and doesnt show when it's not charging either [18:58] that's rather flipping annoying [19:01] evening all [19:01] * AlanBell has no desktop :( [19:02] :( [19:02] I have desktop wallpaper but nothing on it, network manager does appear to have connected to the wireless which is nice [19:02] * bigcalm thinks there be gremlins [19:03] dist-upgrade and a reboot for starters I think [19:04] * bigcalm shakes his fist at symfony [19:05] Respect my view damn it [19:09] popey: you have a disco ball? I want one :o [19:10] ☺ [19:10] my brother had one in his kitchen, was always a hit at parties [19:10] I said I liked it so he bought me one [19:11] haha :D [19:12] http://www.amazon.co.uk/Mirror-Motor-Battery-Powered-Plastic/dp/B000BN6LE0/ref=sr_1_5?ie=UTF8&qid=1329333137&sr=8-5 [19:12] thats the motor [19:12] czajkowski: go into power manager and change the settings if that is available now [19:12] http://www.amazon.co.uk/Silver-200-Lightweight-Mirror-Ball/dp/B000KFZ4U6/ref=pd_bxgy_ce_img_b [19:12] the ball [19:13] popey: do you also play 70s disco music? [19:13] i do [19:13] spotify :D [19:13] Looks like something to attach to an arduino .. :) [19:28] Evening all [19:28] \o jutnux [19:37] anyone here work with Amazon Cloud Services? [19:38] I am looking for the best solution to move an ami to a different region [19:44] gord: why o why o why does unity crash when I run ldtp scripts on software center? [19:48] popey: Ha hippy join us in the 80's best of all music ;) [20:03] bah update gives me tons of erros [20:04] tonightis not going well [20:04] czajkowski: I hope you're not working [20:04] http://pastebin.ubuntu.com/843459/ [20:04] nope [20:04] watching tv on laptop [20:04] Ah :) [20:05] but trying to get the icon to show my battery is charging when plugged in which it currently is not showing [20:11] davmor2: need I point out to you A) I am very close by B) I shall see you tomorrow eveing and inflict wrath [20:11] czajkowski: What? [20:14] czajkowski: I said a nice thing and that made you rise to the bait faster than their nasty ones ;) [20:15] poor davmor2 [20:15] * AlanBell gets out a very very small violin [20:16] AlanBell: Yeah she's only threatening me cause she feels safe all that way up there in her hotel :D [20:17] the czajkowski in the silver mountain [20:18] czajkowski: davmor2: Hayley can't make it, so it'll just be me tomorrow night [20:20] AlanBell: http://g.co/maps/ch6rp [20:21] I don't need your help to stalk czajkowski, I have latitude for that :) [20:21] AlanBell: no point A is me point B is czajkowski nothing to be scared of at all [20:22] That is a little close for comfort [20:22] I wonder if mrevil would like a lift tomorrow [20:23] bigcalm: he'll be across the road [20:23] Ah, not going home after work is sensible [20:23] Do we have a time? [20:25] bigcalm: from what I understand they will finish at 6 -ish and meal is a 8-ish not a lot of time ask him tomorrow though [20:27] Okie dokie [20:28] His lack of online presence in the evening is quite unlike most users in here === jussio1 is now known as jussi [20:31] czajkowski: did you find a home for that other ticket? [20:33] AlanBell: nope [20:34] might be able to relieve you of it, my nephew needs to come or my brother-in-law won't be allowed out [20:35] lol [20:35] sure [20:36] great, Tomas will love it :) [20:37] np [20:49] mgdm: considering using blowfish to encrypt data sent in API calls. Is it considered to be a safe method? [20:50] bigcalm: I've done it before, though why not just use HTTPS? [20:51] mgdm: this will be on an internal network, still worth the time to set up https? [20:52] I would, with cacert or self-signed [20:53] It'll be self-signed I think [20:53] Ok, saves me messing with mcrypt [20:54] You can't have https vhosts iirc? [20:57] you can have one [20:57] One per IP [20:57] bigcalm: you can have several [20:57] one per port, unless you do clever stuff [20:57] no [20:57] it's called SNI [20:57] Apache has changed then? [20:57] http://en.wikipedia.org/wiki/Server_Name_Indication [20:58] ^^ clever stuff [20:58] well Apache has changed, a little, to support SNI [20:58] but IE on XP doesn't do SNI [20:58] so if any of your clients is on XP, don't do SNI [21:00] Ah, sod it :) [21:00] * bigcalm goes to play Rayman Originals on the Wii [21:00] A better use of my evening [21:00] bigcalm: no it just means he isn't working right now [21:01] davmor2: that would indicate that his social life does not revolve around this channel [21:02] I know I'm normal off line this time of night too though so I can't say too much [21:07] hello [21:08] CTtechguy: hello [21:09] yo [21:15] whats going on? [21:15] People are in IRC, talking about Ubuntu. [21:15] And elephants. [21:15] we never talk about ubuntu :( [21:16] Indeed :( [21:16] white elephants? [21:16] Yes, white elephants, everywhere. [21:16] except when i;m trolling unity again [21:16] we also talk about food and beer, [21:16] NICE [21:17] I like food and beer [21:18] also. chilli ala popey, is good. [21:18] * CTtechguy is across the pond so not sure what that is === mh0- is now known as mh0 [21:19] CTtechguy: popey is a user here, and a major contributer to the community, and he made his own chilli recipe. [21:20] nah, I'm just some guy, you know [21:20] http://i.imgur.com/wnXpF.jpg might be the greatest keyboard in the world... i don't even care that its pink [21:20] zaphod beeblebrox, hhgttg. [21:20] haha [21:20] blimey [21:20] I read that your group has a lot of get togethers [21:21] haha [21:21] I cant seem to find a local Ubuntu LUG near me [21:21] where are you based? [21:21] US [21:21] CTtechguy: probably because your looking for a Ubuntu LUG, you'd have better luck finding a LUG or Linux user group :p [21:21] Connecticut [21:21] can you be more specific ? [21:21] (Are there even any Ubuntu LUGS?) [21:21] heh [21:21] Azelphur, well there are loco teams [21:22] that's us *serious face* [21:22] https://wiki.ubuntu.com/ConnecticutTeam [21:22] we are a small state and only a few user groups [21:22] seems quiet [21:22] CTtechguy, Where abouts, or can i guess conneticut [21:22] sorry if there is a spelling error there [21:22] CTtechguy: start one! [21:23] yeah not much movement in that group in awhile [21:23] pink mentioned [21:26] guess Ill start with ConnecticutTeam mailing list [21:26] excellent idea [21:27] also see #ubuntu-locoteams for the loco council who can give you hints and tips ☺ [21:29] popey: thanks for the info! [21:31] np [21:31] good luck! [21:31] you're welcome to hang out here too btw [21:32] I just might do that...got a real good first impression from you all [21:32] * brobostigon is watching an interesting prog, on more4 about a OCD hoarder. [21:34] i know one of them [21:35] ok. [21:36] drat, there isnt a more4+1 [21:36] that'd be more5, surely [21:36] haha [21:36] Like ITV3 is ITV2+1 [21:36] or something :) [21:37] it'll be repeated no doubt [21:37] Or on 4OD, which is actually not bad [21:38] the guy I know ripped his kitchen out 15 years ago and never installed a new one [21:38] and collects all kind of stuff [21:38] i have more+1 here. [21:38] more4+1. [21:38] virgin doesnt [21:38] :( [21:39] removed years ago [21:39] ohwell. [21:40] wow [21:46] poor guy [21:47] agreed. [21:48] http://www.dailymail.co.uk/news/article-2076822/Richard-Wallace-hoarded-rubbish-seen-space.html [21:49] considering that google maps has a resolution slightly better than 1 pixel per meter, that claim is somewhat disingenuous [21:49] it's also somewhat disingenuous to say that Google Maps photos are 'from space' [21:50] so basically the whole thing is nonsense [21:50] dailymail, say no more [21:50] technically inaccurate! the best kind of inaccurate. [21:51] "a mountain of newspapers included 34 years' worth of the Daily Mail [21:51] that explains a lot [21:51] that is a lot of trash [21:51] also, the DM's site does a ridiculous override thing which means what ends up on your clipboard is not what you selected [21:51] or rather it is, but it has this 'Read more' crap at the bottom [21:52] what is the collective noun for a lot of copies of the Daily Mail? [21:52] mgdm: wow, how the hell doe sit do that?? [21:52] ali1234: I'm not quite sure, though I've seen it done before [21:52] How do I up the OS thread limit? [21:52] Azelphur: probably with ulimit [21:54] ali1234: http://stackoverflow.com/questions/6344588/how-does-financial-times-add-a-disclaimer-when-pasting-text/6347927#6347927 [21:55] now i will make a site like commandlinefu except it also adds rm -rf to the end of everything you copy :) [21:55] hah [21:57] haha [21:57] brilliant [21:57] I better keep quiet about that at work [21:57] they'll want it too [21:59] is there any legitimate use for "oncopy" [21:59] I can't think of one, however I think there might well be [21:59] I fail to see it right now [22:00] popey: whats the magical command line to fix a desktop on ubuntu in case things are a bit messed up [22:00] the one with the ^ ? [22:00] sudo apt magic-fixy-fairies --sort-it-out^ [22:00] (sorry) [22:00] depends how its messed up [22:00] that only fixes the 'some bits arent installed' issue [22:01] sudo apt-get update [22:01] sudo apt-get install ubuntu-desktop^ [22:01] s/w center is now gone from side bar and battery issue is pita [22:01] popey: thanks [22:01] lol [22:01] you should use update-manager, it won't remove things like software center and ubuntu-desktop [22:01] I'm not laughing :/ [22:02] in particlar, when update-manager says there is a problem, you should read what it says, not just go and do it with apt-get :) [22:02] heh [22:02] which happily *will* remove software center [22:02] i like the warning you get from apt-get when you try to remove everything [22:02] makes you type a sentence like 'i really want to do this' [22:05] cannot seem to get past http://pastebin.ubuntu.com/843639/ this issue on updates [22:07] those are warnings not errors [22:08] popey: aye but I've no idea why :/ and they weren't there yesterday [22:09] maybe I should just sleep [22:09] easy to fix [22:09] Sleep and dream of curry [22:10] someone wrote a script once to get all the keys you're missing iirc [22:10] http://popey.com/blog/2009/06/05/Easy_Script_To_Get_And_Install_PPA_GPG_Keys/ hehe [22:11] gpg --recv-keys 40976EAF437D05B5 --key-server keyserver.ubuntu.com [22:11] * czajkowski hugs popey [22:11] jacobw: what does that do ? [22:12] receives the key id from the keyserver [22:12] yay, just run the script here to fix all mine [22:14] * jacobw is enjoying tea [22:15] * brobostigon is enjoying a guin and tonic. [22:15] gin* [22:15] have you ever tried guiness and ribena? [22:16] it sounds awful, but its good :) [22:16] no, and it doesnt sound very good, [22:16] hmmm, [22:16] nn folks [22:16] jacobw: what ratio? [22:16] goodnight [22:16] good night czajkowski o/ [22:17] Myrtti: popey: the onboard model-m theme is arriving in bug #932855 [22:17] Launchpad bug 932855 in onboard (Ubuntu) "New release available: version 0.97.0 - debian source attached" [Undecided,Confirmed] https://launchpad.net/bugs/932855 [22:17] wohey! [22:17] I think it is the default too [22:17] brobostigon: something like 9 parts guiness [22:17] AlanBell: know of any other OSK's ? [22:17] other than onboard and maliit? [22:17] brobostigon: very little ribena is needed [22:18] jacobw: guiness 9 / 1 ribena ? [22:18] OSKs? [22:18] On Screen Keyboard [22:18] brobostigon: yeah, it justs takes the edge of the guiness [22:18] edge? [22:18] wuss! [22:18] popey: the gnome one is caribou [22:18] * jacobw googles maliit [22:18] * popey googles caribou [22:18] jacobw: i will try a tiny amount,so i dont wreck a whole pint, [22:18] https://live.gnome.org/Caribou [22:19] oh, not ready [22:19] yeah, nowhere near onboard standards [22:19] NIH [22:20] ☹ [22:20] http://labs.teague.com/?p=1451 [22:20] i can't really blame them for not using onboard, it is absolutely awful [22:20] onboard could be the GNOME on screen keyboard, if it wasn't started as an Ubuntu summer of code project [22:20] so if I upgrade my tablet on to precise I should be getting that onboard exactly when or already? [22:20] onboard is roughly as good as the oscreen keyboard app on the amiga [22:21] there are too few decent OSKs [22:21] Myrtti: it should go in with the feature freeze rush, before friday [22:21] ALRIGHT [22:21] finally a good enough reason to upgrade some device into precise [22:21] ali1234: yeah, but by friday it sould be slightly better [22:21] some of the problems of onboard include: does not automatically appear when needed, does not follow the look and feel of the desktop, has too many keys [22:21] it will pop up when you are in an editable field [22:21] it has multiple layouts [22:22] multiple layouts are not what is required [22:22] please look at the onscreen keyboard of any recent mobile phone and make a copy of that [22:22] "does not automatically appear when needed" fixed now [22:22] that is what we actually need [22:22] ok [22:22] can be done in onboard [22:22] also text prediction [22:23] an OSK will need to be _really_ _really_ good to get on any kind of Ubuntu tablet in the future IMHO [22:23] people use that? [22:23] yes [22:23] normal people do [22:23] ok [22:23] please do it then, instead of making layouts to duplicate the IBM model M or whatever [22:23] I should observe some normal people one day [22:24] a reak OSK is more than just a picture of a keyboard on a screen [22:24] go on [22:24] notice that caribou does not have a button for every single key on a real keyboard, for example [22:24] yeah, that annoys me! [22:25] also notice that it doesn't try to duplicate the way a keyboard is layed out because it serves no purpose on an OSK [22:25] I went through loads of android keyboards before I found one that could actually type all the keys I wanted to use [22:25] normal people dont switch keyboard [22:25] they use the one supplied [22:25] yeah, that was swype [22:25] and if the one supplied is crap, they buy a different device [22:25] I liked SwiftKey until it broke :( [22:25] normal people use the one supplied because the one supplied is designed for normal people [22:25] couldn't type @ [22:26] others can't do \ or / or ` or | [22:26] please, android puts @ on the top level of keys [22:26] swype didn't [22:26] iOS can't do ` [22:27] i've never used swype, it seems highly counterproductive to use only 1 finger to "type" (or swype) [22:27] I use the android hackers keyboard, it is just a querty layout and you can switch to other layouts and get to anything you want [22:28] it makes sense to me (as does onboard) but I do accept I don't know what normal people are like [22:28] I had no idea that text prediction was anything other than annoyingly useless [22:29] oh that thing that some keyboards do when they pop up a key above the place you are pressing so you can see it when your finger is in the way, that would be good I suppose [22:29] text prediction in SwiftKey is reallyg ood, actually [22:29] it learns [22:29] I tend to think of onboard as being big enough for that not to be important [22:29] and I don't have a touchscreen [22:30] all OSKs do that [22:30] (except for onboard) [22:30] and caribou which is really more like an IME [22:31] oh and windows mobile can't do ~ [22:32] I am sure that I could do that finger dodging overlay thing, I will put in a feature request for that [22:33] * jacobw looks for the ¬ key on his android phone [22:33] I don't know how predictive text could work, but that might be an interesting feature [22:33] http://ubuntuone.com/02jWrcfhC83MHfU76V1fRS [22:33] see 'dasher' [22:33] http://ubuntuone.com/2ymdtuFpgTo7QQgg7sf2jb [22:33] http://ubuntuone.com/2K0QBZzIp4ocOG6ZKHuZ5l [22:33] *hugs* :D [22:34] jacobw: yes, I know about dasher, it has some crashes and race conditions in it [22:34] always wanted to fix them but I lack the skills [22:34] channel dennis ritchie [22:37] onboard can do odd layouts like that, the default ones pull from the keyboard layout files but buttons can be remapped to other things [22:37] so if you have an azerty keyboard layout then onboard will map the keycaps to what should be on those keys [22:38] * directhe` moos. moo [22:39] btw, caribou isn't the gnome default on screen keyboard [22:39] directhe`: your ` is showing [22:40] mgdm: not nice to draw attention to a guy's shortcomings [22:40] sorry :( [22:40] It is rather short [22:40] D: [22:40] ali1234: is it GOK? http://www.gok.ca/shots.html [22:40] might be, it doesn't look anything like that though [22:41] it looks like this: http://git.gnome.org/browse/gnome-shell-design/plain/mockups/static/onscreen-keyboard.png [22:41] http://cv5.coventrytelegraph.net/gokwan.jpg ? [22:42] ali1234: is that real or just a gimped image? [22:42] that's a mockup [22:42] the real thing looks basically the same though [22:42] http://www.murrayc.com/blog/permalink/2011/11/16/maliit-the-only-real-on-screen-keyboard/ [22:42] looks like a serious contender [22:43] yeah, caribou is apparently the new hotness from the gnome side of things (or was last time I asked) [22:43] https://wiki.maliit.org/Others [22:43] maliit is interesting certainly [22:44] indeed it is [22:44] onboard is actually shipping [22:44] as it maliit [22:44] *is [22:44] yeah, but not on the precise CD [22:44] maliit is actually shipping on real hardware that has no keyboard :) [22:44] good night everyone, sleep well. [22:44] can't say the same for ubuntu [22:44] nn [22:44] night bigcalm [22:44] !info maliit [22:45] Package maliit does not exist in oneiric [22:45] you wish [22:45] not there [22:45] it doesnt exist then, lets not think about it [22:45] lol [22:45] https://launchpad.net/~maliit-team/+archive/daily [22:46] well for people saying why are we bothering with onboard when maliit is so much better, the reason is maliit isn't in the repos [22:46] oh look, a PPA! [22:46] thats not a good enough reason [22:46] absolutely [22:46] especially when it's about 10 years more advanced than anything that actually is in the repos [22:47] so lets get it in the repos and if it is better than onboard we put it on the CD [22:47] ok. well, i have no idea how to do that..... [22:47] I do. [22:48] Insider knowledge! [22:48] we ask daviey [22:48] Heh [22:49] mkdir maliit, vi maliit/DEBIAN/control .. etc etc [22:49] it's already packaged [22:49] hmm, then i guess ubuntu just need to accept it ;) [22:50] should go in debian first [22:50] not that onboard is in Debian, but it is nice to have stuff arrive that way [22:50] Aren't there things in Ubuntu that aren't in Debian? [22:52] maliit is c++ :( [22:52] oh noes [22:52] mono? [22:52] Erm, ignore me :) [22:52] http://bazaar.launchpad.net/~maliit-team/maliit/maliit-framework/files/head:/src/ [22:52] why is this a problem? [22:53] because I am rubbish and scared of languages that let me do stuff that crashes [22:53] So you're scared of all programming languages? [22:53] but... you like gtk? [22:53] Including Logo? [22:53] terrified [22:53] ('cos you can crash the turtle into the wall...) [22:53] those turtles with pens! [22:53] yes! [22:54] I miss Logo [22:54] I like python [22:54] python can crash [22:54] happens all the time [22:54] Shhhh, you'll spook him [22:54] yeah, but it doesn't segfault it stops with a nice trace of what happened [22:55] except when it deadlocks [22:55] or produces a never ending stack trace [22:55] and except when it segfaults [22:55] or just plain segfaults, yes [22:55] yeah, but you shouldn't be able to do that [22:55] with C that is the normal mode of operation [22:55] why not? [22:56] pointer arithmetic is just not something I want to think about [22:56] so use C++? [22:56] AlanBell++ [22:56] ;) [22:56] only crufty old Gtk actually requires you to deal with pointers [22:57] AlanBell: did you not have an 8bit machine in the 80s and code on it? [22:57] yeah, speccy and amiga [22:57] well amiga was 16 bit obviously [22:58] maliit is actually written in Qt [22:58] it contains absolutely no pointer arithmetic at all [23:00] alt+click+drag should move windows in all OSes [23:00] Oh dear, what will I do when the hud gets here? [23:00] threaten to stop using ubuntu forever [23:00] still use alt+click+drag? [23:00] ali1234: too obvious :P [23:01] popey: I know little of the hud other than alt is a problem [23:01] its not finished [23:01] ☺ [23:01] I am sure it will be sorted out [23:01] :) [23:01] maybe we could have two keyboards [23:01] alt+prtscr is going to have to work really, so everything else will [23:01] one for unity keyboard shortcuts, and the other for actually doing things [23:01] Heh [23:02] openoffice mouse? [23:02] I couldn't even figure out how I'm supposed to use maliit [23:02] I've just told my windows 2008 server to apply updates. I really shouldn't be so worried every time I do this :( [23:03] i think everyone is wrong. clearly a piano keyboard is the most efficient way to control a computer [23:03] I had it installed on the tablet but I just never understood how it was supposed to work [23:03] popey: haha [23:03] popey: I'd forgotten about that [23:03] popey: that's not any mouse, that's a might mouse [23:03] ali1234: onboard could do a piano layout [23:03] * mgdm strokes his trackpad [23:04] mgdm: been playing angry birds then? [23:04] oh, also what I want an onscreen keyboard to do is multitouch chording layouts [23:04] bigcalm: once or twice :) [23:04] http://plover.stenoknight.com/ [23:04] mgdm: it appears to be the most used app on my Xoom [23:04] I'm tempted to get a Morse key and hook it up to USB [23:04] :-) [23:04] so you could type stenographic chords on it [23:04] gordonjcp: you've probably done that, right? :) [23:04] but I think this may be another area where me and normal people have a different idea of what is useful [23:05] I am guessing predictive text is more useful than multitouch chording right? [23:08] yes significantly [23:08] and not really predictive but some kind of autocorrect [23:09] yes [23:09] if it learns then all the better [23:09] maliit doesn't use the system keyboard mappings it seems [23:09] of course it doesn't [23:09] the virtual keyboard shouldn't try to look like a physical keyboard [23:09] the layout of a full hardware qwerty keyboard is completely nonsensical for an OSK [23:09] AlanBell: I'm pretty sure I saw a piano keyboard for gnome touch being demoed somewhere [23:10] a physical keyboard is designed for 10 fingers always sat on it (optimally) [23:10] most OSKs should work optimally for one or at most two digits [23:10] one or two thumbs usually [23:10] yeah, I figured on a tablet you could touch type [23:10] depending if it is being held landscape or portrait [23:12] does maliit use at-spi to find out if you are in an editable field do you know? [23:12] no idea [23:12] dunno how it does it [23:12] i was looking for pointer arithmetic [23:13] and how do you drag it around or does it stay anchored to the screen I wonder [23:13] actually I could install it rather than reading about it couldn't I [23:13] there's 3 ppas [23:13] https://launchpad.net/~maliit-team [23:14] also there is #maliit ☺ [23:14] and they're very friendly and active [23:14] there is code for prediction and autocorrect in here [23:15] it is after all a framework upon which other keyboards are built [23:15] given that it is designed for a real commercial product that received favourable reviews i expect it works fairly well [23:15] it was used on the Nokia N9 and N950 AIUI [23:15] exactly [23:16] its also the base of Swiftkey [23:16] http://www.swiftkey.net/ [23:16] interesting [23:16] it's nice [23:16] "social AI keyboard" [23:16] does that mean it will turn everything i type into "lol wat u sayin" [23:16] nah, it automatically puts everything you type into twitter [23:17] you can hook it up to your FB and your Twitter and it can learn from your typing style [23:17] i see they put a release out a week ago [23:17] as it is qt it could in theory be stuffed into the unity2d frame thing that is like the nux layer on unity3d [23:17] nice and active [23:17] there's a mode where you can set it so that space will always insert a word, which can type reasonably coherent sentences, actually [23:17] [23:17] sausages [23:17] that works then [23:18] though if all you say is 'lol wtf bbq wat u up 2' then that's what it will type [23:18] i like _ -> i like swiftkey [23:18] this is like the google bubble except a million times worse [23:19] yay, I crashed maliit [23:19] it lowers the quality of all your typing to your hastily written facebook updates [23:19] because it is a filter on the output instead of a filter on the input [23:19] file a bug :p [23:19] oh, no I didn't, just got it in a funny popup mode to select some alternate keys [23:20] doesn't appear to work as an independent on-screen keyboard though [23:20] of course it doesn't [23:20] nobody actually wants that [23:21] it can work as a transparent overlay on top of the desktop [23:21] which is nice [23:21] maliit-keyboard-viewer is an application with a text field and keyboard under it, so you type stuff into that text field then what, copy and paste to somewhere else? [23:21] s/nice/what it should actually do/ [23:21] well, yes ☺ [23:21] how do I put it into direct input mode? [23:22] AlanBell: you write a plugin that causes it to appear whenever the user clicks in a text field and then automatically send the input back to the text field [23:22] whut [23:22] you know, like every OSK ever [23:22] or you re-use an existing one [23:22] yes [23:23] ok, so is there one of those? [23:23] for meego? yes [23:23] so it doesn't work [23:23] i don't know [23:23] * popey checks his other machine that has maliit on [23:25] http://bazaar.launchpad.net/~maliit-team/maliit/maliit-framework/view/head:/src/minputmethodhost.h [23:25] http://people.ubuntu.com/~alanbell/maliit.png [23:25] keyboard viewer is a demo tool [23:25] maliit is only the keyboard part [23:26] maliit-server -unconditional-show -bypass-wm-hint [23:26] try that [23:27] nothing [23:28] removed the last vga cable still in use in my house, end of an era really [23:28] ok, i've sent emails to 20 advertisers on gumtree, one has to respond :| [23:29] jacobw: what you buying? [23:29] looking for a new room [23:29] flatshare even [23:31] i'm getting on the property selling bandwagon soon [23:31] fixing up my place down here in Portsmouth ahead of getting rid :) [23:31] daftykins: moving back to jersey? [23:32] i'd been living with my oldies back on Guernsey since i graduated in '08, but getting kicked out now so i'm kind of a free agent :D [23:32] used to rent this place out but it's a lot more hassle than i want now [23:33] popey: ok, it works now, kind of [23:34] screenshot? [23:35] http://people.ubuntu.com/~alanbell/glitchymaliit.png [23:35] gnome-control-center = segfault land, lol [23:35] is segfault land like disney land? [23:36] yes except less abhorrent [23:36] it doesn't clean up the massive orange fingerdodge squares [23:36] when they fall outside the maliit window [23:37] pretty [23:37] * popey points AlanBell at #maliit [23:37] I can kind of see the point about an on-screen keyboard like that, simplified until it hurts [23:37] you're thinking of different use case tho aren't you? [23:37] the point? [23:37] you're thinking of 'replace the keyboard' use case [23:38] not the 'type text messages into a device' use case [23:39] it's not about use cases [23:39] I thought the keys not being all square and not offset like a proper keyboard in caribou was it being hopelessly primitive [23:39] well it is kind of about use-cases [23:39] it is *desireable* to have a primitive keyboard [23:40] from an a11y pov you want ` and @ and stuff [23:40] orca isn't [23:40] but from a tablet use case you often don't [23:40] the use case you are trying to solve is artificial [23:40] if people wanted a full keyboard they would plug one in [23:40] the only time i ever use ` is when writing shell scripts [23:41] also orca does a load of mouse stuff [23:41] i thought orca wasa screen reader? [23:41] sorry [23:41] onboard [23:41] onboard now has hover mouse stuff built in, which is granted a bit of an odd place for it, but there it is [23:41] if oyu are following an internet guide, ` can be quite useful [23:42] onboard solves the problem "i have a full desktop PC running a traditional desktop OS and for some reason I have unplugged the keyboard but i still want to use the computer fully" [23:42] yup [23:42] which is a problem that almost nobody ever has [23:43] I can see the point of this other type of keyboard [23:43] o2 Joggler. Plug in a USB kb to get things running, on screen keyboard after that [23:44] on my phone I am annoyed that the keyboards are not as good as onboard, I would *love* onboard for android [23:44] onboard wouldn't even fit on the screen [23:44] it would have scrollbars [23:44] it would fit, the buttons would be small [23:45] then it would be unusable [23:45] maliit doesn't seem to rescale at all [23:46] https://market.android.com/details?id=org.pocketworkstation.pckeyboard&hl=en that is what I use [23:48] I don't like primitive keyboards, but I do accept that most people would do [23:48] that might work on a tablet [23:48] no way you could press those button in portrait mode on a galaxy s [23:48] not without a capacitive stylus anyway [23:49] yes I can [23:49] using it now on a galaxy S2 [23:50] irssi in byobu and a full 5 row keyboard [23:50] and AlanBell has surprisingly fat thumbs [23:50] and back to the laptop [23:50] there's so many android OSKs [23:50] shame we cant easliy use/port them [23:50] I do normally use the 4 row layout in portrait mode but that was with the full 5 row one [23:54] I guess they are java things compiled the dalvik way [23:54] could they run under openjdk? [23:54] eww [23:54] hell no [23:55] not sure I'd want jdk on a tablet under arm [23:55] they should work in this though: http://openmobile.co/products.php [23:56] interesting product [23:56] so what is that? a dalvik runtime? [23:57] why not have openjdk on arm? or at least the JRE part of it? [23:57] is it dead? [23:57] no blog updates for ages [23:58] dead? it's a commercial product [23:58] which is no insulation against deadness [23:59] it's not dead. [23:59] try the news page instead of the blog