#raspbian IRC Log

Index

IRC Log for 2013-07-25

Timestamps are in GMT/BST.

[0:03] * blkhawk (~blkhawk@42.99.255.149.in-addr.arpa) Quit (Read error: Operation timed out)
[0:06] * sidewalk (sidewalk@shell.glassbilen.net) Quit (Ping timeout: 246 seconds)
[0:06] * sidewalk (sidewalk@shell.glassbilen.net) has joined #raspbian
[0:06] * blkhawk (~blkhawk@42.99.255.149.in-addr.arpa) has joined #raspbian
[0:06] * atouk (~kvirc@ool-457e23d5.dyn.optonline.net) Quit (Read error: Connection reset by peer)
[0:30] * vagrantc (~vagrant@freegeek/vagrantc) Quit (Quit: leaving)
[0:43] * pablocastellano1 (~pidgin@190.148.242.70) has joined #raspbian
[0:44] * pablocastellanos (~pidgin@190.148.242.70) Quit (Ping timeout: 264 seconds)
[0:51] * blkhawk is now known as blkaway
[0:58] * zZz_Skelli (~Skelli@p5B3E350C.dip0.t-ipconnect.de) Quit (Ping timeout: 264 seconds)
[0:58] * Killer0585 (~Killer058@199.123.13.107) Quit (Read error: Connection reset by peer)
[0:58] * Killer0585 (~Killer058@199.123.13.107) has joined #raspbian
[0:58] * zZz_Skelli (~Skelli@p5B3E3624.dip0.t-ipconnect.de) has joined #raspbian
[0:59] * zZz_Skelli is now known as Skelli
[1:01] * liyang_ (~liyang@218.201.120.153.tokyo.global.crust-r.net) Quit (Quit: leaving)
[1:06] * sjaak_trekhaak (~sjaak@541E80BC.cm-5-7c.dynamic.ziggo.nl) Quit (Ping timeout: 245 seconds)
[1:08] * sjaak_trekhaak (~sjaak@524A6945.cm-4-3b.dynamic.ziggo.nl) has joined #raspbian
[1:15] * sparqz (~sparqz@2601:9:3680:f5:e825:50f8:61e4:6057) has joined #raspbian
[1:16] * sparqz (~sparqz@2601:9:3680:f5:e825:50f8:61e4:6057) Quit (Max SendQ exceeded)
[1:27] * daveee123 (~daveee123@ip-210-100.oberlin.net) has joined #raspbian
[1:28] * daveee123 (~daveee123@ip-210-100.oberlin.net) Quit (Remote host closed the connection)
[1:59] * timmmaaaayyy (~timmmaaaa@cpe-68-175-79-100.nyc.res.rr.com) Quit (Ping timeout: 246 seconds)
[2:01] * timmmaaaayyy (~timmmaaaa@cpe-68-175-79-100.nyc.res.rr.com) has joined #raspbian
[2:05] * ReggieUK (ReggieUK@2.216.66.55) Quit ()
[2:06] * plugwash (~plugwash@94.12.118.56) Quit (Ping timeout: 248 seconds)
[2:12] * jda2000 (~jda2000@host-208-117-123-59.beyondbb.com) has joined #raspbian
[2:28] * jda2000 (~jda2000@host-208-117-123-59.beyondbb.com) Quit (Ping timeout: 240 seconds)
[2:30] * daveee123 (~daveee123@ip-210-100.oberlin.net) has joined #raspbian
[2:31] * Datalink|Elsewhe (~Datalink@unaffiliated/datalink) has joined #raspbian
[2:32] * Datalink (~Datalink@unaffiliated/datalink) Quit (Ping timeout: 240 seconds)
[2:32] * mike_t (~mike@80.234.127.49) has joined #raspbian
[2:39] * mike_t (~mike@80.234.127.49) Quit (Remote host closed the connection)
[2:41] * jda2000 (~jda2000@host-208-117-123-59.beyondbb.com) has joined #raspbian
[3:16] * \\Mr_C\\ (mrc@adsl-98-89-23-22.mgm.bellsouth.net) Quit ()
[3:27] * optimusprimem (~debian@unaffiliated/optimusprimem) Quit (Ping timeout: 245 seconds)
[3:28] * bacilla (~karolis@unaffiliated/velkam) Quit (Ping timeout: 240 seconds)
[3:31] * zombieman (~michael@cpe-24-160-80-170.tampabay.res.rr.com) has joined #raspbian
[3:33] <zombieman> i need help finding a program that an create a database of yugioh cards that have these feilds name,qty,serial,price,picture it would be nice if it could run on the pi but if not ill make due with windows
[3:34] <zombieman> it would be nice to have a search feature too idk were to look or what to type to begin to search
[3:34] <gnarface> zombieman: that sounds like a standard task for any generic database
[3:35] <zombieman> ive tried to program one in vb.net with excel but always fail on the search aspect
[3:35] <gnarface> zombieman: mysql is very popular if you want to use a web-based front-end, but if you're just doing a cli thing its probably fine to just use bdb or something
[3:35] <gnarface> search should be a feature of the database
[3:36] <gnarface> of any database really; that's what databases are for. the trick is just to put each field in its own column
[3:36] <gnarface> and each data type in its own table
[3:37] <zombieman> thats were i get lost ive never really used databases before
[3:37] * mike_t (~mike@pluto.dd.vaz.ru) has joined #raspbian
[3:37] <gnarface> well it would be smartest to pick a database first, and then focus on reading documentation specific to that datgbase
[3:37] <gnarface> *database
[3:37] <zombieman> i like the sound of mysql
[3:37] <gnarface> it might be overkill
[3:38] <gnarface> you might get by with sqlite or bdb files or something of the sort
[3:38] <zombieman> for the aspect that it can be accessed by any computer
[3:38] <gnarface> oh well, mysql does have the advantage that there is a lot more web-based tools built on it, yes
[3:39] <gnarface> it doesn't provide any of that functionality on its own mind you though
[3:39] <gnarface> you'd also have to run a webserver ... not necessarily on the pi, but somewhere
[3:39] <gnarface> there is definitely a lot of documentation on mysql
[3:40] <gnarface> but it is also probably the heaviest, most bloated option that will be the hardest to optimize
[3:40] <gnarface> so you gotta make some trade offs
[3:40] <zombieman> i can try sqlite
[3:40] <zombieman> heck i got most of the thing working with excel
[3:41] <gnarface> sqlite is probably a lot simpler to learn than mysql
[3:41] <zombieman> thanks
[3:41] * \\Mr_C\\ (mrc@adsl-98-89-69-216.mgm.bellsouth.net) has joined #raspbian
[3:44] <gnarface> no problem
[3:44] <gnarface> good luck
[3:47] <zombieman> is there a easy way to edit rows
[3:48] <zombieman> im asumming each card gets its own row right?
[3:50] <gnarface> well you'll have to learn basic sql syntax in any ase
[3:50] * bizarro_1 (~bizarro_1@80.30.239.28) Quit (Quit: Leaving)
[3:50] <gnarface> in any case
[3:51] <gnarface> but yea you use commands like: update cards set name="blah" where id="2945"
[3:51] <gnarface> most commands are structured for use on single lines or groups of lines
[3:55] <gnarface> zombieman: there are php bindings for sqlite too, if that helps you
[3:56] <gnarface> zombieman: if you just want another spreadsheet program you could always try libreoffice calc
[3:57] <gnarface> it stands up pretty nice to excel if you count the fact its free and open source
[3:57] <zombieman> thanks for sll your help
[3:57] * verysoftoiletppr (~verysofto@unaffiliated/softtoiletpaper) Quit (Quit: verysoftoiletppr)
[4:04] * zombieman (~michael@cpe-24-160-80-170.tampabay.res.rr.com) Quit (Quit: Leaving)
[4:15] * SwK (krice@38.101.158.100) Quit (Changing host)
[4:15] * SwK (krice@freeswitch/developer/swk) has joined #raspbian
[4:20] * Blizzbob (~Blizzbob@tmo-102-100.customers.d1-online.com) has joined #raspbian
[4:22] * higgy (~chatzilla@CPE18593396ee15-CM18593396ee12.cpe.net.cable.rogers.com) has joined #raspbian
[4:23] * higgy (~chatzilla@CPE18593396ee15-CM18593396ee12.cpe.net.cable.rogers.com) has left #raspbian
[4:50] * jda2000 (~jda2000@host-208-117-123-59.beyondbb.com) Quit (Quit: Leaving)
[5:29] * optimusprimem (~debian@unaffiliated/optimusprimem) has joined #raspbian
[5:32] * greenscientist (~scientist@206.248.137.227) Quit (Read error: Connection reset by peer)
[5:35] * scientist (~scientist@206.248.137.227) has joined #raspbian
[5:39] * dest4ever (~kvirc@unaffiliated/dest4ever) Quit (Ping timeout: 248 seconds)
[5:39] * Tantalus4877 (~nobody@pool-71-173-205-103.hrbgpa.fios.verizon.net) has joined #raspbian
[5:43] * Tantalus4877 (~nobody@pool-71-173-205-103.hrbgpa.fios.verizon.net) has left #raspbian
[5:57] * \\Mr_C\\ (mrc@adsl-98-89-69-216.mgm.bellsouth.net) Quit ()
[5:58] * \\Mr_C\\ (mrc@adsl-98-89-69-216.mgm.bellsouth.net) has joined #raspbian
[6:00] * daveee123 (~daveee123@ip-210-100.oberlin.net) Quit (Write error: Broken pipe)
[6:03] * Blizzbob (~Blizzbob@tmo-102-100.customers.d1-online.com) Quit (Remote host closed the connection)
[6:12] * grmpy (~grmpy@business-178-015-010-184.static.arcor-ip.net) has joined #raspbian
[6:12] * roboguy_ (~roboguy_@98.156.67.41) has joined #raspbian
[6:13] * roboguy_ (~roboguy_@98.156.67.41) has left #raspbian
[6:18] * sandeepparitala (~sandeep@14.139.82.130) has joined #raspbian
[6:18] * sandeepparitala (~sandeep@14.139.82.130) Quit (Client Quit)
[6:24] * reindeerflotilla (~reindeerf@d24-150-252-68.home.cgocable.net) Quit (Quit: reindeerflotilla)
[6:38] * twolife` is now known as twolife
[6:52] * taza (~zap@unaffiliated/taza) Quit ()
[7:06] * zomgbie (~jesus@h081217190090.dyn.cm.kabsi.at) has joined #raspbian
[7:07] * sandeepparitala1 (~sandeep@14.139.82.130) has joined #raspbian
[7:10] * blkaway is now known as blkhawk
[7:11] * daveee123 (~daveee123@ip-210-100.oberlin.net) has joined #raspbian
[7:27] * daveee123 (~daveee123@ip-210-100.oberlin.net) Quit (Remote host closed the connection)
[7:30] * mike_t` (~mike@pluto.dd.vaz.ru) has joined #raspbian
[7:33] * sandeepparitala1 (~sandeep@14.139.82.130) Quit (Read error: Connection reset by peer)
[7:34] * Broken_Biscuit (~Oliver@94-192-128-116.zone6.bethere.co.uk) has joined #raspbian
[7:35] * sandeepparitala1 (~sandeep@14.139.82.130) has joined #raspbian
[7:39] * daveee123 (~daveee123@ip-210-100.oberlin.net) has joined #raspbian
[7:46] * sandeepparitala1 (~sandeep@14.139.82.130) Quit (Quit: Leaving.)
[7:47] * BManojlovic (~steki@fo-d-130.180.254.37.targo.rs) has joined #raspbian
[7:47] * BManojlovic (~steki@fo-d-130.180.254.37.targo.rs) Quit (Changing host)
[7:47] * BManojlovic (~steki@opensuse/member/bmanojlovic) has joined #raspbian
[7:54] * BossyLady (~BossyLady@app3.chatmosphere.org) has joined #raspbian
[7:55] * BossyLady (~BossyLady@app3.chatmosphere.org) has left #raspbian
[8:01] * jakeri (~gfgf@a91-154-47-101.elisa-laajakaista.fi) Quit (Ping timeout: 246 seconds)
[8:10] * FR^2 (~frquadrat@farsquare.de) has joined #raspbian
[8:15] * Killer0585|2 (~Killer058@199.123.13.107) has joined #raspbian
[8:16] * Killer0585 (~Killer058@199.123.13.107) Quit (Ping timeout: 246 seconds)
[8:25] * \\Mr_C\\ (mrc@adsl-98-89-69-216.mgm.bellsouth.net) Quit ()
[8:26] * \\Mr_C\\ (mrc@adsl-98-89-69-216.mgm.bellsouth.net) has joined #raspbian
[8:29] * mike_t is now known as Guest59954
[8:29] * mike_t` is now known as mike_t
[8:30] * daveee123 (~daveee123@ip-210-100.oberlin.net) Quit (Remote host closed the connection)
[8:30] * plugwash (~plugwash@94.6.8.49) has joined #raspbian
[8:32] * daveee123 (~daveee123@ip-210-100.oberlin.net) has joined #raspbian
[8:38] * daveee123 (~daveee123@ip-210-100.oberlin.net) Quit (Remote host closed the connection)
[8:47] <dexta> morning
[8:48] * zomgbie (~jesus@h081217190090.dyn.cm.kabsi.at) Quit (Ping timeout: 268 seconds)
[8:49] * zipy (~zipy@dslb-092-072-216-086.pools.arcor-ip.net) has joined #raspbian
[8:49] * zipy (~zipy@dslb-092-072-216-086.pools.arcor-ip.net) Quit (Changing host)
[8:49] * zipy (~zipy@unaffiliated/zipy) has joined #raspbian
[8:59] * srini (~srinivas@14.139.82.130) has joined #raspbian
[9:21] * bacilla (~karolis@unaffiliated/velkam) has joined #raspbian
[9:21] * srini (~srinivas@14.139.82.130) has left #raspbian
[9:21] * srini (~srinivas@14.139.82.130) has joined #raspbian
[9:24] * srini (~srinivas@14.139.82.130) has left #raspbian
[9:24] * srini (~srinivas@14.139.82.130) has joined #raspbian
[9:28] * srini (~srinivas@14.139.82.130) has left #raspbian
[9:50] * Lupinedk is now known as lupinedk
[9:54] * zomgbie (~jesus@h081217190090.dyn.cm.kabsi.at) has joined #raspbian
[9:55] * mythos (~mythos@unaffiliated/mythos) Quit (Read error: Operation timed out)
[9:56] * simone_ (~simone@host60-210-dynamic.9-87-r.retail.telecomitalia.it) Quit (Read error: Operation timed out)
[9:58] * srini (~srinivas@14.139.82.130) has joined #raspbian
[9:58] * PasNox (~pasnox@2a01:e35:8b4f:f2a0:5d49:c3ad:5297:8db7) has joined #raspbian
[9:58] <srini> custom based distribution for raspberrypi
[9:59] * zomgbie (~jesus@h081217190090.dyn.cm.kabsi.at) Quit (Ping timeout: 260 seconds)
[10:01] * themill (~stuart@unaffiliated/themill) Quit (Ping timeout: 252 seconds)
[10:02] * zomgbie (~jesus@h081217190090.dyn.cm.kabsi.at) has joined #raspbian
[10:02] * sandeepparitala (~sandeep@14.139.82.130) has joined #raspbian
[10:09] * daveee123 (~daveee123@ip-210-100.oberlin.net) has joined #raspbian
[10:10] * srini (~srinivas@14.139.82.130) Quit (Quit: Leaving.)
[10:10] * srini (~srinivas@14.139.82.130) has joined #raspbian
[10:11] * zomgbie (~jesus@h081217190090.dyn.cm.kabsi.at) Quit (Ping timeout: 256 seconds)
[10:12] * simone_ (~simone@host220-129-dynamic.211-62-r.retail.telecomitalia.it) has joined #raspbian
[10:14] * daveee123 (~daveee123@ip-210-100.oberlin.net) Quit (Ping timeout: 268 seconds)
[10:16] <sandeepparitala> I am facing problems with youtube video streaming on raspbian
[10:17] * Tudela (~tudela@a89-152-9-7.cpe.netcabo.pt) has joined #raspbian
[10:17] <sandeepparitala> what to do?
[10:19] * simone_ (~simone@host220-129-dynamic.211-62-r.retail.telecomitalia.it) Quit (Ping timeout: 248 seconds)
[10:21] * HelenaKitty (~s98259@90.205.90.100) Quit (Ping timeout: 268 seconds)
[10:22] * themill (~stuart@unaffiliated/themill) has joined #raspbian
[10:27] * srini (~srinivas@14.139.82.130) has left #raspbian
[10:32] * simone_ (~simone@host177-133-dynamic.245-95-r.retail.telecomitalia.it) has joined #raspbian
[10:39] * srini (~srinivas@14.139.82.130) has joined #raspbian
[10:48] * srini (~srinivas@14.139.82.130) has left #raspbian
[10:58] * mythos (~mythos@unaffiliated/mythos) has joined #raspbian
[10:59] * HornyReaper (~Horny7Rea@78.193.104.152) has joined #raspbian
[11:08] * sandeepparitala (~sandeep@14.139.82.130) Quit (Quit: Leaving.)
[11:09] * daveee123 (~daveee123@ip-210-100.oberlin.net) has joined #raspbian
[11:14] * daveee123 (~daveee123@ip-210-100.oberlin.net) Quit (Ping timeout: 256 seconds)
[11:17] * zomgbie (~jesus@h081217190090.dyn.cm.kabsi.at) has joined #raspbian
[11:22] * zomgbie (~jesus@h081217190090.dyn.cm.kabsi.at) Quit (Ping timeout: 240 seconds)
[11:23] * grmpy (~grmpy@business-178-015-010-184.static.arcor-ip.net) Quit (Ping timeout: 248 seconds)
[11:23] * grmpy (~grmpy@business-178-015-010-184.static.arcor-ip.net) has joined #raspbian
[11:26] * GnaXi (4d44dd03@gateway/web/freenode/ip.77.68.221.3) has joined #raspbian
[11:26] <GnaXi> Hello in here! =)
[11:27] <GnaXi> I have a question, that I really hope someone can answer. Can't seem to find the answer anywhere else.
[11:27] <GnaXi> I've just installed Raspbian Wheezy on my Pi and I'm not able to find any settings. The System Tools menu only has the Task Manager.
[11:28] <GnaXi> Where is all the settings?
[11:30] <phako> settings for what
[11:31] * verysoftoiletppr (~verysofto@unaffiliated/softtoiletpaper) has joined #raspbian
[11:31] <GnaXi> Display settings, Language settings, keyboard language settings, time settings
[11:31] <GnaXi> A control panel
[11:31] <GnaXi> Which would normally be found in System Tools
[11:32] * txt-file (~txt@i59F6A5A6.versanet.de) has joined #raspbian
[11:34] <BManojlovic> it has nothing to do with raspbian you are missing packages for this functionality, so if using debian on main workstation just look from where those things come from
[11:34] <GnaXi> Why wouldn't these be included? O_o'
[11:36] * mapee (~User@84-236-89-8.pool.digikabel.hu) has joined #raspbian
[11:38] * Skelli is now known as zZz_Skelli
[11:41] * GnaXi (4d44dd03@gateway/web/freenode/ip.77.68.221.3) Quit (Quit: Page closed)
[11:52] * bizarro_1 (~bizarro_1@80.Red-88-19-138.staticIP.rima-tde.net) has joined #raspbian
[11:56] * mythos (~mythos@unaffiliated/mythos) Quit (Ping timeout: 246 seconds)
[11:59] * biacz (~biacz@p5DDF9179.dip0.t-ipconnect.de) has joined #raspbian
[12:08] * SirLagz (~SirLagz@ppp121-45-235-228.lns20.per1.internode.on.net) has joined #raspbian
[12:10] * daveee123 (~daveee123@ip-210-100.oberlin.net) has joined #raspbian
[12:15] * daveee123 (~daveee123@ip-210-100.oberlin.net) Quit (Ping timeout: 268 seconds)
[12:18] * zipy (~zipy@unaffiliated/zipy) Quit (Remote host closed the connection)
[12:25] * simone_ (~simone@host177-133-dynamic.245-95-r.retail.telecomitalia.it) Quit (Read error: Operation timed out)
[12:26] * Datalink|Elsewhe is now known as Datalink
[12:30] * creemj (~mjc@60-234-221-162.bitstream.orcon.net.nz) Quit (Ping timeout: 256 seconds)
[12:33] * Alfihar (~Yuuka@home.siberios.com) has joined #raspbian
[12:41] * simone_ (~simone@host54-160-dynamic.1-79-r.retail.telecomitalia.it) has joined #raspbian
[12:42] * hsp (~holgi@77-20-54-179-dynip.superkabel.de) has joined #raspbian
[12:44] <juliend> hi
[12:44] <juliend> why by default, in /etc/rc.local, there is a code to print ip ?
[12:51] * atouk (~kvirc@ool-457e23d5.dyn.optonline.net) has joined #raspbian
[12:55] * sandeepparitala (~sandeep@14.139.82.130) has joined #raspbian
[12:57] * sandeepparitala (~sandeep@14.139.82.130) Quit (Client Quit)
[12:57] * sandeepparitala1 (~sandeep@14.139.82.130) has joined #raspbian
[13:10] * daveee123 (~daveee123@ip-210-100.oberlin.net) has joined #raspbian
[13:15] * daveee123 (~daveee123@ip-210-100.oberlin.net) Quit (Ping timeout: 268 seconds)
[13:16] * mike_t (~mike@pluto.dd.vaz.ru) Quit (Remote host closed the connection)
[13:16] * Guest59954 (~mike@pluto.dd.vaz.ru) Quit (Remote host closed the connection)
[13:39] * verysoftoiletppr (~verysofto@unaffiliated/softtoiletpaper) Quit (Quit: verysoftoiletppr)
[13:43] <greppy> juliend: it can be usefull if you don't have keyboard hooked up and want to ssh into it.
[13:53] <juliend> greppy: ok, but where is printed ?
[13:54] <juliend> on the physical screen directly connect on rapsberry ?
[14:03] <juliend> greppy: ok, I try, and i see ip on screen
[14:03] <juliend> i haven't start it with screen ...
[14:06] * os2mac2 (~jim.macdo@131-239-58-66.gci.net) has joined #raspbian
[14:10] * Tudela (~tudela@a89-152-9-7.cpe.netcabo.pt) Quit (Remote host closed the connection)
[14:10] * Tudela (~tudela@a89-152-9-7.cpe.netcabo.pt) has joined #raspbian
[14:11] * daveee123 (~daveee123@ip-210-100.oberlin.net) has joined #raspbian
[14:11] * Tudela (~tudela@a89-152-9-7.cpe.netcabo.pt) Quit (Read error: Connection reset by peer)
[14:11] * Tudela (~tudela@a89-152-9-7.cpe.netcabo.pt) has joined #raspbian
[14:12] * mike_t (~mike@80.234.127.49) has joined #raspbian
[14:13] * zipy (~zipy@unaffiliated/zipy) has joined #raspbian
[14:15] <greppy> juliend: yes, on whatever screen is connected.
[14:16] * daveee123 (~daveee123@ip-210-100.oberlin.net) Quit (Ping timeout: 268 seconds)
[14:20] * nils_2 (~nils_2@unaffiliated/nils-2/x-2480262) Quit (Read error: Operation timed out)
[14:24] * grmpy (~grmpy@business-178-015-010-184.static.arcor-ip.net) Quit (Ping timeout: 248 seconds)
[14:24] * grmpy (~grmpy@business-178-015-010-184.static.arcor-ip.net) has joined #raspbian
[14:29] * Tudela (~tudela@a89-152-9-7.cpe.netcabo.pt) Quit (Remote host closed the connection)
[14:32] * tinti (~tinti@pdpc/supporter/student/tinti) Quit (Quit: Leaving)
[14:35] * daveee123 (~daveee123@ip-210-100.oberlin.net) has joined #raspbian
[14:35] * zipy (~zipy@unaffiliated/zipy) Quit (Read error: Connection reset by peer)
[14:37] * nils_2 (~nils_2@unaffiliated/nils-2/x-2480262) has joined #raspbian
[14:39] * twolife is now known as twolife`
[14:45] * grmpy (~grmpy@business-178-015-010-184.static.arcor-ip.net) Quit (Quit: leaving)
[14:50] <hsp> is the firmware on github for hard-float only or can i use this on soft-float (armel) too? ==> https://github.com/Hexxeh/rpi-firmware
[14:56] * blkhawk is now known as blkaway
[14:59] * shadeslayer (~shadeslay@ubuntu/member/shadeslayer) Quit (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.)
[15:00] * jakeri (~gfgf@a91-154-47-101.elisa-laajakaista.fi) has joined #raspbian
[15:02] * shadeslayer (~shadeslay@ubuntu/member/shadeslayer) has joined #raspbian
[15:02] * os2mac2 (~jim.macdo@131-239-58-66.gci.net) Quit (Ping timeout: 240 seconds)
[15:07] * nitdega_ (nitdega@2602:306:2423:eb1:a071:ca5d:8c87:d9a5) has joined #raspbian
[15:07] * rela (~x@pdpc/supporter/active/rela) has joined #raspbian
[15:09] * sandeepparitala1 (~sandeep@14.139.82.130) Quit (Quit: Leaving.)
[15:10] * nitdega (nitdega@2602:306:2423:eb1:a071:ca5d:8c87:d9a5) Quit (Ping timeout: 245 seconds)
[15:11] * Tudela (~tudela@a89-152-9-7.cpe.netcabo.pt) has joined #raspbian
[15:16] * twolife` is now known as twolife
[15:21] * hsp (~holgi@77-20-54-179-dynip.superkabel.de) Quit (Remote host closed the connection)
[15:22] * SirLagz (~SirLagz@ppp121-45-235-228.lns20.per1.internode.on.net) Quit (Remote host closed the connection)
[15:22] * hsp (~holgi@77-20-54-179-dynip.superkabel.de) has joined #raspbian
[15:23] * SirLagz (~SirLagz@ppp121-45-235-228.lns20.per1.internode.on.net) has joined #raspbian
[15:23] * SirLagz (~SirLagz@ppp121-45-235-228.lns20.per1.internode.on.net) Quit (Remote host closed the connection)
[15:29] * themill (~stuart@unaffiliated/themill) Quit (Ping timeout: 252 seconds)
[15:33] * blkaway is now known as blkhawk
[15:37] * zomgbie (~jesus@h081217190090.dyn.cm.kabsi.at) has joined #raspbian
[15:40] * wiiguy (~fake@unaffiliated/wiiguy) has joined #raspbian
[15:43] * Blizzbob (~Blizzbob@tmo-102-5.customers.d1-online.com) has joined #raspbian
[15:46] * GuySoft (~guysoft@37.26.147.171) has joined #raspbian
[15:55] * Blizzbob (~Blizzbob@tmo-102-5.customers.d1-online.com) Quit (Remote host closed the connection)
[15:55] * [SkG] (~sconde@unaffiliated/skg/x-897332) has joined #raspbian
[16:06] * zomgbie (~jesus@h081217190090.dyn.cm.kabsi.at) Quit (Ping timeout: 240 seconds)
[16:07] * twolife is now known as twolife`
[16:11] * \\Mr_C\\ (mrc@adsl-98-89-69-216.mgm.bellsouth.net) Quit ()
[16:13] * \\Mr_C\\ (mrc@adsl-98-89-69-216.mgm.bellsouth.net) has joined #raspbian
[16:16] * blkhawk is now known as blkaway
[16:24] * GuySoft (~guysoft@37.26.147.171) Quit (Ping timeout: 246 seconds)
[16:24] * zomgbie (~jesus@h081217190090.dyn.cm.kabsi.at) has joined #raspbian
[16:27] * blkaway is now known as blkhawk
[16:29] * mythos (~mythos@unaffiliated/mythos) has joined #raspbian
[16:33] * bertrik (~quassel@rockbox/developer/bertrik) has joined #raspbian
[16:35] * FR^2 (~frquadrat@farsquare.de) Quit (Quit: Connection reset by peer)
[16:40] * [SkG] (~sconde@unaffiliated/skg/x-897332) Quit (Remote host closed the connection)
[16:41] * Vorpal (~Vorpal@unaffiliated/vorpal) Quit (Quit: ZNC - http://znc.sourceforge.net)
[16:45] * lupinedk is now known as Lupinedk
[16:46] * Lupinedk is now known as lupinedk
[16:46] * wad (~wad@vps.zerbat.com) has joined #raspbian
[16:50] * vagrantc (~vagrant@freegeek/vagrantc) has joined #raspbian
[16:53] * MrSparkle (~MrSparkle@cpe-66-66-224-27.rochester.res.rr.com) has joined #raspbian
[17:07] * ztaale (~bleh@ti0098a380-dhcp0133.bb.online.no) has joined #raspbian
[17:14] * timmmaaaayyy (~timmmaaaa@cpe-68-175-79-100.nyc.res.rr.com) Quit (Ping timeout: 240 seconds)
[17:17] * timmmaaaayyy (~timmmaaaa@cpe-68-175-79-100.nyc.res.rr.com) has joined #raspbian
[17:20] * poli (~pi@177.157.128.155) Quit (Ping timeout: 256 seconds)
[17:27] * nick__ (~nick@50.122.44.199) has joined #raspbian
[17:30] * meti (~meti@unaffiliated/meti) Quit (Ping timeout: 261 seconds)
[17:32] * meti (~meti@unaffiliated/meti) has joined #raspbian
[17:34] * verysoftoiletppr (~verysofto@unaffiliated/softtoiletpaper) has joined #raspbian
[17:46] * leonardo_ (~debian@177.53.180.133) has joined #raspbian
[17:46] * optimusprimem (~debian@unaffiliated/optimusprimem) Quit (Ping timeout: 245 seconds)
[17:47] * daveee12_ (~daveee123@ip-210-100.oberlin.net) has joined #raspbian
[17:49] * daveee123 (~daveee123@ip-210-100.oberlin.net) Quit (Ping timeout: 248 seconds)
[17:52] * mike_t (~mike@80.234.127.49) Quit (Remote host closed the connection)
[18:16] * nick__ (~nick@50.122.44.199) Quit (Quit: Leaving)
[18:40] * gnarface (~gnarface@50.9.177.220) Quit (Ping timeout: 245 seconds)
[18:41] * nitdega__ (nitdega@2602:306:2423:eb1:a071:ca5d:8c87:d9a5) has joined #raspbian
[18:41] * gnarface (~gnarface@50.9.177.220) has joined #raspbian
[18:42] * gnarface is now known as Guest18558
[18:44] * raidensnake (568ccf43@gateway/web/freenode/ip.86.140.207.67) has joined #raspbian
[18:44] * nitdega_ (nitdega@2602:306:2423:eb1:a071:ca5d:8c87:d9a5) Quit (Ping timeout: 245 seconds)
[18:57] * nitdega__ (nitdega@2602:306:2423:eb1:a071:ca5d:8c87:d9a5) Quit (Quit: Leaving)
[19:06] * dest4ever (~kvirc@unaffiliated/dest4ever) has joined #raspbian
[19:11] -mist- [Global Notice] There may be some join/part noise for a while as we need to re-hub a few servers for some maintenance. Those of a nervous disposition may wish to take a break and grab a beverage. Thanks for flying freenode.
[19:11] * hsp (~holgi@77-20-54-179-dynip.superkabel.de) Quit (Read error: Connection reset by peer)
[19:12] * hsp (~holgi@77-20-54-179-dynip.superkabel.de) has joined #raspbian
[19:15] * nitdega (nitdega@2602:306:2423:eb1:4d10:77be:9a43:d628) has joined #raspbian
[19:17] * hubutm20 (~hubutm20@79.114.116.44) has joined #raspbian
[19:17] * taza (~zap@unaffiliated/taza) has joined #raspbian
[19:17] * bacilla (~karolis@unaffiliated/velkam) Quit (*.net *.split)
[19:17] * Broken_Biscuit (~Oliver@94-192-128-116.zone6.bethere.co.uk) Quit (*.net *.split)
[19:17] * scientist (~scientist@206.248.137.227) Quit (*.net *.split)
[19:17] * brainwash (~brainwash@unaffiliated/brainwash) Quit (*.net *.split)
[19:17] * noya (~noya@lvps46-163-116-9.dedicated.hosteurope.de) Quit (*.net *.split)
[19:17] * wharfrat (~wharfrat@unaffiliated/dedhed) Quit (*.net *.split)
[19:17] * sraue (~stephan@xbmc/staff/sraue) Quit (*.net *.split)
[19:17] * Mogwai (~mogwai@206-248-185-25.dsl.teksavvy.com) Quit (*.net *.split)
[19:17] * niska (~niska@li125-242.members.linode.com) Quit (*.net *.split)
[19:17] * joako (~joako@opensuse/member/joak0) Quit (*.net *.split)
[19:17] * hhehw (~hhehw@hhehw.phreefilez.com) Quit (*.net *.split)
[19:17] * jinie (~jinie@vile.devlix.dk) Quit (*.net *.split)
[19:17] * Gallomimia (~gallo@key.cha0sgaming.net) Quit (*.net *.split)
[19:17] * ciborg (uid5739@gateway/web/irccloud.com/x-tywqzvqqzvpcryhj) Quit (*.net *.split)
[19:17] * lupinedk (~lupine6@unaffiliated/lupinedk) Quit (*.net *.split)
[19:17] * demure (U2FsdGVkX1@ma.sdf.org) Quit (*.net *.split)
[19:17] * AHammar (~AHammar@nl107-187-151.student.uu.se) Quit (*.net *.split)
[19:17] * lookshe (~DaLutz@unaffiliated/lookshe) Quit (*.net *.split)
[19:18] * bacilla (~karolis@unaffiliated/velkam) has joined #raspbian
[19:18] * Broken_Biscuit (~Oliver@94-192-128-116.zone6.bethere.co.uk) has joined #raspbian
[19:18] * scientist (~scientist@206.248.137.227) has joined #raspbian
[19:18] * brainwash (~brainwash@unaffiliated/brainwash) has joined #raspbian
[19:18] * noya (~noya@lvps46-163-116-9.dedicated.hosteurope.de) has joined #raspbian
[19:18] * wharfrat (~wharfrat@unaffiliated/dedhed) has joined #raspbian
[19:18] * sraue (~stephan@xbmc/staff/sraue) has joined #raspbian
[19:18] * Mogwai (~mogwai@206-248-185-25.dsl.teksavvy.com) has joined #raspbian
[19:18] * niska (~niska@li125-242.members.linode.com) has joined #raspbian
[19:18] * joako (~joako@opensuse/member/joak0) has joined #raspbian
[19:18] * hhehw (~hhehw@hhehw.phreefilez.com) has joined #raspbian
[19:18] * jinie (~jinie@vile.devlix.dk) has joined #raspbian
[19:18] * Gallomimia (~gallo@key.cha0sgaming.net) has joined #raspbian
[19:18] * ciborg (uid5739@gateway/web/irccloud.com/x-tywqzvqqzvpcryhj) has joined #raspbian
[19:18] * lupinedk (~lupine6@unaffiliated/lupinedk) has joined #raspbian
[19:18] * demure (U2FsdGVkX1@ma.sdf.org) has joined #raspbian
[19:18] * AHammar (~AHammar@nl107-187-151.student.uu.se) has joined #raspbian
[19:18] * lookshe (~DaLutz@unaffiliated/lookshe) has joined #raspbian
[19:18] * w3rp (~werp@ool-43567875.dyn.optonline.net) has joined #raspbian
[19:20] * w3rp (~werp@ool-43567875.dyn.optonline.net) Quit (*.net *.split)
[19:20] * shadeslayer (~shadeslay@ubuntu/member/shadeslayer) Quit (*.net *.split)
[19:20] * HornyReaper (~Horny7Rea@78.193.104.152) Quit (*.net *.split)
[19:20] * babel_ (~quassel@209.141.35.68) Quit (*.net *.split)
[19:20] * eggy (eggy@unaffiliated/eggy) Quit (*.net *.split)
[19:20] * pbccw (~pbandchee@unaffiliated/oneunder) Quit (*.net *.split)
[19:20] * riddle (riddle@us.yunix.net) Quit (*.net *.split)
[19:20] * garply (garply@unaffiliated/garply) Quit (*.net *.split)
[19:20] * teeteewhy (~teeteewhy@no.ra.pe) Quit (*.net *.split)
[19:20] * rbxs (~rbxs@pi.7av55st.com) Quit (*.net *.split)
[19:20] * Aranel (~Aranel@unaffiliated/aranel) Quit (*.net *.split)
[19:20] * RiverRat (~me@gentoo/contributor/riverrat) Quit (*.net *.split)
[19:20] * XpineX (~XpineX@2-104-249-182-static.dk.customer.tdc.net) Quit (*.net *.split)
[19:21] * w3rp (~werp@ool-43567875.dyn.optonline.net) has joined #raspbian
[19:21] * shadeslayer (~shadeslay@ubuntu/member/shadeslayer) has joined #raspbian
[19:21] * HornyReaper (~Horny7Rea@78.193.104.152) has joined #raspbian
[19:21] * babel_ (~quassel@209.141.35.68) has joined #raspbian
[19:21] * eggy (eggy@unaffiliated/eggy) has joined #raspbian
[19:21] * pbccw (~pbandchee@unaffiliated/oneunder) has joined #raspbian
[19:21] * riddle (riddle@us.yunix.net) has joined #raspbian
[19:21] * garply (garply@unaffiliated/garply) has joined #raspbian
[19:21] * teeteewhy (~teeteewhy@no.ra.pe) has joined #raspbian
[19:21] * rbxs (~rbxs@pi.7av55st.com) has joined #raspbian
[19:21] * Aranel (~Aranel@unaffiliated/aranel) has joined #raspbian
[19:21] * RiverRat (~me@gentoo/contributor/riverrat) has joined #raspbian
[19:21] * XpineX (~XpineX@2-104-249-182-static.dk.customer.tdc.net) has joined #raspbian
[19:22] * raidensnake (568ccf43@gateway/web/freenode/ip.86.140.207.67) Quit (*.net *.split)
[19:22] * werp_ (~werp@ool-43567875.dyn.optonline.net) Quit (Ping timeout: 276 seconds)
[19:22] * raidensnake (568ccf43@gateway/web/freenode/ip.86.140.207.67) has joined #raspbian
[19:23] * creemj (~mjc@60-234-221-162.bitstream.orcon.net.nz) has joined #raspbian
[19:23] * hubutm20 (~hubutm20@79.114.116.44) Quit (*.net *.split)
[19:23] * hsp (~holgi@77-20-54-179-dynip.superkabel.de) Quit (*.net *.split)
[19:23] * Tudela (~tudela@a89-152-9-7.cpe.netcabo.pt) Quit (*.net *.split)
[19:23] * atouk (~kvirc@ool-457e23d5.dyn.optonline.net) Quit (*.net *.split)
[19:23] * _Lucretia__ (~munkee@90.218.162.144) Quit (*.net *.split)
[19:23] * SwK (krice@freeswitch/developer/swk) Quit (*.net *.split)
[19:23] * Radix_ (~quassel@203.161.71.161.static.amnet.net.au) Quit (*.net *.split)
[19:23] * yano (yano@freenode/staff/yano) Quit (*.net *.split)
[19:23] * mac- (~mac@178.63.184.62) Quit (*.net *.split)
[19:23] * piney (~piney0@unaffiliated/piney0) Quit (*.net *.split)
[19:23] * LucasCozy (~LucasCozy@unaffiliated/lucascozy) Quit (*.net *.split)
[19:23] * Peter`Pan (~Peter@2a01:e0b:1000:14:baac:6fff:fe97:a1ed) Quit (*.net *.split)
[19:23] * johskar (~johskar@h.skartland.net) Quit (*.net *.split)
[19:23] * basiclaser (~basiclase@gateway/shell/elitebnc/x-xzdbmisnxsnsgyaj) Quit (*.net *.split)
[19:23] * Killerkid (~uid7897@gateway/web/irccloud.com/x-vcazyxyuuxwfjokl) Quit (*.net *.split)
[19:23] * stormer (~nicolas@pasanda.collabora.co.uk) Quit (*.net *.split)
[19:23] * GorillaPatch (~GorillaPa@ln01.gorillapatch.com) Quit (*.net *.split)
[19:23] * CEnnis91 (uid3543@gateway/web/irccloud.com/x-ktpgwbnegbtjxwve) Quit (*.net *.split)
[19:23] * Kaboon (~Kaboon@524A5520.cm-4-3b.dynamic.ziggo.nl) Quit (*.net *.split)
[19:23] * Vegar (~vegar@unaffiliated/vegar) Quit (*.net *.split)
[19:23] * pbn (pbn@k-lined.info) Quit (*.net *.split)
[19:23] * edggeek (~edggeek@ultra.edgonline.nl) Quit (*.net *.split)
[19:23] * cleb (~sysop@defcon-3.net) Quit (*.net *.split)
[19:23] * cryptosteve (~stell@gentoo/contributor/cryptohappen) Quit (*.net *.split)
[19:24] * zomgbie (~jesus@h081217190090.dyn.cm.kabsi.at) Quit (Read error: Connection reset by peer)
[19:25] * zomgbie (~jesus@h081217190090.dyn.cm.kabsi.at) has joined #raspbian
[19:29] * Vegar (~vegar@unaffiliated/vegar) has joined #raspbian
[19:29] * cleb (~sysop@defcon-3.net) has joined #raspbian
[19:29] * mac- (mac@mac.banda.pl) has joined #raspbian
[19:29] * pbn (pbn@k-lined.info) has joined #raspbian
[19:32] * stormer (nicolas@pasanda.collabora.co.uk) has joined #raspbian
[19:32] * raidensnake (568ccf43@gateway/web/freenode/ip.86.140.207.67) Quit (Quit: Page closed)
[19:32] * taza (~zap@unaffiliated/taza) Quit (Ping timeout: 248 seconds)
[19:34] * piney (~piney0@unaffiliated/piney0) has joined #raspbian
[19:34] * johskar (~johskar@h.skartland.net) has joined #raspbian
[19:34] * LucasCozy (~LucasCozy@ip-28.net-81-220-161.rev.numericable.fr) has joined #raspbian
[19:34] * LucasCozy (~LucasCozy@ip-28.net-81-220-161.rev.numericable.fr) Quit (Changing host)
[19:34] * LucasCozy (~LucasCozy@unaffiliated/lucascozy) has joined #raspbian
[19:35] * atouk (~kvirc@ool-457e23d5.dyn.optonline.net) has joined #raspbian
[19:35] * hubutm20 (~hubutm20@79.114.116.44) has joined #raspbian
[19:35] * hsp (~holgi@77-20-54-179-dynip.superkabel.de) has joined #raspbian
[19:35] * Tudela (~tudela@a89-152-9-7.cpe.netcabo.pt) has joined #raspbian
[19:35] * SwK (krice@freeswitch/developer/swk) has joined #raspbian
[19:35] * Radix_ (~quassel@203.161.71.161.static.amnet.net.au) has joined #raspbian
[19:35] * Peter`Pan (~Peter@2a01:e0b:1000:14:baac:6fff:fe97:a1ed) has joined #raspbian
[19:35] * GorillaPatch (~GorillaPa@ln01.gorillapatch.com) has joined #raspbian
[19:35] * basiclaser (~basiclase@gateway/shell/elitebnc/x-xzdbmisnxsnsgyaj) has joined #raspbian
[19:35] * Killerkid (~uid7897@gateway/web/irccloud.com/x-vcazyxyuuxwfjokl) has joined #raspbian
[19:35] * CEnnis91 (uid3543@gateway/web/irccloud.com/x-ktpgwbnegbtjxwve) has joined #raspbian
[19:35] * Kaboon (~Kaboon@524A5520.cm-4-3b.dynamic.ziggo.nl) has joined #raspbian
[19:35] * edggeek (~edggeek@ultra.edgonline.nl) has joined #raspbian
[19:35] * cryptosteve (~stell@gentoo/contributor/cryptohappen) has joined #raspbian
[19:35] * _Lucretia__ (~munkee@90.218.162.144) has joined #raspbian
[19:35] * taza (~zap@unaffiliated/taza) has joined #raspbian
[19:39] * zZz_Skelli is now known as Skelli
[19:40] -mist- [Global Notice] Thanks, that should be all the moving around for now. kornbluth will be leaving the network in the next few hours for some fix work, other than that, normal service is resumed. Thanks.
[19:50] * HornyReaper (~Horny7Rea@78.193.104.152) Quit (Quit: Ex-Chat)
[19:51] * HornyReaper (~Horny7Rea@78.193.104.152) has joined #raspbian
[19:54] * rela (~x@pdpc/supporter/active/rela) Quit (Ping timeout: 276 seconds)
[19:57] * raven (~raven@dslb-094-216-218-210.pools.arcor-ip.net) has joined #raspbian
[19:58] * PasNox (~pasnox@2a01:e35:8b4f:f2a0:5d49:c3ad:5297:8db7) Quit (Ping timeout: 245 seconds)
[20:00] * yano (yano@freenode/staff/yano) has joined #raspbian
[20:10] * raven (~raven@dslb-094-216-218-210.pools.arcor-ip.net) Quit (Quit: Verlassend)
[20:16] * HornyReaper (~Horny7Rea@78.193.104.152) Quit (Quit: Ex-Chat)
[20:28] * blkhawk is now known as blkaway
[20:28] * blkaway is now known as blkhawk
[20:28] * blkhawk is now known as blkaway
[20:31] * simone_ (~simone@host54-160-dynamic.1-79-r.retail.telecomitalia.it) Quit (Ping timeout: 248 seconds)
[20:34] * txt-file (~txt@i59F6A5A6.versanet.de) Quit (Ping timeout: 264 seconds)
[20:36] * hubutm20 (~hubutm20@79.114.116.44) Quit (Quit: Ulliendo)
[20:37] * hsp (~holgi@77-20-54-179-dynip.superkabel.de) Quit (Remote host closed the connection)
[20:42] * txt-file (~txt@i59F6BE82.versanet.de) has joined #raspbian
[20:44] * simone_ (~simone@host140-7-dynamic.249-95-r.retail.telecomitalia.it) has joined #raspbian
[20:46] * ztaale (~bleh@ti0098a380-dhcp0133.bb.online.no) Quit (Read error: Connection reset by peer)
[20:46] * HornyReaper (~Horny7Rea@78.193.104.152) has joined #raspbian
[20:51] * daveee12_ (~daveee123@ip-210-100.oberlin.net) Quit (Remote host closed the connection)
[20:52] * blkaway is now known as blkhawk
[20:57] * leonardo_ (~debian@177.53.180.133) Quit (Quit: Saindo)
[20:57] * optimusprimem (~debian@unaffiliated/optimusprimem) has joined #raspbian
[21:00] * Skelli is now known as zZz_Skelli
[21:01] * optimusprimem (~debian@unaffiliated/optimusprimem) Quit (Excess Flood)
[21:04] * optimusprimem (~debian@unaffiliated/optimusprimem) has joined #raspbian
[21:11] * optimusprimem (~debian@unaffiliated/optimusprimem) Quit (Max SendQ exceeded)
[21:36] * andatche (~andatche@mule.andatche.com) Quit (Excess Flood)
[21:38] * andatche (~andatche@mule.andatche.com) has joined #raspbian
[21:39] * Broken_Biscuit (~Oliver@94-192-128-116.zone6.bethere.co.uk) Quit (Read error: Connection reset by peer)
[21:41] * pbn (pbn@k-lined.info) Quit (Quit: Changing server)
[21:42] * pbn (pbn@wopr.geekshells.org) has joined #raspbian
[21:44] * laine (~laine@dyn-96-31-112-15.sub.tctwest.net) Quit (Ping timeout: 245 seconds)
[21:55] * PasNox (~pasnox@2a01:e35:8b4f:f2a0:f44a:c52b:ee3d:6ea1) has joined #raspbian
[21:56] * laine (~laine@dyn-96-31-112-15.sub.tctwest.net) has joined #raspbian
[22:00] * PasNox (~pasnox@2a01:e35:8b4f:f2a0:f44a:c52b:ee3d:6ea1) Quit (Ping timeout: 246 seconds)
[22:02] * daveee123 (~daveee123@ip-209-203.oberlin.net) has joined #raspbian
[22:02] * atouk (~kvirc@ool-457e23d5.dyn.optonline.net) Quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
[22:07] * daveee123 (~daveee123@ip-209-203.oberlin.net) Quit (Ping timeout: 276 seconds)
[22:14] * HornyReaper (~Horny7Rea@78.193.104.152) Quit (Quit: Ex-Chat)
[22:16] * HornyReaper (~Horny7Rea@78.193.104.152) has joined #raspbian
[22:16] * HornyReaper (~Horny7Rea@78.193.104.152) Quit (Read error: Connection reset by peer)
[22:19] * HornyReaper (~Horny7Rea@78.193.104.152) has joined #raspbian
[22:24] * lupinedk is now known as Lupinedk
[22:26] * mapee (~User@84-236-89-8.pool.digikabel.hu) Quit (Quit: Leaving)
[22:30] * dwatkins_ (~dominic@darktrain.nuxx.net) has joined #raspbian
[22:32] * arnej_ (~quassel@arnej.de) has joined #raspbian
[22:32] * blkhawk is now known as blkaway
[22:33] * Steki (~steki@opensuse/member/bmanojlovic) has joined #raspbian
[22:33] * frals_ (~frals@h-209-70.a212.priv.bahnhof.se) has joined #raspbian
[22:33] * kzoo_ (~russellm@72.55.159.89) has joined #raspbian
[22:33] * no_maam_ (~chat@gauss.datenzone.de) has joined #raspbian
[22:33] * brainwash (~brainwash@unaffiliated/brainwash) Quit (Ping timeout: 240 seconds)
[22:34] * das_ofce_ (~rYtmus@46.28.111.109) has joined #raspbian
[22:34] * CME (~CME@146-52-7-150-dynip.superkabel.de) Quit (Ping timeout: 248 seconds)
[22:34] * TheJH (znc@thejh.net) Quit (Ping timeout: 248 seconds)
[22:34] * Niclas_ (uid10442@gateway/web/irccloud.com/x-zqlixmkymkyurtem) Quit (Ping timeout: 248 seconds)
[22:34] * kzoo (~russellm@72.55.159.89) Quit (Ping timeout: 248 seconds)
[22:34] * dwatkins (~dominic@pdpc/supporter/active/dwatkins) Quit (Ping timeout: 248 seconds)
[22:34] * arnej (~quassel@unaffiliated/ampheus) Quit (Ping timeout: 248 seconds)
[22:34] * das_ofce (~rYtmus@46.28.111.109) Quit (Ping timeout: 248 seconds)
[22:34] * heyyoo (~heyyoo@orbital.corecloud.com) Quit (Ping timeout: 248 seconds)
[22:34] * frals (~frals@h-209-70.a212.priv.bahnhof.se) Quit (Ping timeout: 248 seconds)
[22:34] * no_maam (~chat@gauss.datenzone.de) Quit (Ping timeout: 248 seconds)
[22:34] * BManojlovic (~steki@opensuse/member/bmanojlovic) Quit (Ping timeout: 248 seconds)
[22:34] * voe (~voe@c-69-181-52-128.hsd1.ca.comcast.net) Quit (Ping timeout: 248 seconds)
[22:34] * Scriven (~nevirsc@S01060026f3c70320.vc.shawcable.net) Quit (Ping timeout: 248 seconds)
[22:34] * achabot (~achabot@89-156-88-36.rev.numericable.fr) Quit (Ping timeout: 248 seconds)
[22:34] * CME_ (~CME@146-52-7-150-dynip.superkabel.de) has joined #raspbian
[22:34] * heyyoo (~heyyoo@orbital.corecloud.com) has joined #raspbian
[22:34] * Scriven (~nevirsc@S01060026f3c70320.vc.shawcable.net) has joined #raspbian
[22:34] * voe (~voe@c-69-181-52-128.hsd1.ca.comcast.net) has joined #raspbian
[22:36] * heyyoo (~heyyoo@orbital.corecloud.com) Quit (*.net *.split)
[22:37] * achabot (~achabot@89-156-88-36.rev.numericable.fr) has joined #raspbian
[22:39] * Tudela (~tudela@a89-152-9-7.cpe.netcabo.pt) Quit (Remote host closed the connection)
[22:40] * Tudela (~tudela@a89-152-9-7.cpe.netcabo.pt) has joined #raspbian
[22:40] * brainwash (~brainwash@unaffiliated/brainwash) has joined #raspbian
[22:41] * Steki is now known as BManojlovic
[22:42] * Alfihar (~Yuuka@home.siberios.com) Quit (Quit: Textual IRC Client: www.textualapp.com)
[22:49] * wiiguy (~fake@unaffiliated/wiiguy) Quit (Quit: I just broke my connection, but no worries, we can rebuild it. We have the technology.)
[22:57] * BManojlovic (~steki@opensuse/member/bmanojlovic) Quit (Quit: Ja odoh a vi sta 'ocete...)
[23:00] * jakeri (~gfgf@a91-154-47-101.elisa-laajakaista.fi) Quit (Quit: ( www.nnscript.com :: NoNameScript 4.22 :: www.esnation.com ))
[23:00] * shadeslayer (~shadeslay@ubuntu/member/shadeslayer) Quit (Read error: Connection reset by peer)
[23:00] * shadeslayer (~shadeslay@ubuntu/member/shadeslayer) has joined #raspbian
[23:02] * TheJH (znc@thejh.net) has joined #raspbian
[23:04] * heyyoo (~heyyoo@orbital.corecloud.com) has joined #raspbian
[23:12] * optimusprimem (~debian@unaffiliated/optimusprimem) has joined #raspbian
[23:13] * \\Mr_C\\ (mrc@adsl-98-89-69-216.mgm.bellsouth.net) Quit ()
[23:22] * \\Mr_C\\ (mrc@adsl-98-89-8-61.mgm.bellsouth.net) has joined #raspbian
[23:31] * binBudha (~binBuddy@24-117-186-166.cpe.cableone.net) Quit (Read error: Connection reset by peer)
[23:32] * bertrik (~quassel@rockbox/developer/bertrik) Quit (Ping timeout: 276 seconds)
[23:36] * themill (~stuart@unaffiliated/themill) has joined #raspbian
[23:37] * s0lidsnak3 (~s0lidsnak@198.23.71.88) has joined #raspbian
[23:37] * Tudela (~tudela@a89-152-9-7.cpe.netcabo.pt) Quit (Remote host closed the connection)
[23:44] * Tudela (~tudela@a89-152-9-7.cpe.netcabo.pt) has joined #raspbian
[23:45] * [1]biacz (~biacz@p5DDF9179.dip0.t-ipconnect.de) has joined #raspbian
[23:46] * biacz (~biacz@p5DDF9179.dip0.t-ipconnect.de) Quit (Ping timeout: 264 seconds)
[23:46] * [1]biacz is now known as biacz
[23:48] * binBudha (~binBuddy@24-117-186-166.cpe.cableone.net) has joined #raspbian

These logs were automatically created by RaspbianLogBot on irc.freenode.net using the Java IRC LogBot.