code logs -> 2014 -> Tue, 08 Jul 2014< code.20140707.log - code.20140709.log >
--- Log opened Tue Jul 08 00:00:56 2014
00:10 Derakon [MacPro@Nightstar-5fqf0m.ca.comcast.net] has quit [[NS] Quit: Lost terminal]
00:11 Vornicus [Vorn@Nightstar-uen1kh.ct.comcast.net] has joined #code
00:12 mode/#code [+qo Vornicus Vornicus] by ChanServ
00:21 himi [fow035@Nightstar-v37cpe.internode.on.net] has quit [Ping timeout: 121 seconds]
00:33 You're now known as TheWatcher[t-2]
00:35 himi [fow035@Nightstar-v37cpe.internode.on.net] has joined #code
00:35 mode/#code [+o himi] by ChanServ
00:35 You're now known as TheWatcher[zZzZ]
01:19 himi [fow035@Nightstar-v37cpe.internode.on.net] has quit [Ping timeout: 121 seconds]
01:27 RchrdBrrll [RichardB@Nightstar-952.jvr.168.194.IP] has quit [[NS] Quit: This computer has gone to sleep]
01:32 himi [fow035@Nightstar-v37cpe.internode.on.net] has joined #code
01:32 mode/#code [+o himi] by ChanServ
01:37 himi [fow035@Nightstar-v37cpe.internode.on.net] has quit [Ping timeout: 121 seconds]
01:42 RchrdB_ [Richard@Nightstar-qe9.aug.187.81.IP] has joined #code
01:46 Turaiel[Offline] is now known as Turaiel
01:51 himi [fow035@Nightstar-v37cpe.internode.on.net] has joined #code
01:51 mode/#code [+o himi] by ChanServ
02:01 RchrdB_ [Richard@Nightstar-qe9.aug.187.81.IP] has quit [Ping timeout: 121 seconds]
02:54 macdjord|slep is now known as macdjord
02:56 himi [fow035@Nightstar-v37cpe.internode.on.net] has quit [Ping timeout: 121 seconds]
03:09 himi [fow035@Nightstar-v37cpe.internode.on.net] has joined #code
03:09 mode/#code [+o himi] by ChanServ
03:12 io\minnesota is now known as iospace
03:24 Checkmate [Z@Nightstar-484uip.cust.comxnet.dk] has quit [Ping timeout: 121 seconds]
03:36 Kindamoody[zZz] is now known as Kindamoody
03:52 Vornicus [Vorn@Nightstar-uen1kh.ct.comcast.net] has quit [Connection closed]
04:16 VirusJTG [VirusJTG@Nightstar-6i5vf7.sta.comporium.net] has quit [[NS] Quit: Program Shutting down]
06:12 Turaiel is now known as Turaiel[Offline]
06:13 RchrdB [RichardB@Nightstar-c6u.vd5.170.83.IP] has quit [[NS] Quit: Gone.]
06:16 RchrdB [RichardB@Nightstar-c6u.vd5.170.83.IP] has joined #code
06:36 ErikMesoy [Erik@Nightstar-48q.uk2.203.80.IP] has quit [[NS] Quit: Packing and heading to cabin]
07:12 You're now known as TheWatcher
07:17 himi [fow035@Nightstar-v37cpe.internode.on.net] has quit [Ping timeout: 121 seconds]
07:30 himi [fow035@Nightstar-v37cpe.internode.on.net] has joined #code
07:30 mode/#code [+o himi] by ChanServ
07:44 Kindamoody is now known as Kindamoody|afk
07:57
<&McMartin>
froztbyte: Woo
08:12 macdjord [macdjord@Nightstar-7rac1r.mc.videotron.ca] has quit [Ping timeout: 121 seconds]
08:14 AverageJoe [evil1@Nightstar-fb1kt4.ph.cox.net] has joined #code
08:32 celticminstrel is now known as celmin|sleep
08:33 AverageJoe [evil1@Nightstar-fb1kt4.ph.cox.net] has quit [[NS] Quit: Leaving]
09:09
<&jeroud>
Build systems are always full of spiders.
09:15 himi [fow035@Nightstar-v37cpe.internode.on.net] has quit [Ping timeout: 121 seconds]
09:19
< luke>
With the occasional cockroach
09:29 himi [fow035@Nightstar-v37cpe.internode.on.net] has joined #code
09:29 mode/#code [+o himi] by ChanServ
09:44 RchrdB_ [Richard@Nightstar-qe9.aug.187.81.IP] has joined #code
09:59 RchrdB_ [Richard@Nightstar-qe9.aug.187.81.IP] has quit [Ping timeout: 121 seconds]
10:11 RchrdBrrll [RichardB@Nightstar-952.jvr.168.194.IP] has joined #code
11:03 * TheWatcher ugghs at HCI stuff
11:05
<@TheWatcher>
Nothing highlights just how many assumptions you make about how people will react to an interface more than sitting someone in front of it and asking them to do a couple of simple things without any intro or training
11:20 VirusJTG [VirusJTG@Nightstar-6i5vf7.sta.comporium.net] has joined #code
11:30 Checkmate [Z@Nightstar-484uip.cust.comxnet.dk] has joined #code
11:30 mode/#code [+o Checkmate] by ChanServ
11:50
< RchrdBrrll>
TheWatcher, agreed, UX is difficult.
12:22 * Azash decides to remove all the .erb~ backups that gedit makes
12:22 * Azash for file in `find . | grep -i "\.erb$"`; do rm $file; done
12:22
<@Azash>
Wait..
12:23
< luke>
What happened to the ~ in the grep?
12:23
<@Azash>
luke: That is, in fact, the "wait.." part
12:24
< luke>
On a side note, what's wrong with find . -name etc.
12:25
<@Azash>
Was already reminded about that, I just use the grep pipe out of habit
12:25
< luke>
Ah
12:42 himi [fow035@Nightstar-v37cpe.internode.on.net] has quit [Ping timeout: 121 seconds]
12:47
< RchrdBrrll>
Azash, that has a bunch of other bugs too, like it does the wrongest possible thing if you have a filename with spaces in it.
12:48
< RchrdBrrll>
Azash, you wanted to write, find . -type f -name '*.erb~' -print0 | xargs -0 rm
12:48
<@Azash>
That I know, but there are none
12:49
< RchrdBrrll>
Make dealing with weird filenames correctly be a habit that you get into so that it won't bite you later.
12:50
< RchrdBrrll>
Newlines in filenames are also valid. (!)
12:50
<@Azash>
Sure, but I wouldn't say "don't do things unless you're certain they work" is a bad habit either
12:52
< RchrdBrrll>
Sure. The *best* advice is to run: find . -type f -name '*.erb~'
12:52
< RchrdBrrll>
then press up, and add to the end: find . -type f -name '*.erb~' -exec rm '{}' +
12:52
< RchrdBrrll>
:)
12:53
< Syka>
or -delete
12:53
< Syka>
-exec rm is bad
12:55 himi [fow035@Nightstar-v37cpe.internode.on.net] has joined #code
12:55 mode/#code [+o himi] by ChanServ
13:22 Turaiel[Offline] is now known as Turaiel
13:43 Turaiel is now known as Turaiel[Offline]
14:49 Kindamoody|afk is now known as Kindamoody
14:52 celmin|sleep is now known as celticminstrel
15:17 Kindamoody is now known as Kindamoody|out
16:59 Kurczak is now known as Julius
17:02 himi [fow035@Nightstar-v37cpe.internode.on.net] has quit [Ping timeout: 121 seconds]
17:14 himi [fow035@Nightstar-v37cpe.internode.on.net] has joined #code
17:15 mode/#code [+o himi] by ChanServ
17:28 Turaiel[Offline] [Brandon@Nightstar-5st1eu.mi.comcast.net] has quit [Ping timeout: 121 seconds]
17:29 Turaiel[Offline] [Brandon@Nightstar-5st1eu.mi.comcast.net] has joined #code
17:33 RichardB_ [RichardB@Nightstar-952.jvr.168.194.IP] has joined #code
17:33 RchrdBrrll [RichardB@Nightstar-952.jvr.168.194.IP] has quit [Connection closed]
19:22 mode/#code [+o RchrdB] by ChanServ
19:24 RichardB_ [RichardB@Nightstar-952.jvr.168.194.IP] has quit [[NS] Quit: Leaving]
19:28 Julius is now known as AnnoDomini
19:29 AnnoDomini is now known as Julius
21:00 Syka [the@Nightstar-d16r4u.vividwireless.net.au] has quit [Ping timeout: 121 seconds]
21:01 Syka [the@Nightstar-d16r4u.vividwireless.net.au] has joined #code
22:08 celticminstrel [celticminst@Nightstar-jiiubu.dsl.bell.ca] has quit [Ping timeout: 121 seconds]
22:11 celticminstrel [celticminst@Nightstar-6pf18d.dsl.bell.ca] has joined #code
22:11 mode/#code [+o celticminstrel] by ChanServ
22:27 RchrdB_ [Richard@Nightstar-qe9.aug.187.81.IP] has joined #code
22:35 celticminstrel [celticminst@Nightstar-6pf18d.dsl.bell.ca] has left #code []
22:36 celticminstrel [celticminst@Nightstar-6pf18d.dsl.bell.ca] has joined #code
22:36 mode/#code [+o celticminstrel] by ChanServ
23:22 Kindamoody|out is now known as Kindamoody
23:35 Kindamoody is now known as Kindamoody[zZz]
--- Log closed Wed Jul 09 00:00:12 2014
code logs -> 2014 -> Tue, 08 Jul 2014< code.20140707.log - code.20140709.log >

[ Latest log file ]