AustNet AustNet Archive Project — IRC Logs
« All channels | Contribute a log »

// #politicaldebate — 2015-01-01

1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016
00:00:00 <xm> welcome to the first world
00:00:01 <xm> so prom never met bretty? i doubted it too but i wanted to believe in it. it was just a great story for my #pd memoirs
00:00:07 <bee_girl_> Hello Tigger_
00:00:21 <Lish> 1min
00:00:25 <Lish> Fireworks are early
00:00:29 <xm> bee_girl_, you got landline internet now?
00:00:40 <bee_girl_> Yep!!
00:00:44 <xm> welcome to the first world
00:00:49 * bee_girl_ Thank you
00:00:58 <bee_girl_> It's been a long time coming
00:00:58 <xm> now download every bootleg of pearl jam
00:01:59 <bee_girl_> I already had
00:02:55 <Tigger_> Samwell is good NYE music
00:04:40 <Lish> So it's 2015 I guess
00:04:54 <bee_girl_> How's it feel
00:04:55 <bee_girl_> ?
00:04:56 <Tigger_> it is in VIC?
00:05:01 <Tigger_> only 11pm in QLD
00:05:08 <Lish> Yuh it is
00:05:12 <Lish> I'm in the future
00:05:14 <bee_girl_> And nsw
00:05:19 <Lish> Ozone and I are enjoying the future
00:05:47 <Tigger_> with all your flying cars and floating cities
00:05:48 <Ozone> ahhh, yes I can tell you 2015 is a good year Tigger_, you should try it soon
00:06:07 <Ozone> we have hoverboards
00:06:25 <bee_girl_> Lol
00:06:37 <Lish> Aren't they showing the sydney fireworks on TV there?
00:06:41 <Lish> I'm watching them on abc
00:06:55 <Tigger_> I don't have the TV on
00:07:18 <Lish> Oh
00:08:00 <Tigger_> I'm creating my own fireworks: http://i.imgur.com/bYbzTjc.png
00:15:23 <Lish> Dog going nuts
00:15:55 <bee_girl_> Cute Tigger_
00:16:07 <Tigger_> thanks
00:16:16 <Tigger_> is it the fireworks upsetting him?
00:16:18 <Lish> Sexy tigger
00:16:21 <Lish> Yes he hates them
00:16:34 <Lish> So many people here light fireworks in their back yard
00:16:38 <Lish> So I'm sure they'll be going all night
00:16:52 <Tigger_> you live in an asian area?
00:17:17 <bee_girl_> Sexy?
00:18:10 <Lish> Not overly asian
00:18:32 <Lish> Asians in some of the surrounding suburbs
00:18:36 <Lish> Yeah tigger is sexy
00:18:42 <Tigger_> they're big on illegal fireworks I hear
00:18:49 <Tigger_> well ethanol says so
00:18:50 <Lish> Yeah I think so
00:19:59 <xm> my friends used to joke around NYE saying, "Anyone know any Asians? I need to score fireworks ASAP"
00:20:29 <xm> i was just given the strangest remedy for a headache (maybe caused by not wearing glasses for a while)
00:20:36 <bee_girl_> I could do with some pills
00:20:39 <xm> it was a slice of lemon put on my forehead
00:20:53 <xm> and the smell/aroma is supposed to cure me
00:21:16 <Lish> Pills?
00:21:28 <xm> you got a headache as well?
00:22:48 <xm> or are you going raving soon and want pills of ecstasy
00:23:12 <xm> NYE/NYD is probably the biggest night of the year for raves/drugs
00:28:36 Quit: bee_girl_ ([email protected]) Connection closed
00:30:52 Join: bee_girl_ ([email protected]) to #politicaldebate
00:31:56 Quit: bee_girl_ ([email protected]) Client exited
00:32:09 <Lish> Night peeps
00:32:13 <Lish> Happy new year :)
00:32:19 <Tigger_> to sleep that early?
00:32:22 <Lish> Too old for this haha
00:32:26 <Lish> Yes!
00:32:36 <Tigger_> ah well, I'm tired too
00:32:36 <Lish> It's 12.31, I stayed up long enough
00:32:47 <Tigger_> still 11.31 here
00:32:48 <Lish> The future is tough
00:33:02 <Lish> Nightttt
00:33:06 Quit: Lish ([email protected]) Quit: Leaving
00:43:13 <xm> Tigger_, when you talk of particles in game coding/animation, does one sprite count as a particle?
00:47:32 <Tigger_> yes
00:48:09 <xm> i wasnt sure. i initially assumed it meant units of pixels
00:48:38 <xm> so 50,000 particles of a large asteroid doesnt perform that much worse than 50,000 particles of much smaller asteroids
00:48:41 <xm> ?
00:49:18 <Tigger_> size does matter, since they use the graphic card's video memory
00:50:40 <xm> i was reading an HTML5/gaming book once. it said there was a difference between sprites and something else which ive forgotten
00:50:47 <Tigger_> but sprites are simply textures swapped in and out of vram, how they're used varies, such as a sprite can be attached to an object, and have collision detection methods, gravity methods, etc.
00:50:53 <xm> it's when you have a grid of different pictures and then gets cut up in memory
00:51:43 <xm> so load one image that gets cut up rather than a long series of them which is bad for browsers
00:52:29 <Tigger_> or a sprite could be used as a particle, which is far more limited, by design, to display a large number of them while being as light on system resources as possible
00:54:27 <Tigger_> the way it works is that with HTML5, Android, iOS and other limited systems there are pages of vram, always a power of 2 square resolution, such as 512x512, 1024x1024, etc.
00:55:02 <Tigger_> the more powerful the device the larger the vram pages are
00:55:13 <xm> so quite a step up each time
00:55:59 <Tigger_> anyway, all textures used in the game are laid out on these pages, trying to get as many onto the one page as possible
00:56:17 <Tigger_> as the target device can only display textures from one page at a time
00:56:51 <xm> im a little lost. ill look into it more lately. i want to redo that hologram thing i showed you from ages ago -- but done properly
00:56:52 <Tigger_> so you do things like all graphics for a particular level go into a specific vram page where they're all grouped together
00:57:11 <xm> i was doing it as i learnt HTML5/canvas and it was killing my PC
00:57:29 <xm> i found a way to improve it heaps but i forgot what it was]
00:57:47 <xm> look into it more later*
00:57:59 <Tigger_> if the game requires graphics resources across several vram pages, then it has to swap the textures from system ram to vram every frame
00:58:05 <xm> im just not sure if VRAM is referenced explicitly or if canvas does it for you
00:58:45 <xm> i did a very hacky job
00:58:55 <xm> it was more of a proof of concept
00:59:05 <Tigger_> this swapping is slow as you can imagine, swapping between two pages won't be noticeable, but if you have say ten pages that it's swapping in and out, then you'll definitely get a performance hit
00:59:28 <xm> the way i did it is that i had multiple canvas objects but all were hidden except one
01:00:09 <xm> because the hologram kept having lines shifting and sort of tearing you need the original otherwise it was keep degrading
01:00:18 <xm> would keep*
01:00:38 <xm> i think i also did some buffering thing too
01:00:44 <xm> ive still got the code actually
01:00:47 <xm> found it on a stick
01:00:50 <Tigger_> I'm not sure that it's relevant at all to canvas, since that has no access to vram at all, and so presumably the browser handles that completely
01:01:02 <Tigger_> under WebGL though you do have access to vram
01:01:17 <xm> i forget. is WebGL not supported with IE?
01:01:21 <Tigger_> it is now
01:01:36 <xm> i installed win 8.1 not so long ago
01:01:49 <xm> so it's safe to just use WebGL now?
01:01:55 <xm> WebGL is faster?
01:01:55 <Tigger_> yep
01:02:02 <Tigger_> much faster
01:02:11 <Tigger_> well for anything that uses graphics
01:02:12 <xm> well, i like the idea of doing somethign and having it work everywhere
01:02:22 <xm> does that cover audio too
01:02:24 <Tigger_> though it does NOT work everywhere
01:02:31 <xm> what do you mean?
01:03:02 <Tigger_> it only works acceptably well in Chrome, everything else is hit and miss, and even Chrome builds completely mess up things
01:03:06 <xm> i saw some snazzy audio things done in HTML5 not so long ago
01:03:09 <Tigger_> such as my space invaders game
01:03:11 <xm> like EQ graphics
01:03:40 <xm> i only intend to use rudimentary things. i will be either processing lines of graphics or pixels
01:03:43 <xm> raster stuff
01:04:14 <xm> i want to work on a fun thing for image privacy -- although a camera can get around it
01:04:42 <xm> i want to make a HTML5 thing where it displays someone's photo --- but the pixels are randomised. each frame doesnt have all the pixels there. there are black pixels too
01:04:48 <xm> but as it runs it averages out
01:05:14 <xm> i dont have the imagination/knowledge of games to do your stuff, but i can do simple demo things and of course with sounds/music
01:05:17 <xm> like 90s demo scene
01:06:05 <Tigger_> oh, apparently it has been 2015 for 5 minutes
01:06:17 <xm> not quite there for me
01:06:31 <xm> i may not even be employed by the end of 2015
01:06:41 Nick: DragonWaters is now known as Truth^Hurtzzz
01:06:52 <Tigger_> D$P lifestyle
01:06:58 <xm> very tempting
01:07:09 <xm> if my family died off i'd definitely do it
01:07:27 <xm> but then again some girls may not like it. but then again if im a D$P thug i wont care about the rest of the world
01:08:06 <xm> i remember in the wards there was this persian guy with a very attractive girlfriend
01:08:10 Nick: Truth^Hurtzzz is now known as johninja
01:08:33 Nick: johninja is now known as kelevra
01:08:34 <xm> but then i saw him years later... and he was wearing thongs, trackies and looked drugged up
01:09:10 <xm> i think they can tolerate an unorthodox lifestyle from you if theyre young but eventually they want $$$$$$$$$$$$$$$$$$$$$$$$$
01:11:10 Nick: kelevra is now known as pedoninja
01:13:03 Nick: pedoninja is now known as CornFarmer
01:13:10 <Tigger_> just swap for a younger one at that point
01:13:22 <xm> i never thought of that
01:13:49 <xm> if the movies are anything to go by there's always the young woman into the tortured and poor artist, but the father of the girl hates him
01:13:53 Join: Warren1984 ([email protected]) to #politicaldebate
01:13:57 <xm> ey Warren1984
01:14:01 <Warren1984> hey
01:14:05 <xm> what did you just get up to then?
01:14:08 <Warren1984> you can type really fast
01:14:16 <Warren1984> to hog's breath
01:14:23 <Warren1984> ate 1KG of pork ribs
01:14:26 <Warren1984> yummy
01:14:32 <Warren1984> hi all
01:14:33 <xm> Warren1984, i have you on notify and i also sit here waiting for you with welcoming messages prepared earler
01:14:35 <xm> 1KG!
01:14:52 <xm> you really do love hog's breath
01:15:11 <Warren1984> yeah its great
01:15:22 <Tigger_> poor pig
01:15:22 <Warren1984> Chang and JHoward think tony roma's is the best
01:15:23 <xm> they need photos of you wearing that bib on the wall
01:15:40 <Warren1984> Tigger_ the lion killed the pig and I killed the lion
01:15:46 <Warren1984> and stole it off the lion
01:15:55 <Warren1984> I killed the lion with my fishing knife
01:16:12 <Tigger_> a lion would eat you
01:16:13 <Warren1984> I stabbed it repeatedly in the neck
01:16:26 <Warren1984> not if you have a big knife
01:16:37 <Warren1984> one that chops shark's heads off
01:17:23 Nick: CornFarmer is now known as poorninja
01:17:35 <Warren1984> sipping baileys
01:17:49 <Warren1984> in my upper class SNOBBY INTJ bedroom
01:18:00 <xm> warren are you a bit drunk
01:18:06 <Warren1984> not yet xm
01:18:17 <xm> your next gadget: a breathalyser
01:18:24 <Warren1984> stewie griffin and Mr Burns are INTJ's
01:18:27 <xm> measure your BAL to 6 significant figures
01:18:54 <Warren1984> who disagree's that stewie griffin is not an INTJ
01:19:00 <Warren1984> I could do xm
01:22:46 <Tigger_> Warren1984, do you have fireworks?
01:24:29 <Warren1984> no
01:24:36 <Warren1984> where can you get them legally?
01:25:11 <Tigger_> you can't
01:26:06 <xm> ask Chang
01:26:41 <xm> someone told me they are legal in the NT. but my sources need checking
01:27:26 <Warren1984> everything can be done better with SOP's except hand-eye coordination type activities
01:27:29 <xm> Territory Day, celebrated today, is the only time of the year when members of the public can legally purchase and use fireworks.
01:27:44 <xm> http://www.abc.net.au/news/2014-07-01/nt-chief-minister-will-not-toughen-its-stance-on-fireworks/5562620
01:27:49 <xm> Warren1984, let
01:27:55 <Warren1984> let?
01:28:05 <xm> Warren1984, let's go to the NT and buy fireworks. put them on the end of spears and watch them fly
01:28:17 <Warren1984> sounds good xm
01:28:24 <xm> we can teach the locals white magic
01:28:47 Quit: Ozone ([email protected]) Ping timeout: 121 seconds
01:29:02 <Warren1984> people shove them up animals arse's
01:29:10 <Warren1984> some really sick people out there
01:29:27 <Warren1984> all so they may not fire upward
01:29:43 <Warren1984> I remember at one of the firework shows, several boats caught fire
01:29:54 <Ethanol> Entr'acte
01:29:56 <xm> yeah i remember that
01:33:17 <Warren1984> lol -> https://www.youtube.com/watch?v=KJCfUm21BsI
01:33:17 <progressive> Youtube Family Guy - Over
01:33:44 Join: bee_girl_ ([email protected]) to #politicaldebate
01:34:12 <Warren1984> wb bee_girl
01:35:24 <bee_girl_> Thanks Warren1984
01:36:38 Join: Lish ([email protected]) to #politicaldebate
01:40:05 Quit: Lish ([email protected]) Connection closed
01:40:57 Quit: bee_girl_ ([email protected]) Client exited
01:43:20 Join: bee_girl_ ([email protected]) to #politicaldebate
01:44:23 <Warren1984> wb again bee_girl
01:46:09 <Warren1984> xm what do you like to do in your play time
01:46:14 <Warren1984> I know you make music
01:46:17 Quit: bee_girl_ ([email protected]) Client exited
01:46:26 <Warren1984> and do some computer programming
01:46:49 <Warren1984> I think I know why people think being homosexual is wrong
01:47:03 <Warren1984> assuming that sex is only for reproductive reasons
01:47:07 <xm> are you implying i do gay things in my spare time lol
01:47:16 <xm> what's the logic for that change conversational change
01:47:30 <Warren1984> just went from 1 idea to the next xm
01:47:36 <xm> i watch films and tv shows sometimes Warren1984
01:47:43 <Warren1984> yeah
01:47:44 <xm> it's good to have a break and have variety
01:47:57 <Warren1984> work to live or live to work
01:47:59 <xm> i also do a bit of reading over various things
01:48:15 <Warren1984> I like cooking a variety of things
01:48:24 <Warren1984> and doing a variety maintenance of things
01:48:40 <xm> what i read can vary a bit. anything from religion to people's blogs
01:48:40 <Warren1984> maintenance things save money
01:49:02 <Warren1984> if you know how to do them yourself
01:49:32 <Warren1984> so back to what I was saying, if there was no pleasure in sex
01:49:42 <Warren1984> what would be the purpose of sex?
01:49:52 <xm> i prefer blogs because most of them arent paid to do it. so they're more likely to write about things they've experienced in the real world. journalists are sometimes too afraid to say it as it is
01:50:09 <Warren1984> blogs are just people's websites aren't they?
01:50:18 <xm> IRC is like a blog. you talk to people and learn about the real world
01:50:23 <xm> sort of
01:50:32 <xm> like a diary online except more elaborate and formal
01:50:49 <Warren1984> what IRC xm?
01:51:04 <xm> yes, i get to talk to a variety of people here and learn
01:51:37 <xm> if it wasnt for IRC/forums id be even more socially awkward
01:51:40 <Warren1984> I suppose that is how I use to learn
01:51:54 <Warren1984> you find out what common interests you have with others
01:52:16 <Warren1984> yeah internet def makes socializing easier
01:52:33 <xm> how shy do you rate me out of 10?
01:52:40 <xm> i am much different today than what i was during uni though
01:52:46 <Warren1984> because you can scan for your nick, incase you missed something with your name mentioned
01:52:59 <xm> i also remember things more when they are written than when i hear it
01:53:04 <xm> are you the same?
01:53:05 <Warren1984> yeah same
01:53:15 <Warren1984> because you can re-read it
01:53:20 <xm> exactly
01:53:26 <Warren1984> like instead of getting a phone call, I prefer an SMS
01:53:54 <xm> im generally the same except with parents
01:54:01 <xm> i only see my dad once a week
01:54:08 <xm> so i like to hear him in voice during other days
01:54:08 <Warren1984> I like to physically keep my diary with me, so that I can look into the future and not promise something I didn't have the time for
01:54:14 <xm> how often do you see your dad?
01:54:24 <Warren1984> a few times a week
01:54:29 <xm> you're better than me
01:54:53 <Warren1984> the only thing I hate about talking via the internet is it's not the same face to face
01:55:04 Quit: bee_girl ([email protected]) Quit: Linkinus - http://linkinus.com
01:55:12 <Warren1984> I mean if you wanted to feel a chicks warmth you can't over the net
01:55:17 <xm> lol
01:55:30 <xm> what about feeling their bitchiness online?
01:55:46 <Warren1984> the biggest thing that helped me reduce shyness is learning about the MBTI
01:55:53 <xm> you were once shy?
01:55:53 <Warren1984> and working in a call centre
01:56:00 <Warren1984> lol xm
01:56:07 <Warren1984> yes I was very shy
01:56:24 <Warren1984> but the main problem is I can get into fights quiet quickly
01:56:26 <xm> i couldnt buy food ages ago because of how shy i was
01:56:33 <xm> fights?
01:56:40 <Warren1984> arguements
01:56:59 <Warren1984> and then I try and analyze it and it only makes things worse
01:57:09 <xm> i wouldnt look into it too much
01:57:16 <xm> but i know how hard it is
01:57:19 <xm> i have hte same problem
01:57:24 <Warren1984> say for example I probably have had at least 100 people defriend me on facebook
01:57:32 <xm> it's part of mental illness to ruminate
01:57:37 <Warren1984> I say something offensive and they never tell me
01:57:47 <Warren1984> without telling me how can the problem be resolved?
01:58:19 <Warren1984> like when they were talking about the police targeting people
01:58:39 <xm> i just saw "pet rescue" advertised on TV
01:58:43 <xm> a game for ios/android
01:58:50 <xm> so they're even advertising mobile games now
01:58:51 <Warren1984> I took it a bit extreme and said they might as well take people with adhd and people with health concerns like being overweight
01:59:03 <Warren1984> 1 chick was a policy maker of road rules
01:59:04 <xm> Warren1984, i stacked on heaps of weight since hospital
01:59:10 Join: bee_girl ([email protected]) to #politicaldebate
01:59:11 <Warren1984> and she must have taken offense
01:59:12 <xm> you probably noticed it when we last met
01:59:24 <xm> my other friend told me too
01:59:32 <Warren1984> you were not really that fat
01:59:46 <xm> i need to lose more though next year
02:00:00 <xm> what is your ideal weight?
02:00:02 <Warren1984> the best thing you can do is get a garmin vivofit and walk further and further
02:00:14 <xm> i like walking but i hate the heat
02:00:21 <Warren1984> well my Psychiatrist said I should be 95KG for my height
02:00:29 <xm> how tall are you again?
02:00:35 <Warren1984> 180cm I think
02:00:42 <xm> how tall do you think i am
02:00:47 <Warren1984> about the same
02:00:51 <xm> i know you're taller
02:00:55 <xm> nah, you're a bit taller
02:01:02 <xm> well, after hospital i am taller
02:01:02 <Warren1984> maybe 183
02:01:06 <xm> LOL
02:01:09 <xm> oh right
02:01:11 <xm> you meant yourself
02:01:12 <xm> sorry
02:02:09 <xm> oh yoy didnt ID
02:03:19 <xm> anyway talk to you later. it's hit 11PM. i want to see what i can get done before midnight to feel good
02:03:33 <xm> ive not done much today. just had no inspiration
02:09:59 Quit: poorninja ([email protected]) Quit:
02:28:48 <Warren1984> new year countdown
02:28:54 <Warren1984> Wed Dec 31 23:28:04 2014
02:33:23 <Marttin> (@xm) DJ NIRVANA <- double lol
02:33:31 <Marttin> (@xm) your next gadget: a breathalyser
02:34:40 <Marttin> How many people is in your house warren?
02:36:09 <Marttin> You have spoken about prom.. i wonder if we can have hopes on him
02:36:28 <Warren1984> 2 Marttin
02:36:33 <Warren1984> My Mum and I
02:36:43 <Marttin> Oh thats quite lonely then
02:36:51 <Marttin> We will be 3 in mine
02:36:51 <Warren1984> Prom died exactly 1 year ago
02:37:01 Quit: Marttin ([email protected]) Quit: AndroIRC - Android IRC Client ( http://www.androirc.com )
02:37:19 Join: AndroUser ([email protected]) to #politicaldebate
02:37:29 <Warren1984> Wed Dec 31 23:36:38 2014
02:37:53 <Warren1984> runny stomach for some reason tonight
02:37:56 <AndroUser> Thats actually strange because the past year he left before 2014
02:38:21 <AndroUser> And we are waiting for him in 2015 now
02:38:41 <AndroUser> He should have been here until now + a couple of hours extra
02:38:52 <AndroUser> Anyway, im gonna sunbathe
02:39:03 <AndroUser> My aim for new year, get tanned
02:40:37 <Warren1984> AndroUser -> https://www.youtube.com/watch?v=EctG7NiXvKc
02:40:38 <progressive> Youtube Asian Rabbit - Family Guy
02:54:35 Quit: doctor ([email protected]) Quit:
03:01:10 <Warren1984> HAPPY NEW YEAR
03:01:15 <Warren1984> Thu Jan 01 00:00:24 2015
03:07:57 <Ethanol> meh
03:08:11 <xm> it is too
03:08:17 <xm> i didnt know for 7 minutes
03:09:20 <xm> AndroUser, how far are you from the mediterranean coastline?
03:10:56 <Ethanol> I'm not one to bother with New Years Resolutions, but the 1st of Jan always spells the end of my Christmas gluttony.
03:11:34 <Ethanol> what is left over will be stored until CNY
03:11:49 Quit: shape ([email protected]) Ping timeout: 121 seconds
03:12:13 <Ethanol> and not a moment too soon
03:13:15 <Ethanol> My body has undergone big changes since last Christmas. I have a lower tolerance to sugar, and even lower tolerance to oily food.
03:13:37 <xm> what is your favourite meal you're allowed to have?
03:14:57 <Ethanol> I've never thought about it, to be honest
03:15:24 <xm> im not sure if that means you can think of a few or you dont enjoy what you get
03:15:42 <Ethanol> I don't care much for food
03:15:49 <xm> oh right
03:15:50 <xm> same
03:15:55 <xm> im more into ... Dr Pepper
03:16:03 <xm> especially during summer
03:16:08 Join: shape ([email protected]) to #politicaldebate
03:16:41 <xm> i know one person on here that cant have soft drink as they cant burp or something
03:16:50 <xm> she had it once and she had to be taken to hospital
03:17:25 <AndroUser> (@xm) AndroUser, how far are you from the mediterranean coastline? <- 250 km or so
03:17:39 <xm> a bit far for daily trips then
03:17:45 Join: Fitz ([email protected]) to #politicaldebate
03:17:47 <AndroUser> Totally
03:18:10 <xm> does your family rent or own?
03:18:25 <AndroUser> In vacations?
03:18:30 <xm> your home
03:18:34 <AndroUser> Own
03:18:39 <xm> how many generations?
03:19:07 <AndroUser> Well hmmm the third counting me
03:19:28 <AndroUser> None of my grandparents were from alfajarin
03:19:38 <AndroUser> Both from the north
03:19:43 <xm> that name sounds moorish?
03:19:50 <AndroUser> Well, 4 of them actually
03:19:54 <AndroUser> Yes
03:20:04 <xm> they should rename all the cities and towns
03:20:08 <AndroUser> Hehe
03:20:28 <AndroUser> I think this didnt exist with the romans
03:20:29 <xm> alfajarin sounds like what a terrorist would scream before crashing a plane into a building
03:20:36 <AndroUser> XDDDD
03:20:49 <AndroUser> Rin is too weak for that
03:21:03 <AndroUser> But alfaja sounds terrorist
03:21:07 <xm> maybe the entire empire would have lasted longer if they forced all the towns to have romanised names
03:21:28 <xm> im just joking
03:21:34 <AndroUser> XD i know
03:21:48 <Warren1984> xm HAPPY NEW YEAR
03:21:49 <xm> ok, just not sure about lost in translation stuff at times
03:21:55 <xm> HAPPY NEW YEAR WARREN
03:22:05 <Warren1984> happy new year all
03:22:16 <xm> i feel sleepy already
03:22:16 <Warren1984> I still have heaps of bailey's left
03:22:26 <Warren1984> xm I think you have made a wise choice
03:22:38 <Warren1984> about prioritizing health over money
03:22:48 <xm> lol are you drunk now Warren1984
03:23:27 <Ethanol> drunk on Baileys?
03:23:34 <Warren1984> xm -> https://www.youtube.com/watch?v=EctG7NiXvKc
03:23:34 <progressive> Youtube Asian Rabbit - Family Guy
03:23:39 <Warren1984> nuh not yet drunk
03:23:48 <Ethanol> I think I'm feeling sick on Warren1984's behalf
03:23:50 <Warren1984> don't know if I want to get drunk
03:24:04 <xm> id advise you not to, Warren1984
03:24:05 <Warren1984> I want to get back in doing exercise I was going great
03:24:29 <xm> i had baileys years and years ago. i enjoyed it then. then years later it just made me sick
03:24:40 <Warren1984> maybe the cream
03:24:59 <Warren1984> the cream disguises lots of the whisky taste
03:26:17 <Ethanol> night all
03:30:37 Quit: Ethanol ([email protected]) Ping timeout: 121 seconds
03:42:29 Quit: Fitz ([email protected]) Quit:
03:56:24 Quit: hygeistic ([email protected]) Z-Lined
04:07:35 <Warren1984> did bin laden have any knowledge of engineering?
04:07:54 <Warren1984> because who ever planned the 9/11 must have a good understanding of engineering
04:08:45 <Warren1984> it wasn't planned professionally because it damaged other buildings near the twin towers
04:08:58 <Warren1984> it was planned to cause mass damage
04:09:19 <Warren1984> so that conspiracy theory is solved
04:23:54 <Warren1984> it's possible that 9/11 is an inside job but they involved terrorists from other countries
05:05:32 Part: shape ([email protected]) from #politicaldebate
05:07:04 Quit: Warren1984 ([email protected]) Quit:
07:02:11 Join: satie ([email protected]) to #politicaldebate
07:12:47 <satie> SEX
08:07:47 Quit: Glenn ([email protected]) Ping timeout: 121 seconds
08:08:41 * jefferson_daily slaps satie around a bit with a large trout
08:14:00 <satie> SEXY LADY
08:21:53 <jefferson_daily> ok
09:06:56 <satie> how the fuck can it be thursday
09:18:16 <satie> ???
09:18:26 Join: truvat ([email protected]) to #politicaldebate
09:19:33 <satie> http://www.xvideos.com/video1117223/megan_summers_dancing
09:26:32 Part: satie ([email protected]) from #politicaldebate (Leaving)
09:27:59 Quit: bee_girl ([email protected]) Connection closed
09:51:57 Join: Ethanol ([email protected]) to #politicaldebate
09:52:07 Mode: (by ChanOP) +h Ethanol
10:02:53 <Tigger_> http://nypost.com/2014/12/29/arrests-plummet-following-execution-of-two-cops/
10:02:55 <Tigger_> It has helped contribute to a nose dive in low-level policing, with overall arrests down 66 percent for the week starting Dec. 22 compared with the same period in 2013, stats show.
10:02:56 <Tigger_> Citations for traffic violations fell by 94 percent, from 10,069 to 587, during that time frame.
10:02:56 <Tigger_> Summonses for low-level offenses like public drinking and urination also plunged 94 percent — from 4,831 to 300.
10:02:56 <Tigger_> Even parking violations are way down, dropping by 92 percent, from 14,699 to 1,241.
10:02:56 <Tigger_> Drug arrests by cops assigned to the NYPD’s Organized Crime Control Bureau — which are part of the overall number — dropped by 84 percent, from 382 to 63.
10:04:05 <Tigger_> this is quite rational, now that cops know they'll suffer lawfare from trying to deal with black criminals, better just to stay in the donut shop
10:10:02 Join: ajnin ([email protected]) to #politicaldebate
10:10:02 Quit: ajnin ([email protected]) Excess flood
10:10:06 Join: ajnin ([email protected]) to #politicaldebate
10:10:15 Join: Ozone ([email protected]) to #politicaldebate
10:11:39 Quit: ajnin_ ([email protected]) Ping timeout: 121 seconds
11:10:53 Join: DragonWaters ([email protected]) to #politicaldebate
11:20:22 <Ethanol> the Hipsters of New York will now get to experience diversity to its fullest extent
11:21:30 <Ozone> hmmm, what happened?
11:25:23 <Ethanol> <Tigger_> http://nypost.com/2014/12/29/arrests-plummet-following-execution-of-two-cops/
11:26:32 <Tigger_> the withdrawal of policing will end up causing more blacks to be killed than ever, but that's ok as it's just blacks killing blacks, not racist
11:31:37 <Ozone> oh, hahaha
12:33:03 Quit: truvat ([email protected]) Quit: f00 oooo$$$$$$$$$$$$oooo
12:55:48 Join: NYEGuy ([email protected]) to #politicaldebate
12:55:58 Quit: NYEGuy ([email protected]) Quit:
13:11:13 Join: capricci ([email protected]) to #politicaldebate
13:44:46 Join: mannequin ([email protected]) to #politicaldebate
14:03:13 Join: Lish ([email protected]) to #politicaldebate
14:03:22 <Lish> hola
14:03:34 <jefferson_daily> holler :)
14:03:39 <Tigger_> hi Lish
14:03:51 <Lish> i got some of the soda stream pods
14:03:54 <Lish> from dick smiths
14:04:20 <Lish> i am drinking lemon lime at the moment
14:05:26 Quit: Lish ([email protected]) Changing hosts
14:05:26 Join: Lish ([email protected]) to #politicaldebate
14:05:31 <jefferson_daily> lish
14:05:38 <Lish> jefferson_daily
14:05:41 <jefferson_daily> do u know where to get carbonated soda bulbs?
14:05:47 <Lish> no
14:05:59 <jefferson_daily> those grey things u put in the soda machine
14:06:06 <Lish> oh the cylinders
14:06:10 <Lish> i think you can get them online
14:06:15 <Lish> or at target, kmart etc
14:06:20 <jefferson_daily> oh ok
14:06:25 <jefferson_daily> i use them for explosives
14:06:30 <Lish> sounds clever
14:06:45 <jefferson_daily> i can flatten your letterbox in 30 seconds
14:06:59 <Lish> im sure that'd make you feel like a big man
14:07:08 <jefferson_daily> YEs
14:07:09 <jefferson_daily> Yes
14:07:11 <Tigger_> woolworths has an exchange service for the sodastream cylinders
14:07:25 <jefferson_daily> i need them
14:07:36 <jefferson_daily> i can make big bombs trust me
14:07:40 <Tigger_> the sodastream ones could make a huge explosion
14:07:51 <jefferson_daily> yes
14:09:31 <Lish> the lemon lime is nice
14:09:35 <Lish> i also got the naturals Tigger_
14:09:42 <Lish> i will try them later
14:10:14 <Tigger_> excellent
14:10:51 <Lish> i got a 16gb micro sd card too for my new camnera
14:11:09 <Tigger_> only 16
14:11:27 <Lish> yeah
14:11:30 <jefferson_daily> fine wine n sunshine
14:11:31 <Lish> i dont need more than that
14:11:48 <Lish> i put the photos onto my ipad every night
14:12:00 <jefferson_daily> my mom got a ipad mini
14:12:05 <Tigger_> you may not need more than that, but higher numbers make me feel better
14:12:12 <Tigger_> 'mom
14:12:19 <Tigger_> 'mom', are you American?
14:12:24 <jefferson_daily> Perhaps
14:12:30 <Lish> 16gb gives 1800 photos
14:13:14 <Tigger_> not enough
14:13:21 Quit: mannequin ([email protected]) EOF from client
14:13:29 Join: mannequin ([email protected]) to #politicaldebate
14:13:36 Quit: DragonWaters ([email protected]) Quit:
14:13:43 <Tigger_> got to take photos of the cutlery on the ship, the towels, the linen, etc.
14:15:03 <Lish> nope
14:15:04 <Lish> loser
14:15:09 <Lish> i have two 4gb cards too
14:15:13 <Tigger_> that's what people do now
14:15:23 <Ethanol> since the camera will most likely get stolen, it's probably a good idea to upload photos to Facebook for instant likes/self-gratification as soon as possible
14:15:34 <Lish> i hate taking so many pictures you don't get to experience anythnig
14:15:55 <Lish> like last night when i was watching the fireworks, people were too busy taking video / photos and werent even watching it
14:16:01 <Lish> everything is seen through tiny screens lol
14:16:14 <Lish> nah i back up each night onto my ipad, and then just keep the memory cards when they get full
14:16:20 <Lish> so i have two back ups
14:16:20 <Tigger_> but now they can archive the fireworks
14:16:42 Join: Washington ([email protected]) to #politicaldebate
14:16:51 <Tigger_> do the x-ray machines at customs cause problems for memory cards?
14:17:27 <Lish> nope
14:17:33 Quit: mannequin ([email protected]) Ping timeout: 121 seconds
14:17:37 <Lish> i also have a memory card holder we lock in the safe
14:17:42 <Lish> that has all the full ones in there
14:17:47 <Lish> we use the canon dslr mostly
14:18:01 <Lish> but my point and shoot is for when we dont want to lug the other one around
14:18:19 <Lish> i dont like to use my phone because ill probably drop it lol so i either dont take it or just leave it in the bag
14:18:53 <jefferson_daily> I got a dildo in my hand bag
14:18:55 <Tigger_> have an entire holiday of photos that are just all selfies of you in various locations, showing little or nothing of the actual location
14:19:54 <Lish> no thanks
14:20:07 <Lish> my sister and i were joking around though about getting a selfie stick
14:20:12 Join: Warren1984 ([email protected]) to #politicaldebate
14:20:38 <Warren1984> hi all
14:21:02 <Tigger_> hi Warren1984
14:21:06 <Tigger_> what's a selfie stick?
14:21:21 <Warren1984> selfie stick?
14:22:48 <Lish> http://en.wikipedia.org/wiki/Selfie_stick
14:23:25 <Ozone> haha, those were given out to much hilarity at my work secret santa
14:24:18 <Tigger_> The CEO of online Australian electronics retailer Kogan.com launched a "Zuckerberg Selfie Stick" in 2013, sending one to Mark Zuckerberg who he noted had never publicly posted a selfie photo.[3][5][6]
14:24:46 <Tigger_> zuckerberg doesn't use facebook much himself
14:25:00 <Lish> i wanted to get one for christmas
14:25:02 <Lish> but i didnt get one
14:25:03 <Lish> :(
14:25:09 <Lish> its shameful to buy your own haha
14:25:54 <Ozone> hahahaha
14:25:55 <Tigger_> why?
14:26:08 <Warren1984> why not just get someone to take a photo of you?
14:26:20 <Lish> because they are fun
14:26:28 <Lish> and they might run off with your phone
14:28:04 <Warren1984> doing selfies would be good for remembering new people's names
14:28:29 <Ethanol> Warren1984 gets it
14:28:48 <Tigger_> they would have to hold their name up for the camera though?
14:28:55 <Lish> lol
14:29:58 Quit: capricci ([email protected]) Connection closed
14:30:54 <Lish> i have so many photos
14:31:03 <Lish> i am just looking through my iphoto
14:31:52 <Tigger_> does anyone ever look at them again?
14:32:09 <Tigger_> back when we had film cameras, people seemed to actually revisit their old photos more
14:33:08 <Lish> i look at them all the tim
14:33:12 <Lish> i have 200g
14:33:25 <Lish> i am going to make a photo album through iphoto i think for our last holiday
14:33:28 <Lish> they are really cool
14:35:44 <Tigger_> do people still print photos out and put them in albums?
14:36:20 <Lish> some people i think
14:36:28 <Lish> but you can make electronic albums now
14:36:32 <Lish> and they print them out like books
14:36:34 <Lish> they are neat
14:36:42 <Lish> so you can use them as a coffee table book or something
14:42:47 <Tigger_> aborigines believe that when someone takes your photo they're stealing your soul
14:43:08 <Tigger_> there might be some wisdom to this idea
14:44:20 <Lish> yeah i know
14:44:22 <Lish> nah i doubt it
14:45:33 <Lish> i feel like i have a lot of things to do
14:45:36 <Lish> but no energy to do them
14:45:50 <Tigger_> what things?
14:46:19 <Lish> things for the holiday
14:46:31 <Lish> i should also do some filing/scanning of my husbands work receipts
14:46:35 <Lish> i am like 6 months behind
14:46:38 <Tigger_> when is it?
14:46:47 <Lish> the holiday?
14:46:51 <Lish> end of march
14:46:55 <Tigger_> ah
14:46:58 <Lish> i just need to finalise a few bookings
14:47:03 <Lish> and find out what travel vaccinations we need
14:48:08 <Tigger_> I don't think I'd want to go to a place that requires vaccinations
14:48:17 <Lish> LOL
14:48:18 <Lish> oops
14:48:19 <Lish> caps
14:48:35 <Lish> we need yellow fever
14:48:45 <Lish> because of colombia
14:49:07 <Tigger_> I didn't know it still existed
14:50:42 <Lish> seems to still be a thing
14:50:46 <Lish> if we go to colombia
14:50:51 <Lish> and dont have yellow fever vac
14:51:00 <Lish> then we cant get into costa rica and nicaragua
14:51:19 <jefferson_daily> ill stick with u cuz thats the bottom line
14:55:03 <Tigger_> To prevent introduction of the virus, some countries demand previous vaccination of foreign visitors if they have passed through yellow fever areas. Vaccination has to be proven in a vaccination certificate which is valid 10 days after the vaccination and lasts for 10 years.
14:55:21 <ajnin> yellow fever
14:56:36 <Lish> yeah
14:56:39 <Lish> thats it
14:56:59 <Lish> expedia is pissing me off
14:57:05 <Tigger_> why?
14:57:18 <Lish> im trying to extend a booking
14:57:28 <Lish> and it keeps erroring out on submit for some reason
15:02:15 <Lish> im bored
15:02:26 <jefferson_daily> lish lish lish lish
15:02:36 <jefferson_daily> :)
15:02:51 <Tigger_> I am extremely tired today, can barely keep my eyes open
15:03:45 <Lish> how come?
15:03:52 <Tigger_> dunno
15:03:55 <jefferson_daily> Oh lordy
15:04:02 <jefferson_daily> Hobbit battle of the five armies
15:04:04 <jefferson_daily> ()_()
15:04:09 <Lish> i might shoot baskets later
15:05:08 <jefferson_daily> what gun u usin
15:05:18 <jefferson_daily> colt 45?
15:05:27 <Tigger_> the only interesting thing about the Hobbit films is that you can read the book faster than watch the films
15:10:25 <Lish> the hobit films are bad
15:10:31 <Lish> well ive never seen them
15:10:34 <Lish> but i assume they are bad
15:11:22 <Tigger_> somebody will probably edit the blurays down to only containing what is in the book, perhaps that would be alright
15:12:32 <Ozone> you'd have about 15 minutes of footage left
15:13:07 <Tigger_> much better
15:13:12 <Lish> lol
15:16:50 <jefferson_daily> heh
15:16:52 <jefferson_daily> you guise
15:17:31 <jefferson_daily> be back soon goin for a BumJack
15:30:40 Join: Glenn ([email protected]) to #politicaldebate
15:35:26 Quit: Lish ([email protected]) Quit: Textual IRC Client: www.textualapp.com
15:42:00 <Ozone> a bumjack?
15:42:53 <Ozone> a bumjack?
15:49:00 <jefferson_daily> yea finished now
15:50:00 <Ozone> is that some form of masturbation?
15:50:00 <jefferson_daily> perhaps
15:50:04 <jefferson_daily> yea finished now
15:50:53 <Ozone> is that some form of masturbation?
15:51:00 <jefferson_daily> bumjack
15:51:00 <jefferson_daily> to have anal sex
15:51:00 <jefferson_daily> Hey bigboy how about a bumjack?
15:51:00 <jefferson_daily> bum jack
15:51:00 <jefferson_daily> the exercise of anal sex with one partners arsehole masturbating the others penis.
15:51:00 <jefferson_daily> After we sucked each other off i gave the stud a bum jack he would never forget
15:51:00 <jefferson_daily> Bum Jack
15:51:00 <jefferson_daily> The act of stealing something through burglary or mugging. Perpetrated by a homeless person.
15:51:00 <jefferson_daily> Sam: Dude my backpack is gone; I left it in the park and now it's not there.
15:51:00 <jefferson_daily> Matt: I bet you got bum jacked, there are hundreds of 'em in that park.
15:51:33 <jefferson_daily> perhaps
15:52:17 <jefferson_daily> bumjack
15:52:17 <jefferson_daily> to have anal sex
15:52:17 <jefferson_daily> Hey bigboy how about a bumjack?
15:52:26 <jefferson_daily> bum jack
15:52:27 <jefferson_daily> the exercise of anal sex with one partners arsehole masturbating the others penis.
15:52:27 <jefferson_daily> After we sucked each other off i gave the stud a bum jack he would never forget
15:52:43 <jefferson_daily> Bum Jack
15:52:43 <jefferson_daily> The act of stealing something through burglary or mugging. Perpetrated by a homeless person.
15:52:43 <jefferson_daily> Sam: Dude my backpack is gone; I left it in the park and now it's not there.
15:52:43 <jefferson_daily> Matt: I bet you got bum jacked, there are hundreds of 'em in that park.
15:56:00 <Washington> OLOLOLOLOLOLOLOLOLOL
15:57:29 <Washington> OLOLOLOLOLOLOLOLOLOL
16:04:55 Join: LamarcusSkylooter ([email protected]) to #politicaldebate
16:07:47 Quit: Tigger_ ([email protected]) Ping timeout: 121 seconds
16:08:34 Join: bee_girl ([email protected]) to #politicaldebate
16:10:00 <jefferson_daily> beee girlllll
16:10:00 <jefferson_daily> hey honey
16:11:07 <jefferson_daily> beee girlllll
16:11:09 <jefferson_daily> hey honey
16:30:34 Join: vesiculation ([email protected]) to #politicaldebate
16:30:35 Quit: vesiculation ([email protected]) Z-Lined
16:43:16 Nick: Washington is now known as Washington_Daily
16:44:00 <jefferson_daily> lolol
16:44:00 <jefferson_daily> greeting washinton daily
16:44:55 <jefferson_daily> lolol
16:45:03 <jefferson_daily> greeting washinton daily
16:46:00 <Warren1984> [11:27] <Warren1984> doing selfies would be good for remembering new people's names, although its more for chicks than men
16:47:00 <Warren1984> and xm came up with something very good
16:47:00 <Warren1984> pressing tab on youtube
16:47:09 <Warren1984> [11:27] <Warren1984> doing selfies would be good for remembering new people's names, although its more for chicks than men
16:47:53 <Warren1984> and xm came up with something very good
16:48:01 <Warren1984> pressing tab on youtube
16:57:52 Join: noncatechizable ([email protected]) to #politicaldebate
17:29:08 Quit: Washington_Daily ([email protected]) Connection closed
17:29:18 Join: Washington_Daily ([email protected]) to #politicaldebate
17:30:07 Nick: Washington_Daily is now known as Washington
17:30:13 Nick: Washington is now known as Washington_Daily
17:51:02 Join: Fitz ([email protected]) to #politicaldebate
18:17:38 Join: croweater ([email protected]) to #politicaldebate
18:18:48 Quit: croweater ([email protected]) Quit:
18:25:00 <Lish> Pink grapefruit soda stream
18:26:00 <Lish> AndroUser - skips?
18:26:03 Join: Lish ([email protected]) to #politicaldebate
18:26:43 <Lish> Pink grapefruit soda stream
18:26:50 <Lish> AndroUser - skips?
18:30:35 Join: satie ([email protected]) to #politicaldebate
18:34:00 <jefferson_daily> nope
18:34:00 <jefferson_daily> its shads!
18:34:00 <satie> me and the wife live off the DSP
18:34:00 <satie> rofll
18:34:00 <jefferson_daily> i live of dsp too
18:35:00 <Lish> Losers
18:35:00 <jefferson_daily> lish is a loser
18:35:01 <jefferson_daily> nope
18:35:07 <jefferson_daily> its shads!
18:35:08 <satie> me and the wife live off the DSP
18:35:25 <satie> rofll
18:35:38 <jefferson_daily> i live of dsp too
18:36:00 <satie> Lish, hows your husband ?
18:36:05 <Lish> Losers
18:36:21 Quit: pikkaachu ([email protected]) Ping timeout: 121 seconds
18:36:22 <jefferson_daily> lish is a loser
18:37:00 <satie> hello?
18:37:00 <satie> talk to me :)
18:37:00 <Lish> Hello
18:37:25 <satie> Lish, hows your husband ?
18:38:00 <Lish> My husband is fine thanks
18:38:00 <Lish> Why do you ask?
18:38:06 <satie> hello?
18:38:08 <satie> talk to me :)
18:38:45 <Lish> Hello
18:38:49 <Lish> My husband is fine thanks
18:38:53 <Lish> Why do you ask?
18:42:00 <satie> So yeah I thought I put this thing in the bin right
18:42:00 <satie> so I went out and took the rubbish bag out of the bin right
18:42:00 <satie> and there was this food I chucked out in there and there was all maggots eating it
18:43:00 <satie> fucken gross
18:43:00 <satie> and there was so many ants
18:43:00 <Lish> Gross
18:43:00 <satie> how do they get in the bin ?
18:43:00 <satie> i wonder
18:43:00 <satie> there are so many ants in my house
18:43:00 <satie> i cant get rid of them
18:43:20 Join: KFC_BBL ([email protected]) to #politicaldebate
18:43:34 <satie> So yeah I thought I put this thing in the bin right
18:43:38 <satie> so I went out and took the rubbish bag out of the bin right
18:43:44 <satie> and there was this food I chucked out in there and there was all maggots eating it
18:43:53 <satie> fucken gross
18:43:57 <satie> and there was so many ants
18:44:00 <Lish> Dunno
18:44:00 <satie> sometimes there are bob tail lizards
18:44:00 <satie> big ones
18:44:00 <satie> or whatever theyre called
18:44:14 <Lish> Gross
18:44:25 <satie> how do they get in the bin ?
18:44:27 <satie> i wonder
18:44:43 <satie> there are so many ants in my house
18:44:47 <satie> i cant get rid of them
18:45:06 <Lish> Dunno
18:45:33 <satie> sometimes there are bob tail lizards
18:45:34 <satie> big ones
18:45:43 <satie> or whatever theyre called
18:46:00 <satie> holy shit
18:46:00 <satie> there is a sink hole in my kitchen
18:46:00 <Lish> Who are u
18:46:00 <satie> I am LJ Hookers son
18:46:00 <Lish> Ok
18:47:00 <satie> Son of LJ hooker
18:47:22 <satie> holy shit
18:47:24 <satie> there is a sink hole in my kitchen
18:47:30 <Lish> Who are u
18:47:41 <satie> I am LJ Hookers son
18:47:47 <Lish> Ok
18:48:00 <satie> Lish, Are you looking for a house ?
18:48:00 <satie> For you and the nigger
18:48:00 <satie> Lish, are you looking for a house ?
18:48:46 <satie> Son of LJ hooker
18:49:00 <Lish> No
18:49:00 <satie> How much is your house worth ?
18:49:00 <jefferson_daily> lookin for a bumjack?
18:49:00 <Lish> 500k
18:49:00 <satie> for 500k in Perth you would live in a poor suburb
18:49:00 <satie> are you poor Lish
18:49:14 <satie> Lish, Are you looking for a house ?
18:49:18 Quit: Lish ([email protected]) Connection closed
18:49:27 <satie> For you and the nigger
18:49:43 Join: Lish ([email protected]) to #politicaldebate
18:49:48 <satie> Lish, are you looking for a house ?
18:49:54 <Lish> No
18:50:00 <satie> I live in peppermint grove
18:50:00 <satie> where do you live ?
18:50:00 <satie> the ghetto
18:50:00 <Lish> No
18:50:00 <Lish> I'm not poor im sensible
18:50:01 <satie> How much is your house worth ?
18:50:02 <jefferson_daily> lookin for a bumjack?
18:50:20 <Lish> 500k
18:50:38 <satie> for 500k in Perth you would live in a poor suburb
18:50:41 <satie> are you poor Lish
18:50:50 <satie> I live in peppermint grove
18:50:52 <satie> where do you live ?
18:50:53 <satie> the ghetto
18:50:59 Join: pikkaachu ([email protected]) to #politicaldebate
18:51:00 <satie> if you weren't poor you would live in a million dollar house
18:51:00 <Lish> Ok
18:51:00 <satie> Lish, Do you still live with your parents ?
18:51:06 <Lish> No
18:51:16 <Lish> I'm not poor im sensible
18:52:00 <satie> You don't really have a black husband
18:52:00 <satie> do you
18:52:00 <Lish> No
18:52:00 <Lish> I live with my husband
18:52:00 <satie> Why did you make a fake party ?
18:52:19 <satie> if you weren't poor you would live in a million dollar house
18:52:26 <Lish> Ok
18:52:43 <satie> Lish, Do you still live with your parents ?
18:53:00 <satie> no sir
18:53:00 <satie> Lish, call me sir
18:53:00 <Lish> You're heaps annoying
18:53:08 <satie> You don't really have a black husband
18:53:09 <satie> do you
18:53:19 <Lish> No
18:53:24 <Lish> I live with my husband
18:53:26 <satie> Why did you make a fake party ?
18:54:00 <satie> Thats heaps annoying SIR
18:54:00 <Lish> Nope
18:54:00 <satie> ahhh
18:54:00 <satie> yes
18:54:07 <satie> no sir
18:54:12 <satie> Lish, call me sir
18:54:22 <Lish> You're heaps annoying
18:55:00 <Lish> Don't think so
18:55:00 <jefferson_daily> satie had bumsex with this dood
18:55:00 <Lish> Seems right
18:55:05 <satie> Thats heaps annoying SIR
18:55:10 <Lish> Nope
18:55:14 <satie> ahhh
18:55:15 <satie> yes
18:56:01 <Lish> Don't think so
18:56:01 Quit: Bert187 ([email protected]) Quit:
18:56:02 <jefferson_daily> satie had bumsex with this dood
18:56:07 <Lish> Seems right
18:57:00 <satie> jefferson_daily's is a rockspider
18:58:00 <Lish> Wow
18:58:00 <Lish> So offensive
18:58:37 <satie> jefferson_daily's is a rockspider
18:59:05 <Lish> Wow
18:59:08 <Lish> So offensive
19:02:16 Quit: Fitz ([email protected]) Quit:
19:22:53 Quit: Lish ([email protected]) Connection closed
19:23:00 <satie> hmm this guy hasn't updated his youtube channel
19:23:00 <satie> i think hes dead
19:23:23 Join: Lish ([email protected]) to #politicaldebate
19:24:00 <satie> im serious
19:24:00 <xm> he might be in a mental ward
19:24:00 <xm> ive woken up really late...
19:24:00 <xm> oops
19:24:37 <satie> hmm this guy hasn't updated his youtube channel
19:24:45 <satie> i think hes dead
19:25:00 <satie> this was his last video
19:25:00 <satie> https://www.youtube.com/watch?v=WcN_9uIMDUo
19:25:00 <progressive> 1,0 You0,5tube  More pointless doctors visits
19:25:07 <satie> im serious
19:25:29 <xm> he might be in a mental ward
19:25:35 <xm> ive woken up really late...
19:25:39 <xm> oops
19:26:00 <satie> he thinks hes a targeted individual
19:26:00 <satie> has morgellons or something
19:26:47 <satie> this was his last video
19:26:47 <satie> https://www.youtube.com/watch?v=WcN_9uIMDUo
19:26:48 <progressive> Youtube More pointless doctors visits
19:27:01 Quit: Lish ([email protected]) Ping timeout: 136 seconds
19:27:17 <satie> he thinks hes a targeted individual
19:27:43 <satie> has morgellons or something
19:36:00 <Lish> Eating too muchh
19:36:00 <Lish> Omg christmas killed me
19:36:23 Join: Lish ([email protected]) to #politicaldebate
19:37:25 <Lish> Eating too muchh
19:37:29 <Lish> Omg christmas killed me
19:40:00 <satie> make us a coffee Lish
19:40:00 <Lish> Nope
19:40:00 <Lish> I don't have coffee at my house
19:40:00 <satie> white 2 sugars thanks
19:40:55 <satie> make us a coffee Lish
19:41:00 <Lish> Tea?
19:41:00 <satie> ok teta then
19:41:00 <Lish> Ok
19:41:14 <Lish> Nope
19:41:19 <Lish> I don't have coffee at my house
19:41:32 <satie> white 2 sugars thanks
19:41:51 <Lish> Tea?
19:42:04 <satie> ok teta then
19:42:29 <Lish> Ok
19:43:00 <satie> ok
19:44:28 <satie> ok
19:49:00 <satie> i think i might make some pasta tonight
19:49:00 <satie> with salmon
19:49:00 <Lish> Ok
19:49:00 <Lish> I might make macaroni and cheese
19:50:00 <satie> I have some nice jamie oliver sauce im going to use
19:50:00 <Lish> Cool
19:50:00 <Lish> Mines a packet mix
19:50:00 <satie> is that all
19:50:00 <satie> macaroni and cheese?
19:50:00 <satie> no meat?
19:50:26 <satie> i think i might make some pasta tonight
19:50:27 <satie> with salmon
19:50:32 <Lish> Ok
19:50:38 <Lish> I might make macaroni and cheese
19:51:00 <satie> I have some nice jamie oliver sauce im going to use
19:51:00 <Lish> Yep
19:51:00 <Lish> That's it
19:51:00 <satie> You should eat some fish
19:51:00 <satie> it makes you live longer
19:51:00 <Lish> Nah I don't like fish
19:51:00 <Lish> Makes me throw up
19:51:00 <Lish> I think I'm allergic
19:51:07 <Lish> Cool
19:51:11 <Lish> Mines a packet mix
19:51:28 <satie> is that all
19:51:33 <satie> macaroni and cheese?
19:51:38 <satie> no meat?
19:51:55 <Lish> Yep
19:51:56 <Lish> That's it
19:52:00 <satie> fish is really good for you
19:52:00 <satie> so are oranges
19:52:00 <satie> grape fruits
19:52:00 <Lish> lol
19:52:00 <satie> im serious
19:52:00 <Lish> I know
19:52:35 <satie> You should eat some fish
19:52:40 <satie> it makes you live longer
19:52:41 <Lish> Nah I don't like fish
19:52:43 <Lish> Makes me throw up
19:52:48 <Lish> I think I'm allergic
19:52:57 <satie> fish is really good for you
19:53:00 <satie> if you can't eat fish then something must be wrong with you
19:53:00 <Lish> Why
19:53:00 <satie> why
19:53:00 <satie> because if you dont eat you die
19:53:00 <satie> you need meat to live
19:53:10 <satie> so are oranges
19:53:17 <satie> grape fruits
19:53:41 <Lish> lol
19:53:46 <satie> im serious
19:53:49 <Lish> I know
19:53:57 <satie> if you can't eat fish then something must be wrong with you
19:54:00 <Lish> Yeah but I eat meat
19:54:08 <Lish> Why
19:54:37 <satie> why
19:54:41 <satie> because if you dont eat you die
19:54:44 <satie> you need meat to live
19:55:00 <satie> chicken ?
19:55:00 <Lish> Yes
19:55:00 <satie> chicken is one of the worst meats
19:55:00 <Lish> Why
19:55:00 <satie> its bottom feed
19:55:00 <Lish> lol
19:55:42 <Lish> Yeah but I eat meat
19:55:56 <satie> chicken ?
19:55:59 <Lish> Yes
19:56:00 <Lish> I eat all meat, just not fish
19:56:00 <Lish> And not everyday
19:56:00 <satie> fish is the only meat you should eat
19:56:00 <Lish> Ah well
19:56:11 <satie> chicken is one of the worst meats
19:56:33 <Lish> Why
19:56:42 <satie> its bottom feed
19:56:47 <Lish> lol
19:56:53 <Lish> I eat all meat, just not fish
19:56:55 <Lish> And not everyday
19:57:02 <satie> fish is the only meat you should eat
19:57:08 <Lish> Ah well
20:00:00 <satie> Lish, do you eat pork ?
20:01:00 <satie> get some pork on your fork
20:01:00 <Lish> Sometimes
20:01:00 <Lish> I did at Christmas
20:01:05 Quit: xm ([email protected]) Quit: BAM
20:01:47 <satie> Lish, do you eat pork ?
20:01:52 <satie> get some pork on your fork
20:01:54 <Lish> Sometimes
20:02:07 <Lish> I did at Christmas
20:14:00 <satie> lol
20:15:42 <satie> lol
20:16:27 Quit: Warren1984 ([email protected]) Quit:
20:20:36 Quit: Lish ([email protected]) Quit: Leaving
20:26:36 Quit: Ethanol ([email protected]) Ping timeout: 121 seconds
20:52:37 Join: Ethanol ([email protected]) to #politicaldebate
20:52:37 Mode: (by ChanOP) +h Ethanol
20:54:27 Quit: noncatechizable ([email protected]) Z-Lined
21:12:49 Join: Fitz ([email protected]) to #politicaldebate
21:19:09 Join: Picard ([email protected]) to #politicaldebate
21:24:41 Join: RoseWest ([email protected]) to #politicaldebate
21:55:31 Join: slower ([email protected]) to #politicaldebate
22:09:49 Quit: bee_girl ([email protected]) Quit: Linkinus - http://linkinus.com
22:16:19 Quit: RoseWest ([email protected]) Quit:
22:18:00 <Warren1984> who is KFC_BBL
22:19:00 <satie> cof
22:19:34 Join: Warren1984 ([email protected]) to #politicaldebate
22:19:48 <Warren1984> who is KFC_BBL
22:20:00 <Warren1984> the good thing about driving the forklift is you can keep it at a consistent pace
22:20:00 <Warren1984> I thought it was bretting_dell
22:20:00 <Warren1984> hey bee_girl
22:20:00 <satie> might be
22:20:00 <bee_girl> https://www.youtube.com/watch?v=88nzdqwCHM0
22:20:49 <satie> cof
22:20:52 <Warren1984> the good thing about driving the forklift is you can keep it at a consistent pace
22:21:00 <progressive> 1,0 You0,5tube  Bob Dylan - Went To See The Gypsy
22:21:00 <Warren1984> yay at no. 2 place in the challenge
22:21:00 <Warren1984> I got to beat them
22:21:00 <bee_girl> Warren1984
22:21:00 <satie> LamarcusSkylooter, Brendan oconnell thinks hes going to cost Australia 600 million dollars by making middle eastern countries like Iran not buy Australian meat
22:21:01 Join: bee_girl ([email protected]) to #politicaldebate
22:21:05 <Warren1984> I thought it was bretting_dell
22:21:08 <Warren1984> hey bee_girl
22:21:18 <satie> might be
22:21:50 <bee_girl> https://www.youtube.com/watch?v=88nzdqwCHM0
22:21:50 <progressive> Youtube Bob Dylan - Went To See The Gypsy
22:21:55 <Warren1984> yay at no. 2 place in the challenge
22:22:00 <satie> he says hes going to stop major meat deals rofl
22:22:00 <satie> Australia does export a lot of meat
22:22:00 <LamarcusSkylooter> Iran would be shooting themselves in the foot, as another buyer would just step up
22:22:01 <Warren1984> I got to beat them
22:22:11 <bee_girl> Warren1984
22:22:24 <satie> LamarcusSkylooter, Brendan oconnell thinks hes going to cost Australia 600 million dollars by making middle eastern countries like Iran not buy Australian meat
22:23:00 <satie> The above combined events are going to cost the Western Australian state $600 million dollars in wheat and meat deals with the Middle East and Iran. I make the solemn promise I will make it happen.
22:23:00 <satie> rofl
22:23:04 <satie> he says hes going to stop major meat deals rofl
22:23:37 <satie> Australia does export a lot of meat
22:23:40 <LamarcusSkylooter> Iran would be shooting themselves in the foot, as another buyer would just step up
22:24:00 <LamarcusSkylooter> lol
22:24:00 <satie> And to think I recieved three years jail for "offending" a jew and his jewish community. I think the Perth establishment are either on drugs or completely mentally ill if they think they are going to get away with it.
22:24:00 <satie> hahaha
22:24:27 <satie> The above combined events are going to cost the Western Australian state $600 million dollars in wheat and meat deals with the Middle East and Iran. I make the solemn promise I will make it happen.
22:24:40 <satie> rofl
22:25:30 <LamarcusSkylooter> lol
22:25:35 <satie> And to think I recieved three years jail for "offending" a jew and his jewish community. I think the Perth establishment are either on drugs or completely mentally ill if they think they are going to get away with it.
22:25:37 <satie> hahaha
22:29:00 <satie> Brendans problem is he just has to say hes sorry, admit defeat he cant beat the system but he wants to fight them
22:30:19 <satie> Brendans problem is he just has to say hes sorry, admit defeat he cant beat the system but he wants to fight them
22:31:41 Quit: Ozone ([email protected]) Ping timeout: 121 seconds
22:34:00 <Warren1984> LamarcusSkylooter what are your priorities and deadlines tomorrow
22:34:00 <Warren1984> It's hard to challenge people on the garmin vivofit
22:34:00 <LamarcusSkylooter> no real deadlines
22:34:00 <Warren1984> because you have to still do all your other work
22:34:53 <Warren1984> LamarcusSkylooter what are your priorities and deadlines tomorrow
22:35:00 <Warren1984> no deadlines = procrastination
22:35:00 <bee_girl> good evening LamarcusSkylooter
22:35:00 <LamarcusSkylooter> I'll probably do some more game programming, but it's been so humid I've been struggling with motivation
22:35:00 <LamarcusSkylooter> hi bee_girl
22:35:36 <Warren1984> It's hard to challenge people on the garmin vivofit
22:35:40 <LamarcusSkylooter> no real deadlines
22:35:49 <Warren1984> because you have to still do all your other work
22:36:05 <Warren1984> no deadlines = procrastination
22:36:08 <bee_girl> good evening LamarcusSkylooter
22:36:25 <LamarcusSkylooter> I'll probably do some more game programming, but it's been so humid I've been struggling with motivation
22:36:27 <LamarcusSkylooter> hi bee_girl
22:37:00 <Ethanol> And now for a message from Peter Hitchiner, chairperson of the Information, Telecommunications, and Electronics Engineering (ITEE) College of Engineers Australia...
22:38:00 <Ethanol> This is my last column for Monitor as Chair of ITEE College Board in 2014. I feel the College Board has achieved more this year on account of holding 4 meetings (three by videoconference) which has enabled a continuity of activity between meetings and greater exchange of information (data).
22:38:00 <Ethanol> Bravo Peter! Bravo!
22:38:40 <Ethanol> And now for a message from Peter Hitchiner, chairperson of the Information, Telecommunications, and Electronics Engineering (ITEE) College of Engineers Australia...
22:38:50 <Ethanol> This is my last column for Monitor as Chair of ITEE College Board in 2014. I feel the College Board has achieved more this year on account of holding 4 meetings (three by videoconference) which has enabled a continuity of activity between meetings and greater exchange of information (data).
22:39:05 <Ethanol> Bravo Peter! Bravo!
22:40:00 <Warren1984> Lish you can turn that 28.f.melb to 30.f.melb
22:40:00 <LamarcusSkylooter> he should boast of the carbon emissions saved by videoconferencing
22:40:00 <Lish> I'm not 30
22:40:00 <Warren1984> you will be this year
22:40:00 <Lish> Yep
22:40:00 <Ethanol> Professional membership is $483 per annum
22:40:11 Join: Lish ([email protected]) to #politicaldebate
22:40:59 <Warren1984> Lish you can turn that 28.f.melb to 30.f.melb
22:41:00 <LamarcusSkylooter> so what are they supposed to do?
22:41:00 <LamarcusSkylooter> and how many paid members do they have?
22:41:00 <Ethanol> advocacy, accreditation and public awareness
22:41:20 <LamarcusSkylooter> he should boast of the carbon emissions saved by videoconferencing
22:41:25 <Lish> I'm not 30
22:41:35 <Warren1984> you will be this year
22:41:38 <Lish> Yep
22:41:44 <Ethanol> Professional membership is $483 per annum
22:41:56 <LamarcusSkylooter> so what are they supposed to do?
22:42:00 <Picard> Female short-nosed fruit bats are the only adult animals other than humans that perform oral sex on their partners.
22:42:00 <Ethanol> they also publish a monthly magazine, of which 2-3 pages are dedicated to electronic and software engineering
22:42:07 <LamarcusSkylooter> and how many paid members do they have?
22:42:47 <Ethanol> advocacy, accreditation and public awareness
22:43:38 <Picard> Female short-nosed fruit bats are the only adult animals other than humans that perform oral sex on their partners.
22:43:44 <Ethanol> they also publish a monthly magazine, of which 2-3 pages are dedicated to electronic and software engineering
22:44:00 <Ethanol> they have 85,000 members, half of which are non-paying student members
22:45:00 <Tigger_> so about $20 million revenue
22:45:09 <Ethanol> they have 85,000 members, half of which are non-paying student members
22:45:54 Nick: LamarcusSkylooter is now known as Tigger_
22:46:00 <Ethanol> oh that figure doesn't include degree accreditation for permanent residency visas
22:46:00 <Ethanol> which I imagine accounts for most of their income
22:46:30 <Tigger_> so about $20 million revenue
22:47:24 <Ethanol> oh that figure doesn't include degree accreditation for permanent residency visas
22:47:32 Join: mannequin ([email protected]) to #politicaldebate
22:47:37 <Ethanol> which I imagine accounts for most of their income
22:48:00 <satie> On the evening of Saturday 21 May 1994, Andrew Mallard went to the premises of Brettingham Dell at 22/650 Stirling Highway, Mosman Park claiming to be a police officer and showing a police cloth badge which he had stolen a few days earlier from police headquarters. Mr Dell told him to leave and Andrew threatened to return with a search warrant, but then left
22:48:00 <satie> 77
22:48:00 <satie> is that strum ?
22:48:00 <satie> dressing up as a cop
22:49:00 <mannequin> yawns
22:49:00 <Tigger_> the irony is that it was strum's dobbing in Mallard that caused him to be wrongly prosecuted, and then get paid out $3 million
22:49:13 <satie> On the evening of Saturday 21 May 1994, Andrew Mallard went to the premises of Brettingham Dell at 22/650 Stirling Highway, Mosman Park claiming to be a police officer and showing a police cloth badge which he had stolen a few days earlier from police headquarters. Mr Dell told him to leave and Andrew threatened to return with a search warrant, but then left
22:49:13 <satie> 77
22:49:37 <satie> is that strum ?
22:49:46 <satie> dressing up as a cop
22:50:00 <Tigger_> so Mallard is a millionaire thanks to poor strum
22:50:00 <satie> yeh but he had to spend years in jail
22:50:00 <Tigger_> way more than he would ever have earned in that time
22:50:09 <mannequin> yawns
22:50:21 Part: Picard ([email protected]) from #politicaldebate
22:50:50 <Tigger_> the irony is that it was strum's dobbing in Mallard that caused him to be wrongly prosecuted, and then get paid out $3 million
22:51:00 <Ethanol> not to mention that he received free food and accommodation
22:51:09 <Tigger_> so Mallard is a millionaire thanks to poor strum
22:51:19 <satie> yeh but he had to spend years in jail
22:51:35 <Tigger_> way more than he would ever have earned in that time
22:52:02 <Ethanol> not to mention that he received free food and accommodation
22:58:00 <Tigger_> eventually the cops pinned the murder on some backpacker that was already dead
22:58:00 <Tigger_> rather convenient way of closing the case and tying up loose ends
22:59:00 <Tigger_> it's pretty clear that it was strum that murdered the antiques shop lady
22:59:25 Join: xm ([email protected]) to #politicaldebate
22:59:32 <Tigger_> eventually the cops pinned the murder on some backpacker that was already dead
22:59:34 Mode: (by ChanOP) +o xm
22:59:49 <Tigger_> rather convenient way of closing the case and tying up loose ends
23:00:00 <satie> heh
23:00:00 <satie> strum is a rockspider
23:00:38 <Tigger_> it's pretty clear that it was strum that murdered the antiques shop lady
23:01:14 <satie> heh
23:01:26 <satie> strum is a rockspider
23:07:57 Join: doctor ([email protected]) to #politicaldebate
23:07:57 Mode: (by ChanOP) +o doctor
23:08:13 Quit: mannequin ([email protected]) Quit:
23:12:00 <Tigger_> https://www.youtube.com/watch?v=WIlYPEQb6rQ
23:12:00 <progressive> 1,0 You0,5tube  18 TYPES OF ASIAN GIRLS
23:12:00 <xm> i was going to link that to you once
23:12:00 <xm> i find them entertaining
23:12:00 <xm> i think they're Christian too
23:12:58 <Tigger_> https://www.youtube.com/watch?v=WIlYPEQb6rQ
23:12:58 <progressive> Youtube 18 TYPES OF ASIAN GIRLS
23:13:00 <xm> they have a video that explains why Asians in America got into r&b/rap etc
23:13:00 <xm> people like Tupac etc
23:13:14 <xm> i was going to link that to you once
23:13:26 <xm> i find them entertaining
23:13:34 <xm> i think they're Christian too
23:14:07 Quit: Fitz ([email protected]) Quit:
23:14:28 <xm> they have a video that explains why Asians in America got into r&b/rap etc
23:14:41 <xm> people like Tupac etc
23:15:00 <bee_girl> nice
23:15:00 <Tigger_> I shall watch that, since it's a mystery to me
23:15:53 <bee_girl> nice
23:16:00 <xm> Asian Americans are fairly popular on YouTube. im not sure if it's just so popular with Asians it makes it disproportionately high. or if they are generally popular
23:16:00 <xm> Australia has that idiot. sannychong i think
23:16:00 <xm> he has collaborated with that wog guy from YouTube
23:16:04 <Tigger_> I shall watch that, since it's a mystery to me
23:17:00 <bee_girl> sure sure Tigger_
23:17:01 <xm> Asian Americans are fairly popular on YouTube. im not sure if it's just so popular with Asians it makes it disproportionately high. or if they are generally popular
23:17:12 Quit: Lish ([email protected]) Quit: Leaving
23:17:22 <xm> Australia has that idiot. sannychong i think
23:17:48 <xm> he has collaborated with that wog guy from YouTube
23:17:57 <bee_girl> sure sure Tigger_
23:19:00 <Ethanol> the female Asian has a tattoo
23:19:00 <Ethanol> I guess that means she is an ABG
23:19:00 <Tigger_> so what type is she?
23:20:00 <Ethanol> or 19. Asian Prostitute
23:20:36 <Ethanol> the female Asian has a tattoo
23:20:47 <Ethanol> I guess that means she is an ABG
23:20:47 <Tigger_> so what type is she?
23:21:00 <Tigger_> heh, 12. feminist asian girl
23:21:50 <Ethanol> or 19. Asian Prostitute
23:21:52 <Tigger_> heh, 12. feminist asian girl
23:22:00 <xm> their videos on food will be so foreign to you
23:22:00 <xm> as a lot of it is even foreign to me. when they talk about all these popular random imported foods
23:23:00 <Ethanol> I've only ever known the FOB and Yappie. All Asian girls are foodies by default.
23:23:04 <xm> their videos on food will be so foreign to you
23:23:28 <xm> as a lot of it is even foreign to me. when they talk about all these popular random imported foods
23:24:00 <Warren1984> I just got a membership for this -> http://www.ladswa.com.au/
23:24:00 <Warren1984> $16.50 on concession
23:24:00 <Tigger_> I wasn't aware of the food thing
23:24:28 <Ethanol> I've only ever known the FOB and Yappie. All Asian girls are foodies by default.
23:25:00 <Warren1984> I want to learn new add strategies
23:25:00 <satie> are you add Warren1984 ?
23:25:34 <Warren1984> I just got a membership for this -> http://www.ladswa.com.au/
23:25:43 <Warren1984> $16.50 on concession
23:25:48 <Tigger_> I wasn't aware of the food thing
23:25:53 <Warren1984> I want to learn new add strategies
23:26:00 <xm> Warren1984, i am considering getting the VivoSmart
23:26:00 <xm> with HRM
23:26:00 <Tigger_> surprising, as it's always been my theory that asian cuisine originated as just whatever they could scrounge together during a famine, pigs feet + locusts + tofu
23:26:00 <xm> im having a warren moment
23:26:00 <Warren1984> is that Garmin?
23:26:00 <xm> yes
23:26:00 <Warren1984> how much is it?
23:26:00 <xm> Tigger_, they mention that most Chinese food is Cantonese (southern, the ones that eat everything with four legs except tables)
23:26:00 <xm> i had never thought about that
23:26:36 <satie> are you add Warren1984 ?
23:26:59 <xm> Warren1984, i am considering getting the VivoSmart
23:27:00 <xm> Warren1984, about $220
23:27:00 <Warren1984> we could go driving to different places in Perth
23:27:00 <Warren1984> i.e. in the hills etc
23:27:00 <Warren1984> and focus on exercise
23:27:00 <xm> a shame it's hot now
23:27:00 <Warren1984> yeah
23:27:00 <Warren1984> go walking in the swimming pool
23:27:00 <xm> or beach
23:27:01 <xm> with HRM
23:27:07 <Tigger_> surprising, as it's always been my theory that asian cuisine originated as just whatever they could scrounge together during a famine, pigs feet + locusts + tofu
23:27:08 <xm> im having a warren moment
23:27:14 <Warren1984> is that Garmin?
23:27:17 <xm> yes
23:27:25 <Warren1984> how much is it?
23:27:44 <xm> Tigger_, they mention that most Chinese food is Cantonese (southern, the ones that eat everything with four legs except tables)
23:27:49 Quit: slower ([email protected]) Quit:
23:27:49 Join: mannequin ([email protected]) to #politicaldebate
23:27:50 <xm> i had never thought about that
23:27:55 <xm> Warren1984, about $220
23:27:56 <Warren1984> we could go driving to different places in Perth
23:28:00 <Ethanol> http://www.xiaomishop.com/134-mi-band.html <--- if you don't mind the Engrish
23:28:02 <Warren1984> i.e. in the hills etc
23:28:13 <Warren1984> and focus on exercise
23:28:21 <xm> a shame it's hot now
23:28:26 <Warren1984> yeah
23:28:35 <Warren1984> go walking in the swimming pool
23:28:50 <xm> or beach
23:29:00 <Tigger_> why do these contraptions cost $220?
23:29:00 <xm> very cheap
23:29:00 <xm> touch screen, heart rate monitor etc
23:29:00 <xm> well, im just considering it not quite there yet
23:29:00 <xm> im just in a manic mood
23:29:00 <xm> i ahve been manic for a while now
23:29:00 <xm> if anyone hasnt noticed
23:29:00 <xm> ive been buying lots of things ever since
23:29:03 <Ethanol> http://www.xiaomishop.com/134-mi-band.html <--- if you don't mind the Engrish
23:30:00 <Tigger_> why do these contraptions cost $220?
23:30:00 <Tigger_> what else?
23:30:00 <xm> that microphone, the headphones, wireless dongle for pi, books
23:30:00 <xm> blu ray player
23:30:01 <xm> very cheap
23:30:13 <xm> touch screen, heart rate monitor etc
23:30:21 <xm> well, im just considering it not quite there yet
23:30:25 <xm> im just in a manic mood
23:30:34 <xm> i ahve been manic for a while now
23:30:39 <xm> if anyone hasnt noticed
23:30:45 <xm> ive been buying lots of things ever since
23:31:00 <xm> lost
23:31:00 <xm> (still havent opened)
23:31:00 <Ethanol> Conversely, I'm in a depressed mood. I must be the yin to xm's yang
23:31:00 <xm> this is a lot for me. i RARELY spend
23:31:00 <Tigger_> Ethanol, how long for now?
23:31:00 <satie> Call lifeline
23:31:00 <xm> Ethanol, a lovely project on the side may help
23:31:30 <Tigger_> what else?
23:31:45 <xm> that microphone, the headphones, wireless dongle for pi, books
23:31:50 <xm> blu ray player
23:31:51 <xm> lost
23:31:56 <xm> (still havent opened)
23:31:57 <Ethanol> Conversely, I'm in a depressed mood. I must be the yin to xm's yang
23:32:00 <Tigger_> I have all the comics I'm interested in, nothing more to buy, it'll probably only be 20-25 titles a year from here on
23:32:00 <xm> thought about programming something?
23:32:00 <xm> i only regret the books actually
23:32:00 <satie> where do you buy ur comics
23:32:00 <xm> the rest is OK. they were going to be bought eventually -- but the books arent that important
23:32:00 <Tigger_> satie, from Amazon
23:32:00 <satie> i find comics boring
23:32:00 <satie> books are better
23:32:03 <xm> this is a lot for me. i RARELY spend
23:32:11 <Tigger_> Ethanol, how long for now?
23:32:37 <satie> Call lifeline
23:32:50 <xm> Ethanol, a lovely project on the side may help
23:32:56 <Tigger_> I have all the comics I'm interested in, nothing more to buy, it'll probably only be 20-25 titles a year from here on
23:32:57 <xm> thought about programming something?
23:33:00 <xm> oh tigger!
23:33:00 <Tigger_> yeah?
23:33:00 <xm> the NAS and the 2x 4TB reds
23:33:00 <xm> that was very pricey
23:33:00 <Tigger_> ah yes
23:33:00 <Warren1984> BI-POLAR DISORDER AND ADHD
23:33:00 <Warren1984> Dr Roger Paterson, Psychiatrist
23:33:00 <satie> i want a good documentary to watch
23:33:00 <Tigger_> satie, watch the documentary "Indie Game - The Movie"
23:33:18 <xm> i only regret the books actually
23:33:28 <satie> where do you buy ur comics
23:33:37 <xm> the rest is OK. they were going to be bought eventually -- but the books arent that important
23:33:43 <Tigger_> satie, from Amazon
23:33:44 <satie> i find comics boring
23:33:50 <satie> books are better
23:33:52 <xm> oh tigger!
23:33:59 <Tigger_> yeah?
23:34:00 <xm> the NAS and the 2x 4TB reds
23:34:00 <xm> pediatric bipolar is often confused with autism
23:34:00 <xm> the documentary on how they made mozilla is good too
23:34:13 <xm> that was very pricey
23:34:19 <Tigger_> ah yes
23:34:27 <Warren1984> BI-POLAR DISORDER AND ADHD
23:34:27 <Warren1984> Dr Roger Paterson, Psychiatrist
23:34:27 <satie> i want a good documentary to watch
23:34:44 <Tigger_> satie, watch the documentary "Indie Game - The Movie"
23:34:55 <xm> pediatric bipolar is often confused with autism
23:35:00 <xm> it shows how terrible coding practices were for Netscape
23:35:00 <satie> is it on youtube
23:35:00 <xm> and how they got a teenager from chatroom to fix most of the code
23:35:00 <Tigger_> maybe, but it's definitely on the torrent sites
23:35:00 <xm> from a*
23:35:00 <xm> Indie Game is more about gaming, but about crazy people too
23:35:41 <xm> the documentary on how they made mozilla is good too
23:35:53 <xm> it shows how terrible coding practices were for Netscape
23:36:00 <xm> it's*
23:36:00 <Tigger_> programmers of games
23:36:00 <xm> yes
23:36:00 <mannequin> who knows really
23:36:00 <xm> programmers are already nuts to begin with -- if they're the ones that do it well
23:36:06 <satie> is it on youtube
23:36:19 <xm> and how they got a teenager from chatroom to fix most of the code
23:36:23 <Tigger_> maybe, but it's definitely on the torrent sites
23:36:25 <xm> from a*
23:36:42 <xm> Indie Game is more about gaming, but about crazy people too
23:36:52 <xm> it's*
23:37:00 <xm> im good but not that great. ive met great ones and they're always weird
23:37:00 <xm> they talk like they're nervous but theyre not nervous
23:37:04 <Tigger_> programmers of games
23:37:15 <xm> yes
23:37:35 <mannequin> who knows really
23:37:46 <xm> programmers are already nuts to begin with -- if they're the ones that do it well
23:38:00 <xm> possibly a bottleneck
23:38:00 <Tigger_> I rewatched it the other day, and it occurs to me that the reason why feminists are so furious about gaming is that the developers are white males, especially now that the Japs have largely bowed out of the industry
23:38:00 <xm> why have the japs left?
23:38:00 <xm> is it in the same vain in how Japanese electronics have gone done
23:38:00 <Tigger_> hard to say, just nothing much seems to be happening with them anymore
23:38:19 <xm> im good but not that great. ive met great ones and they're always weird
23:38:39 <xm> they talk like they're nervous but theyre not nervous
23:38:56 <xm> possibly a bottleneck
23:39:00 <Tigger_> I rewatched it the other day, and it occurs to me that the reason why feminists are so furious about gaming is that the developers are white males, especially now that the Japs have largely bowed out of the industry
23:39:00 <xm> vein*
23:39:00 <Tigger_> yeah it could be
23:39:00 <Tigger_> not that Japs had any minority status privilege anyway
23:39:12 <xm> why have the japs left?
23:39:45 <xm> is it in the same vain in how Japanese electronics have gone done
23:39:46 <Tigger_> hard to say, just nothing much seems to be happening with them anymore
23:39:52 <xm> vein*
23:39:53 <Tigger_> yeah it could be
23:40:00 <xm> i watched an episode of Seinfeld yesterday where George spills grape juice over a black family's sofa
23:40:00 <xm> i wonder if there's a racist pacman game where pacman powers up with watermelons and grape juice
23:40:00 <Tigger_> it could be Japan's ageing demographics, not enough young people to come up with new game ideas
23:40:00 <Tigger_> there are plenty of racist mario gifs
23:40:20 <Tigger_> not that Japs had any minority status privilege anyway
23:41:00 <satie> three is a racist video game called ethnic cleansing
23:41:00 <xm> or maybe they spend too much tiem playing games instead of wanting to make them. but there should always be that fraction that get so inspired by games all that they want to do is make them
23:41:00 <satie> and then end of the game you have to kill jews
23:41:00 <xm> there is also Escape from Auschwitz
23:41:07 <xm> i watched an episode of Seinfeld yesterday where George spills grape juice over a black family's sofa
23:41:27 <xm> i wonder if there's a racist pacman game where pacman powers up with watermelons and grape juice
23:41:37 <Tigger_> it could be Japan's ageing demographics, not enough young people to come up with new game ideas
23:41:50 <Tigger_> there are plenty of racist mario gifs
23:42:12 <satie> three is a racist video game called ethnic cleansing
23:42:20 <xm> or maybe they spend too much tiem playing games instead of wanting to make them. but there should always be that fraction that get so inspired by games all that they want to do is make them
23:42:28 <satie> and then end of the game you have to kill jews
23:42:41 <xm> there is also Escape from Auschwitz
23:43:00 <xm> http://www.complex.com/pop-culture/2012/06/the-10-most-racist-video-games/
23:43:00 <xm> lol i always wondered about that pokemon
23:43:00 <mannequin> im better than that
23:43:00 <mannequin> mr fallable
23:44:00 <xm> most of it is mild
23:44:00 <mannequin> depraving indeed
23:44:02 <xm> http://www.complex.com/pop-culture/2012/06/the-10-most-racist-video-games/
23:44:09 <xm> lol i always wondered about that pokemon
23:44:23 <mannequin> im better than that
23:44:39 <mannequin> mr fallable
23:45:00 <mannequin> if its what you thinking
23:45:00 <Tigger_> Jap fighter sidescrollers often have the hero a blond guy with blue eyes, and the bad guys are a variety of gangster and pimp black stereotypes
23:45:00 <mannequin> im better than that
23:45:35 <xm> most of it is mild
23:45:49 <mannequin> depraving indeed
23:46:00 <Tigger_> the Donkey Kong Country series has gorillas rapping
23:46:00 <Tigger_> and breakdancing
23:46:01 <mannequin> if its what you thinking
23:46:02 <Tigger_> Jap fighter sidescrollers often have the hero a blond guy with blue eyes, and the bad guys are a variety of gangster and pimp black stereotypes
23:46:18 <mannequin> im better than that
23:47:23 <Tigger_> the Donkey Kong Country series has gorillas rapping
23:47:39 <Tigger_> and breakdancing
23:49:00 <xm> weird coincidence
23:49:00 <xm> on TV
23:49:00 <xm> a song that is playing on my headphones is the same as TV
23:49:00 <xm> chopin
23:50:00 <xm> well here's a new buzz word: Behaviour Driven Development (BDD)
23:50:04 <xm> weird coincidence
23:50:16 <xm> on TV
23:50:26 <xm> a song that is playing on my headphones is the same as TV
23:50:29 <xm> chopin
23:50:43 Join: Marttin ([email protected]) to #politicaldebate
23:51:00 <xm> it's very slow too as it's basically running a headless browser
23:51:35 <xm> well here's a new buzz word: Behaviour Driven Development (BDD)
23:52:00 <Tigger_> so what is BDD?
23:52:00 <xm> it's still new to me. but i think it's so you can do things like make it click buttons in your testing and then expect it to behave a certain way
23:52:00 <xm> basically front end testing. perhaps im wrong'
23:53:00 <Tigger_> so interface first
23:54:00 <xm> thThere is no difference between BDD and TDD. BDD is TDD done right. TDD done right is BDD. The problem is that doing TDD right is hard, or more precisely learning how to do TDD right is hard. The reason is that TDD has absolutely nothing whatsoever to do with testing, but it is hard to understand that important fact when all the terminology is about testing. So, BDD literally is just TDD with all the testing terminology replaced with behavioral
23:54:00 <xm> examples terminology. It's like that "try not to think of a pink elephant" thing.
23:54:18 Topic Is: Let's end the year with a feel good article: http://www.smh.com.au/federal-politics/political-news/australian-jihadists-arriving-and-dying-at-same-rate-in-middle-east-asio-20141211-12584u.html
23:54:18 Set By: (Tigger_) on: Mon Dec 29 12:53:39 2014
23:55:00 <xm> bbl
23:55:24 <xm> thThere is no difference between BDD and TDD. BDD is TDD done right. TDD done right is BDD. The problem is that doing TDD right is hard, or more precisely learning how to do TDD right is hard. The reason is that TDD has absolutely nothing whatsoever to do with testing, but it is hard to understand that important fact when all the terminology is about testing. So, BDD literally is just TDD with all the testing terminology replaced with behavioral
23:55:24 <xm> examples terminology. It's like that "try not to think of a pink elephant" thing.
23:56:39 <xm> bbl
23:56:47 Quit: xm ([email protected]) Quit: BAM
23:58:00 <Tigger_> I'm quite glad I have nothing to do with these developer management theories
23:58:00 <mannequin> me either
23:59:15 <Tigger_> I'm quite glad I have nothing to do with these developer management theories
23:59:30 <mannequin> me either