/srv/irclogs.ubuntu.com/2012/05/25/#ubuntu-us-mi.txt

rick_h_phew, 1:26 18.2mi ride...how am I going ot do 36mi on Sat?02:13
_stink_in 2:52?03:03
rick_h_hah03:07
snap-lMan, DNS takes forever to update.11:27
rick_h_hmm, it's usually been pretty quick for me these days11:44
brouschyour poor wife11:48
snap-lYeah, I know most folks really like those long, slow DNS updates12:01
snap-lThis is reverse DNS, so I'm not sure how long it takes12:01
snap-lI fear it'll be 24 hours12:01
snap-lwhich is no big deal, but it sould be nice to test my SPF record sooner than later12:02
snap-lhttp://arstechnica.com/information-technology/2012/05/no-cost-desktop-software-development-is-dead-on-windows-8/12:36
rick_h_yea, we'll see. They back out on stuff like that all the time12:38
brouschah geez12:40
snap-lSaw it on the python dev list, where their concern was CPython-related.12:40
brouschone more reason to move everything to webapps12:40
snap-lbrousch: s/webapps/linux/12:40
snap-lwe don't care what you target gcc to12:41
brouschwebapps all run on linux, so yeah12:41
rick_h_http://www.reddit.com/r/Python/comments/u49iw/pep_405_is_accepted_virtual_environments_will_be/12:41
brouschi can't wait to see autocad metro. that should be fun12:41
snap-lHUZZAH!12:41
brouschoh nice12:42
snap-lbrousch: They'll probably hang on to VS10 for as long as humanly possible12:42
snap-land 5 months after it's no longer possible.12:42
brouschactually the article says you can build non-metro if you pay for the IDE. i'm sure autodesk pays12:42
snap-lAutodesk moves like a glacier. A giant, boat-ripping glacier.12:42
rick_h_brousch: right, the concern is for OSS/school kids that won't pay the fee12:43
brouschi always thought so, but now they autocad on osx and a couple of very nice webapps12:43
brouschrick_h_: there's always eclipse!12:43
snap-lautocad is a verb?12:43
snap-lbrousch: Are you high?12:43
brouschas a kite!12:43
snap-lDoesn't eclise need VS to build?12:43
brouschjava12:43
snap-lRight, but C compilers and such?12:44
brouschwho uses C?12:44
* snap-l knows jack about Eclipse on Windows for anything other than Java.12:44
snap-lCPython, for starters.12:44
snap-lIt's even in the name. :)12:44
brouschi think cpython just moved from VS2008 to 2010 with python3.312:45
snap-lYeha, that's their concern.12:45
brouschso they're on 2010 now, and will be good for 5? years12:46
snap-lNot under Windows 8 they won't be12:46
brouschthis is much more troubling "In practice, you'll probably have to pay even for Metro development. Windows 8 won't, in general, support side-loading of Metro-style applications. Developers won't be able to stick a Metro-style application that they wrote themselves onto their website and let people download it. "12:47
brouschthat kills pretty much any reason i would have to use windows over osx12:47
rick_h_yea, they're getting to their own app store soon12:48
brouschapp store is fine, but requiring all installs to go through it is the shit12:48
* rick_h_ is so happy he hasn't had to load windows in multiple years now12:48
rick_h_heh, that's the point of the app store :)12:48
brouschi feel my blood pressure rising12:49
snap-lWelcome to the mainframe. Please leave your dignity at the login prompt.12:49
brouschi can see we'll be sitting on win7 for a decade12:50
rick_h_woot!12:50
brouschbetter buy up gobs of licenses12:50
snap-lAnd hope MS doesn't suddenly deactivate them all12:50
brouschdamn, you're right12:51
* brousch digs around for his win98se CD12:51
snap-lThe PC industry has worked hard to remove the cost-benefits that allowed it to be so successful in the early days.12:53
snap-lThat and the feeling of control over your own computing environment.12:53
brouschthat's one of the things that bugs me about unity. i feel like i lost some control over my desktop12:57
brouschi'm sure that will get better as it matures12:57
rick_h_then don't use unity if you need more control :P12:57
brouschi'm not12:58
rick_h_you have all the control in the wold you know12:58
snap-lI have all the control I need12:59
brouschi'm still really happy with kubuntu13:00
snap-lYeah, and that's awesome.13:00
brouschi can see kubuntu 12.04 as my OS for 3 years, if need-be13:01
snap-lI love how an idea hits you long after it's useful13:29
rick_h_hah13:29
snap-lbeen struggling with VMs and DHCP getting random IP addresses13:29
snap-land my solution is to essentially ping every machine on the network and look for mac address patterns via arp -n13:30
snap-lThe better answer would have been to create machines with two network adapters13:30
snap-lone for local NAT, and one for remote access13:30
snap-lso I could still have local access, and be able to associate an IP address with the machine that can be listed with some minor scripting13:31
snap-lOf course, port forwarding is a bitch for ssh under this scenario13:35
jrwrenits a lie anyway. you can always use the command line tools to do "no cost desktop software development on windows"13:45
jrwrenbrousch: what makes you think there will be autocad metro?13:45
brouschjrwren: there won't be. i corrected myself13:46
jrwrenisee13:47
snap-lhttp://www.geekculture.com/joyoftech/joyarchives/1695.html13:49
jrwrennot funny13:51
* ColonelPanic001 forgot his towel :(14:09
brouschi'll put that on your tombstone14:10
jrwrenbut do you know where it is?14:11
brouschrick_h_: what would you use instead of selenium in that django tdd tutorial?14:41
rick_h_just the client should work for basic things14:41
rick_h_selenium is a very hight level integration test, I'd not startt there for testing, but final overall functionality tests14:42
brouschwhat client?14:42
rick_h_a failing selenium test is near useless, run infreqeuntly, and really just a smoke test in usual cases14:42
rick_h_the django test Client14:42
rick_h_that lets you call the views/get response/etc14:42
rick_h_in pyramid I use webtest14:42
brouschthanks14:43
brouschok, so i think the fun part of testing will be the challenge of figuring out how to test something15:30
rick_h_brousch: yea, that's usually the case, just think small and work up15:30
brouschcopying and pasting tests from the tutorial is tedious, but i think building my own tests will be more interesting15:32
jrwrenwriting the test is also the design15:36
brouschwhat design?15:37
jrwrenexactly15:38
jrwrensolves that problem too15:38
jrwrensolves the overdesign problem. solves the lack of design problem.15:38
brouschoverdesign is definitely not my problem15:39
brouschoooooooh http://news.cnet.com/8301-1023_3-57441380-93/hps-webos-enyo-team-reportedly-heading-to-google/15:41
greg-gso, is it really true there is no usable FLOSS voip conference call app (eg: skype replacement)?16:14
rick_h_I hear there's this big blue button thing lol16:17
greg-g:( so, that doesn't work well, eh? I never really tried the MUG instance of it16:31
rick_h_sorry, just been browbeat that it's awesome and the future and worth sucking all the bandwidth out of our group meetings16:32
snap-lrick_h_: hear hear16:36
snap-lgreg-g: I'd give it a shot. Don't let our wearied expressions dissuade you.16:37
snap-lIt's just that we haven't gone two months without hearing something about it16:38
jrwrenI think if you put up asterisk you can do it.16:59
brouschbig blue button was on FLOSS weekly. it has to be good17:00
greg-grick_h_: bandwidth issue wouldn't be a problem in my use case (set it up as a server the world could use, not library-based group meeting :)17:28
greg-gjrwren: yeah, we (CC) used to have an Asterisk server for our weekly calls, the quality wasn't hte bst for some reason17:28
rick_h_greg-g: yea, the thing is open codecs just don't seem to work as well for that stuff.19:25
greg-gspeex or whatever it is is pretty good, from the stuff I've read19:36
greg-ghonestly, the xiph community does some good stuff19:37
greg-gI want to just blame it on apathy, but I still don't know if I can19:37
snap-lI think it's also partly because of the QoS that stuff like Skye does behind the scenes19:37
rick_h_greg-g: oh yea don't get me wrong. It's hard to get fired up when there are free working alternatives19:38
rick_h_especially because this kind of thing is effected by network effects19:38
greg-gright19:39
greg-gthat was the phrase I couldn't come up with before, heh19:40
snap-lGod, I should just throw out all of the 32 bit machines in the house19:43
snap-lwas going to set up a server, but the software I downloaded was 64 bit only19:43
snap-lThat's a few minutes I'm not going to get back19:44
PainBankwhat do you all think of JSLint?  I just checked it out for the first time and was wondering if you use it and what your thoughts on it are?19:47
rick_h_live by it19:47
rick_h_it's ,m in my vim setup19:47
rick_h_I use node/npm version of running it19:47
rick_h_sudo npm install -g jslint (after you get nodejs and npm first)19:47
Blazeixyeah, definitely use jslint19:48
Blazeixit will catch all sorts of things, the biggest for me is unintended global variable use19:48
snap-lput another way: there's no good reason why you shouldn't use it19:48
rick_h_it saves a lot of debugging headaches19:48
rick_h_it's picky/strict, but that's the best kind of tool :)19:48
PainBankright on19:48
PainBankya, I noticed the 'using strict' issue came up right away, which is annoying, but requires everything to be right.19:49
PainBankso you correct event the small things like adding var to the start of a variable declaration and clean up the spacing warnings?19:49
brouschor youcould use coffeescript which supposedly always creates jslint passing code19:49
rick_h_especially adding the var19:50
PainBankya, no on coffeeeeeee19:50
PainBankok19:50
rick_h_and yea, I'm a spacing nut...19:50
rick_h_so consistant spacing ftw19:50
brouschrick_h_: give a pep8 nazi talk at pyohio19:51
brouschyou could yell and froth at people19:51
PainBankanyone created an NPAPI before?19:53
Blazeixi haven't, what are you building?19:56
snap-lhttp://arstechnica.com/gaming/2012/05/kingdoms-of-amalur-developer-lays-off-entire-staff/ <- This is fucked up19:56
PainBankembedded system using browser for the GUI... need to trigger the hardware functionlaity19:56
snap-l(not the layoff bit, the how it was funded bit)19:56
PainBankwow19:56
PainBank379 staff...19:57
PainBankwhoa19:57
PainBankumm... both.20:00
snap-lYeah ,the first part is sad20:00
snap-lthe second part si "wtf were they thinknig"20:00
PainBankpretty fucked up, that they knew they were in trouble, yet kept the whole 380 staff on... ya wonder how many knew there were issues before the big layoff....20:00
PainBankas in sitting around, twiddling thumbs... waiting for said axe to fall.20:01
snap-lI think they were waiting for a bailout from the govt.20:01
PainBankthe funding part is just nuts... hell.... it isn't a 3rd in a series of a halo or MW series or anything.20:01
PainBankthey already had it... and the execs had quite the fun time for a while...20:01
snap-lJava: The Speed-bump of the internet20:28
snap-lI swear, the requirements for Alfresco should be just one word: more20:28
snap-lmore CPU, more RAM, more everything, pease20:28
brouschi thought of looking at elfresco, but never did20:32
brouschseemed huge20:32
snap-lhttps://identi.ca/notice/94003046 https://identi.ca/notice/9400305620:34
Blazeixsnap-l: haha20:38
snap-lWould someone that doesn't normally receive mail from me be willing to help me with an experiment?21:09
snap-lie: I shouldn't be in your contact list, or on Google plus21:09
snap-land you should have a gmail account21:10
Blazeixdoes it have to be gmail? you could use 10minutemail21:11
snap-lI've had my mail show up as spam in gmail21:11
snap-land I wanted to see if I'd finally nailed the SPF record so it doesn't do that anymore.21:11
snap-lport25 and the openspf mailer says that I pass21:12
snap-lMaybe I should just let it go. :)21:12
shakes808snap-l: what do you need me to do?21:20
snap-ljust pm me your e-mail address21:20
snap-land wait for an e-mail from me21:20
snap-land then lmk if it showed up in spam21:21
brouschsnap-l: starting a spam ans scam company?21:22
snap-lbrousch: You betcha21:22
shakes808came through in my normal inbox21:23
snap-lshakes808: Thank you.21:23
shakes808np21:23
shakes808glad to be of assistance ;)21:24
shakes808... and now the flood of spam mail and chain letters commence :-/21:24
shakes808loll21:24

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