Options:
- # Session Start: Tue Jun 24 00:00:00 2014
- # Session Ident: #html5
- # [00:00] * Joins: ShooterMG (~shootermg@c-24-21-207-128.hsd1.or.comcast.net)
- # [00:01] * Quits: JonEdney (~JonEdney@unaffiliated/jonedney) (Quit: JonEdney)
- # [00:04] * Quits: Jon47 (~Jon47@38.100.143.34) (Quit: Leaving.)
- # [00:05] * Quits: donmichelangelo (~donmichel@p5B14576A.dip0.t-ipconnect.de)
- # [00:05] * Joins: richardbaker (~richardba@otp477474ots.ucsf.edu)
- # [00:07] * Quits: antlong (~antlong@unaffiliated/antlong) (Quit: Textual IRC Client: www.textualapp.com)
- # [00:07] * Quits: ThisHowiRoll (~iRush@cpe-76-171-13-101.socal.res.rr.com) (Ping timeout: 240 seconds)
- # [00:10] * Joins: northfurr (~northfurr@unaffiliated/northfurr)
- # [00:11] * Quits: seventy3 (~seventy3@ec2-23-21-31-250.compute-1.amazonaws.com) (Ping timeout: 240 seconds)
- # [00:12] * Joins: hkon_ (~hkon_@213.167.121.42.static.lyse.net)
- # [00:13] * Quits: graphettion (~graphetti@66.49.23.98.nw.nuvox.net) (Remote host closed the connection)
- # [00:14] * Joins: seventy3 (~seventy3@ec2-23-21-31-250.compute-1.amazonaws.com)
- # [00:16] * Quits: hkon_ (~hkon_@213.167.121.42.static.lyse.net) (Ping timeout: 240 seconds)
- # [00:22] * Quits: dobalina (~dobalina@gateway/tor-sasl/dobalina) (Quit: Quitting)
- # [00:26] * Joins: AlexKvazos (~AlexKvazo@189-209-191-225.static.axtel.net)
- # [00:27] * Quits: Demego (~Demego@84.240.42.164) (Ping timeout: 240 seconds)
- # [00:28] * Quits: zB0hs (~zB0hs@209.124.163.154) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [00:28] * Joins: leb (~leb@pool-108-53-167-179.nwrknj.fios.verizon.net)
- # [00:30] * Quits: MortimerCat (~Adrian@host109-149-38-188.range109-149.btcentralplus.com) (Quit: Leaving)
- # [00:33] * Parts: crunchnode (~crunchabl@50-193-150-57-static.hfc.comcastbusiness.net) ("Textual IRC Client: www.textualapp.com")
- # [00:34] * Quits: AlexKvazos (~AlexKvazo@189-209-191-225.static.axtel.net) (Ping timeout: 272 seconds)
- # [00:34] * Joins: LiENUS (~LiENUS@ip72-219-29-205.br.br.cox.net)
- # [00:39] * pablasso_afk is now known as pablasso
- # [00:44] * Quits: David_Bradbury (~chatzilla@75-147-178-254-Washington.hfc.comcastbusiness.net) (Quit: ChatZilla 0.9.90.1 [Firefox 30.0/20140605174243])
- # [00:46] * Quits: Reskp (~Reskp@2a01:e34:ec13:82f0:90af:d661:9b0c:9951) (Remote host closed the connection)
- # [00:46] * Quits: BLadwin (~BLadwin@c-24-22-84-24.hsd1.or.comcast.net) (Quit: BLadwin)
- # [00:47] * Quits: TimmyTones (~Tim@cpc5-oxfd18-2-0-cust437.4-3.cable.virginm.net) (Remote host closed the connection)
- # [00:48] * Joins: BLadwin (~BLadwin@c-24-22-84-24.hsd1.or.comcast.net)
- # [00:48] * Quits: BLadwin (~BLadwin@c-24-22-84-24.hsd1.or.comcast.net) (Client Quit)
- # [00:50] * Quits: jottr_ (~jottr@unaffiliated/jottr) (Ping timeout: 264 seconds)
- # [00:52] * Quits: alphadog0309 (~alphadog0@c-69-248-8-173.hsd1.nj.comcast.net) (Remote host closed the connection)
- # [00:57] * Quits: rootshift (~rootshift@2.29.45.72) (Quit: My MacBook has decided to go to sleep. Zzzz..)
- # [00:59] * Joins: bencc (~Ofir@bzq-84-109-139-138.red.bezeqint.net)
- # [00:59] <bencc> does a canvas require more memory than an image element?
- # [01:00] <__joshua___> good question. no idea, but probably yes.
- # [01:02] * Quits: leb (~leb@pool-108-53-167-179.nwrknj.fios.verizon.net) (Quit: Computer has gone to sleep.)
- # [01:02] * Joins: antlong_ (~antlong@unaffiliated/antlong)
- # [01:02] <bencc> is there a way to reduce the canvas memory when it's not in the dom?
- # [01:02] * Quits: dangerousdave (~dangerous@78.156.71.46) (Ping timeout: 240 seconds)
- # [01:06] <moo-_-> bencc: no
- # [01:06] * Joins: _leb (~leb@pool-108-53-167-179.nwrknj.fios.verizon.net)
- # [01:06] * Quits: Preda- (~preda@dsl-olubrasgw2-54f866-173.dhcp.inet.fi) (Ping timeout: 244 seconds)
- # [01:06] <moo-_-> bencc: because canvas is dynamic bitmap, all pixels must be allocated
- # [01:06] <moo-_-> bencc: in which kind of situations this could be a problem?
- # [01:07] <bencc> moo-_-: I'm creating a drawing app and need to save undeo and redo steps
- # [01:07] * Quits: sifu (~sifu@cpc67897-sotn13-2-0-cust697.15-1.cable.virginm.net) (Quit: Textual IRC Client: www.textualapp.com)
- # [01:07] <bencc> if you clear the page, you need to save a canvas of the whole area for undo
- # [01:08] <bencc> this is an in-memory canvas so maybe I can force garbage collection to make it more light weight
- # [01:08] <moo-_-> bencc: I think there is no easy work around for this - this is a limitation for normal photostop-style apps too
- # [01:08] <moo-_-> bencc: you can convert it to <img> blob
- # [01:08] <moo-_-> bencc: at least firefox holds only compressed version of non-visible images in memory nowadays
- # [01:08] * Quits: dik_dak (~dik_dak@pool-108-21-63-242.nycmny.fios.verizon.net) (Remote host closed the connection)
- # [01:08] <moo-_-> it might bring down the cost a little if the image is not complex
- # [01:09] <moo-_-> bencc: also, I guess you are already saving image delta instead of whole image for normal drawing operations (which do not touch the full canvas)?
- # [01:09] <bencc> moo-_-: yes, image elements help
- # [01:09] <bencc> what do you mean by <img> blob?
- # [01:10] <bencc> moo-_-: I'm saving only the area the user changed between steps but if you clear the board, I have to save everything for this step
- # [01:11] * Quits: _leb (~leb@pool-108-53-167-179.nwrknj.fios.verizon.net) (Client Quit)
- # [01:11] <moo-_-> https://developer.mozilla.org/en/docs/Web/API/HTMLCanvasElement see toBlob()
- # [01:11] * Joins: _wli (~williamli@1-36-121-023.static.netvigator.com)
- # [01:12] <bencc> I see that is not supported in Chrome
- # [01:13] <bencc> and I can't select part of the canvas
- # [01:13] <bencc> if I only use several colors, can I make the canvas lighter?
- # [01:13] <moo-_-> bencc: you can easily grab a part of canvas by drawing it into a temporary secondary canvas
- # [01:13] * Joins: wilmoore (~wilmoore@vlandnat.mystrotv.com)
- # [01:13] <moo-_-> bencc: also, chrome version
- # [01:13] * Quits: LiENUS (~LiENUS@ip72-219-29-205.br.br.cox.net) (Ping timeout: 244 seconds)
- # [01:14] * Joins: TimmyTones (~Tim@cpc5-oxfd18-2-0-cust437.4-3.cable.virginm.net)
- # [01:14] <moo-_-> https://github.com/miohtama/Krusovice/blob/master/src/tools/resizer.js#L51
- # [01:14] <bencc> https://code.google.com/p/chromium/issues/detail?id=67587
- # [01:14] <moo-_-> though I am pretty sure Chrome has native APIs already
- # [01:14] * Quits: jstimm (~jstimm@unaffiliated/jstimm) (Quit: Sleep. ZZZzzz…)
- # [01:15] <bencc> is a blob better than an Image element?
- # [01:15] <moo-_-> bencc: both are stored as compressed versions
- # [01:15] <moo-_-> in memory-wise a benchmark is only way to find out
- # [01:15] <bencc> ok
- # [01:15] * Joins: Ax_SeS|away (duoi@gateway/shell/panicbnc/x-unudzhlxpbdrjghy)
- # [01:16] <bencc> thanks
- # [01:16] <moo-_-> np
- # [01:16] * Ax_SeS|away is now known as Ax_SeS
- # [01:16] <moo-_-> also use PNG instead of JPEG if you don't want to encoder to lose your image data
- # [01:16] <bencc> ok
- # [01:21] * Quits: irae_ (~irae_@nat/yahoo/x-kumvzfttuvnhzcck) (Ping timeout: 240 seconds)
- # [01:21] * Quits: wilmoore (~wilmoore@vlandnat.mystrotv.com) (Ping timeout: 272 seconds)
- # [01:23] * Quits: sledgeDJ (~sledgeDJ@bzq-84-110-184-233.red.bezeqint.net) (Ping timeout: 244 seconds)
- # [01:24] * Joins: irae_ (~irae_@nat/yahoo/x-afiprvlibhyuawou)
- # [01:25] * Joins: BLadwin (~BLadwin@75-150-34-222-Oregon.hfc.comcastbusiness.net)
- # [01:28] * Joins: deasy (~deasy@host-85-201-82-67.brutele.be)
- # [01:30] * Joins: s3shs (~s3shs@wsip-70-184-105-92.ph.ph.cox.net)
- # [01:32] * Quits: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com) (Remote host closed the connection)
- # [01:36] * Quits: chriys (~chriys@modemcable147.239-82-70.mc.videotron.ca)
- # [01:38] * Joins: AlexKvazos (~AlexKvazo@189-209-191-225.static.axtel.net)
- # [01:42] * Quits: tylrr (~textual@rrcs-173-197-114-202.west.biz.rr.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [01:46] * Joins: Reskp (~Reskp@2a01:e34:ec13:82f0:a55c:b449:b9ed:abb0)
- # [01:47] * Joins: maikowblue (~nobody@189.6.2.33)
- # [01:47] * Joins: BLadwin_ (~BLadwin@184.252.90.7)
- # [01:47] * Joins: hivearts (~hivearts@178-221-179-12.dynamic.isp.telekom.rs)
- # [01:48] * Quits: robmorrissey (~robmorris@cpc26-brig15-2-0-cust123.3-3.cable.virginm.net) (Quit: Computer has gone to sleep.)
- # [01:48] * Quits: BLadwin (~BLadwin@75-150-34-222-Oregon.hfc.comcastbusiness.net) (Ping timeout: 264 seconds)
- # [01:50] * Quits: george2 (~42@unaffiliated/george2) (Remote host closed the connection)
- # [01:51] * Quits: Reskp (~Reskp@2a01:e34:ec13:82f0:a55c:b449:b9ed:abb0) (Ping timeout: 240 seconds)
- # [01:53] * Parts: eddief (~Eddie@c-24-22-33-249.hsd1.or.comcast.net)
- # [01:53] * Joins: mennea (~textual@213.57.19.111)
- # [01:54] * Quits: mennea (~textual@213.57.19.111) (Max SendQ exceeded)
- # [01:56] * Quits: Jayflux (~Jason@unaffiliated/jayflux) (Quit: Leaving)
- # [01:56] * Quits: TimmyTones (~Tim@cpc5-oxfd18-2-0-cust437.4-3.cable.virginm.net) (Quit: Leaving...)
- # [02:00] * Joins: hkon_ (~hkon_@213.167.121.42.static.lyse.net)
- # [02:02] * Quits: antlong_ (~antlong@unaffiliated/antlong) (Quit: Textual IRC Client: www.textualapp.com)
- # [02:02] * Joins: robmorrissey (~robmorris@cpc26-brig15-2-0-cust123.3-3.cable.virginm.net)
- # [02:03] * Joins: bitaco (~user@184.152.88.58)
- # [02:03] * Joins: Reskp (~Reskp@2a01:e34:ec13:82f0:4ed:5f72:9d71:83a4)
- # [02:04] * Quits: irae_ (~irae_@nat/yahoo/x-afiprvlibhyuawou) (Quit: irae_)
- # [02:04] <montecfel> This is unbelievably annoying. When drawing a text with fillText on a canvas, the font will randomly blur even though you Math.round() the x and y coordinates. The string "This is a text." is blurry. If I change it into "This is a text.aaa", it becomes sharp. If I remove or add any chars, it becomes blurry again. Can somebody save my computer from meeting with my sledgehammer?
- # [02:05] * Quits: BLadwin_ (~BLadwin@184.252.90.7) (Ping timeout: 240 seconds)
- # [02:05] * Quits: hkon_ (~hkon_@213.167.121.42.static.lyse.net) (Ping timeout: 264 seconds)
- # [02:06] * Quits: lmclister (~lmclister@192.150.10.206)
- # [02:06] * Quits: robmorrissey (~robmorris@cpc26-brig15-2-0-cust123.3-3.cable.virginm.net) (Client Quit)
- # [02:07] * Joins: irae_ (~irae_@nat/yahoo/x-lwwaqszxvnbyuzuh)
- # [02:09] * Quits: Reskp (~Reskp@2a01:e34:ec13:82f0:4ed:5f72:9d71:83a4) (Ping timeout: 272 seconds)
- # [02:12] * Joins: BLadwin (~BLadwin@75-150-34-222-Oregon.hfc.comcastbusiness.net)
- # [02:22] * Quits: Betal (~Beta@unaffiliated/betal) (Disconnected by services)
- # [02:23] * Joins: Madi (~Madison@69.73.119.140)
- # [02:23] * Quits: Cyph3r (~Cyph3r@71-84-78-55.dhcp.rvsd.ca.charter.com) (Read error: Connection reset by peer)
- # [02:23] * Joins: BLadwin_ (~BLadwin@75-150-34-222-Oregon.hfc.comcastbusiness.net)
- # [02:24] * Joins: Cyph3r (~Cyph3r@71-84-78-55.dhcp.rvsd.ca.charter.com)
- # [02:26] * Quits: BLadwin (~BLadwin@75-150-34-222-Oregon.hfc.comcastbusiness.net) (Ping timeout: 240 seconds)
- # [02:26] * Quits: Madison (~Madison@69.73.119.140) (Ping timeout: 240 seconds)
- # [02:27] * Quits: symb (~symb@2a02:8109:8980:540:bc71:75ff:f0b2:d9d7) (Quit: You should never underestimate the predictability of stupidity.)
- # [02:30] * Joins: hugo_moss (~aasfasa@unaffiliated/hugo-moss/x-0589204)
- # [02:32] * Quits: Foldager_ (~Foldager@178.21.88.68) (Quit: Kidnapped by mysterious creatures.)
- # [02:32] * Joins: ThisHowiRoll (~iRush@cpe-76-171-13-101.socal.res.rr.com)
- # [02:36] * Quits: richardbaker (~richardba@otp477474ots.ucsf.edu) (Remote host closed the connection)
- # [02:39] * Quits: dismist (~cssfx@pool-74-110-111-150.nrflva.fios.verizon.net) (Ping timeout: 244 seconds)
- # [02:39] * Joins: richardbaker (~richardba@otp477474ots.ucsf.edu)
- # [02:42] * Joins: _leb (~leb@pool-108-53-167-179.nwrknj.fios.verizon.net)
- # [02:44] * Quits: AlexKvazos (~AlexKvazo@189-209-191-225.static.axtel.net) (Remote host closed the connection)
- # [02:46] * Quits: Wildblue (~guy@unaffiliated/wildblue) (Ping timeout: 240 seconds)
- # [02:48] * Quits: Caiters (~Caitlin@wsip-68-15-80-137.oc.oc.cox.net) (Quit: Leaving.)
- # [02:55] * Quits: s3shs (~s3shs@wsip-70-184-105-92.ph.ph.cox.net) (Quit: Computer has gone to sleep.)
- # [02:55] * Joins: s3shs (~s3shs@wsip-70-184-105-92.ph.ph.cox.net)
- # [02:56] * Quits: s3shs (~s3shs@wsip-70-184-105-92.ph.ph.cox.net) (Client Quit)
- # [02:57] * Joins: s3shs (~s3shs@wsip-70-184-105-92.ph.ph.cox.net)
- # [02:58] * Joins: jrahmy (~jrahmy@cpe-24-94-26-137.san.res.rr.com)
- # [02:59] * Joins: Betal (~Beta@unaffiliated/betal)
- # [02:59] * Quits: s3shs (~s3shs@wsip-70-184-105-92.ph.ph.cox.net) (Client Quit)
- # [03:02] * Joins: Wildblue` (~guy@unaffiliated/wildblue)
- # [03:04] * Joins: Reskp (~Reskp@78.193.56.47)
- # [03:05] * Quits: danielwrobert (~danielwro@wsip-68-15-24-46.sd.sd.cox.net) (Quit: Leaving.)
- # [03:06] * Quits: BLadwin_ (~BLadwin@75-150-34-222-Oregon.hfc.comcastbusiness.net) (Ping timeout: 245 seconds)
- # [03:08] * Quits: Alina-malina (Alina-mali@unaffiliated/alina-malina) (Ping timeout: 255 seconds)
- # [03:08] * Joins: AlexKvazos (~AlexKvazo@189-209-191-225.static.axtel.net)
- # [03:08] * Quits: richardbaker (~richardba@otp477474ots.ucsf.edu) (Remote host closed the connection)
- # [03:08] * Joins: BLadwin (~BLadwin@75-150-34-222-Oregon.hfc.comcastbusiness.net)
- # [03:08] * Joins: Alina-malina (Alina-mali@unaffiliated/alina-malina)
- # [03:09] * Joins: sgen (~sgen@38.116.199.130)
- # [03:09] * Parts: montecfel (~montecfel@gateway/tor-sasl/montecfel)
- # [03:09] * Quits: Reskp (~Reskp@78.193.56.47) (Ping timeout: 255 seconds)
- # [03:10] * Joins: k_sze[work] (~kvirc@unaffiliated/kira)
- # [03:10] * Quits: _wli (~williamli@1-36-121-023.static.netvigator.com) (Remote host closed the connection)
- # [03:11] * pablasso is now known as pablasso_afk
- # [03:15] * Quits: clearcut (~reuf@188.127.124.69) (Quit: Leaving)
- # [03:19] * Joins: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com)
- # [03:20] * Joins: _wli (~williamli@1-36-121-023.static.netvigator.com)
- # [03:21] * Joins: Centime (~centime@178.251.23.188)
- # [03:22] * Quits: _wli (~williamli@1-36-121-023.static.netvigator.com) (Client Quit)
- # [03:23] * Parts: AlexKvazos (~AlexKvazo@189-209-191-225.static.axtel.net) ("Bye!")
- # [03:24] * Quits: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com) (Ping timeout: 255 seconds)
- # [03:30] * Quits: hivearts (~hivearts@178-221-179-12.dynamic.isp.telekom.rs) (Quit: Computer has gone to sleep.)
- # [03:35] * Joins: robmorrissey (~robmorris@cpc26-brig15-2-0-cust123.3-3.cable.virginm.net)
- # [03:36] * Quits: dawhite (~dawhite@74.118.22.223) (Ping timeout: 255 seconds)
- # [03:42] * Quits: k_sze[work] (~kvirc@unaffiliated/kira) (Read error: Connection reset by peer)
- # [03:43] * Joins: k_sze[work] (~kvirc@unaffiliated/kira)
- # [03:43] * Joins: `mike` (62a9562a@gateway/web/freenode/ip.98.169.86.42)
- # [03:44] * Parts: `mike` (62a9562a@gateway/web/freenode/ip.98.169.86.42)
- # [03:45] * Quits: AciD`` (~gni@jau72-5-78-223-56-21.fbx.proxad.net) (Ping timeout: 272 seconds)
- # [03:47] * Joins: cvisco (~cvisco@cpe-173-174-34-39.austin.res.rr.com)
- # [03:48] * Quits: cvisco (~cvisco@cpe-173-174-34-39.austin.res.rr.com) (Client Quit)
- # [03:48] * Joins: hkon_ (~hkon_@213.167.121.42.static.lyse.net)
- # [03:52] * Quits: MissionCritical (~MissionCr@unaffiliated/missioncritical) (Ping timeout: 276 seconds)
- # [03:53] * Quits: hkon_ (~hkon_@213.167.121.42.static.lyse.net) (Ping timeout: 240 seconds)
- # [03:54] * Quits: northfurr (~northfurr@unaffiliated/northfurr) (Read error: Connection reset by peer)
- # [03:55] * Joins: northfurr (~northfurr@unaffiliated/northfurr)
- # [03:56] * Quits: Centime (~centime@178.251.23.188) (Ping timeout: 244 seconds)
- # [04:02] * Joins: Centime (~centime@178.251.23.188)
- # [04:05] * Joins: hjoshi (uid13471@gateway/web/irccloud.com/x-nsitocbdshedlbbp)
- # [04:05] * Joins: Reskp (~Reskp@78.193.56.47)
- # [04:06] * Quits: tus (~darius@unaffiliated/tus)
- # [04:10] * Quits: Reskp (~Reskp@78.193.56.47) (Ping timeout: 245 seconds)
- # [04:10] * Joins: MissionCritical (~MissionCr@unaffiliated/missioncritical)
- # [04:18] * Quits: Left_Turn (~Left_Turn@unaffiliated/turn-left/x-3739067) (Ping timeout: 264 seconds)
- # [04:23] * Joins: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com)
- # [04:24] * pablasso_afk is now known as pablasso
- # [04:26] * Quits: shabadoo_ (~textual@192.198.202.226) (Ping timeout: 240 seconds)
- # [04:27] * Quits: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com) (Ping timeout: 240 seconds)
- # [04:30] * Quits: BLadwin (~BLadwin@75-150-34-222-Oregon.hfc.comcastbusiness.net) (Quit: BLadwin)
- # [04:31] * Joins: shabadoo (~textual@c-50-168-219-64.hsd1.ut.comcast.net)
- # [04:33] * bufferino is now known as kiora
- # [04:33] * Joins: TheCitizen (~TheCitize@c-71-59-143-22.hsd1.or.comcast.net)
- # [04:36] * Quits: TheCitizen (~TheCitize@c-71-59-143-22.hsd1.or.comcast.net) (Client Quit)
- # [04:37] * Joins: TheCitizen (~TheCitize@c-71-59-143-22.hsd1.or.comcast.net)
- # [04:41] * Quits: hugo_moss (~aasfasa@unaffiliated/hugo-moss/x-0589204)
- # [04:49] * Joins: luist (~luist@201.17.232.128)
- # [04:51] * Joins: Somatt_wrk_ (~somattwrk@130.193.24.135)
- # [04:52] * Joins: juniormendonca_ (~quassel@static.tjmt.jus.br)
- # [04:52] * Joins: LiENUS (~LiENUS@ip72-219-29-205.br.br.cox.net)
- # [04:54] * Quits: naquad (~naquad@naquad.me) (Ping timeout: 240 seconds)
- # [04:54] * Quits: Centime (~centime@178.251.23.188) (Ping timeout: 255 seconds)
- # [04:54] * Quits: Somatt_wrk (~somattwrk@130.193.24.135) (Ping timeout: 264 seconds)
- # [04:54] * Quits: juniormendonca (~quassel@189.87.159.130) (Ping timeout: 264 seconds)
- # [04:57] * Quits: maikowblue (~nobody@189.6.2.33) (Quit: .)
- # [04:57] * Joins: naquad (~naquad@naquad.me)
- # [04:58] * Quits: nezZario (~nez@unaffiliated/nezzario) (Ping timeout: 245 seconds)
- # [04:59] * Joins: nezZario (~nez@unaffiliated/nezzario)
- # [05:00] * Joins: _TheCitizen_ (~TheCitize@c-71-59-143-22.hsd1.or.comcast.net)
- # [05:03] * Quits: TheCitizen (~TheCitize@c-71-59-143-22.hsd1.or.comcast.net) (Ping timeout: 255 seconds)
- # [05:06] * Joins: Reskp (~Reskp@2a01:e34:ec13:82f0:3828:6b01:fe6c:4448)
- # [05:07] * Joins: Centime (~centime@178.251.23.188)
- # [05:09] * Joins: the8thbit (~the8thbit@173-28-151-144.client.mchsi.com)
- # [05:10] * Quits: Reskp (~Reskp@2a01:e34:ec13:82f0:3828:6b01:fe6c:4448) (Ping timeout: 240 seconds)
- # [05:12] * Joins: JonEdney (~JonEdney@unaffiliated/jonedney)
- # [05:13] * Quits: robmorrissey (~robmorris@cpc26-brig15-2-0-cust123.3-3.cable.virginm.net) (Read error: Connection reset by peer)
- # [05:13] * Quits: bitaco (~user@184.152.88.58) (Remote host closed the connection)
- # [05:13] * Quits: Cyph3r (~Cyph3r@71-84-78-55.dhcp.rvsd.ca.charter.com) (Ping timeout: 240 seconds)
- # [05:14] * Joins: robmorrissey (~robmorris@cpc26-brig15-2-0-cust123.3-3.cable.virginm.net)
- # [05:14] * Joins: checkit (hidden-use@wsip-68-225-29-133.oc.oc.cox.net)
- # [05:16] * Joins: DrSect1r (~DrSect0r@77-175-116-213.FTTH.ispfabriek.nl)
- # [05:17] <checkit> Hey all, wondering if I could get some expert advice from you guys. We're building a quick web app that allows visitors to record their voice using something similar to the following: http://www.taylordigital.com/voice/ I'd like to be able to upload the file from the computer after recording without forcing the visitor to go through the "upload" process manually. Any thoughts?
- # [05:17] * Quits: ThisHowiRoll (~iRush@cpe-76-171-13-101.socal.res.rr.com) (Ping timeout: 245 seconds)
- # [05:19] * Joins: Cyph3r (~Cyph3r@71-84-78-55.dhcp.rvsd.ca.charter.com)
- # [05:19] * Quits: Cyph3r (~Cyph3r@71-84-78-55.dhcp.rvsd.ca.charter.com) (Max SendQ exceeded)
- # [05:20] * Joins: Cyph3r (~Cyph3r@71-84-78-55.dhcp.rvsd.ca.charter.com)
- # [05:20] * Quits: Cyph3r (~Cyph3r@71-84-78-55.dhcp.rvsd.ca.charter.com) (Client Quit)
- # [05:21] * Joins: Cyph3r (~Cyph3r@71-84-78-55.dhcp.rvsd.ca.charter.com)
- # [05:21] * Quits: DrSect1r (~DrSect0r@77-175-116-213.FTTH.ispfabriek.nl) (Client Quit)
- # [05:21] * Joins: DrSect1r (~DrSect0r@77-175-116-213.FTTH.ispfabriek.nl)
- # [05:21] * Quits: _TheCitizen_ (~TheCitize@c-71-59-143-22.hsd1.or.comcast.net) (Quit: Leaving)
- # [05:22] * Quits: DrSect1r (~DrSect0r@77-175-116-213.FTTH.ispfabriek.nl) (Client Quit)
- # [05:22] * Joins: TheCitizen (~TheCitize@c-71-59-143-22.hsd1.or.comcast.net)
- # [05:22] * Joins: DrSect1r (~DrSect0r@77-175-116-213.FTTH.ispfabriek.nl)
- # [05:22] * Quits: DrSect1r (~DrSect0r@77-175-116-213.FTTH.ispfabriek.nl) (Remote host closed the connection)
- # [05:23] * Joins: DrSect1r (~DrSect0r@77-175-116-213.FTTH.ispfabriek.nl)
- # [05:24] * Quits: DrSect1r (~DrSect0r@77-175-116-213.FTTH.ispfabriek.nl) (Remote host closed the connection)
- # [05:24] * Joins: DrSect1r (~DrSect0r@77-175-116-213.FTTH.ispfabriek.nl)
- # [05:24] * Quits: vegbrasil (uid20581@gateway/web/irccloud.com/x-nhosmkxgvkebckfn) (Quit: Connection closed for inactivity)
- # [05:24] * Quits: DrSect1r (~DrSect0r@77-175-116-213.FTTH.ispfabriek.nl) (Remote host closed the connection)
- # [05:27] * Quits: checkit (hidden-use@wsip-68-225-29-133.oc.oc.cox.net)
- # [05:36] * Quits: DreadKnight (~DreadKnig@unaffiliated/dreadknight) (Quit: #AncientBeast - Master Your Beasts ( www.AncientBeast.com ))
- # [05:37] * Joins: hkon_ (~hkon_@213.167.121.42.static.lyse.net)
- # [05:41] * Joins: richardbaker (~richardba@172-3-189-237.lightspeed.sntcca.sbcglobal.net)
- # [05:41] * Quits: hkon_ (~hkon_@213.167.121.42.static.lyse.net) (Ping timeout: 245 seconds)
- # [05:44] * Quits: sgen (~sgen@38.116.199.130) (Quit: Leaving)
- # [05:46] * Quits: Rou (~Rou@pool-74-97-34-130.prvdri.fios.verizon.net) (Quit: HydraIRC -> http://www.hydrairc.com <- Po-ta-to, boil em, mash em, stick em in a stew.)
- # [05:52] * Joins: WizJin (~WizJinAFK@117.208.1.141)
- # [05:52] * Joins: vegbrasil (uid20581@gateway/web/irccloud.com/x-flbewvhqdjbevtvs)
- # [05:53] * Quits: blivande (~Chw@189.193.68.36) (Quit: leaving)
- # [05:57] * Joins: blivande (~Chw@189.193.68.36)
- # [05:59] * Quits: JonEdney (~JonEdney@unaffiliated/jonedney) (Quit: JonEdney)
- # [05:59] * Joins: Andre_designer (~Thunderbi@82-170-146-165.ip.telfort.nl)
- # [06:00] * pablasso is now known as pablasso_afk
- # [06:02] * Joins: heldfree (~heldfree@61.12.96.226)
- # [06:05] * Joins: akersof (~akersof@unaffiliated/zoroaster)
- # [06:07] * Joins: Reskp (~Reskp@78.193.56.47)
- # [06:07] * Quits: hjoshi (uid13471@gateway/web/irccloud.com/x-nsitocbdshedlbbp) (Quit: Connection closed for inactivity)
- # [06:10] * Joins: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com)
- # [06:11] * Quits: Reskp (~Reskp@78.193.56.47) (Ping timeout: 240 seconds)
- # [06:16] * Quits: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com) (Ping timeout: 272 seconds)
- # [06:23] * Joins: s3shs (~s3shs@wsip-70-184-105-92.ph.ph.cox.net)
- # [06:25] * Joins: Demego (~Demego@84.240.42.164)
- # [06:27] * Joins: mennea (~textual@37.46.38.120)
- # [06:29] * Joins: tandroid (~tandroid@71-208-230-252.hlrn.qwest.net)
- # [06:29] * Quits: WizJin (~WizJinAFK@117.208.1.141) (Quit: Leaving)
- # [06:30] * Quits: Demego (~Demego@84.240.42.164) (Ping timeout: 255 seconds)
- # [06:40] * Quits: luist (~luist@201.17.232.128) (Quit: luist)
- # [06:44] * Joins: sledgeDJ (~sledgeDJ@bzq-84-110-184-233.red.bezeqint.net)
- # [06:45] * Quits: tandroid (~tandroid@71-208-230-252.hlrn.qwest.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [06:57] * Quits: s3shs (~s3shs@wsip-70-184-105-92.ph.ph.cox.net) (Quit: Computer has gone to sleep.)
- # [07:02] * Quits: robmorrissey (~robmorris@cpc26-brig15-2-0-cust123.3-3.cable.virginm.net) (Read error: Connection reset by peer)
- # [07:03] * Joins: robmorrissey (~robmorris@cpc26-brig15-2-0-cust123.3-3.cable.virginm.net)
- # [07:04] * Joins: netQt (~netqt@80.227.47.62)
- # [07:05] * Joins: iDaniel (uid25588@gateway/web/irccloud.com/x-ovkuxsnlvhetxjqr)
- # [07:08] * Joins: Ciph3r (~Cyph3r@71-84-78-55.dhcp.rvsd.ca.charter.com)
- # [07:08] * Quits: Cyph3r (~Cyph3r@71-84-78-55.dhcp.rvsd.ca.charter.com) (Read error: Connection reset by peer)
- # [07:08] * Joins: robmorri_ (~robmorris@cpc26-brig15-2-0-cust123.3-3.cable.virginm.net)
- # [07:08] * Joins: Reskp (~Reskp@2a01:e34:ec13:82f0:959b:6d72:447f:b218)
- # [07:09] * Joins: BigBangUDR (~Thunderbi@103.249.181.147)
- # [07:09] * Joins: wilmoore (~wilmoore@c-75-71-178-80.hsd1.co.comcast.net)
- # [07:10] * Quits: robmorrissey (~robmorris@cpc26-brig15-2-0-cust123.3-3.cable.virginm.net) (Ping timeout: 240 seconds)
- # [07:12] * Quits: Reskp (~Reskp@2a01:e34:ec13:82f0:959b:6d72:447f:b218) (Ping timeout: 240 seconds)
- # [07:21] * Parts: bencc (~Ofir@bzq-84-109-139-138.red.bezeqint.net)
- # [07:25] * Joins: hkon_ (~hkon_@213.167.121.42.static.lyse.net)
- # [07:28] * Joins: s3shs (~s3shs@wsip-70-184-105-92.ph.ph.cox.net)
- # [07:29] * Quits: hkon_ (~hkon_@213.167.121.42.static.lyse.net) (Ping timeout: 240 seconds)
- # [07:32] * Quits: s3shs (~s3shs@wsip-70-184-105-92.ph.ph.cox.net) (Client Quit)
- # [07:42] * Joins: redaxmedia (~redaxmedi@dslb-188-103-227-034.pools.arcor-ip.net)
- # [07:42] * Joins: FilipNortic (~quassel@h-143-51.a192.priv.bahnhof.se)
- # [07:44] * Joins: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com)
- # [07:48] * Quits: TheCitizen (~TheCitize@c-71-59-143-22.hsd1.or.comcast.net) (Read error: Connection reset by peer)
- # [07:49] * Joins: doev (~doev@p4FD42692.dip0.t-ipconnect.de)
- # [07:50] * Quits: Andre_designer (~Thunderbi@82-170-146-165.ip.telfort.nl) (Quit: Andre_designer)
- # [07:51] * Quits: LiENUS (~LiENUS@ip72-219-29-205.br.br.cox.net) (Ping timeout: 272 seconds)
- # [07:53] * Quits: redaxmedia (~redaxmedi@dslb-188-103-227-034.pools.arcor-ip.net) (Quit: Leaving.)
- # [07:53] * Joins: Reskp (~Reskp@78.193.56.47)
- # [07:56] * Joins: G4M34C45H (~iRush@cpe-76-171-13-101.socal.res.rr.com)
- # [07:59] * Joins: jstimm (~jstimm@unaffiliated/jstimm)
- # [08:00] * Quits: Reskp (~Reskp@78.193.56.47) (Ping timeout: 244 seconds)
- # [08:00] * Joins: dangerousdave (~dangerous@78.156.71.46)
- # [08:06] * Joins: jetienne (~jetienne@ivr94-10-88-177-169-62.fbx.proxad.net)
- # [08:07] * Joins: cephalopod (~octopus@unaffiliated/cephalopod)
- # [08:07] * Quits: sledgeDJ (~sledgeDJ@bzq-84-110-184-233.red.bezeqint.net) (Ping timeout: 244 seconds)
- # [08:07] * Quits: jetienne (~jetienne@ivr94-10-88-177-169-62.fbx.proxad.net) (Client Quit)
- # [08:11] * Joins: sledgeDJ (~sledgeDJ@31.168.91.255)
- # [08:15] * Joins: maxani (~maxani@12.178.1.109.rev.sfr.net)
- # [08:15] * Joins: Manny (~quassel@123.63.43.83)
- # [08:19] * Joins: ryanseddon (uid1832@gateway/web/irccloud.com/x-odsijyllkeslzvpo)
- # [08:20] * Joins: roelmonnens (~roelmonne@d54C2232C.access.telenet.be)
- # [08:23] * Joins: jottr_ (~jottr@unaffiliated/jottr)
- # [08:24] * Joins: Reskp (~Reskp@78.193.56.47)
- # [08:25] * Quits: Reskp (~Reskp@78.193.56.47) (Remote host closed the connection)
- # [08:26] * Joins: lexus00z (~Thunderbi@113.108.166.53)
- # [08:27] * Quits: jrahmy (~jrahmy@cpe-24-94-26-137.san.res.rr.com) (Quit: (Zzz...))
- # [08:28] * Joins: jrahmy (~jrahmy@cpe-24-94-26-137.san.res.rr.com)
- # [08:29] * Joins: DrSect1r (~DrSect0r@77-175-116-213.FTTH.ispfabriek.nl)
- # [08:33] * Quits: netQt (~netqt@80.227.47.62) (Remote host closed the connection)
- # [08:33] * Joins: kiriakos_ (~user@athedsl-233022.home.otenet.gr)
- # [08:33] <kiriakos_> hello
- # [08:35] * Joins: netQt (~netqt@80.227.47.62)
- # [08:37] * Quits: netQt (~netqt@80.227.47.62) (Remote host closed the connection)
- # [08:38] * Joins: dangerou_ (~dangerous@78.156.71.46)
- # [08:41] * Quits: parduse (~parduse@unaffiliated/parduse) (Killed (hobana.freenode.net (Nickname regained by services)))
- # [08:42] * Joins: parduse (parduse@88.241.81.199)
- # [08:42] * Quits: dangerousdave (~dangerous@78.156.71.46) (Ping timeout: 264 seconds)
- # [08:42] * parduse is now known as Guest86178
- # [08:42] * Quits: kiriakos_ (~user@athedsl-233022.home.otenet.gr) (Quit: Leaving)
- # [08:42] * Quits: wilmoore (~wilmoore@c-75-71-178-80.hsd1.co.comcast.net) (Ping timeout: 245 seconds)
- # [08:43] * Joins: netQt (~netqt@80.227.47.62)
- # [08:54] * Quits: netQt (~netqt@80.227.47.62) (Remote host closed the connection)
- # [08:56] * Joins: netQt_ (~netqt@80.227.47.62)
- # [08:58] * Quits: netQt_ (~netqt@80.227.47.62) (Remote host closed the connection)
- # [08:58] * Joins: mr_lou (~sirlou@185.10.212.70)
- # [08:59] * Joins: netQt_ (~netqt@80.227.47.62)
- # [09:01] * Joins: hkon_ (~hkon_@213.167.121.42.static.lyse.net)
- # [09:02] * Quits: blivande (~Chw@189.193.68.36) (Ping timeout: 264 seconds)
- # [09:03] * Quits: netQt_ (~netqt@80.227.47.62) (Ping timeout: 240 seconds)
- # [09:08] * Joins: netQt (~netqt@80.227.47.62)
- # [09:10] * Quits: __joshua___ (uid17120@gateway/web/irccloud.com/x-cgyhioqzmkmoxjss) (Quit: Connection closed for inactivity)
- # [09:12] * Joins: Juanchito (~Juanchito@213.27.146.180)
- # [09:13] * Quits: mennea (~textual@37.46.38.120) (Read error: Connection reset by peer)
- # [09:14] * Quits: netQt (~netqt@80.227.47.62) (Remote host closed the connection)
- # [09:16] * Joins: sledgeDJ_ (~sledgeDJ@31.168.91.255)
- # [09:17] * Joins: netQt (~netqt@80.227.47.62)
- # [09:19] * Quits: sledgeDJ (~sledgeDJ@31.168.91.255) (Ping timeout: 255 seconds)
- # [09:20] <lexus00z> hello
- # [09:22] * Quits: irae_ (~irae_@nat/yahoo/x-lwwaqszxvnbyuzuh) (Ping timeout: 240 seconds)
- # [09:23] * Quits: iDaniel (uid25588@gateway/web/irccloud.com/x-ovkuxsnlvhetxjqr) (Quit: Connection closed for inactivity)
- # [09:26] * Quits: dangerou_ (~dangerous@78.156.71.46) (Read error: Connection reset by peer)
- # [09:26] * Joins: dangerousdave (~dangerous@78.156.71.46)
- # [09:28] * Quits: deasy (~deasy@host-85-201-82-67.brutele.be) (Quit: Nom d'un quark, c'est Edmonton !)
- # [09:31] * Quits: netQt (~netqt@80.227.47.62) (Remote host closed the connection)
- # [09:31] * Joins: netQt (~netqt@80.227.47.62)
- # [09:32] * Quits: Centime (~centime@178.251.23.188) (Ping timeout: 272 seconds)
- # [09:33] * Quits: northfurr (~northfurr@unaffiliated/northfurr) (Quit: northfurr)
- # [09:35] * Joins: netQt_ (~netqt@80.227.47.62)
- # [09:36] * Quits: netQt (~netqt@80.227.47.62) (Ping timeout: 244 seconds)
- # [09:36] * Joins: Lethalman (~luca@89.118.249.114)
- # [09:37] * Quits: Ericx2x (Ericx2x@209-6-40-131.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Ping timeout: 255 seconds)
- # [09:38] * Quits: BigBangUDR (~Thunderbi@103.249.181.147) (Ping timeout: 244 seconds)
- # [09:38] * Joins: Centime (~centime@178.251.23.188)
- # [09:38] * Quits: Manny (~quassel@123.63.43.83) (Ping timeout: 240 seconds)
- # [09:39] * Joins: Demego (~Demego@84.240.42.164)
- # [09:40] * Joins: hivearts (~hivearts@cable-188-2-52-228.dynamic.sbb.rs)
- # [09:46] * Quits: Emperor_Earth_ (~Emperor_E@cblmdm134-228-200-6.buckeyecom.net) (Quit: Leaving)
- # [09:51] * Quits: netQt_ (~netqt@80.227.47.62) (Remote host closed the connection)
- # [09:52] * Quits: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com) (Remote host closed the connection)
- # [09:53] * Joins: netQt (~netqt@80.227.47.62)
- # [09:54] * Joins: Hornet- (~Hornet@cpc10-ipsw2-2-0-cust55.7-4.cable.virginm.net)
- # [09:56] * Quits: lexus00z (~Thunderbi@113.108.166.53) (Ping timeout: 264 seconds)
- # [09:56] * Quits: _leb (~leb@pool-108-53-167-179.nwrknj.fios.verizon.net) (Quit: Computer has gone to sleep.)
- # [09:56] * Quits: Centime (~centime@178.251.23.188) (Ping timeout: 240 seconds)
- # [09:57] * Joins: _________ (~textual@80-193-72-2.paternoster.mezzonet.net)
- # [09:57] * Quits: Hornet (~Hornet@cpc10-ipsw2-2-0-cust55.7-4.cable.virginm.net) (Ping timeout: 245 seconds)
- # [10:01] * Joins: Centime (~centime@178.251.23.188)
- # [10:08] * Joins: mennea (~textual@bzq-218-174-89.red.bezeqint.net)
- # [10:11] * Joins: symb (~symb@2a02:8109:8980:540:e54b:d768:f085:3894)
- # [10:18] * Quits: PxlVision (~PxlVision@c-50-156-7-51.hsd1.ca.comcast.net) (Quit: HydraIRC -> http://www.hydrairc.com <- s0 d4Mn l33t |t'z 5c4rY!)
- # [10:20] * Quits: Centime (~centime@178.251.23.188) (Ping timeout: 245 seconds)
- # [10:24] * Joins: Centime (~centime@178.251.23.188)
- # [10:24] * Quits: vegbrasil (uid20581@gateway/web/irccloud.com/x-flbewvhqdjbevtvs) (Quit: Connection closed for inactivity)
- # [10:27] * Joins: cnivolle (~cnivolle@2a01:e34:ee97:c5c0:d42d:d25a:7997:a92e)
- # [10:28] * Quits: sledgeDJ_ (~sledgeDJ@31.168.91.255) (Ping timeout: 264 seconds)
- # [10:29] * Joins: sledgeDJ (~sledgeDJ@31.168.91.255)
- # [10:29] * Quits: netQt (~netqt@80.227.47.62) (Remote host closed the connection)
- # [10:29] * Joins: netQt (~netqt@80.227.47.62)
- # [10:32] * Joins: nicolasbadia___ (~nicolasba@78.209.78.103)
- # [10:33] * Quits: netQt (~netqt@80.227.47.62) (Ping timeout: 240 seconds)
- # [10:34] * Quits: nicolasbadia (~nicolasba@78.209.78.103) (Ping timeout: 272 seconds)
- # [10:34] * Quits: nicolasbadia___ (~nicolasba@78.209.78.103) (Client Quit)
- # [10:34] * Joins: nicolasbadia (~nicolasba@78.209.78.103)
- # [10:38] * Quits: richardbaker (~richardba@172-3-189-237.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection)
- # [10:38] * Quits: mr_lou (~sirlou@185.10.212.70) (Quit: Ex-Chat)
- # [10:40] * Quits: dangerousdave (~dangerous@78.156.71.46) (Read error: Connection reset by peer)
- # [10:40] * Joins: dangerousdave (~dangerous@78.156.71.46)
- # [10:42] * Joins: mateNz (~mateNz@unaffiliated/matenz)
- # [10:44] * Joins: AciD`` (~gni@jau72-5-78-223-56-21.fbx.proxad.net)
- # [10:49] * Quits: heedypo1 (~heedypo@user-5af4ac47.broadband.tesco.net) (Ping timeout: 240 seconds)
- # [10:49] * Quits: heedypo (~heedypo@user-5af4ac47.broadband.tesco.net) (Ping timeout: 240 seconds)
- # [10:49] * Quits: doev (~doev@p4FD42692.dip0.t-ipconnect.de) (Remote host closed the connection)
- # [10:49] * Quits: jrahmy (~jrahmy@cpe-24-94-26-137.san.res.rr.com) (Quit: (Zzz...))
- # [10:51] * Joins: netQt (~netqt@80.227.47.62)
- # [10:52] * Joins: manuelbieh (~manuelbie@gw-bln.aperto.de)
- # [10:53] * Joins: heedypo_ (~heedypo@user-5af4a883.broadband.tesco.net)
- # [10:53] * Joins: heedypo2 (~heedypo@user-5af4a883.broadband.tesco.net)
- # [10:56] * Joins: heedypo1 (~heedypo@user-5af4a88f.broadband.tesco.net)
- # [10:56] * Joins: heedypo (~heedypo@user-5af4a88f.broadband.tesco.net)
- # [10:56] * Joins: Click66 (~Click66@94.143.188.0)
- # [10:58] * Joins: jrahmy (~jrahmy@cpe-24-94-26-137.san.res.rr.com)
- # [10:58] * Quits: heedypo_ (~heedypo@user-5af4a883.broadband.tesco.net) (Ping timeout: 240 seconds)
- # [10:59] * Quits: heedypo2 (~heedypo@user-5af4a883.broadband.tesco.net) (Ping timeout: 272 seconds)
- # [10:59] * Quits: sledgeDJ (~sledgeDJ@31.168.91.255) (Ping timeout: 272 seconds)
- # [11:01] * Joins: Left_Turn (~Left_Turn@unaffiliated/turn-left/x-3739067)
- # [11:02] * Joins: heedypo2 (~heedypo@user-5af4a8cf.broadband.tesco.net)
- # [11:02] * Joins: heedypo_ (~heedypo@user-5af4a8cf.broadband.tesco.net)
- # [11:04] * Quits: heedypo (~heedypo@user-5af4a88f.broadband.tesco.net) (Ping timeout: 240 seconds)
- # [11:04] * Joins: cnivolle_ (~cnivolle@2a01:e34:ee97:c5c0:5183:940d:ccf3:e847)
- # [11:05] * Joins: sledgeDJ (~sledgeDJ@31.168.91.255)
- # [11:05] * Quits: heedypo1 (~heedypo@user-5af4a88f.broadband.tesco.net) (Ping timeout: 272 seconds)
- # [11:05] * Joins: will_richards (~anonymous@195.171.92.84)
- # [11:08] * Quits: cnivolle (~cnivolle@2a01:e34:ee97:c5c0:d42d:d25a:7997:a92e) (Ping timeout: 240 seconds)
- # [11:08] * Quits: jrahmy (~jrahmy@cpe-24-94-26-137.san.res.rr.com) (Quit: (Zzz...))
- # [11:09] * Quits: sledgeDJ (~sledgeDJ@31.168.91.255) (Read error: Connection reset by peer)
- # [11:10] * Quits: manuelbieh (~manuelbie@gw-bln.aperto.de) (Read error: Connection reset by peer)
- # [11:11] * Joins: manuelbieh (~manuelbie@gw-bln.aperto.de)
- # [11:11] * Joins: sledgeDJ (~sledgeDJ@31.168.91.255)
- # [11:12] * Quits: cephalopod (~octopus@unaffiliated/cephalopod) (Ping timeout: 240 seconds)
- # [11:22] * Quits: kiora (~yz@103.11.50.202) (Remote host closed the connection)
- # [11:23] * Quits: robmorri_ (~robmorris@cpc26-brig15-2-0-cust123.3-3.cable.virginm.net) (Quit: Computer has gone to sleep.)
- # [11:25] * Quits: sledgeDJ (~sledgeDJ@31.168.91.255) (Ping timeout: 264 seconds)
- # [11:26] * Joins: sledgeDJ (~sledgeDJ@31.168.91.255)
- # [11:29] * Quits: netQt (~netqt@80.227.47.62) (Remote host closed the connection)
- # [11:29] * Joins: netQt (~netqt@80.227.47.62)
- # [11:30] * Quits: the8thbit (~the8thbit@173-28-151-144.client.mchsi.com) (Read error: Connection reset by peer)
- # [11:30] * Joins: Jayflux (~Jason@unaffiliated/jayflux)
- # [11:32] <drager> If I have belongsTo('something') cant I get in the view $object->something?
- # [11:33] * Joins: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com)
- # [11:33] <drager> I get null
- # [11:33] * Quits: netQt (~netqt@80.227.47.62) (Ping timeout: 240 seconds)
- # [11:34] * Quits: sledgeDJ (~sledgeDJ@31.168.91.255) (Ping timeout: 245 seconds)
- # [11:37] * Joins: Ducki (~Ducki@191.233.66.1)
- # [11:38] * Quits: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com) (Ping timeout: 264 seconds)
- # [11:38] <moo-_-> drager: can you clarify the context? whatever you are talking about doesn't sound like HTML5 or JavaScript
- # [11:40] <drager> moo-_-: Wow, wrong channel sorry
- # [11:41] * Joins: netQt (~netqt@80.227.47.62)
- # [11:46] * Joins: heedypo (~heedypo@user-5af4a9ab.broadband.tesco.net)
- # [11:47] * Joins: the8thbit (~the8thbit@173-28-151-144.client.mchsi.com)
- # [11:47] * Quits: heedypo2 (~heedypo@user-5af4a8cf.broadband.tesco.net) (Ping timeout: 240 seconds)
- # [11:48] * Joins: sledgeDJ (~sledgeDJ@bzq-84-110-184-233.red.bezeqint.net)
- # [11:48] * Quits: heedypo_ (~heedypo@user-5af4a8cf.broadband.tesco.net) (Ping timeout: 264 seconds)
- # [11:52] * Quits: hkon_ (~hkon_@213.167.121.42.static.lyse.net) (Remote host closed the connection)
- # [11:52] <moo-_-> drager: thought so :)
- # [11:53] * Quits: heedypo (~heedypo@user-5af4a9ab.broadband.tesco.net) (Ping timeout: 264 seconds)
- # [11:54] * Joins: hkon_ (~hkon_@213.167.121.42.static.lyse.net)
- # [11:58] * Joins: Ms2ger (~Ms2ger@193.190.253.149)
- # [12:00] * Joins: heedypo_ (~heedypo@user-5af4a9c4.broadband.tesco.net)
- # [12:03] * jottr_ is now known as jottr
- # [12:07] * Quits: gabybro (~gabybro@92.85.250.68) (Read error: Connection reset by peer)
- # [12:07] * Joins: heedypo (~heedypo@user-5af4a9c4.broadband.tesco.net)
- # [12:07] * Joins: teear__ (teear@84-231-93-168.elisa-mobile.fi)
- # [12:08] * Quits: G4M34C45H (~iRush@cpe-76-171-13-101.socal.res.rr.com)
- # [12:10] * Quits: Betal (~Beta@unaffiliated/betal) (Remote host closed the connection)
- # [12:10] * Quits: teear_ (teear@84-231-93-168.elisa-mobile.fi) (Ping timeout: 240 seconds)
- # [12:10] * Joins: heedypo1 (~heedypo@user-5af4aa27.broadband.tesco.net)
- # [12:10] * Joins: heedypo2 (~heedypo@user-5af4aa27.broadband.tesco.net)
- # [12:12] * Joins: dangerou_ (~dangerous@78.156.71.46)
- # [12:12] * Quits: heedypo (~heedypo@user-5af4a9c4.broadband.tesco.net) (Ping timeout: 255 seconds)
- # [12:12] * Quits: heedypo_ (~heedypo@user-5af4a9c4.broadband.tesco.net) (Ping timeout: 240 seconds)
- # [12:14] * Quits: dangerousdave (~dangerous@78.156.71.46) (Ping timeout: 264 seconds)
- # [12:22] * Quits: Click66 (~Click66@94.143.188.0) (Quit: Computer has gone to sleep.)
- # [12:25] * Joins: Thundernator (02f6052d@gateway/web/freenode/ip.2.246.5.45)
- # [12:27] * Joins: tus (~darius@unaffiliated/tus)
- # [12:28] * Quits: AciD` (~gni@jau72-5-78-223-56-21.fbx.proxad.net) (Changing host)
- # [12:28] * Joins: AciD` (~gni@unaffiliated/acid/x-7368316)
- # [12:33] * Joins: sethne (~sethne@89.191.13.2)
- # [12:35] * Quits: Thundernator (02f6052d@gateway/web/freenode/ip.2.246.5.45) (Quit: Page closed)
- # [12:35] * Quits: heldfree (~heldfree@61.12.96.226) (Quit: heldfree)
- # [12:36] * Joins: Thunder (02f6052d@gateway/web/freenode/ip.2.246.5.45)
- # [12:43] * Joins: beingAwesome (~Thunderbi@219.91.231.207)
- # [12:45] * Quits: Whiskey (whiskey@31.44.232.185) (Ping timeout: 272 seconds)
- # [12:46] * Joins: DreadKnight (~DreadKnig@unaffiliated/dreadknight)
- # [12:48] * Joins: Click66 (~Click66@94.143.188.0)
- # [12:49] * Joins: dobalina (~dobalina@gateway/tor-sasl/dobalina)
- # [12:50] * Quits: beingAwesome (~Thunderbi@219.91.231.207) (Quit: beingAwesome)
- # [12:53] * Joins: Whiskey (whiskey@31.44.232.185)
- # [12:58] * Joins: louisremi (~louisremi@cxr69-3-82-225-61-131.fbx.proxad.net)
- # [13:01] * Joins: luv2dev (3a443554@gateway/web/cgi-irc/kiwiirc.com/ip.58.68.53.84)
- # [13:02] <luv2dev> How I can add a video background to a fixed height and 100% wide div? please help
- # [13:03] <luv2dev> Anybody there?
- # [13:04] * Quits: Jayflux (~Jason@unaffiliated/jayflux) (Quit: Leaving)
- # [13:04] * Joins: Preda- (~preda@dsl-olubrasgw2-54f866-173.dhcp.inet.fi)
- # [13:04] * Joins: robert_ (3a443554@gateway/web/freenode/ip.58.68.53.84)
- # [13:05] * robert_ is now known as Guest74695
- # [13:06] <luv2dev> like http://www.masterslider.com/features/templates/fullscreen-slider-video-background/
- # [13:07] * Quits: Wildblue` (~guy@unaffiliated/wildblue) (Quit: Terabytes are termite-like desert insects.)
- # [13:09] * Joins: montecfel (~montecfel@gateway/tor-sasl/montecfel)
- # [13:11] <luv2dev> Anybody there please help me to add a video background for full wide and 360px height.
- # [13:18] * Joins: nixeldev_ (~nixeldev@140.31-35-82.static.virginmediabusiness.co.uk)
- # [13:19] * Quits: basiclaser (Elite7488@gateway/shell/elitebnc/x-zhbgolmnkkobcuge) (Excess Flood)
- # [13:20] * Joins: basiclaser (Elite7488@gateway/shell/elitebnc/x-edcqgojzlaqbwdcf)
- # [13:20] * Quits: nixeldev (~nixeldev@202.32-104-213.static.virginmediabusiness.co.uk) (Ping timeout: 245 seconds)
- # [13:21] * Quits: Centime (~centime@178.251.23.188) (Ping timeout: 255 seconds)
- # [13:21] * Joins: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com)
- # [13:24] * Joins: heldfree (~heldfree@61.12.96.226)
- # [13:26] * Quits: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com) (Ping timeout: 244 seconds)
- # [13:30] <luv2dev> Nobody knows how to add a video background for fixed height and wide 100% layout?
- # [13:32] * Quits: luv2dev (3a443554@gateway/web/cgi-irc/kiwiirc.com/ip.58.68.53.84) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
- # [13:33] * Quits: Guest74695 (3a443554@gateway/web/freenode/ip.58.68.53.84) (Quit: Page closed)
- # [13:34] * Quits: montecfel (~montecfel@gateway/tor-sasl/montecfel) (Quit: montecfel)
- # [13:36] * Joins: Wildblue (~guy@unaffiliated/wildblue)
- # [13:36] * Quits: k_sze[work] (~kvirc@unaffiliated/kira) (Ping timeout: 240 seconds)
- # [13:38] * Joins: DoniRS (~DaRamirez@ip4da37ebf.direct-adsl.nl)
- # [13:41] * Joins: Manny (~quassel@113.20.16.200)
- # [13:44] * Quits: sledgeDJ (~sledgeDJ@bzq-84-110-184-233.red.bezeqint.net) (Ping timeout: 244 seconds)
- # [13:45] <sud0x3> look at the source code of the page you posted
- # [13:45] * Quits: snowden (~snowden@gateway/tor-sasl/snowden) (Remote host closed the connection)
- # [13:45] * Quits: DrCode (~DrCode@gateway/tor-sasl/drcode) (Write error: Connection reset by peer)
- # [13:45] * Joins: DrCode (~DrCode@gateway/tor-sasl/drcode)
- # [13:46] * Joins: snowden (~snowden@gateway/tor-sasl/snowden)
- # [13:47] <sud0x3> its not the fact that nobody knows, more than likely that way you asked
- # [13:50] * Joins: doev (~doev@p4FD42CBE.dip0.t-ipconnect.de)
- # [13:57] * Quits: Hornet- (~Hornet@cpc10-ipsw2-2-0-cust55.7-4.cable.virginm.net) (Ping timeout: 245 seconds)
- # [13:59] * Joins: Hornet- (~Hornet@cpc10-ipsw2-2-0-cust55.7-4.cable.virginm.net)
- # [14:08] * Joins: sledgeDJ (~sledgeDJ@bzq-84-110-184-233.red.bezeqint.net)
- # [14:08] * Quits: SOUL_OF_R00T (~M4G3@unaffiliated/soul-of-r00t/x-4421326) (Ping timeout: 244 seconds)
- # [14:13] * Joins: SOUL_OF_R00T (~M4G3@unaffiliated/soul-of-r00t/x-4421326)
- # [14:22] * Quits: SOUL_OF_R00T (~M4G3@unaffiliated/soul-of-r00t/x-4421326) (Ping timeout: 245 seconds)
- # [14:24] * Quits: MissionCritical (~MissionCr@unaffiliated/missioncritical) (Ping timeout: 264 seconds)
- # [14:25] * Joins: jordila (~jordi@host138.190-224-149.telecom.net.ar)
- # [14:28] * Quits: Thunder (02f6052d@gateway/web/freenode/ip.2.246.5.45) (Ping timeout: 246 seconds)
- # [14:30] * Joins: jetienne (~jetienne@ivr94-10-88-177-169-62.fbx.proxad.net)
- # [14:31] * Hornet- is now known as Hornet
- # [14:34] * Joins: mongo (~mongo@unaffiliated/mongo)
- # [14:36] * pablasso_afk is now known as pablasso
- # [14:36] * Joins: MissionCritical (~MissionCr@unaffiliated/missioncritical)
- # [14:45] * Joins: blivande (~Chw@189.193.68.36)
- # [14:50] * Quits: Click66 (~Click66@94.143.188.0) (Quit: Computer has gone to sleep.)
- # [14:52] * Joins: jferrie (~Adium@static-71-183-236-56.nycmny.fios.verizon.net)
- # [14:52] * Parts: jferrie (~Adium@static-71-183-236-56.nycmny.fios.verizon.net)
- # [14:54] * Joins: krawchyk (~textual@50-198-150-254-static.hfc.comcastbusiness.net)
- # [14:56] * Quits: cnivolle_ (~cnivolle@2a01:e34:ee97:c5c0:5183:940d:ccf3:e847) (Ping timeout: 260 seconds)
- # [14:58] * Joins: Click66 (~Click66@94.143.188.0)
- # [14:58] * Joins: cnivolle (~cnivolle@office.clever-cloud.com)
- # [14:58] * Joins: baprath (~baprath@122.252.237.34)
- # [14:58] * Joins: montecfel (~montecfel@gateway/tor-sasl/montecfel)
- # [15:01] * Quits: dobalina (~dobalina@gateway/tor-sasl/dobalina) (Ping timeout: 264 seconds)
- # [15:02] * Joins: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com)
- # [15:02] * Joins: k_sze[work] (~kvirc@unaffiliated/kira)
- # [15:03] <jetienne> hi
- # [15:04] * Joins: nixeldev (~nixeldev@202.32-104-213.static.virginmediabusiness.co.uk)
- # [15:06] * Quits: Manny (~quassel@113.20.16.200) (Ping timeout: 244 seconds)
- # [15:07] * Quits: k_sze[work] (~kvirc@unaffiliated/kira) (Ping timeout: 244 seconds)
- # [15:07] * Quits: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com) (Ping timeout: 272 seconds)
- # [15:07] * Quits: nixeldev_ (~nixeldev@140.31-35-82.static.virginmediabusiness.co.uk) (Ping timeout: 240 seconds)
- # [15:08] * pablasso is now known as pablasso_afk
- # [15:13] * Quits: baprath (~baprath@122.252.237.34) (Quit: Leaving)
- # [15:19] * Quits: the8thbit (~the8thbit@173-28-151-144.client.mchsi.com) (Ping timeout: 272 seconds)
- # [15:23] * Quits: Somatt_wrk_ (~somattwrk@130.193.24.135) (Quit: ( www.nnscript.com :: NoNameScript 4.22 :: www.esnation.com ))
- # [15:24] * Joins: SOUL_OF_R00T (~M4G3@unaffiliated/soul-of-r00t/x-4421326)
- # [15:26] * Joins: northfurr (~northfurr@unaffiliated/northfurr)
- # [15:27] * Joins: cnivolle_ (~cnivolle@2a01:e34:ee97:c5c0:11e9:ce46:e25e:efa1)
- # [15:27] * Quits: jordila (~jordi@host138.190-224-149.telecom.net.ar) (Quit: Leaving.)
- # [15:28] * Joins: jordila (~jordi@host138.190-224-149.telecom.net.ar)
- # [15:29] * Joins: amason (uid18806@gateway/web/irccloud.com/x-dpqorkifcykymkla)
- # [15:31] * Quits: cnivolle (~cnivolle@office.clever-cloud.com) (Ping timeout: 245 seconds)
- # [15:33] * Joins: d0nkeyBOB (~textual@159.215.64.20)
- # [15:39] * Joins: luist (~luist@201.17.232.128)
- # [15:39] * Quits: dangerou_ (~dangerous@78.156.71.46) (Read error: Connection reset by peer)
- # [15:39] * Joins: dangerousdave (~dangerous@78.156.71.46)
- # [15:39] * Quits: jordila (~jordi@host138.190-224-149.telecom.net.ar) (Ping timeout: 240 seconds)
- # [15:41] * pablasso_afk is now known as pablasso
- # [15:42] * Quits: Alina-malina (Alina-mali@unaffiliated/alina-malina) (Read error: Connection timed out)
- # [15:43] * Joins: cnivolle (~cnivolle@office.clever-cloud.com)
- # [15:44] * Joins: Alina-malina (Alina-mali@unaffiliated/alina-malina)
- # [15:44] * Quits: hkon_ (~hkon_@213.167.121.42.static.lyse.net) (Remote host closed the connection)
- # [15:45] * Quits: cnivolle_ (~cnivolle@2a01:e34:ee97:c5c0:11e9:ce46:e25e:efa1) (Ping timeout: 240 seconds)
- # [15:53] * Joins: dobalina (~dobalina@gateway/tor-sasl/dobalina)
- # [15:58] * Joins: zB0hs (~zB0hs@c-69-251-249-68.hsd1.md.comcast.net)
- # [16:00] * Joins: redaxmedia (~redaxmedi@dslb-188-103-227-034.pools.arcor-ip.net)
- # [16:00] * Quits: northfurr (~northfurr@unaffiliated/northfurr) (Quit: northfurr)
- # [16:00] * Quits: Click66 (~Click66@94.143.188.0) (Quit: Computer has gone to sleep.)
- # [16:00] * Joins: ehynds (~ehynds@64.206.121.41)
- # [16:02] * Quits: jottr (~jottr@unaffiliated/jottr) (Ping timeout: 244 seconds)
- # [16:05] * Quits: sethne (~sethne@89.191.13.2) (Quit: bye)
- # [16:06] * Joins: tam (70c8121b@gateway/web/freenode/ip.112.200.18.27)
- # [16:06] <tam> hi folks just wanna ask if anyone here using schema?
- # [16:08] * Quits: tam (70c8121b@gateway/web/freenode/ip.112.200.18.27) (Client Quit)
- # [16:12] * Joins: lmclister (~lmclister@c-98-210-38-110.hsd1.ca.comcast.net)
- # [16:13] * Quits: Preda- (~preda@dsl-olubrasgw2-54f866-173.dhcp.inet.fi) (Ping timeout: 240 seconds)
- # [16:14] * Quits: heldfree (~heldfree@61.12.96.226) (Quit: heldfree)
- # [16:14] * Joins: Jon47 (~Jon47@38.100.143.34)
- # [16:16] * Quits: lmclister (~lmclister@c-98-210-38-110.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [16:16] * Joins: Centime (~centime@178.251.23.43)
- # [16:18] * Quits: zB0hs (~zB0hs@c-69-251-249-68.hsd1.md.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [16:19] * Joins: vegbrasil (uid20581@gateway/web/irccloud.com/x-dlowcpswwvlewjsf)
- # [16:19] * Quits: Jon47 (~Jon47@38.100.143.34) (Ping timeout: 264 seconds)
- # [16:21] * Joins: graphettion (~graphetti@66.49.23.98.nw.nuvox.net)
- # [16:22] * Joins: cnivolle_ (~cnivolle@2a01:e34:ee97:c5c0:1918:47b8:e65d:9d32)
- # [16:24] * Quits: doev (~doev@p4FD42CBE.dip0.t-ipconnect.de) (Ping timeout: 255 seconds)
- # [16:25] * Joins: doev (~doev@p4FD42C53.dip0.t-ipconnect.de)
- # [16:25] * Quits: cnivolle (~cnivolle@office.clever-cloud.com) (Ping timeout: 240 seconds)
- # [16:29] * Joins: jottr (~jottr@unaffiliated/jottr)
- # [16:30] * Quits: Centime (~centime@178.251.23.43) (Ping timeout: 255 seconds)
- # [16:30] * Joins: Cent (~centime@178.251.23.43)
- # [16:30] * Quits: mongo (~mongo@unaffiliated/mongo) (Quit: My MacBook has gone to sleep. ZZZzzz…)
- # [16:34] * Quits: jottr (~jottr@unaffiliated/jottr) (Ping timeout: 272 seconds)
- # [16:35] * Joins: mpaarating (~mpaaratin@rrcs-97-78-217-146.se.biz.rr.com)
- # [16:37] * Joins: BigBangUDR (~Thunderbi@101.57.72.102)
- # [16:39] * Joins: luiz_lha (~luiz@152.251.194.190)
- # [16:40] * Joins: Bray90820 (~Bray90820@131.225.43.247)
- # [16:41] * Joins: newtron_ (~newtron@199.71.174.203)
- # [16:43] * Joins: jerryitt (uid17132@gateway/web/irccloud.com/x-gginglrkwnprdnrz)
- # [16:44] * Joins: antlong (~antlong@unaffiliated/antlong)
- # [16:45] * Quits: dachi (dachi@2a01:7e00::f03c:91ff:fe69:29b) (Quit: ...)
- # [16:45] * Quits: doev (~doev@p4FD42C53.dip0.t-ipconnect.de) (Read error: Connection reset by peer)
- # [16:45] * Quits: ShooterMG (~shootermg@c-24-21-207-128.hsd1.or.comcast.net) (Remote host closed the connection)
- # [16:46] * Joins: doev (~doev@p4FD42C53.dip0.t-ipconnect.de)
- # [16:47] * Quits: luist (~luist@201.17.232.128) (Quit: luist)
- # [16:48] * Joins: LiENUS (~LiENUS@ip72-219-29-205.br.br.cox.net)
- # [16:49] * Quits: redaxmedia (~redaxmedi@dslb-188-103-227-034.pools.arcor-ip.net) (Ping timeout: 240 seconds)
- # [16:49] * Joins: dwayhs (~dwayhs@189.125.22.90)
- # [16:54] * Joins: jottr (~jottr@unaffiliated/jottr)
- # [16:54] * Quits: DoniRS (~DaRamirez@ip4da37ebf.direct-adsl.nl) (Ping timeout: 240 seconds)
- # [17:01] * Quits: FilipNortic (~quassel@h-143-51.a192.priv.bahnhof.se) (Read error: Connection reset by peer)
- # [17:02] * Quits: mpaarating (~mpaaratin@rrcs-97-78-217-146.se.biz.rr.com) (Quit: mpaarating)
- # [17:02] * Joins: dik_dak (~dik_dak@pool-108-21-63-242.nycmny.fios.verizon.net)
- # [17:04] * Quits: jetienne (~jetienne@ivr94-10-88-177-169-62.fbx.proxad.net) (Quit: jetienne)
- # [17:04] * Quits: BigBangUDR (~Thunderbi@101.57.72.102) (Quit: BigBangUDR)
- # [17:05] * Quits: Ducki (~Ducki@191.233.66.1) (Ping timeout: 240 seconds)
- # [17:06] * Quits: roelmonnens (~roelmonne@d54C2232C.access.telenet.be) (Remote host closed the connection)
- # [17:06] * Quits: mennea (~textual@bzq-218-174-89.red.bezeqint.net) (Ping timeout: 264 seconds)
- # [17:06] * Joins: roelmonnens (~roelmonne@d54C2232C.access.telenet.be)
- # [17:09] * Joins: pmodern (~PC@70-89-102-194-Florida.hfc.comcastbusiness.net)
- # [17:10] * Quits: roelmonnens (~roelmonne@d54C2232C.access.telenet.be) (Ping timeout: 240 seconds)
- # [17:11] * Joins: mongo (~mongo@unaffiliated/mongo)
- # [17:13] * Joins: Manny (~quassel@113.20.16.71)
- # [17:14] * Joins: mpaarating (~mpaaratin@rrcs-97-78-217-146.se.biz.rr.com)
- # [17:15] * Joins: redaxmedia (~redaxmedi@dslb-188-103-227-034.pools.arcor-ip.net)
- # [17:18] * Joins: wilmoore (~wilmoore@c-75-71-178-80.hsd1.co.comcast.net)
- # [17:21] * Quits: netQt (~netqt@80.227.47.62) (Remote host closed the connection)
- # [17:21] * Joins: mamarilmanson (~mamarilma@121.54.54.131)
- # [17:21] * Quits: SOUL_OF_R00T (~M4G3@unaffiliated/soul-of-r00t/x-4421326) (Ping timeout: 272 seconds)
- # [17:22] * Joins: netQt (~netqt@80.227.47.62)
- # [17:22] * Joins: george2 (~42@unaffiliated/george2)
- # [17:24] * Quits: wilmoore (~wilmoore@c-75-71-178-80.hsd1.co.comcast.net) (Ping timeout: 240 seconds)
- # [17:25] * Joins: newtron_work (~newtron@199.71.174.203)
- # [17:25] * Joins: shenk (~shenk@static-108-16-212-50.phlapa.fios.verizon.net)
- # [17:25] * Quits: shenk (~shenk@static-108-16-212-50.phlapa.fios.verizon.net) (Max SendQ exceeded)
- # [17:26] * Joins: lmclister (~lmclister@192.150.10.206)
- # [17:26] * Quits: netQt (~netqt@80.227.47.62) (Ping timeout: 255 seconds)
- # [17:26] * Quits: Cent (~centime@178.251.23.43) (Ping timeout: 245 seconds)
- # [17:27] * Quits: newtron_ (~newtron@199.71.174.203) (Ping timeout: 240 seconds)
- # [17:27] * Joins: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com)
- # [17:28] * Quits: sledgeDJ (~sledgeDJ@bzq-84-110-184-233.red.bezeqint.net) (Ping timeout: 244 seconds)
- # [17:29] * Joins: irae_ (~irae_@c-50-131-40-138.hsd1.ca.comcast.net)
- # [17:31] * Joins: jetienne (~jetienne@ivr94-10-88-177-169-62.fbx.proxad.net)
- # [17:31] * Joins: iDaniel (uid25588@gateway/web/irccloud.com/x-hrubcnwsclvddakz)
- # [17:31] * Joins: jordila (~jordi@host138.190-224-149.telecom.net.ar)
- # [17:32] * Quits: jetienne (~jetienne@ivr94-10-88-177-169-62.fbx.proxad.net) (Client Quit)
- # [17:34] * Joins: jetienne (~jetienne@ivr94-10-88-177-169-62.fbx.proxad.net)
- # [17:34] * Quits: hivearts (~hivearts@cable-188-2-52-228.dynamic.sbb.rs) (Quit: Computer has gone to sleep.)
- # [17:35] * Joins: Caiters (~Caitlin@wsip-68-15-80-137.oc.oc.cox.net)
- # [17:36] * pablasso is now known as pablasso_afk
- # [17:38] * Joins: sledgeDJ (~sledgeDJ@bzq-84-110-184-233.red.bezeqint.net)
- # [17:40] * Quits: LiENUS (~LiENUS@ip72-219-29-205.br.br.cox.net) (Ping timeout: 245 seconds)
- # [17:40] * Joins: David_Bradbury (~chatzilla@75-147-178-254-Washington.hfc.comcastbusiness.net)
- # [17:41] * Quits: Manny (~quassel@113.20.16.71) (Ping timeout: 264 seconds)
- # [17:41] * Joins: Click66 (~Click66@2a02:1810:a88c:9400:a16c:3d60:3314:371a)
- # [17:42] * Joins: newtron_ (~newtron@199.71.174.203)
- # [17:44] * Quits: lmclister (~lmclister@192.150.10.206)
- # [17:44] * Quits: Click66 (~Click66@2a02:1810:a88c:9400:a16c:3d60:3314:371a) (Client Quit)
- # [17:44] * Joins: dawhite (~dawhite@74.118.22.223)
- # [17:44] * Quits: newtron_work (~newtron@199.71.174.203) (Ping timeout: 240 seconds)
- # [17:46] * Quits: will_richards (~anonymous@195.171.92.84) (Ping timeout: 245 seconds)
- # [17:46] * pablasso_afk is now known as pablasso
- # [17:46] * Joins: Mads (~Madison@69.73.119.140)
- # [17:48] * Joins: Ericx2x (Ericx2x@209-6-40-131.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
- # [17:49] * Joins: BigBangUDR (~Thunderbi@101.57.72.102)
- # [17:49] * Quits: Bray90820 (~Bray90820@131.225.43.247) (Remote host closed the connection)
- # [17:49] * Quits: Madi (~Madison@69.73.119.140) (Ping timeout: 244 seconds)
- # [17:49] * Quits: BigBangUDR (~Thunderbi@101.57.72.102) (Client Quit)
- # [17:50] * Joins: Bray90820 (~Bray90820@macbookpro.dhcp.fnal.gov)
- # [17:51] * Joins: Courtney (~Courtney@c-50-164-64-71.hsd1.pa.comcast.net)
- # [17:53] * Quits: Left_Turn (~Left_Turn@unaffiliated/turn-left/x-3739067) (Read error: Connection reset by peer)
- # [17:53] * Joins: noTHD (~noTHD@77.71.97.108)
- # [17:54] * Joins: richardbaker (~richardba@otp477474ots.ucsf.edu)
- # [17:55] * pablasso is now known as pablasso_afk
- # [17:56] * Joins: LiENUS (~LiENUS@ip72-219-29-205.br.br.cox.net)
- # [17:56] * Joins: s3shs (~s3shs@wsip-70-184-105-92.ph.ph.cox.net)
- # [17:56] * Quits: Ms2ger (~Ms2ger@193.190.253.149) (Ping timeout: 244 seconds)
- # [17:56] * Joins: lmclister (~lmclister@192.150.10.210)
- # [18:01] * Quits: montecfel (~montecfel@gateway/tor-sasl/montecfel) (Remote host closed the connection)
- # [18:02] * Joins: montecfel (~montecfel@gateway/tor-sasl/montecfel)
- # [18:02] * Quits: _________ (~textual@80-193-72-2.paternoster.mezzonet.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [18:02] * Quits: richardbaker (~richardba@otp477474ots.ucsf.edu) (Remote host closed the connection)
- # [18:03] * Joins: richardbaker (~richardba@otp477474ots.ucsf.edu)
- # [18:06] * Quits: terminalpixel (~grant@ns308981.ip-94-23-241.eu) (Quit: WeeChat 0.4.1)
- # [18:06] * Quits: cnivolle_ (~cnivolle@2a01:e34:ee97:c5c0:1918:47b8:e65d:9d32) (Ping timeout: 240 seconds)
- # [18:11] * Joins: cnivolle (~cnivolle@office.clever-cloud.com)
- # [18:13] * pablasso_afk is now known as pablasso
- # [18:13] * Joins: niftylettuce_ (uid2733@gateway/web/irccloud.com/x-tpuizednuncwetae)
- # [18:14] * Quits: amason (uid18806@gateway/web/irccloud.com/x-dpqorkifcykymkla) (Quit: Connection closed for inactivity)
- # [18:14] * Quits: LiENUS (~LiENUS@ip72-219-29-205.br.br.cox.net) (Ping timeout: 240 seconds)
- # [18:17] * Joins: roelmonnens (~roelmonne@ip-83-134-60-45.dsl.scarlet.be)
- # [18:19] * Quits: irae_ (~irae_@c-50-131-40-138.hsd1.ca.comcast.net) (Quit: irae_)
- # [18:21] * Quits: roelmonnens (~roelmonne@ip-83-134-60-45.dsl.scarlet.be) (Ping timeout: 272 seconds)
- # [18:22] * Quits: Alina-malina (Alina-mali@unaffiliated/alina-malina) (Max SendQ exceeded)
- # [18:22] * Quits: mamarilmanson (~mamarilma@121.54.54.131) (Quit: Leaving)
- # [18:23] * Joins: Click66 (~Click66@2a02:1810:a88c:9400:9155:4661:48e8:6d0b)
- # [18:24] * Joins: Alina-malina (Alina-mali@unaffiliated/alina-malina)
- # [18:25] * Joins: Hornet- (~Hornet@cpc10-ipsw2-2-0-cust55.7-4.cable.virginm.net)
- # [18:25] * Quits: zodiac (~opsec@unaffiliated/opsec) (Ping timeout: 264 seconds)
- # [18:26] * Quits: Click66 (~Click66@2a02:1810:a88c:9400:9155:4661:48e8:6d0b) (Client Quit)
- # [18:26] * Joins: ClarusCogitatio (~ClarusCog@23.94.34.174)
- # [18:26] * Joins: Preda- (~preda@dsl-olubrasgw2-54f866-173.dhcp.inet.fi)
- # [18:26] * Quits: jetienne (~jetienne@ivr94-10-88-177-169-62.fbx.proxad.net) (Quit: jetienne)
- # [18:27] * Joins: Emperor_Earth (~Emperor_E@cblmdm134-228-200-6.buckeyecom.net)
- # [18:27] * Joins: martisj (~martisj@cm-84.208.158.213.getinternet.no)
- # [18:28] <martisj> morning
- # [18:28] <martisj> Retina images today?
- # [18:28] * Quits: jottr (~jottr@unaffiliated/jottr) (Ping timeout: 272 seconds)
- # [18:28] * Quits: Hornet (~Hornet@cpc10-ipsw2-2-0-cust55.7-4.cable.virginm.net) (Ping timeout: 264 seconds)
- # [18:28] <martisj> Which method should I pick for <img> that will be used in the markup
- # [18:28] <martisj> as opposed to css
- # [18:29] * Joins: hivearts (~hivearts@cable-188-2-82-92.dynamic.sbb.rs)
- # [18:29] * Quits: hivearts (~hivearts@cable-188-2-82-92.dynamic.sbb.rs) (Client Quit)
- # [18:29] * Quits: ehynds (~ehynds@64.206.121.41)
- # [18:32] * Quits: Voleurz (~textual@69.172.148.153)
- # [18:33] * Joins: ehynds (~ehynds@64.206.121.41)
- # [18:35] * Joins: mennea (~textual@37.46.38.120)
- # [18:38] * Joins: zodiac (~opsec@unaffiliated/opsec)
- # [18:42] * Quits: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com) (Remote host closed the connection)
- # [18:43] * Quits: richardbaker (~richardba@otp477474ots.ucsf.edu) (Remote host closed the connection)
- # [18:43] * Joins: Manny (~quassel@113.20.16.71)
- # [18:44] * Joins: will_richards (~anonymous@195.171.92.84)
- # [18:45] * Joins: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com)
- # [18:45] * Joins: eddief (~Eddie@c-24-22-33-249.hsd1.or.comcast.net)
- # [18:45] * Quits: Lethalman (~luca@89.118.249.114) (Remote host closed the connection)
- # [18:48] * Quits: manuelbieh (~manuelbie@gw-bln.aperto.de) (Read error: Connection reset by peer)
- # [18:50] * Quits: jerryitt (uid17132@gateway/web/irccloud.com/x-gginglrkwnprdnrz) (Quit: Connection closed for inactivity)
- # [18:50] * Quits: will_richards (~anonymous@195.171.92.84) (Ping timeout: 245 seconds)
- # [18:53] * Parts: mrhanky (ceo@unterschicht.tv)
- # [18:53] * Joins: jetienne (~jetienne@ivr94-10-88-177-169-62.fbx.proxad.net)
- # [18:54] * Joins: Juanchito_ (~Juanchito@80.174.89.39.dyn.user.ono.com)
- # [18:57] * Joins: luist (~luist@186.215.97.229)
- # [19:00] * Joins: BLadwin (~BLadwin@c-24-20-146-180.hsd1.or.comcast.net)
- # [19:02] * Joins: danielwrobert (~danielwro@wsip-68-15-24-46.sd.sd.cox.net)
- # [19:03] * Joins: luist_ (~luist@186.215.97.229)
- # [19:03] * Quits: luist (~luist@186.215.97.229) (Ping timeout: 240 seconds)
- # [19:03] * luist_ is now known as luist
- # [19:05] * Joins: richardbaker (~richardba@otp477474ots.ucsf.edu)
- # [19:06] * Quits: s3shs (~s3shs@wsip-70-184-105-92.ph.ph.cox.net) (Quit: Computer has gone to sleep.)
- # [19:08] * Joins: wilmoore (~wilmoore@vlandnat.mystrotv.com)
- # [19:11] * Quits: martisj (~martisj@cm-84.208.158.213.getinternet.no) (Read error: Connection reset by peer)
- # [19:11] * Quits: mongo (~mongo@unaffiliated/mongo) (Quit: Textual IRC Client: www.textualapp.com)
- # [19:12] * Joins: BigBangUDR (~Thunderbi@101.57.72.102)
- # [19:12] * Quits: BigBangUDR (~Thunderbi@101.57.72.102) (Client Quit)
- # [19:15] * Quits: lmclister (~lmclister@192.150.10.210)
- # [19:15] * Joins: Jayflux (~Jason@host-78-149-20-206.as13285.net)
- # [19:15] * Quits: Jayflux (~Jason@host-78-149-20-206.as13285.net) (Changing host)
- # [19:15] * Joins: Jayflux (~Jason@unaffiliated/jayflux)
- # [19:20] * Joins: tylrr (~textual@rrcs-173-197-114-202.west.biz.rr.com)
- # [19:20] * Joins: irae_ (~irae_@nat/yahoo/x-qqfpdiyjkloghfpg)
- # [19:21] * Quits: jordila (~jordi@host138.190-224-149.telecom.net.ar) (Ping timeout: 245 seconds)
- # [19:23] * Quits: Manny (~quassel@113.20.16.71) (Read error: Connection reset by peer)
- # [19:25] * Joins: Manny (~quassel@113.20.16.68)
- # [19:26] * Quits: cnivolle (~cnivolle@office.clever-cloud.com) (Ping timeout: 255 seconds)
- # [19:26] * Joins: Ms2ger (~Ms2ger@193.190.253.149)
- # [19:27] * Quits: louisremi (~louisremi@cxr69-3-82-225-61-131.fbx.proxad.net) (Quit: louisremi)
- # [19:28] * Joins: _________ (~textual@customers.shefq4.resi.ask4.co.uk)
- # [19:29] * Quits: dangerousdave (~dangerous@78.156.71.46) (Read error: Connection reset by peer)
- # [19:29] * Joins: dangerousdave (~dangerous@78.156.71.46)
- # [19:33] * Joins: Jon47 (~Jon47@38.100.143.34)
- # [19:36] * Quits: Courtney (~Courtney@c-50-164-64-71.hsd1.pa.comcast.net) (Read error: No route to host)
- # [19:36] * Joins: courane01 (~Courtney@c-50-164-64-71.hsd1.pa.comcast.net)
- # [19:37] * Joins: lmclister (~lmclister@192.150.10.206)
- # [19:37] * Quits: courane01 (~Courtney@c-50-164-64-71.hsd1.pa.comcast.net) (Read error: Connection reset by peer)
- # [19:37] * Joins: visualshock (~visualsho@78.89-20-241.enivest.net)
- # [19:46] * Joins: manuelbieh (~manuelbie@p5B3D5C99.dip0.t-ipconnect.de)
- # [19:46] * Quits: d0nkeyBOB (~textual@159.215.64.20) (Remote host closed the connection)
- # [19:46] * Joins: hkon_ (~hkon_@213.167.121.42.static.lyse.net)
- # [19:46] * Joins: d0nkeyBOB (~textual@159.215.64.20)
- # [19:47] * Quits: doev (~doev@p4FD42C53.dip0.t-ipconnect.de) (Quit: Verlassend)
- # [19:48] * Joins: JBreit (~Trip@h110.37.25.72.ip.windstream.net)
- # [19:49] * Quits: jetienne (~jetienne@ivr94-10-88-177-169-62.fbx.proxad.net) (Quit: jetienne)
- # [19:49] * Quits: slyda1 (~slyda@58-7-218-205.dyn.iinet.net.au) (Ping timeout: 240 seconds)
- # [19:50] * Quits: d0nkeyBOB (~textual@159.215.64.20) (Client Quit)
- # [19:50] * Quits: hkon_ (~hkon_@213.167.121.42.static.lyse.net) (Ping timeout: 244 seconds)
- # [19:51] * Quits: lmclister (~lmclister@192.150.10.206)
- # [19:54] * Joins: manuelbieh_ (~manuelbie@p5B3D5C99.dip0.t-ipconnect.de)
- # [19:55] * Quits: manuelbieh (~manuelbie@p5B3D5C99.dip0.t-ipconnect.de) (Read error: Connection reset by peer)
- # [19:57] * Quits: richardbaker (~richardba@otp477474ots.ucsf.edu) (Remote host closed the connection)
- # [19:58] * Quits: amizraa4 (~amizraa@gateway/tor-sasl/amizraa) (Ping timeout: 264 seconds)
- # [19:59] * Quits: montecfel (~montecfel@gateway/tor-sasl/montecfel) (Ping timeout: 264 seconds)
- # [19:59] * Joins: hivearts (~hivearts@cable-188-2-82-92.dynamic.sbb.rs)
- # [19:59] * Joins: jrahmy (~jrahmy@cpe-24-94-26-137.san.res.rr.com)
- # [19:59] * Quits: Fusl (Fusl@unaffiliated/fusl) (Ping timeout: 272 seconds)
- # [20:00] * Joins: lmclister (~lmclister@192.150.10.206)
- # [20:01] * Joins: m3th0d (~deacs@gateway/tor-sasl/deacs)
- # [20:02] * Joins: b33vi2 (~manuelbie@p5B3D5C99.dip0.t-ipconnect.de)
- # [20:02] * Quits: manuelbieh_ (~manuelbie@p5B3D5C99.dip0.t-ipconnect.de) (Read error: Connection reset by peer)
- # [20:03] * Joins: manuelbieh_ (~manuelbie@p5B3D5C99.dip0.t-ipconnect.de)
- # [20:03] * Quits: m3th0d (~deacs@gateway/tor-sasl/deacs) (Client Quit)
- # [20:03] * Joins: montecfel (~montecfel@gateway/tor-sasl/montecfel)
- # [20:05] * Joins: Fusl (Fusl@unaffiliated/fusl)
- # [20:05] * Joins: richardbaker (~richardba@otp477474ots.ucsf.edu)
- # [20:06] * Joins: amizraa4 (~amizraa@gateway/tor-sasl/amizraa)
- # [20:06] * Quits: b33vi2 (~manuelbie@p5B3D5C99.dip0.t-ipconnect.de) (Ping timeout: 240 seconds)
- # [20:07] * Joins: m3th0d (~deacs@gateway/tor-sasl/deacs)
- # [20:08] * Quits: Ms2ger (~Ms2ger@193.190.253.149) (Quit: nn)
- # [20:10] * Quits: jrahmy (~jrahmy@cpe-24-94-26-137.san.res.rr.com) (Quit: (Zzz...))
- # [20:11] * Joins: heedypo (~heedypo@user-5af4a405.broadband.tesco.net)
- # [20:11] * Joins: heedypo_ (~heedypo@user-5af4a405.broadband.tesco.net)
- # [20:12] * Quits: blivande (~Chw@189.193.68.36) (Ping timeout: 264 seconds)
- # [20:12] * Quits: noTHD (~noTHD@77.71.97.108)
- # [20:12] * Quits: heedypo1 (~heedypo@user-5af4aa27.broadband.tesco.net) (Ping timeout: 240 seconds)
- # [20:14] * Quits: heedypo2 (~heedypo@user-5af4aa27.broadband.tesco.net) (Ping timeout: 272 seconds)
- # [20:15] * Quits: akersof (~akersof@unaffiliated/zoroaster) (Ping timeout: 264 seconds)
- # [20:15] * Quits: DrSect1r (~DrSect0r@77-175-116-213.FTTH.ispfabriek.nl) (Quit: Leaving)
- # [20:16] * Joins: b33vi2 (~manuelbie@p5B3D5C99.dip0.t-ipconnect.de)
- # [20:17] * Quits: manuelbieh_ (~manuelbie@p5B3D5C99.dip0.t-ipconnect.de) (Read error: Connection reset by peer)
- # [20:17] * Joins: manuelbieh (~manuelbie@p5B3D5C99.dip0.t-ipconnect.de)
- # [20:19] * Quits: Bray90820 (~Bray90820@macbookpro.dhcp.fnal.gov) (Remote host closed the connection)
- # [20:20] * Quits: wilmoore (~wilmoore@vlandnat.mystrotv.com) (Ping timeout: 240 seconds)
- # [20:20] * Quits: b33vi2 (~manuelbie@p5B3D5C99.dip0.t-ipconnect.de) (Ping timeout: 255 seconds)
- # [20:22] * Joins: LiENUS (~LiENUS@108-242-135-1.lightspeed.btrgla.sbcglobal.net)
- # [20:22] * Joins: noTHD (~noTHD@77.71.97.108)
- # [20:24] * Quits: niftylettuce_ (uid2733@gateway/web/irccloud.com/x-tpuizednuncwetae) (Quit: Connection closed for inactivity)
- # [20:26] * Parts: JBreit (~Trip@h110.37.25.72.ip.windstream.net) ("Leaving")
- # [20:28] * Joins: netQt (~netqt@80.227.87.187)
- # [20:30] * Joins: tylrr_ (~textual@rrcs-173-197-114-202.west.biz.rr.com)
- # [20:30] * Quits: tylrr (~textual@rrcs-173-197-114-202.west.biz.rr.com) (Read error: Connection reset by peer)
- # [20:32] * Quits: netQt (~netqt@80.227.87.187) (Remote host closed the connection)
- # [20:32] * Quits: dwayhs (~dwayhs@189.125.22.90) (Read error: Connection reset by peer)
- # [20:33] * Joins: dwayhs (~dwayhs@189.125.22.90)
- # [20:34] * Joins: netQt_ (~netqt@80.227.87.187)
- # [20:35] * Quits: tylrr_ (~textual@rrcs-173-197-114-202.west.biz.rr.com) (Read error: Connection reset by peer)
- # [20:37] * Joins: r3n3 (~r3n3@148.240.237.7)
- # [20:38] * Parts: r3n3 (~r3n3@148.240.237.7)
- # [20:39] * Joins: tylrr (~textual@rrcs-173-197-114-202.west.biz.rr.com)
- # [20:41] * Quits: Gege (gege@future.deferred.io) (*.net *.split)
- # [20:42] * Quits: richardbaker (~richardba@otp477474ots.ucsf.edu) (Remote host closed the connection)
- # [20:46] * Quits: hivearts (~hivearts@cable-188-2-82-92.dynamic.sbb.rs) (Quit: Computer has gone to sleep.)
- # [20:49] * Joins: estellevw (~estellevw@sccc-66-78-236-243.smartcity.com)
- # [20:50] * Quits: LiENUS (~LiENUS@108-242-135-1.lightspeed.btrgla.sbcglobal.net) (Quit: Leaving)
- # [20:52] * Joins: Gege (gege@future.deferred.io)
- # [20:54] * Joins: BigBangUDR (~Thunderbi@101.59.79.17)
- # [20:55] * Quits: BigBangUDR (~Thunderbi@101.59.79.17) (Client Quit)
- # [20:57] * Joins: hivearts (~hivearts@cable-188-2-82-92.dynamic.sbb.rs)
- # [21:02] * Joins: jetienne (~jetienne@ivr94-10-88-177-169-62.fbx.proxad.net)
- # [21:07] * Quits: heedypo (~heedypo@user-5af4a405.broadband.tesco.net) (Quit: WeeChat 0.4.2)
- # [21:07] * Joins: blivande (~Chw@189.193.68.36)
- # [21:12] * Quits: aretecode (~aretecode@50.23.131.206-static.reverse.softlayer.com) (Ping timeout: 240 seconds)
- # [21:13] * Joins: richardbaker (~richardba@otp477474ots.ucsf.edu)
- # [21:15] * Joins: Juanchito__ (~Juanchito@81.60.135.209)
- # [21:15] * Joins: BigBangUDR (~Thunderbi@101.59.79.17)
- # [21:16] * Quits: BigBangUDR (~Thunderbi@101.59.79.17) (Client Quit)
- # [21:16] * Quits: pmodern (~PC@70-89-102-194-Florida.hfc.comcastbusiness.net) (Read error: Connection reset by peer)
- # [21:16] * Quits: Juanchito_ (~Juanchito@80.174.89.39.dyn.user.ono.com) (Ping timeout: 264 seconds)
- # [21:16] * Joins: aretecode (~aretecode@50.23.131.206-static.reverse.softlayer.com)
- # [21:16] * Joins: Rou (~Rou@pool-74-97-34-130.prvdri.fios.verizon.net)
- # [21:17] * Quits: richardbaker (~richardba@otp477474ots.ucsf.edu) (Ping timeout: 240 seconds)
- # [21:17] * Joins: Bray90820 (~Bray90820@macbookpro.dhcp.fnal.gov)
- # [21:18] * Quits: blivande (~Chw@189.193.68.36) (Ping timeout: 264 seconds)
- # [21:24] * Joins: r3n3 (~r3n3@148.240.237.7)
- # [21:25] * Joins: SOUL_OF_R00T (~M4G3@177.130.132.27)
- # [21:25] * Quits: SOUL_OF_R00T (~M4G3@177.130.132.27) (Changing host)
- # [21:25] * Joins: SOUL_OF_R00T (~M4G3@unaffiliated/soul-of-r00t/x-4421326)
- # [21:26] * Joins: richardbaker (~richardba@otp477474ots.ucsf.edu)
- # [21:27] * Joins: Andre_designer (~Thunderbi@82-170-146-165.ip.telfort.nl)
- # [21:28] * Joins: Reskp (~Reskp@2a01:e34:ec13:82f0:7870:6aa4:33fc:853a)
- # [21:29] * Quits: estellevw (~estellevw@sccc-66-78-236-243.smartcity.com) (Quit: Snuggling with the puppies)
- # [21:30] * Quits: Reskp (~Reskp@2a01:e34:ec13:82f0:7870:6aa4:33fc:853a) (Remote host closed the connection)
- # [21:30] * Joins: wilmoore (~wilmoore@2001:1998:6f1:12:69dc:cd27:b5a2:3585)
- # [21:31] * Quits: netQt_ (~netqt@80.227.87.187) (Read error: Connection reset by peer)
- # [21:32] * Joins: Reskp (~Reskp@2a01:e34:ec13:82f0:140:c979:ad8d:e23e)
- # [21:32] * Quits: Reskp (~Reskp@2a01:e34:ec13:82f0:140:c979:ad8d:e23e) (Remote host closed the connection)
- # [21:32] * Joins: blivande (~Chw@189.193.68.36)
- # [21:33] * Quits: hivearts (~hivearts@cable-188-2-82-92.dynamic.sbb.rs) (Quit: Lingo - http://www.lingoirc.com)
- # [21:33] * Joins: hivearts (~hivearts@cable-188-2-82-92.dynamic.sbb.rs)
- # [21:35] * Joins: netQt (~netqt@80.227.87.187)
- # [21:36] * Joins: Reskp (~Reskp@2a01:e34:ec13:82f0:6c22:6dd6:bf6b:eebe)
- # [21:36] * Quits: Reskp (~Reskp@2a01:e34:ec13:82f0:6c22:6dd6:bf6b:eebe) (Remote host closed the connection)
- # [21:36] * Joins: Reskp (~Reskp@78.193.56.47)
- # [21:39] * Quits: Ciph3r (~Cyph3r@71-84-78-55.dhcp.rvsd.ca.charter.com) (Remote host closed the connection)
- # [21:42] * Joins: heedypo (~heedypo@user-5af4a405.broadband.tesco.net)
- # [21:44] * Joins: Cyph3r (~Cyph3r@71-84-78-55.dhcp.rvsd.ca.charter.com)
- # [21:44] * Joins: heedypo1 (~heedypo@user-5af4a664.broadband.tesco.net)
- # [21:45] * Joins: richard__ (~richardba@otp477474ots.ucsf.edu)
- # [21:46] * Quits: montecfel (~montecfel@gateway/tor-sasl/montecfel) (Remote host closed the connection)
- # [21:46] * Quits: richardbaker (~richardba@otp477474ots.ucsf.edu) (Read error: Connection reset by peer)
- # [21:46] * Joins: montecfel (~montecfel@gateway/tor-sasl/montecfel)
- # [21:46] * Quits: Yomi (znc@xenomorph.exovenom.net) (Ping timeout: 264 seconds)
- # [21:47] * Joins: hkon_ (~hkon_@213.167.121.42.static.lyse.net)
- # [21:47] * Quits: heedypo (~heedypo@user-5af4a405.broadband.tesco.net) (Ping timeout: 240 seconds)
- # [21:47] * Quits: heedypo_ (~heedypo@user-5af4a405.broadband.tesco.net) (Ping timeout: 244 seconds)
- # [21:48] * Joins: heedypo (~heedypo@user-5af4a6a6.broadband.tesco.net)
- # [21:48] * Joins: heedypo2 (~heedypo@user-5af4a6a6.broadband.tesco.net)
- # [21:49] * Quits: heedypo1 (~heedypo@user-5af4a664.broadband.tesco.net) (Ping timeout: 245 seconds)
- # [21:49] * Quits: basiclaser (Elite7488@gateway/shell/elitebnc/x-edcqgojzlaqbwdcf) (Quit: EliteBNC free bnc service - http://elitebnc.org - be a part of the Elite!)
- # [21:50] * Quits: Jon47 (~Jon47@38.100.143.34) (Quit: Leaving.)
- # [21:50] * Joins: Jon47 (~Jon47@38.100.143.34)
- # [21:50] * Quits: HariboPenguin|Of (~Pingu@dtomlinson.net) (Quit: ZNC - http://znc.in)
- # [21:51] * Quits: hkon_ (~hkon_@213.167.121.42.static.lyse.net) (Ping timeout: 264 seconds)
- # [21:53] * Joins: Click66 (~Click66@d54C2B4AD.access.telenet.be)
- # [21:53] * Quits: Click66 (~Click66@d54C2B4AD.access.telenet.be) (Client Quit)
- # [21:54] * Quits: Jon47 (~Jon47@38.100.143.34) (Ping timeout: 264 seconds)
- # [21:54] * Joins: s3shs (~s3shs@wsip-70-184-105-92.ph.ph.cox.net)
- # [21:55] * Quits: Manny (~quassel@113.20.16.68) (Remote host closed the connection)
- # [21:55] * Joins: chriys (~chriys@modemcable147.239-82-70.mc.videotron.ca)
- # [21:55] * Quits: redaxmedia (~redaxmedi@dslb-188-103-227-034.pools.arcor-ip.net) (Quit: Leaving.)
- # [21:56] * Joins: HariboPenguin|Of (~Pingu@dtomlinson.net)
- # [21:56] * Quits: _________ (~textual@customers.shefq4.resi.ask4.co.uk) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [21:56] * Joins: sveltponce (~sveltponc@192-195-80-230.PUBLIC.monkeybrains.net)
- # [21:57] * Joins: tantek (~tantek@70-36-139-254.dsl.dynamic.sonic.net)
- # [21:59] * Joins: Yomi (znc@162.218.239.84)
- # [21:59] * Joins: mongo (~mongo@unaffiliated/mongo)
- # [22:00] * Joins: DanishMan (~kvirc@62-243-156-218-static.dk.customer.tdc.net)
- # [22:03] * Joins: heedypo1 (~heedypo@user-5af4a73c.broadband.tesco.net)
- # [22:03] * Joins: heedypo_ (~heedypo@user-5af4a73c.broadband.tesco.net)
- # [22:03] * Joins: manuelbieh_ (~manuelbie@p5B3D5C99.dip0.t-ipconnect.de)
- # [22:05] * Quits: heedypo (~heedypo@user-5af4a6a6.broadband.tesco.net) (Ping timeout: 240 seconds)
- # [22:05] * Quits: danielwrobert (~danielwro@wsip-68-15-24-46.sd.sd.cox.net) (Quit: Leaving.)
- # [22:05] * Quits: manuelbieh (~manuelbie@p5B3D5C99.dip0.t-ipconnect.de) (Ping timeout: 255 seconds)
- # [22:06] * Quits: heedypo2 (~heedypo@user-5af4a6a6.broadband.tesco.net) (Ping timeout: 272 seconds)
- # [22:06] * Quits: kalz (~kalz@2602:fff6:f:1::d979:58e8) (Quit: exit)
- # [22:06] * Quits: DanishMan (~kvirc@62-243-156-218-static.dk.customer.tdc.net) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
- # [22:07] * Quits: mpaarating (~mpaaratin@rrcs-97-78-217-146.se.biz.rr.com) (Quit: mpaarating)
- # [22:07] * Quits: ehynds (~ehynds@64.206.121.41)
- # [22:08] * Quits: hivearts (~hivearts@cable-188-2-82-92.dynamic.sbb.rs) (Quit: Computer has gone to sleep.)
- # [22:09] * Joins: hivearts (~hivearts@cable-188-2-82-92.dynamic.sbb.rs)
- # [22:09] * Quits: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com) (Read error: Connection reset by peer)
- # [22:10] * Joins: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com)
- # [22:11] * Quits: Yomi (znc@162.218.239.84) (Remote host closed the connection)
- # [22:11] * Quits: SOUL_OF_R00T (~M4G3@unaffiliated/soul-of-r00t/x-4421326) (Ping timeout: 240 seconds)
- # [22:12] * Joins: heedypo (~heedypo@user-5af4a774.broadband.tesco.net)
- # [22:12] * Quits: heedypo1 (~heedypo@user-5af4a73c.broadband.tesco.net) (Ping timeout: 264 seconds)
- # [22:12] * Quits: heedypo_ (~heedypo@user-5af4a73c.broadband.tesco.net) (Ping timeout: 240 seconds)
- # [22:13] * Quits: hivearts (~hivearts@cable-188-2-82-92.dynamic.sbb.rs) (Ping timeout: 244 seconds)
- # [22:14] * Quits: Reskp (~Reskp@78.193.56.47) (Remote host closed the connection)
- # [22:15] * Joins: Reskp (~Reskp@2a01:e34:ec13:82f0:a560:31c4:67ba:f2a4)
- # [22:16] * Joins: Jon47 (~Jon47@38.100.143.34)
- # [22:17] * Joins: heedypo1 (~heedypo@user-5af4a785.broadband.tesco.net)
- # [22:17] * Quits: heedypo (~heedypo@user-5af4a774.broadband.tesco.net) (Ping timeout: 240 seconds)
- # [22:18] * Joins: __joshua___ (uid17120@gateway/web/irccloud.com/x-snslwpyhrvvnpwtk)
- # [22:18] * Quits: sveltponce (~sveltponc@192-195-80-230.PUBLIC.monkeybrains.net) (Quit: Textual IRC Client: www.textualapp.com)
- # [22:18] * Joins: heedypo2 (~heedypo@user-5af4a795.broadband.tesco.net)
- # [22:20] * Quits: Reskp (~Reskp@2a01:e34:ec13:82f0:a560:31c4:67ba:f2a4) (Ping timeout: 240 seconds)
- # [22:21] * Joins: basiclaser (Elite7488@gateway/shell/elitebnc/x-rdtwqkbhfuadmoob)
- # [22:21] * Joins: heedypo (~heedypo@user-5af4a7a9.broadband.tesco.net)
- # [22:21] * Quits: heedypo1 (~heedypo@user-5af4a785.broadband.tesco.net) (Ping timeout: 240 seconds)
- # [22:22] * Quits: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com) (Remote host closed the connection)
- # [22:23] * Joins: Reskp (~Reskp@2a01:e34:ec13:82f0:46d:2c68:897a:b3d3)
- # [22:23] * Quits: heedypo2 (~heedypo@user-5af4a795.broadband.tesco.net) (Ping timeout: 245 seconds)
- # [22:23] * Joins: Yomi (znc@xenomorph.exovenom.net)
- # [22:24] * Joins: heedypo2 (~heedypo@user-5af4a7ba.broadband.tesco.net)
- # [22:25] * Quits: heedypo (~heedypo@user-5af4a7a9.broadband.tesco.net) (Ping timeout: 240 seconds)
- # [22:26] * Joins: heedypo (~heedypo@user-5af4a7ba.broadband.tesco.net)
- # [22:27] * Quits: Reskp (~Reskp@2a01:e34:ec13:82f0:46d:2c68:897a:b3d3) (Ping timeout: 240 seconds)
- # [22:27] * Joins: c4milo (~c4milo@207-38-151-213.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com)
- # [22:29] * Joins: Reskp (~Reskp@78.193.56.47)
- # [22:31] * Quits: blivande (~Chw@189.193.68.36) (Ping timeout: 264 seconds)
- # [22:32] * Quits: jetienne (~jetienne@ivr94-10-88-177-169-62.fbx.proxad.net) (Ping timeout: 240 seconds)
- # [22:35] * Joins: heedypo1 (~heedypo@user-5af4a7fd.broadband.tesco.net)
- # [22:35] * Quits: Andre_designer (~Thunderbi@82-170-146-165.ip.telfort.nl) (Quit: Andre_designer)
- # [22:36] * Joins: jottr (~jottr@unaffiliated/jottr)
- # [22:36] * Joins: estellevw (~estellevw@sccc-66-78-236-243.smartcity.com)
- # [22:36] * Joins: flyx (~flyx@flyx.org)
- # [22:37] * Quits: heedypo (~heedypo@user-5af4a7ba.broadband.tesco.net) (Ping timeout: 244 seconds)
- # [22:37] * Quits: heedypo2 (~heedypo@user-5af4a7ba.broadband.tesco.net) (Ping timeout: 264 seconds)
- # [22:38] * Joins: SOUL_OF_R00T (~M4G3@unaffiliated/soul-of-r00t/x-4421326)
- # [22:38] * Joins: jordila (~jordi@181.167.163.254)
- # [22:38] * Joins: heedypo2 (~heedypo@user-5af4a80d.broadband.tesco.net)
- # [22:38] <flyx> hi folks! the MDN lists for each HTML element "content categories", "permitted content", and "permitted parent elements", for example here: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/abbr
- # [22:39] <flyx> what's the meaning of content categories, if permitted parent elements is an own entry?
- # [22:39] <flyx> I would have thought that "content categories" means that "this element may be used anywhere where these content categories are allowed"
- # [22:40] * Quits: heedypo1 (~heedypo@user-5af4a7fd.broadband.tesco.net) (Ping timeout: 272 seconds)
- # [22:40] <flyx> but here with <addr>, the page tells me that it has the categories flow content and phrasing content, but may only have a parent that accepts phrasing content… why does it have the category flow content then?
- # [22:40] * Joins: heedypo (~heedypo@user-5af4a814.broadband.tesco.net)
- # [22:41] * Quits: pibby (~pibby@107.155.72.239) (Ping timeout: 240 seconds)
- # [22:42] * Joins: jrahmy (~jrahmy@cpe-24-94-26-137.san.res.rr.com)
- # [22:43] * Quits: heedypo2 (~heedypo@user-5af4a80d.broadband.tesco.net) (Ping timeout: 272 seconds)
- # [22:47] * Quits: jordila (~jordi@181.167.163.254) (Ping timeout: 264 seconds)
- # [22:47] * Joins: Expi1 (~Expi1@cpc1-dumb5-2-0-cust29.20-3.cable.virginm.net)
- # [22:49] * Joins: heedypo1 (~heedypo@user-5af4a83c.broadband.tesco.net)
- # [22:50] * Quits: Expi1 (~Expi1@cpc1-dumb5-2-0-cust29.20-3.cable.virginm.net) (Client Quit)
- # [22:51] * Joins: kalz (~kalz@2602:fff6:f:1::d979:58e8)
- # [22:51] * Joins: heedypo2 (~heedypo@user-5af4a83c.broadband.tesco.net)
- # [22:52] * Quits: heedypo (~heedypo@user-5af4a814.broadband.tesco.net) (Ping timeout: 245 seconds)
- # [22:52] * Quits: anonymousMAC (~anonymous@unaffiliated/anonymousmac)
- # [22:54] * Joins: hivearts (~hivearts@cable-188-2-82-92.dynamic.sbb.rs)
- # [22:54] * Joins: redaxmedia (~redaxmedi@dslb-188-103-227-034.pools.arcor-ip.net)
- # [22:55] * Joins: _leb (~leb@pool-108-53-167-179.nwrknj.fios.verizon.net)
- # [22:58] * Joins: oleg3280 (~oleg32808@34-236-134-95.pool.ukrtel.net)
- # [23:00] * Quits: montecfel (~montecfel@gateway/tor-sasl/montecfel) (Remote host closed the connection)
- # [23:00] * Parts: oleg3280 (~oleg32808@34-236-134-95.pool.ukrtel.net)
- # [23:00] * Joins: montecfel (~montecfel@gateway/tor-sasl/montecfel)
- # [23:00] * Quits: mateNz (~mateNz@unaffiliated/matenz) (Remote host closed the connection)
- # [23:01] * Joins: hinderaker (hinderaker@239.79-160-248.customer.lyse.net)
- # [23:02] * Joins: luiz_ (~luiz@179-241-173-246.3g.claro.net.br)
- # [23:03] * luiz_ is now known as Guest76341
- # [23:04] * Quits: krawchyk (~textual@50-198-150-254-static.hfc.comcastbusiness.net) (Quit: away)
- # [23:04] * Quits: Cyph3r (~Cyph3r@71-84-78-55.dhcp.rvsd.ca.charter.com) (Ping timeout: 244 seconds)
- # [23:05] * Quits: luiz_lha (~luiz@152.251.194.190) (Ping timeout: 264 seconds)
- # [23:07] * Quits: netQt (~netqt@80.227.87.187) (Remote host closed the connection)
- # [23:07] * Joins: Cyph3r (~Cyph3r@71-84-78-55.dhcp.rvsd.ca.charter.com)
- # [23:13] * Quits: irae_ (~irae_@nat/yahoo/x-qqfpdiyjkloghfpg) (Ping timeout: 272 seconds)
- # [23:14] * Joins: Centime (~centime@178.251.23.153)
- # [23:15] * Joins: pibby (~pibby@99-160-9-110.lightspeed.rcsntx.sbcglobal.net)
- # [23:17] * Quits: kalz (~kalz@2602:fff6:f:1::d979:58e8) (Quit: exit)
- # [23:17] * Quits: sledgeDJ (~sledgeDJ@bzq-84-110-184-233.red.bezeqint.net) (Ping timeout: 240 seconds)
- # [23:20] * Quits: Reskp (~Reskp@78.193.56.47) (Remote host closed the connection)
- # [23:21] * Joins: sifu (~sifu@cpc67897-sotn13-2-0-cust697.15-1.cable.virginm.net)
- # [23:21] * Joins: irae_ (~irae_@nat/yahoo/x-nbjruribtglvrjpy)
- # [23:21] * Joins: kalz (~kalz@2602:fff6:f:1::d979:58e8)
- # [23:23] * Quits: s3shs (~s3shs@wsip-70-184-105-92.ph.ph.cox.net) (Quit: Computer has gone to sleep.)
- # [23:24] * Joins: Reskp (~Reskp@2a01:e34:ec13:82f0:9076:abab:adab:1568)
- # [23:25] * Quits: river_ (~river@adama.youmustunderstand.me) (Ping timeout: 240 seconds)
- # [23:27] * Quits: dwayhs (~dwayhs@189.125.22.90) (Read error: Connection reset by peer)
- # [23:28] * Joins: danielwrobert (~danielwro@wsip-68-15-24-46.sd.sd.cox.net)
- # [23:28] * Joins: dwayhs (~dwayhs@189.125.22.90)
- # [23:29] * Joins: s3shs (~s3shs@wsip-70-184-105-92.ph.ph.cox.net)
- # [23:30] * Quits: tomlane (tomlane@gateway/shell/bouncerstation/x-jyyabeeejhhcmgts) (Max SendQ exceeded)
- # [23:30] * Quits: dwayhs (~dwayhs@189.125.22.90) (Read error: Connection reset by peer)
- # [23:30] * Quits: estellevw (~estellevw@sccc-66-78-236-243.smartcity.com) (Quit: Snuggling with the puppies)
- # [23:31] * Joins: dwayhs (~dwayhs@189.125.22.90)
- # [23:34] * Quits: dobalina (~dobalina@gateway/tor-sasl/dobalina) (Remote host closed the connection)
- # [23:35] * Quits: Centime (~centime@178.251.23.153) (Ping timeout: 255 seconds)
- # [23:35] * Joins: hkon_ (~hkon_@213.167.121.42.static.lyse.net)
- # [23:35] * Joins: cnivolle (~cnivolle@glo44-3-82-227-211-116.fbx.proxad.net)
- # [23:36] * Joins: estellevw (~estellevw@sccc-66-78-236-243.smartcity.com)
- # [23:36] * Quits: dangerousdave (~dangerous@78.156.71.46) (Read error: Connection reset by peer)
- # [23:36] * Joins: Lichte (~Lichte@unaffiliated/klementas)
- # [23:36] * Joins: gabybro (~gabybro@92.85.250.68)
- # [23:37] * Joins: dangerousdave (~dangerous@78.156.71.46)
- # [23:37] <estellevw> flyx: that does make sense. <addr> can not be found inside a span, but <span> can be found inside an <addr>
- # [23:38] * Quits: estellevw (~estellevw@sccc-66-78-236-243.smartcity.com) (Client Quit)
- # [23:39] * Quits: Jon47 (~Jon47@38.100.143.34) (Quit: Leaving.)
- # [23:39] * Joins: Centime (~centime@178.251.23.153)
- # [23:40] * Quits: hkon_ (~hkon_@213.167.121.42.static.lyse.net) (Ping timeout: 255 seconds)
- # [23:42] * Parts: redaxmedia (~redaxmedi@dslb-188-103-227-034.pools.arcor-ip.net)
- # [23:43] * Joins: pibby_ (~pibby@107.155.72.239)
- # [23:43] * Quits: pibby (~pibby@99-160-9-110.lightspeed.rcsntx.sbcglobal.net) (Quit: pibby)
- # [23:43] * Quits: luist (~luist@186.215.97.229) (Quit: luist)
- # [23:44] * Joins: tomlane (tomlane@gateway/shell/bouncerstation/x-xhwjbrhxtumyolvm)
- # [23:45] * Quits: pibby_ (~pibby@107.155.72.239) (Client Quit)
- # [23:45] * Joins: pibby (~pibby@107.155.72.239)
- # [23:46] * Quits: irae_ (~irae_@nat/yahoo/x-nbjruribtglvrjpy) (Quit: irae_)
- # [23:47] * Quits: hivearts (~hivearts@cable-188-2-82-92.dynamic.sbb.rs) (Quit: Computer has gone to sleep.)
- # [23:48] * Quits: dwayhs (~dwayhs@189.125.22.90) (Read error: Connection reset by peer)
- # [23:48] * Joins: estellevw (~estellevw@sccc-66-78-236-243.smartcity.com)
- # [23:48] * Joins: dwayhs (~dwayhs@189.125.22.90)
- # [23:49] * Joins: LiENUS (~LiENUS@ip72-219-29-205.br.br.cox.net)
- # [23:49] * Quits: dwayhs (~dwayhs@189.125.22.90) (Client Quit)
- # [23:49] * Joins: irae_ (~irae_@nat/yahoo/x-afpjreqiksaorbyo)
- # [23:49] * Quits: Bray90820 (~Bray90820@macbookpro.dhcp.fnal.gov)
- # [23:50] * Quits: visualshock (~visualsho@78.89-20-241.enivest.net) (Quit: Leaving)
- # [23:52] * Quits: Ericx2x (Ericx2x@209-6-40-131.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Ping timeout: 240 seconds)
- # [23:53] * Quits: iDaniel (uid25588@gateway/web/irccloud.com/x-hrubcnwsclvddakz) (Quit: Connection closed for inactivity)
- # [23:53] * Joins: bartdorsey (~textual@24.144.52.32)
- # [23:53] * Joins: troyster (~troyster@host86-172-230-242.range86-172.btcentralplus.com)
- # [23:53] * Quits: troyster (~troyster@host86-172-230-242.range86-172.btcentralplus.com) (Client Quit)
- # [23:55] * Joins: jordila (~jordi@181.167.163.254)
- # [23:55] * Quits: jordila (~jordi@181.167.163.254) (Remote host closed the connection)
- # [23:55] * Quits: mennea (~textual@37.46.38.120) (Ping timeout: 240 seconds)
- # [23:58] * Quits: estellevw (~estellevw@sccc-66-78-236-243.smartcity.com) (Quit: Snuggling with the puppies)
- # [23:59] * Quits: mongo (~mongo@unaffiliated/mongo) (Quit: Textual IRC Client: www.textualapp.com)
- # Session Close: Wed Jun 25 00:00:01 2014
The end :)