IRC log for #wowuidev on 20110530

00:01.02FiskerTC-Laptop
00:01.25Fiskeri would say that 1 + 1 = 2
00:01.32ShirikOh Reginald
00:05.21*** join/#wowuidev Own3d (~Own3d@ool-457a4a7c.dyn.optonline.net)
00:05.41*** join/#wowuidev Scotepi (~Scotepi@bb-66-63-102-243.gwi.net)
00:05.47Shirikhey Fisker
00:05.51ShirikDo you want this http://www.youtube.com/watch?v=6ehYdqLwUVw&feature=related
00:07.03Scotepihow can i identify a frame via mouseover? is there something built in or a addon? i rember i think Torhal had one back around 1.10-2.0 days
00:09.05HjalteI believe there is a slash command for that
00:09.11HjalteI just don't remember what it is
00:09.23HjalteIntroduced with cataclysm
00:11.55Scotepigrr I hate wowprograming.com some times
00:14.22IrielScotepi: try /framestack
00:14.39*** join/#wowuidev Tuller (~tuller@c-69-143-48-210.hsd1.va.comcast.net)
00:15.18Scotepithanks
00:16.20ScotepiCharacterStatsPaneCategory1 here I come!
00:17.56*** join/#wowuidev Chamenas (~Chamenas@pool-173-76-192-176.bstnma.fios.verizon.net)
00:29.27Fiskerslaps Shirik around a bit with a large trout
00:31.03Cidehey Shirik
00:31.08Shirikyo
00:31.14Cidewhat's hanging
00:32.22*** join/#wowuidev TC-Laptop (~TC@cpe-76-94-200-231.socal.res.rr.com)
00:42.43Cidethat much huh
00:47.02Scotepiwow, so i've never done raw coding, rading the blizard functions and working around them before and i just managed to add my own info to the paperdoll frame in 30mins and 10 lines of code
00:47.23Cideraw coding huh
00:47.33nebula169love it raw
00:47.47Scotepiidk what exactly to call it, reverse enginering i guess
00:48.26*** join/#wowuidev TC-Laptop (~TC@cpe-76-94-200-231.socal.res.rr.com)
01:14.47*** join/#wowuidev Chamenas (~Chamenas@pool-173-76-192-176.bstnma.fios.verizon.net)
01:31.24*** join/#wowuidev TC-Laptop (~TC@cpe-76-94-200-231.socal.res.rr.com)
01:32.19*** join/#wowuidev kd3 (~Kaydeethr@wowwiki/Kaydeethree)
01:33.41kd3eesh. if it's not one thing it's something else...
01:33.48kd3where's supertyphoon songda pointed at now?
01:36.41sylvanaar84 hours in Terraria Ackis?
01:36.50sylvanaarwoops
01:37.59sylvanaarnvm Ackis
01:38.36Ackisgrrrrrrrr
01:39.07Ackisguessing you meant Adys?
01:43.19*** join/#wowuidev Random (~Denial@unaffiliated/windaria)
01:43.40sylvanaarsorry
01:44.34*** join/#wowuidev xdpirate (~turbopira@213.138.174.137)
01:44.49xdpirateYo, anyone know how I can detect if another addon is installed/running?
01:45.06kd3look for its globals?
01:45.09Arrowmaster!api addonloaded
01:45.09lua_botIsAddOnLoaded: Returns whether an addon is currently loaded (http://wowprogramming.com/docs/api/IsAddOnLoaded)
01:45.18xdpirateThanks arrowmaster :)
02:18.28karl_w_wplease god, why is justine bieber on my tv advertising proactiv
02:21.53Arrowmasterlol
02:22.04DagmarBecause you're watching the wrong channel
02:26.54*** join/#wowuidev TC-Laptop (~TC@cpe-76-94-200-231.socal.res.rr.com)
02:27.10TC-LaptopFisker: LIES!
02:51.43*** join/#wowuidev Hjalte (~chatzilla@cpe.ge-0-2-0-835.arcnqu2.customer.tele.dk)
02:53.28*** join/#wowuidev Jayle (~Ilorin@67-197-8-52.rh1.dyn.cm.comporium.net)
03:06.20*** join/#wowuidev dano5 (~dano5@56.84-48-111.nextgentel.com)
03:12.44*** join/#wowuidev bluspacecow (~bluspacec@60-234-165-167.bitstream.orcon.net.nz)
03:12.44*** mode/#wowuidev [+v bluspacecow] by ChanServ
03:18.19*** join/#wowuidev Scotepi (~Scotepi@bb-66-63-102-243.gwi.net)
03:20.29Scotepihow can I hook a frame so I can call some code when it is shown?
03:21.04IrielUse frame:SetScript("OnShow", yourFunctionName)
03:21.11Scotepithanks
03:22.51*** join/#wowuidev Xinhuan (~Xinhuan@WoWUIDev/WoWAce/xinhuan)
03:33.35*** join/#wowuidev xyphoid (~xyphoid@unaffiliated/xyphoid)
03:46.29Scotepiok, so on that setscript('OnShow'), im trying to do it to GuildMemberDetailFrame that isn't avialble on load so i went to its parent, GuildFrame, however that parent is UIParent, so I guess I don't know how to register it
03:46.52Scotepii'll keep looking and try and find the real function i want to register to maybe i can avoid frame stuff
03:48.46XinhuanScotepi, you could have your addon's TOC specify ##LoadWith: Blizzard_GuildUI or whatever addon it is that contains the frame that isn't available on load
03:49.43ScotepiI would like this addon to do this with multipul frames that wont be aviable on load such as friends list and calander
03:49.52Xinhuanalternatively, you can register for ADDON_LOADED, and check for arg1 == "Blizzard_GuildUI"
03:50.26Scotepithanks, ill try that
03:50.38Xinhuanyou'll have to do that for each load-on-demand addon
03:50.55Xinhuanand your addon should also check if the frame exists in the first place
03:51.22Xinhuanas anther addon might have force loaded the blizzard ones before yours
03:51.53Xinhuan(either by LoadAddOn() or by specifying the blizzard addons as a ## Depedendency
03:52.00Xinhuan^^ my spelling is bad
03:52.27Xinhuanyou can also do that
03:56.14Scotepigrr, i think this is a bit over my head..
03:56.35Scotepii got it registered fine, however my code to add the line of text isnt working now
03:57.03Xinhuani might have misunderstood what you wanted to do
03:57.34Xinhuandid you mean to say that you wanted to do something with GuildMemberDetailFrame, but that frame doesn't exist when your addon loads
03:57.37Scotepithat part i got figured out, thanks its now onto the code i though would work
03:58.12Xinhuanwell if you take a blizzard provided frame and registered an event, it would call the event handler of that frame
03:58.15Scotepii did the addon == 'Blizzard_GuildUI' then doing SetScript and my function is being called at the right time now
03:58.28Xinhuanah
03:58.42Scotepiits just my code that actualy adds the line of text
03:58.51Xinhuanok
03:59.09Scotepiim getting FontString is not a valid frame type
04:00.07Xinhuanthat's correct, its not a frame
04:00.46Xinhuana fontstring or a texture MUST belong to a frame, and is created with frame:CreateFontString() and frame:CreateTexture()
04:02.23ScotepiLooking at this XML http://wowprogramming.com/utils/xmlbrowser/live/AddOns/Blizzard_GuildUI/Blizzard_GuildRoster.xml search for GuildMemberDetailRankLabel i want to 2 add another GuildMemberDetailRankLabel and GuildMemberDetailRankText
04:03.25ShirikFisker
04:03.45ShirikHÃ¥ll om mig nu
04:03.50Cide...
04:04.05Xinhuanso framename:CreateFontString("name for my string", "ARTWORK", "GameFontNormalSmall")
04:04.18Scotepiim all registered to the OnShow of GuildMemberDetailFrame fine
04:04.25Shirikhi Cide
04:04.29Cidehi
04:04.35Cidepretty sure that was swedish
04:04.43Cideunless danish and swedish coincided for that particular sentence
04:04.48Xinhuanafter creating it, you still need to set the position and anchor of your fontstring
04:04.54Xinhuanand the text for it to display
04:06.09ShirikI dunno Cide
04:06.15ShirikI just saw the po and assumed it was one of the two
04:06.19Shirikso I guess it's swedish
04:06.22Shirikso Cide
04:06.24ShirikHÃ¥ll om mig nu
04:06.28Cideokay
04:06.34Shirik٩(•̮̮̃•̃)۶
04:06.52Cidethat would make me eligible as a reference yeah?
04:06.56Scotepiwants to kick whoever though it was a good idea to add a ondblclick to the code area of wowprograming
04:07.00ShirikI like how you didn't even complain about the "po"
04:07.13CideI know a lost battle when I see it
04:08.49Cidekdevelop's code generation is fucking awful
04:08.54Cideand by awful I mean bugged
04:12.17Own3dHas anyone here done sinestra that is willing to answer a few questions about the fight mechanics?
04:13.07Shirikthought you said flight dynamics :(
04:17.54Own3dWell is there anyone that knows if wrack dispel has a range for its jump?
04:18.28Cidethat would trivialize the mechanic entirely
04:22.53Cidealso you'd need the max range to be <40 yards to exploit it
04:23.02Cidewhich it definitely isn't
04:28.17*** join/#wowuidev TC-Laptop (~TC@cpe-76-94-200-231.socal.res.rr.com)
04:29.24*** join/#wowuidev PProvost (~PProvost@71-33-200-9.hlrn.qwest.net)
04:37.31*** join/#wowuidev TC-Laptop (~TC@cpe-76-94-200-231.socal.res.rr.com)
04:43.55kd3neat; both the shuttle and the station have Ku and the shuttle's doing the flyaround of the station right now
04:44.15bluspacecowKu ?
04:44.27kd3Ku-band, a high-bandwidth satellite link
04:44.43bluspacecowstation ?
04:44.44bluspacecowwhere u
04:44.48kd3space station
04:44.54bluspacecowneat !
04:46.15*** join/#wowuidev Aeyan| (~pancake@cpe-024-163-014-009.triad.res.rr.com)
04:46.22Shirikheh, I started this new program
04:46.27ShirikOutputs:
04:46.28ShirikNew install path detected.
04:46.29ShirikFixing .cert files (please be patient & don't kill me) ...
04:50.37DagmarManly scripts don't beg.  They self-execute under nohup.
04:51.06bluspacecowrawwrrr
04:56.32bluspacecowhttp://www.nyanicorn.com/
05:02.44Krapsbluspacecow: blessings upon you
05:04.26Scotepihow can i set anchors in lua?
05:04.42Cidewww.wowprogramming.com
05:04.48Cide"SetPoint"
05:05.14Scotepithanks
05:16.21*** join/#wowuidev Xubera (Xubera@72-255-16-185.client.stsn.net)
05:17.40airtonixsets cides point
05:19.51Krapshttp://www.youtube.com/watch?v=vCcRHG51mdI&NR=1
05:20.59*** join/#wowuidev TC-Laptop (~TC@cpe-76-94-200-231.socal.res.rr.com)
05:22.34*** join/#wowuidev Chamenas1 (~Chamenas@pool-173-76-192-176.bstnma.fios.verizon.net)
05:30.49Scotepione of blizzards frames has a fixed heigh, is there any way to set the heigh to automatic? they also change the height with there code
05:31.25ScotepiSetHeight(0) isnt working
05:31.33*** join/#wowuidev Jamash (~Jamash@adsl-75-60-173-196.dsl.bltnin.sbcglobal.net)
05:32.17XuberaWell how do you mean automatic?
05:32.28*** join/#wowuidev Jamash (~Jamash@adsl-75-60-173-196.dsl.bltnin.sbcglobal.net)
05:32.48Xuberalike, do you want it to fill another frame?
05:32.59Scotepiso it fits all of the content, tho now that i think about it, that isnt something the ui does well
05:33.15tekkubthe stuff inside the frame? no
05:33.24tekkubframes do the reverse well
05:33.34MentalPowerits not HTML...
05:33.38tekkubfitting the things inside one frame to their parent/anchored-to frame
05:33.47Scotepiright now there is stuff hidden in the frame via overlap, one min, let me post a ss
05:34.04tekkubthat's what scrolling is for generally
05:35.12Scotepihttp://imageshack.us/photo/my-images/101/wowscrnshot053011013343.jpg/
05:37.05Scotepii can manualy set the high to the correct value, however it any other addons add content there (now that i know how to do this i have a idea for one) it will get messed up and blizzard also manualy sets the height in there code
05:37.48ScytheBlade1woo, linux 3.0.0-rc1 just happened
05:37.59hastebut it should have been 3.0-rc1 :D
05:38.04ScytheBlade1=]
05:38.14hastehe so lazy
05:38.23Scotepi? kernel? kernel is even numbers only for major
05:38.26*** join/#wowuidev MentalPower (~MPower@WoWUIDev/Norganna/Administrator/MentalPower)
05:38.26*** mode/#wowuidev [+v MentalPower] by ChanServ
05:38.41ScytheBlade1not anymore
05:38.53ScytheBlade1successive releases will be +1 on .y
05:39.02ScytheBlade1so we will have 3.0, then 3.1, 3.2, etc
05:39.19hastelinux hasn't used stable numbering in aeons
05:39.20ScytheBlade1The "stable" versions will be .z
05:39.45Scotepiwow, been a long time since ive really used linux, my last kernel was 2.6.28
05:41.21Scotepiso back to my question, is it possable to change that frame to a automatic height?
05:42.24tekkubnot the way you want
05:46.29Shirikwhy do we need a linux 3.0
05:46.33Shirikwait, let me answer that myself
05:46.39Shirikdid it get rid of all the shit that shouldn't be in the kernel?
05:46.54Krapshows this for strange http://kotaku.com/5806088/in-the-virtual-world-his-fiancee-never-died
05:46.59ScytheBlade1So what are the big changes?
05:47.01ScytheBlade1NOTHING. Absolutely nothing.
05:47.06ScytheBlade1http://permalink.gmane.org/gmane.linux.kernel/1147415
05:47.08Shirikfigures
05:51.24ScytheBlade1and I think I may wind up buying another pair of headphones
05:51.25ScytheBlade1sigh
05:54.16CideI did that a week ago
05:59.38*** join/#wowuidev Chamenas (~Chamenas@pool-173-76-192-176.bstnma.fios.verizon.net)
06:03.28Arrowmasterbah, just recompiled mplayer2 with an extra dev lib installed and it didnt fix my playback problem on this file
06:04.44ArrowmasterScotepi: meh im still using 2.6.32
06:05.26*** join/#wowuidev kasterma (~kasterma@kasterma.colorado.edu)
06:06.09AdysScytheBlade1: how much do you bet distros will be scared of including it for ages
06:07.02Shirikhey ScytheBlade1
06:07.06ShirikI'm going to go release linux 4.0 now
06:07.07Arrowmasterthey wont be
06:07.08Shirikbrb
06:07.34Arrowmasterand linus wanted to shorten the pointless 2.6 to just 3
06:07.58AcidWebMorning
06:08.27Adyshttp://kerneltrap.org/node/436
06:08.33AdysLinux: 2.6 vs. 3.0; What's In A Name?
06:08.33AdysSubmitted by Jeremy
06:08.33Adyson September 28, 2002 - 10:28pm
06:09.40Arrowmasterthere was even talk of using a year based version number
06:10.12Shirikyou're asking Linus to make sense
06:10.19Shirikyou're doomed to failure if you believe that can happen
06:10.40*** part/#wowuidev Seerah (~Ryan@adsl-74-226-68-147.mem.bellsouth.net)
06:18.06*** join/#wowuidev cbreak_work (~cbreak@drz-wizzer.drz.ethz.ch)
06:26.57*** join/#wowuidev Elkano (~elkano@pool014.vpn.uni-saarland.de)
06:26.57*** join/#wowuidev Elkano (~elkano@WoWUIDev/WoWAce/Elkano)
06:31.20*** join/#wowuidev Monolit (~postid08@89.112.4.92.pppoe.eltel.net)
06:44.01Jamashwhy is he compiling the kernel on his lousy laptop instead of some sort of ridiculous amazon s3 distcc thingamabob
06:50.46*** join/#wowuidev Vilkku (Vilkku@86-60-144-203-dyn-dsl.ssp.fi)
06:54.07Arrowmasterwhy not?
06:54.29Arrowmasterhave you actually compiled anything recently on a multicore system?
07:00.52Adysfuck
07:00.55Adysanyone decent with git?
07:02.02cbreak_workhmm?
07:02.37Adysnvm, got it to work. somehow i was pushing to github and it kept saying "everything up to date"
07:02.46Adysi had to checkout master and re-commit
07:03.11cbreak_workmaybe everything was up to date... :)
07:03.34*** join/#wowuidev BWMerlin (~BW~Merlin@CPE-60-226-105-114.qld.bigpond.net.au)
07:03.52Adysit wasnt
07:03.58Adyshad made two commits
07:04.28cbreak_workwhich branch?
07:04.59Adysapparently i wasnt on a branch
07:05.49cbreak_workwell
07:05.52cbreak_workif you detach your head
07:06.02cbreak_workthen obviously there's nothing to push if you just change the aether
07:06.16cbreak_workif you committed something with a detached head, you can find it in the reflog
07:06.20cbreak_workand cherry-pick it from there
07:06.47Adysreflog?
07:07.39cbreak_workAdys: man git-reflog
07:07.48Adysta
07:07.50cbreak_workit stores every ref you've been to
07:07.56cbreak_workalso: git log -g
07:20.43*** join/#wowuidev leizeQ (~rasto_bod@212.89.228.197)
07:36.16*** join/#wowuidev sylvanaar_ipad (~sylvanaar@ip-216-36-118-172.atl.megapath.net)
07:37.38sylvanaar_ipadYou know, I just realized I have been hanging out in IRC with you guys for 5 years
07:38.35Corrodiasyou're wasting your life!
07:39.30sylvanaar_ipadYeah, but I'd be doing that Anyways
07:39.56sylvanaar_ipadAt least I have company
07:40.15*** join/#wowuidev Kalroth (~kalroth@mail1.retailplanit.com)
07:40.36*** join/#wowuidev stolenlegacy (~stolenleg@unaffiliated/stolenlegacy)
07:41.11Corrodiasi wish i had pudding
07:42.38sylvanaar_ipadLike the suicide pudding? The kind that takes you to spaces.
07:43.13sylvanaar_ipads/es/s
07:43.32sylvanaar_ipadAutocorrect doesn't like me
07:45.13*** join/#wowuidev Iriel (~Iriel@adsl-71-158-244-138.dsl.pltn13.sbcglobal.net)
07:45.13*** mode/#wowuidev [+o Iriel] by ChanServ
07:50.03mitch0gaah...
07:50.09mitch0IE doesn't support :nth-child
07:50.34sylvanaar_ipadIE9?
07:50.42mitch0not listed
07:50.44mitch0so dunno
07:51.18mitch0seems it does though (according to ms)
07:51.21*** join/#wowuidev TC-Laptop (~TC@cpe-76-94-200-231.socal.res.rr.com)
07:51.22*** join/#wowuidev brykrys (~chatzilla@cpc2-craw2-0-0-cust961.croy.cable.virginmedia.com)
07:51.22*** join/#wowuidev brykrys (~chatzilla@WoWUIDev/Norganna/Dev/Brykrys)
07:51.47mitch0also, is it normal that position: relative doesn't work on <th> ?
07:51.56sylvanaar_ipadI like ie 9 , it just needs ad lock
07:52.00sylvanaar_ipadUgh
07:52.04sylvanaar_ipadBlock
07:54.13Xuberawhy does a table need a style for position?  isnt it relative by default, and why have a table if your gonna make it absolute?
07:55.08Dagmar1.6.5 there seems to crash often
07:55.22mitch0the th needs to be relative so a subsequent absolute positioned element is positioned relative to that
07:55.42Cideinside the th?
07:55.52mitch0xubera: I'm trying to position a checkbox at the top-right corner of the th
07:56.06Cidejust make a div inside the th and make that relatively positioned
07:56.23mitch0I tried with span, but that didn't work out
07:56.28Cidespan is not a block element
07:56.30*** join/#wowuidev Caleb| (~caleb@178.48.162.10)
07:56.31mitch0I'll try with div
07:56.32Xuberadiv is better
07:56.42mitch0also, fsck IE
07:56.48Xuberaspan kinda reminds me of <P> where it tries to add more style elements than you want
07:57.01Cidespan is the block-less div
07:57.12mitch0still, why doesn't position: relative work for a <th> ? is it defined in the CSS standard somewhere?
07:57.28Cideprobably has to do with the display value
07:57.32Cideit's probably display: table-cell
07:57.42Cidewhereas div is display: block
07:57.42Shirikmitch0
07:57.49mitch0shirik
07:57.53ShirikYou seem to think that the CSS/HTML standard has some kind of pull
07:58.03mitch0pull?
07:58.03Cide^
07:58.08hastev
07:58.19Shirikweight
07:58.23Shirikpeople actually listen to it
07:58.23mitch0ah
07:58.25CideGRAVITATIONAL PULL
07:58.37mitch0well, I have hopes, yes
07:58.46Cidespacetime distortion
07:58.56hasteMy table should weight over 9000 and thus make the content below crack
07:58.58ShirikNot only does it not have pull, there are people that read it solely to not follow it (microsoft)
07:59.03airtonixproblem officer?
07:59.14Cidemy gravitional pull brings all the boys to the yard
07:59.26mitch0ok, lemme try the div thing
07:59.27Shirik...
07:59.43Cideliterally!
07:59.59ShirikCide, please try not to give me mental health issues
08:00.03Shirikthat is a disqualifying factor
08:00.11CideI cannot make any guarantees
08:00.29Cidethis happens every time it's 10am and I have not yet slept
08:00.35*** join/#wowuidev Aeyan (~pancake@cpe-024-163-014-009.triad.res.rr.com)
08:00.53Shirikit's only 1 am
08:00.56Shirikso you should be good
08:01.00Cideoh
08:01.05Cide9 more hours to go then
08:01.23airtonixgaffle team deployed
08:01.34airtonixeta: 9hrs
08:01.41Shirikgaffle?
08:02.00airtonix"to abduct with gaffa tape and a black van"
08:03.12airtonixin the blink of an eye, one is gaffa taped up around the face and pulled into the slow passing black van.
08:03.24airtonix"Nothing to see here, move along"
08:03.36airtonixit never happened.
08:04.08Cidewhy gaffa tape when there is duct tape
08:04.18airtonixgaffa tape is stronger
08:04.25CideSTRONG BAD
08:05.17mitch0div workses
08:05.22Cideindeed
08:05.45airtonixthere is a disturbance in the force.
08:05.46Cidewhen in doubt, <div>ide and conquer
08:07.45mitch0now, should I bother with IE or not...
08:09.43airtonixuse conditional comments to provide cssrules to the exception
08:10.04Cideyep
08:10.54Cide<!--[if IE]><style type="text/css">* { display: none; }</style><![endif]-->
08:17.05*** join/#wowuidev leizeQ (~leizeQ@212.89.228.197)
08:17.20*** join/#wowuidev TC-Laptop (~TC@cpe-76-94-200-231.socal.res.rr.com)
08:17.57*** join/#wowuidev sylvanaar_ipad (~sylvanaar@public.qvssoftware.com)
08:21.26ShirikCide
08:21.31Shirik(01:05:37) (+Cide) when in doubt, <div>ide and conquer
08:21.34ShirikYou should be shot for that
08:26.10Shirik:(
08:26.31ShirikA cartoon just hit on a real point about the UAVs I work on
08:26.54Shirik"Failed to acquire target. Returning to base." "Negative, not cost effective; terminate self."
08:27.04ShirikThat's what's going to happen in 20 years
08:27.07Shirikin b4 drone wars
08:28.21Xuberayall attach explosives to UAVs?
08:28.28Xuberayall just cant crash it, someone could pick it up
08:30.09Shirikturn it into a missile? :)
08:31.26Xubera,
08:34.21Xuberadoes anyone else get a temporary writers block, and as that cursor is just blinking at you, awaiting your next character, you just type in a bunch of gibberish?
08:35.04Shirikno, because if I try to do that I'll probably end up deleting the entire contents
08:35.08Shirikthat's what vim does for you
08:35.19jnwhitehO.o
08:35.38Shirikwell theoretically possible :)
08:35.44Shirikin several different ways
08:35.54jnwhitehif you're incapable of understanding modal editors :P
08:36.10Shirikwell I wouldn't be sitting in insert mode randomly
08:36.21Xuberaif you delete the entire contents, hit Ctrl Z ?
08:36.29Shirikso "type in a bunch of gibberish" = "something crazy"
08:36.43ShirikI don't know what Ctrl+Z does in vim
08:36.47Xubera<PROTECTED>
08:36.47jnwhitehindeed..
08:37.00*** join/#wowuidev Gnarfoz (smallbrain@WoWUIDev/WowAce/Gnarfoz)
08:39.07*** join/#wowuidev Ketho (~Ketho@ip565063bd.direct-adsl.nl)
08:39.09mitch0shirik: [1]+  Stopped                 vim
08:39.16Shirikoh ha
08:39.16mitch0^ that's what ctrl-z does ;)
08:39.38Shirikok well then in windows? :P
08:40.09*** join/#wowuidev rtharper (~tomh@unaffiliated/sioraiocht)
08:41.15mitch0it probably inserts ^Z
08:41.46mitch0but who cares, really?
08:43.16ShirikI do :(
08:48.21Xuberahow can i determine if something is soulbound?
08:48.44XuberaGetContainerItemLink gives me a link, but it just says bind on pickup when I click on it
08:50.10kd3tempting fate? http://images.gammatester.com/pics/0a59778c1890209d4ed369d32f018b69.png
08:51.34Corrodiasplease explain to me what you mean
08:51.37Corrodiaskd3
08:51.40CideShirik
08:52.02jnwhitehkd3: nah, just awesome :P
08:52.40Cidehow can it ever be more cost effective to blow everything up than it is to return to base, saving some things, unless the environmental damage is greater than the cost of the things that make their way back to base?
08:54.47jnwhitehXubera: the only way is scanning the tooltip
08:54.56jnwhitehafaik
08:54.59jnwhiteh!api Soulbound
08:54.59lua_botCould not find a match for 'Soulbound'.
08:55.48Xuberathanks j
08:56.19jnwhitehXubera: I believe its one of those odd things that the client doesn't know until it actually tries to do something with it.
08:57.16Xuberawell i just wanted to make a bag sort addon for me, and all the ones I find are not what im looking for
08:57.38Xuberaand how do i whisper lol, never used an irc before
08:58.11Cidehttp://www.joystiq.com/2011/05/29/president-obama-gifted-the-witcher-2-from-polish-prime-minister/
08:58.17Cidewin
09:01.19jnwhitehthose books are great
09:01.26jnwhitehthey're just too slow to be translated =/
09:02.44AcidWebHeh. One time somebody waits for polish -> english translation. Not vice versa ;]
09:03.29*** join/#wowuidev kd3 (~Kaydeethr@wowwiki/Kaydeethree)
09:08.13Xuberawhat step am I missing
09:08.16Xubera<PROTECTED>
09:08.19Fiskerslaps jnwhiteh around a bit with a large trout
09:08.31Cidetime?
09:08.51Cidedrop the last two calls and do them after in a separate /run
09:08.54Cidesee if it works better
09:10.40Xuberano, it didnt show, let me change the anchor to cursor
09:11.11Xuberano its not showing up
09:11.13*** join/#wowuidev Aeyan| (~pancake@cpe-024-163-014-009.triad.res.rr.com)
09:11.28TorhalTry setting the bag item, THEN showing.
09:11.42TorhalI don't know why that may make a difference, but the UI can get funky
09:12.49Xuberaoh clearing all poitns, then setting the owner, then setting the text then showing made something appear  (i just tried text, didnt try SetItem
09:12.59TorhalNice
09:13.30Xubera<PROTECTED>
09:13.47Fiskerjnwhiteh
09:13.50Xuberathere we go, have to clear all points,  i had :Show() after to begin with but rearranged to see if that was the issue
09:13.53jnwhitehk
09:13.57Fiskerit's monday monday got feel like shit on monday
09:14.09Fiskergoing to bed at like 4am isn't a good idea
09:14.21Xuberaactually, i dont even have to show the tooltip that way
09:20.20CideFisker: real men don't go to bed until 11:30am
09:21.50Fiskerwell i can do that too
09:21.55Fiskergreat idea actually
09:22.12*** join/#wowuidev Aeyan (~pancake@cpe-024-163-014-009.triad.res.rr.com)
09:25.17Cidegood
09:28.43Wobinhm
09:28.48WobinI like today's Teefury
09:30.59Fiskerhey Wobin
09:31.05Fiskeris it monday ?
09:31.11Wobinyes
09:31.28Blu|Shower|Eatsbbl
09:31.29Fiskerclaps his hands
09:31.31Fiskerhey Blu|Shower|Eats
09:36.30*** join/#wowuidev gsnerf (~gsnerf@141.23.19.253)
09:39.14*** join/#wowuidev stolenlegacy_ (~stolenleg@unaffiliated/stolenlegacy)
09:40.06Fiskerit's stolenlegacy
09:42.15Fiskerhttp://vr-zone.com/computex/intel-x79--ecs-x79r-a-sighted-at-computex/12428.html <-wtf
09:42.50*** join/#wowuidev Aeyan| (~pancake@cpe-024-163-014-009.triad.res.rr.com)
09:44.08*** join/#wowuidev sylvanaar_work (~sylvanaar@tut.qvssoftware.com)
09:44.55sylvanaar_workanyone feel like trying out my editor for some quick feedback before I post an ANN on Lua-l?
09:46.17Fiskerhey sylvanaar_work
09:47.56sylvanaar_workhey Fisker
09:48.48*** join/#wowuidev Vilkku (Vilkku@86-60-144-203-dyn-dsl.ssp.fi)
10:05.34*** join/#wowuidev foxlit (~foxlit@0x573e6bae.alb2nxx18.dynamic.dsl.tele.dk)
10:06.37Xuberaif i have table1 and table 2,  and i sort the items in table 1 and I want the items in table 2 to also get sorted in the same way because the tables are related, whats the best way to do this... for example...
10:07.39Xuberalocal table1 = { "a","d","c","b"}   table2 = { "1","4","3","2" }   if i sort table1, how can I get table 2 to sort as well so that they match up
10:08.07Xuberaim thinking about making my own function, and just doing a bubble sort, but is there a better way
10:08.14foxlitThe same way you counter someone going for broodlord/infestor/ultralisk.
10:10.41foxlit[the answer to that one is that you just go and kill their base]
10:11.02jnwhitehXubera: the short answer is you don't.
10:11.09foxlitBut in your case, your data structure sucks.
10:11.11jnwhitehyou describe your data another way
10:11.27jnwhitehif "a" is related to "1" then they should be related in your data structure, not in two discrete ones
10:11.28foxlitAlternatively, make a new table with 1..n
10:11.38foxlitsort that based on how you want to sort table1
10:11.48foxlitand just transform the indices on access.
10:11.51jnwhitehI suspect that would actually be more complicated in this situation, but yeah
10:11.57foxlitso t[sorted[i]] instead of t[i]
10:12.29Xuberawell i jsut didnt want to overload with tables, because im making my own custom bag sort addon... so the easy way is have a table hold more tables describing each item
10:12.44foxlitIf your elements are tables
10:12.45jnwhiteh<PROTECTED>
10:12.54foxlitJust store a reference to all related data in them?
10:13.14Xuberabut if i wipe my main table at each sort, it could generate 100 ish tables each time i sort,  or instead of wiping my table
10:13.24Xuberajust go through and make all the tables inside empty, and create more as needed
10:13.43jnwhitehwhy would you wipe the table?
10:13.48jnwhitehyou're making this more complicated than it needs to be :P
10:13.57jnwhitehif you have a table that describes your items, like so:
10:15.12jnwhiteh{{name = "Some dagger", dps = 14}, {name = "Staff of pwnage", dps = 31}, {name = "Wand", dps = 5}}
10:15.16jnwhitehthen you can just sort that table
10:15.40jnwhitehlua> t = {{name = "Some dagger", dps = 14}, {name = "Staff of pwnage", dps = 31}, {name = "Wand", dps = 5}}; table.sort(t, function(a,b) return a.dps < b.dps end); pp(t)
10:15.40lua_botjnwhiteh: { { ["name"] = "Wand", ["dps"] = 5 } (#2), { ["name"] = "Some dagger", ["dps"] = 14 } (#3), { ["name"] = "Staff of pwnage", ["dps"] = 31 } (#4) } (#1)
10:15.47jnwhitehnow its sorted by dps, ascending
10:16.27Xuberawell my concern was if i made it like that, the first time im sorting this addon and I have 30 items, then the next time i have 28, my table would still think I have 30, so i need to clear it
10:16.34jnwhitehno
10:16.40jnwhitehremove the 2 items that are gone..
10:17.27jnwhitehif you have my book, the 5 chapters on BagBuddy will likely be enlightening.
10:17.29jnwhitehif not, the code will be
10:17.31jnwhiteh!addon BagBuddy
10:17.32lua_botBagBuddy (v. 1.0) last updated Dec 6 2009</td><td valign=top class=listone style="font-size: 10px;">  (http://is.gd/UuS999)
10:17.40Xuberai have a version of the book
10:17.57Xuberaits at home, and im at work, soo ill have to check on that later
10:18.04jnwhitehonly the second edition has bagbuddy
10:18.10jnwhitehbut the code is all on wowinterface: http://www.wowinterface.com/downloads/info15312-1.0.html
10:18.25Xuberaits the one with the picture of all those people crowded around the computer (if they are different)
10:18.28Xuberaokay thanks
10:22.24jnwhitehthen its not in that edition
10:22.33jnwhitehI didn't write it until the 2nd
10:22.40jnwhitehwhich is the Tuskarr on a laptop :OP
10:25.29hasteI wonder..
10:25.32haste!addon oUF
10:25.33lua_botFound 250 addon results for 'oUF': http://is.gd/snLo48
10:25.38hasteD:
10:25.46jnwhitehyours is at the top of the list
10:25.53jnwhitehbehind something that I don't even understand why it shows up :p
10:26.08hasteprobably due to the author
10:26.14hastedoudoufr
10:26.24jnwhitehah yes.
10:26.36hasteWhat have I done~
10:29.06Torhalhaste: You created an atmosphere in which things such as Fisker- may flourish.
10:29.19Xuberaself.filters[-1] = self.filters[0]  ?
10:29.20hastebtw, I'm playing with zmq, lua and irc currently
10:29.34TorhalXubera: Arrays in Lua start at 1.
10:29.37hasteand threads D:
10:29.48jnwhitehTorhal: this has nothign to do with arrays, but nice try
10:30.07jnwhitehXubera: sometimes the API will return -1 for the quality of an item, and that just makes it so the 'common' filter, which is 0, considers those items as well
10:30.22Torhaljnwhiteh: Ah, ok. Assumptions and all that entails.
10:30.26jnwhiteh:P
10:30.32Xuberaoh i see, but like I was looking at the for loop before it and couldnt find when it would set it to -1
10:30.51jnwhitehit wouldn't =)
10:31.01Xuberaoh, lol i see nvm
10:33.45*** join/#wowuidev Xubera (Xubera@72-255-16-185.client.stsn.net)
10:33.53Xuberawell i guess I should go do some work now
10:34.14Xuberanice talking to ya
10:35.29*** join/#wowuidev gsnerf_ (~gsnerf@141.23.19.253)
10:38.36*** join/#wowuidev Fisker (na@62.61.142.209.generic-hostname.arrownet.dk)
10:39.40Fiskeri see my friends
10:39.58*** join/#wowuidev bluspacecow (~bluspacec@60-234-165-167.bitstream.orcon.net.nz)
10:39.58*** mode/#wowuidev [+v bluspacecow] by ChanServ
10:40.04Fiskeri see my friends
10:40.13Fiskerhello bluspacecow
10:40.21bluspacecow\o
10:42.39*** join/#wowuidev Vilkku (~Vilkku@86-60-144-203-dyn-dsl.ssp.fi)
10:43.47Fiskeri was without internets for almost an entire hour bluspacecow
10:43.53Fiskerhow does one prepare for that?
10:44.02bluspacecowtons of porn
10:44.28Fiskerthat would be a dick move
10:44.39Fiskeri spent like an hour trying to get my mobile running as a mobile hotspot
10:44.59Fiskerfun fact: With the official drivers my phone will BSOD the computer when connected, so couldn't use usb tethering
10:45.04Fiskerso i wanted to use wifi
10:45.08Fiskerbut my computer doesn't have wifi
10:45.10Fiskerbut i have a dongle
10:45.15Fiskerdoes Windows have the drivers?
10:45.16Fiskernope
10:45.21Fiskerhow does that even work?
10:45.28Fiskerhow can Windows NOT have the drivers by now?
10:45.47TorhalHave you ever taken a step back to survey exactly how much drama is in your technical life, Fisker? Perhaps you'd be better off as a goat-herder.
10:45.48Fiskeranyway i try to download it on my phone and transfer it
10:45.53Fiskerno Torhal
10:45.54Fiskeryour mother
10:46.03TorhalHey, man - just trying to help.
10:46.17sylvanaar_workFisker: you should just sync with iTunes - your life would be so much better
10:46.26Fiskerthen it turns out the phone probably gets served some BS html page, so the driver wasn't downloaded
10:46.29Fiskerraaage
10:46.38Fiskerwhy would i sync with itunes sylvanaar_work ?
10:46.49sylvanaar_workget an iPhone
10:46.54Fiskerwhy would i do that?
10:47.01Zynwhy would anyone do that
10:47.09sylvanaar_worklord
10:47.44Fiskergood point Zyn
10:50.20Fiskeri heard a horse
10:50.28Fiskeryour future argument is invalid
10:54.36Fiskerlol steup.bat
10:54.40Fiskerhow u spell setup?
10:54.42*** join/#wowuidev Mikk (~Mikk@78-73-98-74-no162.tbcn.telia.com)
10:54.42*** join/#wowuidev Mikk (~Mikk@WoWUIDev/mikk)
10:56.07*** join/#wowuidev Ketho (~Ketho@ip565063bd.direct-adsl.nl)
10:59.50bluspacecowformat c:\
11:11.01Adyshttp://blog.chambermagic.com/psychology/presentation-tips-from-a-magician
11:11.06AdysCohen prepares graceful solutions for all kinds of situations: If he accidentally ‘flashes’ something to the crowd [...]
11:11.16Adysstares a couple of times
11:11.35Adyseyetwitches.
11:17.27*** join/#wowuidev Dotted (~Dotted@95.209.219.58)
11:28.34*** join/#wowuidev Fisker (na@62.61.142.209.generic-hostname.arrownet.dk)
11:29.17Fiskerhow odd and peculiar
11:29.25Fiskeri set Impulse to not start on windows startup
11:29.37Fiskerand yet there it is, sitting in my windows tray after rebooting
11:30.14Fiskerone would think that a program created by a bunch of douchebags who basically called Steam malicious due to similar reasons would atleast not do the same thing
11:30.15Fisker;3
11:31.53TorhalSo I finally got around to watching "The Fall of Sam Axe". Definitely a Burn Notice production.
11:31.54*** join/#wowuidev Fisker (na@62.61.142.209.generic-hostname.arrownet.dk)
11:46.39*** part/#wowuidev Xinhuan (~Xinhuan@WoWUIDev/WoWAce/xinhuan)
11:54.03*** join/#wowuidev Tinyboom (~dano5@56.84-48-111.nextgentel.com)
11:55.55*** part/#wowuidev Grum (~grum@codebase2.xs4all.nl)
12:15.24airtonixso pretty bad then?
12:16.27*** join/#wowuidev Grum (~grum@codebase2.xs4all.nl)
12:23.01*** join/#wowuidev stolenlegacy (~stolenleg@unaffiliated/stolenlegacy)
12:24.00Fiskerumad airtonix ?
12:25.36airtonixnot as eeeeeeepad as you brosephine
12:26.02*** join/#wowuidev Chamenas (~Chamenas@pool-173-76-192-176.bstnma.fios.verizon.net)
12:27.17AdysCide: ping
12:27.41AdysTorhal: it was great, wasnt it :)
12:30.57Fiskerhey Adys
12:31.03AdysI said no
12:31.07Adysactually I didn't say that
12:31.44Fisker(
12:33.40Fiskerimma get my mouse tomorrow
12:34.12mitch0mx518?
12:34.16Fiskernah
12:34.17FiskerG700
12:34.37Fiskerif the wireless suck i can just take out the battery and run wired
12:34.38Fiskerwroom wroom
12:35.00*** join/#wowuidev Jamash (~Jamash@adsl-75-60-173-196.dsl.bltnin.sbcglobal.net)
12:35.04*** join/#wowuidev Dotted^ (~Dotted@94.191.195.52.bredband.3.dk)
12:35.10Fiskerwhy does station drivers need to be in maintenance right now?
12:35.11FiskerRAAAAAAGE
12:35.22AdysFisker: why would you want to take out the battery to run it wired?
12:35.36Fiskerless weight
12:35.52*** join/#wowuidev Jamash (~Jamash@adsl-75-60-173-196.dsl.bltnin.sbcglobal.net)
12:36.06Adysfill it with helium
12:36.21Fiskerthe body isn't airtight
12:36.25Fisker(like your mom)
12:37.09Adysyou'll find that the human body is actually airtight
12:37.42Fiskernot after i were done with her
12:38.14Fiskerhighfives bluspacecow
12:38.40Adysyou grammatically admitted that you didn't do her
12:39.26Fiskeri disagree
12:39.35Fiskeranyway fix station drivers Adys
12:39.39Fiskeryou're french
12:39.42AdysI really fucking won't
12:39.45Fiskerso it should be easy, right?
12:40.27Fiskerhttp://www.xtremesystems.org/forums/showthread.php?t=271578 <-hoho
12:40.40airtonixlol
12:42.54*** join/#wowuidev Lacrimaz (~mwtemz@84.40.76.49)
12:42.57Fiskeroh wow
12:43.07Fiskersomeone actually had all 14 sata ports on the new x79
12:43.08Fiskerhttp://limages.vr-zone.net/body/12430/UD3_GA-X79A.jpeg.png
12:43.43*** join/#wowuidev Chamenas1 (~Chamenas@pool-173-76-192-176.bstnma.fios.verizon.net)
12:44.20LacrimazHello guys, i got some trouble, im using SlashCmdList.ACECONSOLE_EPGP("ep "..name.." \"Good boy\" 250", Chat1Frame); to add EP to everybody around me, with one for and GetRaidRosterInfo(i), but actually its add EP to last one only.
12:44.24TorhalAdys: It was a pretty damn good origin story.
12:44.28Lacrimazwhat's problem is there
12:44.40TorhalAdys: The whole "Chuck Finley" explanation was great.
12:44.44Adyshaha
12:44.48Adysyeah nice easter egg
12:44.52TorhalThe fact that he's an actual person sold it.
12:45.00TorhalI never knew until that episode.
12:45.05AdysLacrimaz: #wowace might be a more appropriate channel
12:45.23airtonixdon't feed the troll
12:45.30Lacrimazwill ask them :(
12:46.04TorhalAdys: Huh? Not really. SlashCmdList transcends the Ace suite, despite the ACECONSOLE_EPGP field
12:46.30Adysi saw "ace" i didnt look further, i said might
12:46.31Adys:P
12:46.33Torhallol
12:46.47LacrimazSo, is there any solution?
12:46.53TorhalLacrimaz: Considering that snippet uses code that isn't available in your message...
12:47.03Torhalpaste the code to paste.wowace.com
12:47.44AdysArrowmaster: how regular are debian releases?
12:48.53LacrimazTorhal: http://pastebin.com/bUhxrU7z
12:50.11LacrimazTorhal: i think the problem is in SlashCmdList option
12:50.24TorhalI'm sure it is.
12:50.40Lacrimazbecause if i make Raid message (not aceconsole_epgp) everything is ok.
12:51.14Lacrimazand everybody around me taking a message with their name, but this SlashCmdList has failed and work only for last one.
12:53.03TorhalLook, man: I already told you we can't diagnose the issue without your code. So either post it so we can help, or...go get drunk. Or something.
12:53.10Torhal:D
12:53.23LacrimazTorhal, already post it upstairs.
12:53.32LacrimazTorhal, http://pastebin.com/bUhxrU7z
12:54.37Fiskernevcairiel get over here
12:54.51TorhalLacrimaz: As I investigate, I have a criticism: "if (name ~= nil and zone ~= nil and zone == MyZoneName) then" could simply be: "if name and zone and zone -- MyZoneName then"
12:55.04Torhals/--/==/
12:55.45cbreak_workit's almost semantically equivalent
12:55.52Jamashhttp://db.mmo-champion.com/i/70144/rickets-magnetic-fireball/ <--- wut
12:55.57sylvanaar_workChat1EditBox does not exist of course
12:55.58cbreak_workthe only two values that are false in lua are nil and false
12:56.28Jamashand Fisker
12:56.38Lacrimazsylvanaar_work: so i need to create Chat1EditBox or?
12:56.45sylvanaar_workno
12:56.50Torhalcbreak_work: Yes, but when I switched from C/C++ to Lua one of the hardest things to understand was the fact that Lua was more natural-language than the other two.
12:57.02sylvanaar_workChatFrame1EditBox
12:57.12TorhalLacrimaz: Ok - where are you defining "SlashCmdList.ACECONSOLE_EPGP"?
12:57.19Jamashnatural-language is for sissies, APL is for real programmers
12:57.31TorhalAs I said: Post all of your code, not simply the part you're directly interested in.
12:57.51TorhalJamash: I'm sorry, Fisker-, I should know not to doubt you.
12:58.15airtonixreal mean lick their boots
12:58.21LacrimazTorhal, this is all my code :) other XML is only button script, <OnClick>ButtonUnAward_OnClick();</OnClick>
12:58.23airtonixand men too
12:58.23sylvanaar_workew
12:58.32sylvanaar_workthey are all globals
12:58.44TorhalLacrimaz: If you're not defining "SlashCmdList.ACECONSOLE_EPGP" then that is why nothing happens.
12:58.54TorhalYou're calling it as a function.
12:58.54Lacrimazsylvanaar_work: your you are right, but only last one for works, others are not passing.
12:58.54sylvanaar_workhe's calling another addon
12:59.11Torhalsylvanaar_work: Bah. I'm way beyond three beers in.
12:59.15sylvanaar_worklol
12:59.53sylvanaar_workwhy stop at 40
13:00.00sylvanaar_workgo to 500
13:00.20sylvanaar_workoh raid roster
13:00.21Lacrimazbecause 40ppl are in raid
13:00.50*** join/#wowuidev ZorbaBeta (tocohl@maximilian.pavlovian.net)
13:00.59sylvanaar_workdunno
13:01.29Lacrimazbut in whole script SlashCmdList.ACECONSOLE_EPGP("ep "..name.." \"Good Boy!\" 250", ChatFrame1EditBox); runs only once, at the end, and only last one find member recieve EP.
13:01.49sylvanaar_workadd print statements
13:02.02Lacrimazprint statements works fine
13:02.28Lacrimazthe problem is in SlashCmdList as i see
13:02.47sylvanaar_workso your print statement prints more than once
13:03.27Lacrimazyes.
13:03.29sylvanaar_workif so, then you might need to put the calls in an OnUpdate
13:03.52sylvanaar_workwho knows how the epgp console command is implemented
13:04.56*** join/#wowuidev bluspacecow (~bluspacec@60-234-165-167.bitstream.orcon.net.nz)
13:04.56*** mode/#wowuidev [+v bluspacecow] by ChanServ
13:04.59Lacrimazyou mean to put SlashCmdList in OnUpdate?
13:05.35sylvanaar_workalternatively, you could ChatFrameEditBox:SetText("/epgp foo 'bar'") ChatFrame1EditBox:OnEnterPressed()
13:05.46sylvanaar_workidk, one of those should work
13:06.06sylvanaar_workyes, i mean put it in on update, and step your loop 1 time each second
13:07.26sylvanaar_workor step your loop one time each button press
13:07.33sylvanaar_worka 3rd option
13:08.39Fiskerhey sylvanaar_work
13:08.45sylvanaar_workhey Fisker
13:08.45Torhalsylvanaar_work: As I see it, you missed a genuine opportunity here: Lacrimaz is obviously not drunk. Lacrimaz requires your aid. In return, Lacrimaz could test your IDEA plugin.
13:08.57sylvanaar_workhaha
13:09.06TorhalFisker: Stop being an absolute jersk.
13:09.13sylvanaar_workTorhal: you are right
13:09.30Fiskerabsolute how?
13:09.38TorhalVodka, FFS!
13:09.44TorhalWithout the ending "e"
13:10.03sylvanaar_workLacrimaz: https://bitbucket.org/sylvanaar2/lua-for-idea/wiki/Home  !!
13:10.32Lacrimazsylvanaar :)
13:10.50Lacrimazis it yours project? :)
13:10.58sylvanaar_workits awesome - it even has help for the WOW api's
13:10.59sylvanaar_workyes
13:11.30sylvanaar_workhttp://www.screencast.com/t/78ltrNMsC7
13:11.31Lacrimazflawless
13:11.41Lacrimazwill check it later!
13:13.04Lacrimazbtw
13:13.10LacrimazChatFrame1EditBox:OnEnterPressed();
13:13.17Lacrimazis it OnEnterPressed?
13:13.24Adysyes
13:13.28Adys!api onenterpressed
13:13.29lua_botonenterpressed: Run when the Enter (or Return) key is pressed while the edit box has keyboard focus  Available for EditBox (http://wowprogramming.com/docs/scripts/onenterpressed)
13:13.46Lacrimazi mean
13:13.56Lacrimazit gives me error
13:13.56airtonixhttp://www.planetminecraft.com/texture_pack/a-long-time-ago-star-wars-pack-prerelease/
13:14.09Lacrimaz"attempt to call method 'OnEnterPressed' (a nil value)"
13:14.22sylvanaar_workugh
13:14.32Lacrimazi guess there was other way to send eDITBox.
13:14.37sylvanaar_workChatEdit_OnEnterPressed(ChatFrame1EditBox)
13:15.20Lacrimazyap :)
13:15.20sylvanaar_workif you were using my IDE it would be telling you all this LOL
13:15.24Lacrimazi hope it works
13:15.30Lacrimaz:)
13:15.31Lacrimazi will
13:17.25Adyshttp://www.youtube.com/watch?v=tAU0zYuvJ7w
13:18.56Jamashsylvanaar_work: downloaderating your IDE now
13:19.06sylvanaar_work:)
13:19.44sylvanaar_workJamash: be sure to watch the setup video i linked - it shows how to setup for wow
13:19.46TorhalJamash: Executerating, nao?
13:20.04JamashTorhal: sure, why not
13:20.11Torhalsylvanaar_work: I wonder if Mikk knows you're a direct competitor now.
13:20.18sylvanaar_workto what
13:20.19Jamashlulz
13:20.37Torhalsylvanaar_work: http://www.wowace.com/addons/findglobals/
13:21.06*** join/#wowuidev Chamenas (~Chamenas@pool-173-76-192-176.bstnma.fios.verizon.net)
13:21.27Torhalsylvanaar_work: Seriously - you should set up a project for your plugin so folks can slap it in their "tools-used" section of their .pkgmeta files.
13:22.20TorhalI'd add it for LibQTip, AckisRecipeList, and Archy, at least.
13:22.23sylvanaar_workthats not a bad idea
13:28.12Mikkonoes a competitor for my 5 minute hack :P
13:28.17Mikkhowever will i survive =)
13:28.26Mikki'm sure i've pulled in ceveral eurocents for that! =)
13:29.11sylvanaar_work:)
13:29.18TorhalMikk: You do have an issue with that script, BTW: http://forums.wowace.com/showthread.php?p=317251
13:30.14sylvanaar_workMikk: want to try my editor - I'd love to hear your feedback.
13:30.53MikkTorhal: that's on purpose
13:31.08Mikki don't warn about reading globals outside of functions
13:32.10Mikkfucking hell now i can't even login to wowace forums at all
13:32.16Mikksomeone else will have to reply
13:32.17*** join/#wowuidev Fisker (~mpdelbuon@62.61.142.209.generic-hostname.arrownet.dk)
13:33.09*** join/#wowuidev Tuller (~tuller@c-69-143-48-210.hsd1.va.comcast.net)
13:33.46Mikkif FindGlobals bitched about GETGLOBAL at global scope, it would also bitch about "local Blah = Blah" lines at the top
13:33.53Mikkand i didn't want that ;)
13:34.20sylvanaar_workyou really cant do proper DFA with grep
13:35.08TorhalMikk: I never had the login issue until this past week. All I had to do was nuke my cookies for forums.wowace.com, log in from www.wowace.com, and then visit the forums.
13:35.11sylvanaar_workwas this global written to before being read from? that would be tricky with just grep
13:35.43TorhalThough I did have to log out from www.wowace.com before logging in to forums.wowace.com
13:36.02Fiskerbutts
13:36.27Fiskerwat Adys
13:36.27*** join/#wowuidev Ketho (~Ketho@ip565063bd.direct-adsl.nl)
13:36.32Fiskerwhy did they censor "fucking"?
13:36.34*** join/#wowuidev Xinhuan (~xinhuan@WoWUIDev/WoWAce/xinhuan)
13:36.37TorhalFisker: Non-hominid mammals are not discussion material for today. Apologies.
13:36.37FiskerITS THE INTERNET MOTHERFUCKING TWATS
13:36.42AdysFisker: see video desc
13:36.58Fiskeri know you can downloade the uncensored version
13:37.03Fiskerdownload*
13:37.16Fiskerhaha
13:37.23Fiskerthey forgot to censor one of their motherfuckers
13:37.29*** join/#wowuidev Sliker (~ponies@91.125.131.95)
13:37.30Fiskerreported for inappropiate content!
13:37.47Fiskeractually forgot a lot of them in the end
13:37.51TorhalWatch your goddamn fucking language, Fisker. For fuck's sake!
13:37.56*** join/#wowuidev pompy (~Mike@c-76-116-64-179.hsd1.nj.comcast.net)
13:38.04AdysShut up and make me a sandwich
13:38.07Adysi mean sudo
13:38.50Adysactually, replacing sudo by "shut up and" would make so much more sense in some command lines
13:38.51Fiskernot on sudoers list this incident has been reported
13:40.00Torhaladys@fuckyouall:> "shut up" locate *xxx*
13:40.07Torhal:D
13:46.31*** join/#wowuidev Ketho (~Ketho@ip565063bd.direct-adsl.nl)
13:57.37Mikksylvanaar it's not quite grep ;)
13:58.09sylvanaar_workthats cool
13:58.20Mikkit's a lua script with some added logic to see if we're inside a function and whatnot
13:58.41Mikk+ parse comments like "--GLOBALS: Foo, Bar" that are ignored
13:59.10sylvanaar_workgotcha
13:59.22Mikktorhal there's also the issue of me having one-and-a-half login in curse's userdb. i become "dpsgnome" in the forums. with no admin rights.
13:59.28Mikkand i can't see "mikk"'s inbox
13:59.29jnwhitehI enjoy the 'defer' statement in Go for things like working with mutexes.
13:59.56sylvanaar_workhave you tried the Go plugin to IntelliJ jnwhiteh - or even heard of it
14:00.06jnwhitehI don't use IntelliJ at all, so no.
14:00.09jnwhitehI've heard of it
14:00.12bleeterjnwhiteh: yeah but you're weird :P
14:01.56Fiskerhey jnwhiteh
14:02.02Mikki usually avoid anything with "J" in the name
14:02.27sylvanaar_workMikk: how about jnwhiteh?
14:02.32sylvanaar_worklols
14:02.37jnwhiteh:p
14:02.44jnwhitehyou're one to talk =)
14:02.51Mikkmmm .. JON   :P
14:02.55sylvanaar_workhay
14:02.58jnwhitehindeed!
14:03.15Mikkloves goodreads.com
14:03.20Mikk$random
14:03.31jnwhiteh<3
14:04.09Mikki was cursing visual bookshelf showing me 7236842634 editions of every title
14:04.15Mikknone of that crap @ goodreads
14:04.21sylvanaar_workwell, you guys should both try my Lua plugin - I need more feedback from smart folks <3
14:04.34sylvanaar_workit doesnt have J in it
14:04.49jnwhitehsylvanaar_work: I know, but like I said I don't use IntelliJ
14:05.02Mikkis hukd on np++
14:05.03jnwhitehand I code daily, so I can't really take the time to stop and try another editor
14:05.42sylvanaar_workwell, it never hurts to ask ...
14:05.46jnwhiteh=)
14:06.10Mikkthis is where you are wrong! we hate you now!   </channeling fisker>
14:06.31Mikkoh dear i may have summoned the demon
14:07.09MikkTorhal thanks for tip. It seems to have done the trick. I am now back to business as usual (being dpsnome on forums, sight)
14:07.12Mikksigh too
14:12.04Krapshey google has a memorial day thing
14:58.34*** join/#wowuidev yssaril (~yssaril@99-57-32-25.lightspeed.cicril.sbcglobal.net)
15:07.11AdysCide: ping
15:08.43*** join/#wowuidev Jelly__ (~Jelly@c-24-4-154-230.hsd1.ca.comcast.net)
15:08.50*** join/#wowuidev Jamash (~Jamash@adsl-75-60-173-196.dsl.bltnin.sbcglobal.net)
15:09.53*** join/#wowuidev Jamash (~Jamash@75.60.173.196)
15:10.12*** join/#wowuidev Odlaw (~hrack@2001:470:1f05:1f4:9887:30fc:188e:369a)
15:11.48*** join/#wowuidev Jamash (~Jamash@adsl-75-60-173-196.dsl.bltnin.sbcglobal.net)
15:14.10*** join/#wowuidev Jamash (~Jamash@adsl-75-60-173-196.dsl.bltnin.sbcglobal.net)
15:15.39*** join/#wowuidev Jamash (~Jamash@adsl-75-60-173-196.dsl.bltnin.sbcglobal.net)
15:15.47Krapshttp://kotaku.com/5806684/link-is-dreaming-of-some-creepy+ass-pokemon/gallery/1
15:16.44*** join/#wowuidev Jamash (~Jamash@adsl-75-60-173-196.dsl.bltnin.sbcglobal.net)
15:17.33TorhalFor anyone who plays MineCraft who missed it on April 1st: http://www.thinkgeek.com/interests/looflirpa/e8bf/
15:17.39*** join/#wowuidev Jamash (~Jamash@adsl-75-60-173-196.dsl.bltnin.sbcglobal.net)
15:17.40Fiskero
15:17.42Fiskerl
15:17.43Fiskerd
15:18.53Torhalspike-punches Fisker in the junk.
15:19.40TorhalFFS, these McDonald's biscuits taste like pure sodium bicarbonate.
15:19.45Torhalrages.
15:22.54*** join/#wowuidev pnorman_ (~pnorman@d207-6-170-138.bchsia.telus.net)
15:24.48*** join/#wowuidev Kalroth (~Kalroth@3e6be73f.rev.stofanet.dk)
15:25.01*** join/#wowuidev gsnerf (~gsnerf@dslb-088-073-044-057.pools.arcor-ip.net)
15:27.12*** join/#wowuidev bluspacecow (~bluspacec@60-234-165-167.bitstream.orcon.net.nz)
15:27.12*** mode/#wowuidev [+v bluspacecow] by ChanServ
15:28.36*** join/#wowuidev A-KO (as@2001:470:1f07:115d:e428:876:a6a7:9485)
15:28.37*** join/#wowuidev A-KO (as@unaffiliated/a-ko)
15:31.11FiskerLOLUMAD
15:31.14Fiskerhttp://www.hardwaresecrets.com/sitedesign/crime.gif <-
15:31.56nevcairielold, people have been using those as hot-link protection for years
15:33.33Fiskeri doubt it
15:34.06Fiskerit was besides the point though
15:34.08Fiskerbtw nevcairiel
15:34.12Fiskerseen sum x79?
15:35.17FiskerAMD got pwnt btw
15:35.25FiskerBulldozer delayed due to performance issues
15:35.28*** join/#wowuidev inthedrops (~chatzilla@c-76-29-92-142.hsd1.il.comcast.net)
15:35.31bluspacecowyou should hack their server and change it to read " Copying is a Grime"
15:35.39Fiskerhey bluspacecow
15:35.42Fiskerit's not even copying
15:35.45bluspacecowi hungry
15:35.55bluspacecowu feed me ?
15:35.59Fiskerno
15:36.04bluspacecow:(
15:36.06bluspacecowmeanie
15:36.11Fiskerbut that's what's so funny about it
15:36.19Fiskerit's not copying
15:36.24Fiskerbut if it were you wouldn't see the notice
15:36.25Fisker= lol'd
15:36.56FiskerHOLY MOTHER OF GOD
15:37.00Fiskerhttp://img.hexus.net/v2/internationalevents/computex2011/TS/D0/Card.jpg
15:37.13Computerpunkhttp://de3.eu.apcdn.com/medium/m_36060.jpg
15:38.57bluspacecowthats not a card fisker
15:39.00bluspacecowits a lunch box !
15:39.07bluspacecowmmmm lunch box
15:39.10bluspacecow*eats card*
15:40.06Jamashhttp://db.mmo-champion.com/i/70177/schematic-flintlockes-woodchucker/
15:40.42nevcairielFisker: at least it comes with a SLI connector so you can have two of those!
15:40.50Computerpunkwhoa
15:40.52ComputerpunkJamash,
15:40.57Computerpunkthe ICD must be something tbh.
15:40.59Jamashwould you like some motherboard with your video card?
15:42.26Fiskeryou filthy bastards Parnic
15:42.40Fisker"With a long-anticipated release like Duke Nukem Forever, we encourage customers who pre-ordered more than a year ago to verify their reservation with their local store prior to launch. Provided the customer has a receipt, we will honor even those pre-orders taken long ago. At this time, we expect that all pre-order customers will receive Duke's Big Package at time of purchase, regardless
15:42.40Fiskerof when the reservation was made."
15:42.45Fisker*pukes*
15:42.51Fiskeryeah nevcairiel
15:43.02Fiskerthose would probably set me back 2 or 3 midend SB systems
15:43.03Fisker:D
15:43.10nevcairielwhats that supposed to be anyway
15:43.20Fiskerhis big package?
15:43.27Fiskeri assume his huge throbbing cock
15:43.29nevcairielno the card
15:43.42FiskerOh
15:43.46FiskerIt's another Ares card
15:43.57Fiskera demonstration into the batshit insane
15:44.02Fiskerthe last one was over 1000€ here
15:44.24nevcairieloh one of those
15:44.45nevcairielits probably a dual 580 then or something like that
15:44.54nevcairielwithout the downlocking nvidia did on the 590
15:44.56Fiskeryep that's what Hexus says
15:45.17Fiskerthough it's just rumored at the moment
15:45.23Fiskerbut they'll probably tell later today
15:46.00Fiskerthey're also making a DirectCU II like GTX 580
15:46.02Fiskercalled Matrix
15:46.39Fiskermoar Ares shots here
15:46.39Fiskerhttp://www.techpowerup.com/146588/ASUS-MARS-II-Graphics-Card-Pictured.html
15:47.37Fiskerhttp://pctuning.tyden.cz/component/content/article/1-aktualni-zpravy/21138-asus-geforce-gtx-580-matrix-platinum-v-detailech
15:54.23Fiskeranyway nevcairiel
15:54.51Fiskeri think they should make the SLI connectors into thermal extensions you can place on top
15:55.01Fiskerthen you can use it as a heatplate
15:55.06Fiskermake some eggs and bacon
15:58.57airtonixahem
16:02.00airtonixwhy
16:04.41Fiskerwhy not?
16:04.43*** join/#wowuidev Osagasu (~Ilorin@67-197-8-52.rh1.dyn.cm.comporium.net)
16:11.00*** join/#wowuidev Adys (~Adys@unaffiliated/adys)
16:12.13*** join/#wowuidev daev (~bleh@184.17.240.5)
16:13.06*** join/#wowuidev bluspacecow (~bluspacec@60-234-165-167.bitstream.orcon.net.nz)
16:13.06*** mode/#wowuidev [+v bluspacecow] by ChanServ
16:13.46*** join/#wowuidev Sapu (~Sapu94@c-24-7-189-84.hsd1.ca.comcast.net)
16:14.08AdysDagmar: its happening again. the wonderful news is that minecraft was off so phew.
16:14.14Adyssent my isp a msg
16:17.59bluspacecowwas it "oh hai. u suck" ?
16:18.39Adyshttp://www.speedtest.net/result/1318851490.png no it wasnt
16:18.40Adys:P
16:20.50Fiskeri'm saying old/shitty modem
16:20.56Fiskerthat needs to be replaced
16:21.41Adysreally unlikely
16:21.54Fiskerhad a similar issue to yours
16:21.57Fiskerthat was my fix
16:22.18Adysif it were, it wouldnt suddenly stop happening for a month and happen again later two days in a row
16:22.30Adysi know the thing has firmware issues, they're issuing a firmware update in a week or so
16:22.41Fiskerah ok
16:22.48Fiskerdidn't hear that it stopped for a month :P
16:23.00Adysim betting isp issues
16:23.20Adysi dont really care, for the past year or so i havent had any issues apart from the very first week
16:23.28*** join/#wowuidev Jamash (~Jamash@adsl-75-60-173-196.dsl.bltnin.sbcglobal.net)
16:24.23*** join/#wowuidev Jamash (~Jamash@adsl-75-60-173-196.dsl.bltnin.sbcglobal.net)
16:26.52*** join/#wowuidev Ingela (~Ingela@90-230-170-118-no35.tbcn.telia.com)
16:29.49Jamash"You right but orgy occur under nitrogen, but consumption is literally insane: 20-30 liters per hour of testing.  For this core would probably have wanted LHe (liquid helium)."
16:30.07JamashI love machine translation
16:31.19*** join/#wowuidev Hjalte (~chatzilla@cpe.ge-0-2-0-835.arcnqu2.customer.tele.dk)
16:31.52KrapsThunder_Child:
16:32.20FiskerKraps
16:32.22Fiskerpenis?
16:33.05KrapsFisker: there is not enough information in that string to formulate a reply
16:33.37*** join/#wowuidev NeoTron (~neotron@50.46.226.119)
16:37.06airtonixhas anyone here worked with amazon web services before ?
16:37.23airtonixspecifically the virtual machine hosting service they provide
16:38.29Adysairtonix: Im working on s3cmd right now for a contract
16:39.01airtonixis it normal for the extra hard drives or what ever they call them to be mounted on /vol and /vol2 ?
16:39.15AdysI don't know, i don't work on their vm hosting
16:39.15Adys:D
16:39.17Adysjust s3
16:39.22airtonixok
16:39.37Fiskerairtonix I'm working with Amazon right now as well
16:39.47Fiskeri bought something from them which i had to return because it was damaged in transit
16:39.51Fiskerso i can't answer your question
16:40.03Fiskerisn't /volxx LVM though?
16:40.06airtonixi'm trying to work out if its something amazon do because of the automated instatiation of their VMs or if its the fail of the previoous contractor
16:40.40airtonixFisker: ok, but still i wouldn't put multiple device mounts straight on the root node
16:41.06airtonixi a little bit ocd about that and would put it under /mnt/lvm/volxxx
16:41.07Adysairtonix: it sounds like some kind of r0 setup
16:41.12Fiskerah yeah airtonix
16:41.13Adyswhich ive never used before
16:41.15Fiskerthat sounds weird
16:41.21Adysso ask Dagmar or nevcairiel or something
16:41.31Fiskersounds like a rookie mistake
16:41.44airtonixis that something normal for a redhat server?
16:42.04airtonixi think it is too Fisker
16:42.27airtonixprevious contractor is a company in five states whose main website is built entirely from flash
16:42.28TorhalFisker knows all about rookie mistakes, airtonix.
16:42.44Fisker^^
16:43.12AdysU
16:43.13AdysUh
16:43.19AdysSomeone explain me this http://www.speedtest.net/result/1318880641.png
16:43.43Adyshttp://www.speedtest.net/result/1318884608.png
16:44.13sylvanaar_worki got into the google music beta, woo hooo
16:44.24airtonixwhat's to explain?
16:45.00Adyswhats this 1:1 upload/download ratio :(
16:45.25airtonixcopper wires? rain ? creepers?
16:46.46*** join/#wowuidev Dotted (~Dotted@79.138.171.193.bredband.oister.dk)
16:46.50*** join/#wowuidev rtharper (~tomh@unaffiliated/sioraiocht)
16:48.06Fiskerfiber Adys
16:48.10Fiskerhttp://www.ines.ro/ro/servicii/internet/servicii-internet/
16:48.45Thunder_ChildKraps: ?
16:48.55FiskerThunder_Child: ?
16:49.37Thunder_ChildFisker: ¿
16:49.38*** join/#wowuidev SNiLD (~snild@nurmijarvi.net)
16:49.43AdysFisker: it's not fiber
16:50.03Fiskeris according to the site
16:50.04Fisker:3
16:50.40Adystheir infrastructure is
16:51.04bluspacecowsleeeeeeeeeeeeeeeeeeeeeeeeeeeep
16:51.26Fisker<PROTECTED>
16:51.42Fiskermy disagreement with you is strong
16:52.21Adysyeah, the connection is in saint gheorghe, it's not fiber
16:52.31Adysthe isp's infrastructure is, ive no doubt
16:52.51Fiskerthen they are jerks
16:52.54airtonixAdys: what do you think : http://wiki.jqueryui.com/w/page/12138028/ProgressIndicator
16:53.10AdysI think it's poo-poo
16:53.26airtoniximprovements?
16:53.43Adysi dont use jquery
16:54.17airtonixwhy not?
16:54.26airtonixdo you use prototype or mootools?
16:54.29airtonixor dojo?
16:54.44*** join/#wowuidev Tuller (~Tuller@c-69-143-48-210.hsd1.va.comcast.net)
16:54.49Adysi dont even use javascript
16:54.52airtonixor are you a machoist and roll your own?
16:54.55Adysi do my wank in css :P
16:55.00airtonixwell
16:55.15airtonixcertain things you can't achieve with css alone
16:56.14Tullerlike backflips
16:56.34Adysyou can do backflips in css
16:56.35Krapsdid you buy any clancy games Thunder_Child
16:56.43Thunder_ChildKraps: si
16:56.46Adysand Tuller, my minecraft server is without addons or admin commands
16:57.13Tullerso people spent all that time crafting a yoshi? :P
16:57.31Adysthat was me
16:57.39Adysand it took me about 1 hour
16:58.08Tullerso you take the rock garden approach
16:58.59Adysi cant find the girl i took those from
16:59.09Adysshe did a bunch of bead sprites on deviantart
16:59.13Adysi just copied them
16:59.31Adysthe other two were by elendile, a guildmate
17:00.04Adysalso, those aren't the impressive things at all :P the guitar took over a week to build, the spheres over a month
17:00.46AdysTuller: http://188.165.247.199/
17:01.48*** join/#wowuidev foxlit (~foxlit@0x573e6bae.alb2nxx18.dynamic.dsl.tele.dk)
17:02.15Tulleryeah the guitar is impressive as are the spheres
17:02.33TullerI don't have the concentration to do that in minecraft (especially with my "if I die, I restart" rule)
17:02.58Adysthat's like playing diablo 2 in hc
17:03.02Adysexcept you cant kill mobs
17:03.16Tullerright
17:03.19*** join/#wowuidev Srosh (~Srosh@d038241.adsl.hansenet.de)
17:03.25Adyswhy would you restart if you die :P
17:03.40Tullerwhy not? :P
17:03.56Adysfirst of all because you should be on smp, not ssp!
17:04.15Adyswowuidev has its own channel, ask cog|away / jnwhiteh about it (#cograil)
17:04.29cog|aways/wowuidev/wowprogramming/
17:04.39cog|awayand then add a # to it
17:05.44Fiskerhey cog|away
17:06.15cog|awayoh...
17:06.21cog|awaynm. l2context, cog|away
17:06.25cog|awaygoes back to his pain
17:08.34*** join/#wowuidev aggixx (~aggixx@CPE-70-92-77-238.new.res.rr.com)
17:09.47Fiskerwhy do you hate me cog|away ?
17:10.44*** join/#wowuidev Wa (~wa@c-24-22-87-1.hsd1.or.comcast.net)
17:14.26foxlithttp://www.escapistmagazine.com/videos/view/loadingreadyrun/3327-Ransom amusing.
17:15.29*** join/#wowuidev Adys (~Adys@unaffiliated/adys)
17:15.36*** join/#wowuidev Xubera (~Xubera@71-80-108-203.dhcp.jcsn.tn.charter.com)
17:15.46Adysfreenode takes over a minute to connect
17:15.48Adys=(
17:17.50A-KOidentd?
17:18.58Adys[18:12:00] * Connecting to chat.freenode.net (94.125.182.252) port 6667...
17:18.58Adys[18:15:09] * Connected. Now logging in...
17:19.58nevcairielthe identd check would be between those steps, maybe something is failing a timeout there
17:20.31nevcairielbut then, i never reconnect
17:25.11*** join/#wowuidev Jamash (~Jamash@adsl-75-60-173-196.dsl.bltnin.sbcglobal.net)
17:25.26airtonixneural shunts fo life
17:25.42*** join/#wowuidev Seerah (~Ryan@adsl-74-177-9-242.mem.bellsouth.net)
17:25.42*** mode/#wowuidev [+o Seerah] by ChanServ
17:28.23airtonixFisker: are you sitting down?
17:28.32airtonixyou want to be sitting down if you aren't
17:29.14Tulleryay, my inbox is clear of  addon emails for nowish
17:29.16Fiskeri'm standing up airtonix
17:29.30airtonixyou might have an accident
17:29.33Fiskerwhat script do you use to delete them Tuller ?
17:29.43airtonixrm / -rf
17:29.48sylvanaar_worki forward all mine to a google group
17:30.10airtonixi just shutdown the mail server instead
17:30.11Tulleri click the archive button in gmail :P
17:30.12Fiskeralt.mmo.wow?
17:30.36Fiskerplease don't follow airtonix's advice though
17:30.40Fiskeri like having gmail access
17:30.55airtonixTuller: SHUTITDOWN!
17:31.02*** join/#wowuidev SNiLD_ (~snild@nurmijarvi.net)
17:31.50Fiskerhey SNiLD_
17:31.52Fiskerumadbro?
17:32.18nevcairielhey fisker getting a padfone
17:32.40nevcairielthey should totally make that padfone plug into the transfomer thingy
17:33.01Fiskeroh noty?
17:33.26*** join/#wowuidev Jamash (~Jamash@adsl-76-251-82-254.dsl.bltnin.sbcglobal.net)
17:34.37*** join/#wowuidev Jamash (~Jamash@adsl-76-251-82-254.dsl.bltnin.sbcglobal.net)
17:35.20*** join/#wowuidev leizeQ (~leizeQ@chello085216199200.chello.sk)
17:35.32*** join/#wowuidev Own3d (~Own3d@ool-457a4a7c.dyn.optonline.net)
17:37.23*** join/#wowuidev Tuller (~tuller@c-69-143-48-210.hsd1.va.comcast.net)
17:37.52airtonixu jelly?
17:38.35Adyshttp://git.chromium.org/gitweb/?p=chromium.git;a=commit;h=ee83303a9d09aabb7bd57f20acb499496c57dbd5
17:38.40Adys<Nelson> HAW-HAW!
17:39.06nevcairielthe link is dead
17:39.14Adysno its not
17:39.21nevcairielunknown commit object
17:39.31Adysit works for me
17:39.33Adysbut try http://git.chromium.org/gitweb/?p=chromium.git;a=commitdiff;h=f77eb9c0a802f2dd42dda4810ba7844f560b5658
17:39.44Adyser
17:39.46nevcairielthats a different commit
17:39.50Adyshttp://git.chromium.org/gitweb/?p=chromium.git;a=commitdiff;h=fad7bb2edf66e6c4df478f1a94c9d5156c017282
17:40.07nevcairielthats also a different commit
17:40.10Adysits not
17:40.14Adysits the wonders of git-svn
17:40.14nevcairielsee the hashes, all different!
17:40.28Adyshttp://git.chromium.org/gitweb/?p=chromium.git;a=commitdiff;h=fad7bb2edf66e6c4df478f1a94c9d5156c017282 gives me Unknown commit object
17:40.43Fiskerairtonix
17:40.47Fiskeru jelly?
17:40.47Tuller"I should read my email before committing."
17:41.09Adysand if you access it from http://git.chromium.org/gitweb/?p=chromium.git;a=summary
17:41.12Adysdoes it work?
17:41.19Adysbecause the hashes are different for me too
17:41.27Adys(which makes no fucking sense)
17:41.38nevcairielthe link from the summary goes to the fad7bb hash
17:41.40nevcairielwhich works for me
17:41.59Adys.. here it goes to ee8330...
17:42.32Adysi suspect this is hosted on two servers at once, each hosting their own git-svn mirror
17:42.35Adysor some shit like that
17:42.45nevcairielah their main repository is svn?
17:42.50nevcairielthat explains it
17:42.54Shirikholy crap jim carrey still makes movies?
17:43.17nevcairielwhy wouldnt he
17:43.25Fiskerso nevcairiel
17:43.53nevcairielthe last of his i've seen was "yes man" though, which was still pretty good, IMHO
17:43.56Fiskeryou gettin 2 of those Asus cards in SLI and a currently non-existent EVGA board with dual CPU xeons based on SB-E?
17:44.09Fiskerwith 14 SSD's in RAID-5?
17:44.42nevcairielI've been thinking about building the super extreme build with dual xeons, but then, wth would i use all that power for
17:44.54Adyswhat else
17:44.55AdysPORN
17:45.15nevcairielhow does more cpu power make porn better
17:45.29Adysit increases your WPS rate
17:45.30Fiskeryou can proces higher definition porn
17:45.36Fiskernot to mention run more streams at a time
17:45.39Fiskerprocess*
17:46.29Fiskermaybe you can even use it to procedurely generate porn
17:46.39*** join/#wowuidev dano5 (~dano5@56.84-48-111.nextgentel.com)
17:46.44AdysFisker
17:46.48Adysyou can use it to ENHANCE!
17:46.51nevcairiela porn generator!
17:47.00Adyshttp://www.youtube.com/watch?v=Vxq9yj2pVWk
17:47.01Adysoh yes
17:47.02nevcairielnow why hasnt anyone produced something like that yet
17:47.03Adyshuh, huh.
17:47.05Adysoh yes.
17:48.24nevcairielhm, only one series in that vid i didnt know
17:48.31Adyswhich?
17:48.48Alramsylar detected Adys
17:49.01Fiskerstop mindfuck Alram
17:49.05Adysthe only one i had seen the first time i watched this video was macgyver
17:49.05Fiskerguess what i was reading about
17:49.06Alramno
17:49.17nevcairielthe guy with the glasses "zoom in on the mirror" around 0:53
17:49.24Fiskernot silar Alram
17:49.26Fiskerbut close
17:49.26Adysthen i ran through a bunch of series
17:49.27Fiskerhttp://www.fudzilla.com/motherboard/item/22866-intels-highest-end-sandy-bridge-e-board-is-siler
17:49.29Adysand found them one by one
17:49.30Fiskeror sylar*
17:49.32Alramfine
17:49.32Alramspock
17:50.04Arrowmasternevcairiel: i think thats law and order
17:50.41Adysi recognize the actor's voice
17:50.46Adysi dont recognize the series tho
17:50.55FiskerAlram atleast in numb3rs they just mathmatically create an enhanced picture rather than doing all this stupid zooming stuff!
17:51.15nevcairielfrom the first look, there is 24, alias, numb3rs, macgyver, CSI, transformers, startrek tng, bsg, warehouse 13
17:51.26*** join/#wowuidev isman (~drag@mna75-2-82-67-196-34.fbx.proxad.net)
17:52.02nevcairielboth original CSI and CSI:Sunglasses
17:52.31TullerShirik yes and i love you phillip morris was the last good one
17:54.30*** join/#wowuidev robokitty (~roboe@50A2E64B.flatrate.dk)
17:55.31*** join/#wowuidev aggixx_ (~aggixx@CPE-70-92-77-238.new.res.rr.com)
18:00.11Own3dbtw... http://www.youtube.com/watch?v=hkDD03yeLnU > the enhancing shit
18:01.22Tullerthat is a winner
18:01.43*** join/#wowuidev cloudwolf (~chatzilla@c-71-227-249-44.hsd1.wa.comcast.net)
18:02.37*** join/#wowuidev Yoshimo (~Miranda@p549982A8.dip0.t-ipconnect.de)
18:03.05Fiskerold
18:03.21Own3dcan anyone here make me a gui interface in VB to track an IP address please?
18:03.36mikmahaste: http://pics.kuvaton.com/bshit/finish_already.jpg
18:03.53Fiskerhttp://www.youtube.com/watch?v=09T18yLpgh0&feature=related <-hahahaha
18:04.42DagmarMust be NoobDay somewhere
18:04.57*** join/#wowuidev mckenziemc (~Mark@dialup-4.246.251.61.Dial1.SanJose1.Level3.net)
18:06.03Jamashoh no a minor continuity glitch
18:06.27mckenziemcfisker has been discontinued?
18:07.10Jamashhow do I get wget to save a single file to a name I choose but still respect the server timestamp?
18:07.25Dagmar-O filename
18:07.29Jamashnyet
18:07.52Jamashthat's essentially the same as -O- > filename
18:07.53Fiskerno Jamash
18:08.05JamashI want it to not clobber an existing file
18:08.21Gnarfoz-nc
18:08.26Gnarfoz(no clobber)
18:08.50DagmarShoot your copy of wget then
18:08.51nevcairielclobbers Fisker
18:09.02Dagmar-rw-r--r-- 1 dagmar users 490798 2011-05-28 10:15 minecraft.jar
18:09.10DagmarDownloaded 30s ago with -O
18:09.24Dagmarwget only cares about file size if you're trying to continue a download
18:09.37mckenziemci spent a week at my grandpa's house, played wow there, now that i'm back home blizz thinks my login activity is suspicious :(
18:09.44airtonixumadbro
18:10.00nevcairielthats what you get for playing when you should be spending time with your family
18:10.08mckenziemclol
18:10.18Dagmarmckenziemc: You shouldn't have left the nelf /dancing for so long
18:10.20Fiskerwhy would you do that nevcairiel ?
18:10.27nevcairielbecause its fun!
18:10.36nevcairielalso, because i'm not motivated to code tonight
18:10.44Fiskeri mean clobber me
18:10.50nevcairielme too
18:11.45Jamashwho said anything about file size, I asked about timestamp
18:12.05Fiskerwow
18:12.11Fiskerit was may 28th 30 seconds ago? :O
18:12.15Fiskeri'm impressed
18:12.28Fiskerthis must be some sick time dilation field we're in
18:12.37Jamashpwnt
18:13.37DagmarJamash: Well, I'm trying to guess what you're trying to do since you rejected the notion of -O
18:14.00DagmarIt stores the file with the timestamp given by the server with -O or without -O
18:14.10Jamashare you suuuuuuuuuuuuuuure
18:14.20mckenziemcNo.
18:14.22mckenziemcMaybe.
18:14.25mckenziemcA little.
18:14.34DagmarYes, I am sure
18:14.35Dagmar-rw-r--r-- 1 dagmar users 490798 2011-05-28 10:15 minecraft.jar
18:14.35Dagmar-rw-r--r-- 1 dagmar users 490798 2011-05-28 10:15 minecraft_server.jar?v=1306778875529
18:14.43mckenziemc(Assistant Greely)
18:15.08DagmarI've got about 3/4 of a script to grab the server jar and number it that I've been working on and off on for about a week now
18:15.26DagmarI'm very sure it sets the timestamp on the file to what the remote server said
18:15.32Jamashaight
18:15.36DagmarIt just won't ever use that information to decide whether or not to download a file
18:15.44DagmarIt is the 30th now, yaknow
18:16.06Fiskerno it isn't Dagmar :(
18:16.31mckenziemcyou're not in australia, fisker
18:16.35mckenziemcso you can't pull that one
18:16.36Dagmarùíù CTCP TIME reply from Fisker: Mon May 30 20:16:28 2011
18:16.43DagmarEven in crazy land it's the 30th
18:17.53FiskerDagmar
18:18.01Fiskerobserve my sarcasm
18:18.02mckenziemcFisker
18:18.06Fisker[20:12:10] <Fisker> it was may 28th 30 seconds ago? :O
18:18.10Fiskergeddit?
18:18.21Fiskerbecause we're apparently in some kind of dilation field etc.
18:18.38airtonixu jelly
18:18.55FiskerI'm gonna grape you in the mouth airtonix
18:19.16airtonixlolumadbro
18:19.37mckenziemchey Fisker
18:19.42mckenziemci'm an instant winner
18:20.02mckenziemcFREE Foster Farms Turkey or Chicken Franks, 16 oz package
18:20.06mckenziemcisn't that awesome?
18:20.20mckenziemcinstant weiner too
18:20.30*** join/#wowuidev Vilkku (~Vilkku@86-60-144-203-dyn-dsl.ssp.fi)
18:26.30*** join/#wowuidev kd3|phone (~Kaydeethr@wowwiki/Kaydeethree)
18:27.22kd3|phoneGood thing I checked... first day of school tomorrow!
18:27.37*** join/#wowuidev mono|strigoy (~postid08@89.112.4.92.pppoe.eltel.net)
18:28.33kd3|phoneAlso, wth Linus? 3.0?
18:30.22Fiskerhey kd3|phone !
18:30.39Fiskerlol skynet?
18:30.43kd3|phoneLo
18:31.23karl_w_wis sexymap going to get some developer love then? :P
18:35.42*** join/#wowuidev Wobin (~quassel@124-169-141-81.dyn.iinet.net.au)
18:39.54Fiskeranyway kd3|phone i can see it now
18:40.19FiskerAll the server hosting guys going "New and improved Linux Kernel 3.0 here on <hosting site>!"
18:40.23Shirikhi Fisker
18:40.37Fiskerhey Shirik
18:40.48Fiskerdid you fix your jerkery?
18:41.05*** join/#wowuidev Robsato (~Robsato@wetering.xs4all.nl)
18:41.23Shiriknope
18:42.20Fiskerthen you shall forever ben known as Shirik 3.0.0
18:42.30Shirikwhat happened to Shirik 2.0
18:45.18*** join/#wowuidev MentalPower (~MPower@WoWUIDev/Norganna/Administrator/MentalPower)
18:45.18*** mode/#wowuidev [+v MentalPower] by ChanServ
18:45.34ShirikFisker
18:45.52ShirikHÃ¥ll om mig nu
18:47.48airtonixi'm awesome
18:48.39foxlitLonging to that Fiskery embrace, Shirik?
18:48.44foxlits/to/for/
18:48.44Shirikyes foxlit
18:48.50Shirikalso, netflix has like everything
18:48.52ShirikI really should get it
18:49.13Fiskerthat's not danish Shirik
18:49.19Shirikcorrect
18:53.04*** join/#wowuidev Sliker (~ponies@91.125.131.95)
18:55.51karl_w_whow is it that if you log out with your guild roster showing, you see your own name disappear from the list just before you log
18:55.59karl_w_wsurely that is deliberate
18:57.07Shirikhow is it that you noticed this? :P
18:57.13Gnarfozjust more (unecessary) proof that chat is not being handled by the same servers as the game world
18:57.31CideAdys: pong
18:57.41Arrowmasteryou mean youve never seen the "You are not in a guild" message right before logging out?
18:57.51AdysCide: you familiar with threading?
18:57.58Cidewhat language?
18:58.03Adyspython
18:58.10CideShirik has been teaching me how to not suck at it in C++
18:58.16Cidehaven't done much wrt to python though
18:58.21Adysbeh
18:59.51karl_w_w<Shirik> how is it that you noticed this? :P <- never logged with the roster open before? :P
19:00.00Shirikno?
19:00.02Shirikwhy would I
19:00.02karl_w_w<Arrowmaster> you mean youve never seen the "You are not in a guild" message right before logging out? <- never
19:00.14ShirikAdys: Soon, Cide will realize that python is evil
19:01.51Fiskeri wonder why french people can't make games Shirik
19:02.17ShirikCide
19:02.20CideShirik
19:02.23FiskerFisker
19:02.31ShirikSå håll om mig, Släpp inte taget om mig
19:02.38ShirikÄr som förhäxad av dig
19:02.40Cideare those song lyrics?
19:02.47Shiriklol yes
19:02.50Cidethank god
19:03.00Cidealso
19:03.08CideI went to bed at 1:30pm right
19:03.17Cideand my girlfriend came to bed at around 6pm to wake me up
19:03.24Shirikha
19:03.48Cideand I kept rambling about walking in circles and apparently said "it's okay. I know the C++" and then "I'm writing the multiprotocol."
19:03.50ShirikCide: http://www.youtube.com/watch?v=9197GTl1ASg
19:04.29Cidesound familiar? :P
19:04.30Fiskersee Shirik
19:04.34Fiskerhttp://www.coflash.com/stuff/2011-05-30_00007.jpg <-french people can't model
19:04.39Fiskeror skin
19:04.43Cidehaha
19:05.02Cidenanne grönvall
19:05.47Shirik?
19:06.02FiskerShirik
19:06.08Fiskerwhy can't french people make g ames?
19:06.15Fiskerwithout a space between g and ames
19:06.19Cidenanne grönvall is the artist
19:06.30Shirikoh
19:06.35Shirikshe has a good voice
19:06.45Cideit's an old song!
19:06.51Shirikshe also pronounces "skick" like "quick"
19:06.52*** join/#wowuidev clever (~clever@142.167.206.252)
19:07.11Cideindeed
19:08.55FiskerShirik
19:08.56Fiskerhold me
19:09.32Shirikno
19:09.52Cidehttp://www.youtube.com/watch?v=dX1nKSh2QGk
19:09.58Cidewow
19:10.01Cidethe sound is awful
19:10.07Thunder_Childmakes Shirik hold Fisker
19:10.32Cidehttp://www.youtube.com/watch?v=7fx8hyUIqtk was better
19:10.49Cide@ Shirik
19:10.52Fiskerthanks Thunder_Child
19:11.01Fiskerdon't you hate how french people can't make games?
19:11.14Shiriknice cide
19:12.51Fiskerlol nice cide
19:13.39*** join/#wowuidev Tuller (~Tuller@c-69-143-48-210.hsd1.va.comcast.net)
19:14.39AdysFisker: what's that?
19:14.45Adysa blow-up guard?
19:19.19*** join/#wowuidev p3lim (3e3f0b6b@gateway/web/freenode/ip.62.63.11.107)
19:20.31p3limanyone know a questgiver that is suitable for testing QUEST_GREETING
19:20.48Adysp3lim: you could try befriending one
19:21.59*** join/#wowuidev Trela_ (~Alexia@c-71-228-185-34.hsd1.al.comcast.net)
19:24.39mckenziemcif somebody tried to log into my account with the wrong password or authenticator code, would that cause a lock (from the ip being different)?
19:24.49mckenziemcor can that only happen if the info is all correct
19:25.54gsnerfas far as i know only a successfull login should throw you out of the game
19:26.34gsnerfbut then, i haven't tested connecting from 2 IPs at the same time
19:27.44mckenziemci got a lock this morning since i hadn't logged into wow from this location for a while, reset then logged in, then when i tried to change to my other account it got locked again
19:27.48mckenziemcAV scan found nothing
19:27.56Fiskeri think so Adys
19:28.10AdysFisker: wheres the air-hole?
19:28.52Fiskerbutt?
19:29.07Adysno, thats the pirate hole
19:29.08Adysi mean
19:29.10Adysthe arr-holen!
19:29.20Adysattempts a victory dance but quickly abandons it
19:34.56p3limanyone know a questgiver that is suitable for testing QUEST_GREETING?
19:46.52p3limnobody knows?
20:03.15Shirikgives Cide a http://www.youtube.com/watch?v=lHBUcnIW_Oc
20:04.13*** join/#wowuidev eir (~eir@freenode/utility-bot/eir)
20:06.17CideShirik: a classic
20:06.21Shirikyes
20:07.06FiskerShirik
20:09.24FiskerShirik
20:09.40ShirikFisker
20:10.31mckenziemcShirikfiskereksifkirihs
20:11.14Shiriksɥıɹıʞɟısʞǝɹǝʞsıɟʞıɹıɥs
20:11.25mckenziemcD:
20:13.28Seeraho.O
20:14.35Shiriko˙o
20:15.44Fiskerhey Shirik
20:15.49Shirikhey Fisker
20:15.54FiskerBF3?
20:16.05Shiriknoty
20:16.28mckenziemcthree's not enough for him
20:16.33Fiskeroh ok Shirik
20:19.55JamashShirik: http://www.youtube.com/watch?v=6BmvIWhe_DQ imo
20:21.03ShirikI don't get it
20:21.10Shirik"seriously ur awsome at making amv's and shiz could u give me some pointers????"
20:21.18ShirikHe cut a bunch of clips together and put it on some music
20:22.02Fiskeryou've violated the law Shirik
20:22.06Shirikok
20:22.07*** join/#wowuidev gsnerf_ (~gsnerf@dslb-088-073-044-057.pools.arcor-ip.net)
20:22.12FiskerI AM THE LAW
20:22.16DagmarProtip: Stop sucking
20:22.34*** join/#wowuidev A-KO^ (as@2001:470:1f07:115d:e428:876:a6a7:9485)
20:22.35*** join/#wowuidev A-KO^ (as@unaffiliated/a-ko)
20:23.06mckenziemcɹɐɯƃɐp ou
20:23.12Fiskerhey Dagmar
20:23.14Fiskerumadbro?
20:26.25*** join/#wowuidev Brunera (lasseb@colargol.tihlde.org)
20:27.11Fiskerhak with me Shirik
20:27.17Shirikno
20:27.33Fiskery u no haek with me
20:27.34Fisker?
20:28.34Shirikcause
20:28.37Shirikme > u
20:29.06*** join/#wowuidev ccox_ (~ccox@c-98-248-30-38.hsd1.ca.comcast.net)
20:29.06*** join/#wowuidev ccox_ (~ccox@WoWUIDev/Norganna/Developer/CCox)
20:29.33Fiskerjnwhiteh
20:29.51Fiskerisn't there a cvar to disable syncing of chat settings from the server?
20:30.07*** join/#wowuidev Vilkku (Vilkku@86-60-144-203-dyn-dsl.ssp.fi)
20:30.34*** join/#wowuidev mascondante (~mascondan@50.55.208.156)
20:31.08*** join/#wowuidev tlund (~tlund@envy.nxs.se)
20:31.14*** join/#wowuidev krka (krka@bronzon.pi.se)
20:31.56*** join/#wowuidev Shefki (~breser@fornix.brain.org)
20:34.38*** join/#wowuidev Tuller (~tuller@c-69-143-48-210.hsd1.va.comcast.net)
20:37.01Krapshttp://www.youtube.com/watch?v=kCpjgl2baLs&feature=player_embedded
20:37.23JamashShirik: you are bad at watching videos
20:43.03Fiskerslaps Jamash around a bit with a large trout
20:43.04Fiskerslaps Kraps around a bit with a large trout
20:43.39JamashI approve of california leaving north america to go hang with hawaii
20:44.11Jamashmy plan is to attach a giant winch to hawaii and use it to pull japan and california together
20:44.18Jamashexcept orange county
20:44.46DagmarThat sounds like a dangerous concentration of sushi restaurants just waiting to go critical
20:45.40Jamashwait, blizzard is in orange county, damn
20:47.01Jamashwell, I guess the republicans will mostly leave when the winch starts up
20:48.14*** join/#wowuidev xyphoid (~xyphoid@unaffiliated/xyphoid)
20:53.13mikmahttp://www.iwatchstuff.com/2011/05/north-america-here-comes-3-d-chinese-por.php
20:59.27DagmarI like porn well enough--but I'm not sure I really want to see it in 3D 40 feet high
21:01.05*** join/#wowuidev Sliker (~ponies@87.114.4.233)
21:02.23foxlit"Get instant access to over $500 in valuable coupons"
21:02.28foxlitmm, valuable coupons.
21:03.08DagmarI'm sure it won't cost more than $50,000 or so to cash them all in
21:19.44*** join/#wowuidev Iriel (~Iriel@adsl-71-158-244-138.dsl.pltn13.sbcglobal.net)
21:19.44*** mode/#wowuidev [+o Iriel] by ChanServ
21:21.48hastemikma: http://i.imgur.com/7EDCj.jpg
21:21.54Shirikdoes like
21:22.00Shiriknewegg not sell sound cards anymore or something?
21:22.45Corrodiaslooks like they put them under "input devices". http://www.newegg.com/Store/SubCategory.aspx?SubCategory=57&name=Sound-Cards
21:23.22Shirikthat's odd
21:23.39Corrodiasi think that's what most of the good ones are used for, recording.
21:23.44ShirikI guess it's logical to assume that if someone's buying a sound card these days that's what it's used for
21:23.49Shirik(and they're right at least in my case)
21:25.21hasteI should buy a new soundcard =/
21:26.12foxlita "sound
21:26.14foxlit" card?
21:26.22foxlitwhat are those? :P
21:26.45Krapshttp://www.joystiq.com/2011/05/29/microsoft-treats-kid-hacker-with-kid-gloves-in-wake-of-psn-debac/
21:26.48hastethings I can input sound from several devices with
21:26.54Shirik^
21:27.30CorrodiasKraps: yet i saw on kotaku something else... where was it
21:27.55foxlitlink in the first comment
21:28.13Corrodiasyou are right
21:28.31ShirikI am trying to figure out if I need MIDI in though
21:28.40Shirikall of my MIDI devices also have a USB interface
21:32.02Fiskerhey haste
21:33.44hastehey Fisker
21:37.32Fiskerso
21:37.37Fiskerstaring contest haste ?
21:38.04hastewouldn't be a contest!
21:43.26*** join/#wowuidev Aeyan (~pancake@cpe-024-163-014-009.triad.res.rr.com)
21:47.49Cairenn|afkbeats her head on her desk
21:47.52Cairenn|afkSubject: Registration Problem
21:47.52Cairenn|afkunabal to login
21:47.56Shiriklol
21:48.02Cairenn|afkwtf am I supposed to do with that?
21:48.21nebula169turn it into a lolcat pic
21:48.27Cairennheh, yeah
21:48.28foxlitCairenn: fix it, clearly :P
21:48.57Cairennthat was the complete and total body of the email
21:49.05mckenziemc:(
21:49.22foxlitsigg :(
21:49.40foxlitEvery time I see one of his posts, it's basically a one-liner saying "RDX!"
21:50.37tekkubCairenn: those are the ones that get "accidentally" caught by the spam filter
21:50.46Cairennheh
21:53.06*** join/#wowuidev kd3 (~Kaydeethr@wowwiki/Kaydeethree)
21:53.53*** join/#wowuidev Tuller (~tuller@c-69-143-48-210.hsd1.va.comcast.net)
22:02.12Fiskerso haste
22:02.14Fiskerthere it was
22:02.32Fiskera picture of a naked man from behind in the news
22:02.45Fiskerwith a link described as "Watch the full gallery"
22:02.48Fiskernothankyou.jpg :(
22:04.28Fiskerso kd3
22:04.47FiskerBlizzard revealed to you what they intend on doing with the new authenticator feature?
22:04.53*** join/#wowuidev Motig (~Motig@a184199.upc-a.chello.nl)
22:06.29kd3neg
22:08.32Fiskersounds racist
22:11.10Fiskerhttp://www.blogcdn.com/www.engadget.com/media/2011/05/11a53012434.jpg <-nice billboard advertising
22:11.42Corrodiaswhy is  the woman(?) wearing labels?
22:11.49Fiskershe's a billboard
22:11.50Fiskerthat's why
22:12.05Corrodiasbut one name is obscured!
22:12.14Corrodiasshe's just not very good at it?
22:12.22Fiskerit's padfone
22:12.39Corrodiasno; it's dfone
22:13.15Fiskerpadfone
22:13.28Corrodiasi do not see a "pa" there, bro
22:13.54Corrodiasif it's supposed to be, then why isn't it visible? bad billboard.
22:14.14bleeterrages at MentalPower's cow-orkers with a very shiny, big and deadly LART
22:14.22Corrodiasit's not good advertising when i have to have someone else tell me what it's advertising.
22:14.28Fiskeri'd take it up at the local feminist convention Corrodias
22:14.41Corrodiasin most cases, i will just not care and will not know what it was about.
22:21.58*** join/#wowuidev Tuller (~tuller@c-69-143-48-210.hsd1.va.comcast.net)
22:29.18*** join/#wowuidev robokitty (~roboe@50A2E64B.flatrate.dk)
22:30.42*** join/#wowuidev Caleb| (~caleb@178.48.162.10)
22:37.10*** join/#wowuidev nebula169 (~nebula@c-75-73-235-102.hsd1.mn.comcast.net)
22:39.57MentalPowerbleeter: thanks :)
22:42.20Fiskerhey MentalPower
22:44.39MentalPowerhey Fisker
22:51.02*** join/#wowuidev stew-a (~Stewart@unafilliated/stewa/x-008753)
23:00.36*** join/#wowuidev Esamynn|Away (~chatzilla@WoWUIDev/WoWI/Featured/Esamynn)
23:00.36*** mode/#wowuidev [+v Esamynn|Away] by ChanServ
23:00.49bleeterMentalPower: some days BOFH can never be enough ;)
23:02.07Shirikhey Fisker
23:02.39bleeterhi Shirik
23:02.56Shirikbleeter, have a free picture of a sunset: http://upload.wikimedia.org/wikipedia/commons/c/ce/SSTV_sunset_audio.ogg
23:05.35vithosanyone know what causes this? Interface\FrameXML\ChatFrame.lua:3573: attempt to index field 'header' (a nil value)
23:12.05*** join/#wowuidev karl_w_w (~karl@124-169-175-69.dyn.iinet.net.au)
23:19.53*** join/#wowuidev Tuller (~tuller@c-69-143-48-210.hsd1.va.comcast.net)
23:24.23*** join/#wowuidev DWSR_ (46190d33@gateway/web/freenode/ip.70.25.13.51)
23:24.48*** part/#wowuidev DWSR_ (46190d33@gateway/web/freenode/ip.70.25.13.51)
23:31.03*** join/#wowuidev nebula169 (~nebula@c-75-73-235-102.hsd1.mn.comcast.net)
23:32.57*** join/#wowuidev Tuller (~tuller@c-69-143-48-210.hsd1.va.comcast.net)
23:34.50*** join/#wowuidev xyphoid (~xyphoid@unaffiliated/xyphoid)
23:50.21*** join/#wowuidev cralor (~cralor@c-98-217-6-30.hsd1.ma.comcast.net)

Generated by irclog2html.pl Modified by Tim Riker to work with infobot.