code logs -> 2017 -> Wed, 20 Dec 2017< code.20171219.log - code.20171221.log >
--- Log opened Wed Dec 20 00:00:14 2017
00:00 Kindamoody is now known as Kindamoody[zZz]
00:09 Vornicus [Vorn@Nightstar-1l3nul.res.rr.com] has joined #code
00:09 mode/#code [+qo Vornicus Vornicus] by ChanServ
00:13 Degi [Degi@Nightstar-8s0r7l.dyn.telefonica.de] has quit [Connection reset by peer]
00:19 Jessikat [Jessikat@Nightstar-bt5k4h.81.in-addr.arpa] has joined #code
00:28
<&[R]>
Ughhh
00:29
<&[R]>
http://rpgb.nobl.ca/eno.twilight.txt <-- I had copy/pasted a few things from a PDF into that
00:30
<&[R]>
And some "smart-quotes" came along for the ride. Attempting to copy/paste them into a s/รข/'/g replace pattern doesn't work (as in the matching part doesn't find them). Both in vim and sed. What else can I try?
00:34
<&[R]>
Ah, /n[^a-z ]t/n't/
00:35
<&McMartin>
Sounds like they were recognized as unicode glyphs, at least
00:37 RchrdB [RchrdB@Nightstar-qe9.aug.187.81.IP] has quit [[NS] Quit: Leaving]
00:39 Vornicus [Vorn@Nightstar-1l3nul.res.rr.com] has quit [Ping timeout: 121 seconds]
01:19 Derakon[AFK] is now known as Derakon
02:12 Jessikat [Jessikat@Nightstar-bt5k4h.81.in-addr.arpa] has quit [Connection closed]
02:12 celticminstrel [celticminst@Nightstar-red7c7.dsl.bell.ca] has joined #code
02:12 mode/#code [+o celticminstrel] by ChanServ
02:14 himi [sjjf@Nightstar-dm0.2ni.203.150.IP] has quit [Ping timeout: 121 seconds]
02:14 Jessikat [Jessikat@Nightstar-4cc376.dab.02.net] has joined #code
02:32
<&ToxicFrog>
Whoooops
02:32 * ToxicFrog attaches a debugger to the compositor, from inside wayland, forgetting that doing so pauses the program until you `continue`
03:06
<&McMartin>
doh
03:07
<&[R]>
Heh
03:08
<&[R]>
Reminds me of that time I told someone about xkill and they ran it, then clicked the taskbar to bring up the window of the program they wanted to kill...
03:17
<&ToxicFrog>
Ok, I have a workaround for this kwin bug:
03:17
<&ToxicFrog>
gdb -p $(pidof kwin_wayland)
03:17
<&ToxicFrog>
break KWin::OSD::show
03:17
<&ToxicFrog>
commands
03:18
<&ToxicFrog>
return
03:18
<&ToxicFrog>
continue
03:18
<&ToxicFrog>
end
03:18
<&ToxicFrog>
continue
03:18
<&ToxicFrog>
It is important not to run this from inside kwin (or if you do, run it as a script with gdb -x) and not to forget either "continue" command.
03:33
<&McMartin>
"No, Nobby, that is a morningstar. It is important to not get the two confused."
03:53 himi [sjjf@Nightstar-v37cpe.internode.on.net] has joined #code
03:53 mode/#code [+o himi] by ChanServ
03:57 Vornicus [Vorn@Nightstar-1l3nul.res.rr.com] has joined #code
03:57 mode/#code [+qo Vornicus Vornicus] by ChanServ
04:03 Vornicus [Vorn@Nightstar-1l3nul.res.rr.com] has quit [Connection closed]
04:21 Vornicus [Vorn@Nightstar-1l3nul.res.rr.com] has joined #code
04:21 mode/#code [+qo Vornicus Vornicus] by ChanServ
04:28 Alek [Alek@Nightstar-7or629.il.comcast.net] has quit [Ping timeout: 121 seconds]
04:32 Alek [Alek@Nightstar-7or629.il.comcast.net] has joined #code
04:32 mode/#code [+o Alek] by ChanServ
04:49 Derakon is now known as Derakon[AFK]
05:18 celticminstrel [celticminst@Nightstar-red7c7.dsl.bell.ca] has quit [[NS] Quit: KABOOM! It seems that I have exploded. Please wait while I reinstall the universe.]
06:46 Vornlicious [Vorn@Nightstar-163lfa.sub-174-210-5.myvzw.com] has joined #code
06:49 Vorntastic [Vorn@Nightstar-1l3nul.res.rr.com] has quit [Ping timeout: 121 seconds]
07:44 Jessikat [Jessikat@Nightstar-4cc376.dab.02.net] has quit [[NS] Quit: Bye]
08:19 Kindamoody[zZz] is now known as Kindamoody
08:20
<&McMartin>
Man
08:20
<&McMartin>
A reminder that the past was a different time
08:20
<&McMartin>
In particular, a different time that didn't have compute shaders
08:20
<&McMartin>
https://www.youtube.com/watch?v=ieWmTfuM1yE
09:35 Vornicus [Vorn@Nightstar-1l3nul.res.rr.com] has quit [Ping timeout: 121 seconds]
10:05
< simon_>
I wish there was a paint program for Linux that was as simple as Pinta, but didn't crash 5 seconds after I open it.
10:05
< simon_>
all I ever want is 1) PNG support, 2) "Crop to selection", 3) Save.
10:28
<@TheWatcher>
It's a bit old, but perhaps mtpaint? Or how about kolourpaint?
13:33 Degi [Degi@Nightstar-8s0r7l.dyn.telefonica.de] has joined #code
14:01
<&[R]>
Math question: Given x+y=n and x*y=z, to get the higest value for z for any given n you'd want x and y to be as close as possible right?
14:04
<&[R]>
(Specific context: There's a "spell" you can cast with a variable number of "mp", the first point gives you a base amount of healing, after that you can spend the mp either on increasing the number of targets affected, or adding a target, both for 1 mp each. You also have an ability that allows you to reallocate any healing at will meaning given enough targets you could maximize the healing by adding targets then reallocating their share)
14:07
<&ToxicFrog>
[R]: yes; this is equivalent to the problem of maximizing the area of a rectangle for a given circumference
14:07
<&[R]>
Coolio
14:26
<&ToxicFrog>
I do have a question, though: how are "increasing the number of targets affected" and "adding a target" different?
14:28
<&[R]>
I'm sleep deprived
14:28
<&[R]>
I forgot I already included that in the list
14:33
<@TheWatcher>
It's probably a bit petty to point to the spec I was given (and the emails where I noted the problems with it, and the insistence to stick to the spec) when people start complaning that the system can't do something... that I warned them was going to be a problem.
14:33
<@TheWatcher>
But damn, it feels good.
14:36
<&[R]>
That's why you have the emails in the first place
14:36
< Vornlicious>
Mathematically, you can model x and y as x=n/2+e and y=n/2-e, multiplying them together gives z=n^2/4-e^2, which means the closer to 0 you can get e, the higher z will be.
14:40
< Vornlicious>
(holding n constant, etc)
15:25 Vornicus [Vorn@Nightstar-1l3nul.res.rr.com] has joined #code
15:25 mode/#code [+qo Vornicus Vornicus] by ChanServ
15:29
<~Vornicus>
McM: I now remember seeing this ad
16:08 Kindamoody is now known as Kindamoody|afk
16:33 Jessikat [Jessikat@Nightstar-733.klt.132.82.IP] has joined #code
17:06 Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has joined #code
17:14 M-E [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has joined #code
17:15 Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has quit [Ping timeout: 121 seconds]
17:55 Kindamoody|afk is now known as Kindamoody
18:04 Jessikat [Jessikat@Nightstar-733.klt.132.82.IP] has quit [Ping timeout: 121 seconds]
18:16 Degi [Degi@Nightstar-8s0r7l.dyn.telefonica.de] has quit [Connection closed]
18:50 Jessikat [Jessikat@Nightstar-bt5k4h.81.in-addr.arpa] has joined #code
18:50 Jessikat [Jessikat@Nightstar-bt5k4h.81.in-addr.arpa] has quit [Connection closed]
19:05 Vornicus [Vorn@Nightstar-1l3nul.res.rr.com] has quit [Ping timeout: 121 seconds]
19:51 Vornicus [Vorn@Nightstar-1l3nul.res.rr.com] has joined #code
19:51 mode/#code [+qo Vornicus Vornicus] by ChanServ
19:56 Vornicus [Vorn@Nightstar-1l3nul.res.rr.com] has quit [Ping timeout: 121 seconds]
20:32 Vornicus [Vorn@Nightstar-1l3nul.res.rr.com] has joined #code
20:32 mode/#code [+qo Vornicus Vornicus] by ChanServ
20:33 Kindamoody is now known as Kindamoody|afk
21:20 Kindamoody|afk is now known as Kindamoody
--- Log closed Wed Dec 20 21:24:37 2017
--- Log opened Wed Dec 20 21:24:49 2017
21:24 TheWatcher [chris@GlobalOperator.Nightstar.Net] has joined #code
21:24 Irssi: #code: Total of 34 nicks [26 ops, 0 halfops, 0 voices, 8 normal]
21:24 mode/#code [+o TheWatcher] by ChanServ
21:25 Irssi: Join to #code was synced in 67 secs
21:31 * ToxicFrog flails at Google Cloud Print
--- Log closed Wed Dec 20 21:32:38 2017
--- Log opened Wed Dec 20 21:32:49 2017
21:32 TheWatcher [chris@GlobalOperator.Nightstar.Net] has joined #code
21:32 Irssi: #code: Total of 34 nicks [26 ops, 0 halfops, 0 voices, 8 normal]
21:32 mode/#code [+o TheWatcher] by ChanServ
21:34 Irssi: Join to #code was synced in 81 secs
22:41
<&[R]>
Is that where you google for IoT printers that aren't firewalled at all and accessable by a public IP addy?
22:45
<&ToxicFrog>
[R]: no, that's SHODAN
22:46
<&ToxicFrog>
Google Cloud Print is Google's service where you wire printers up to ~the cloud~ and then you don't have to worry about getting your computers to talk to them as long as you do all your printing from Chrome
22:58 M-E [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has quit [Ping timeout: 121 seconds]
23:20 Jessikat [Jessikat@Nightstar-bt5k4h.81.in-addr.arpa] has joined #code
23:40 gnolam [quassel@Nightstar-e9kifc.cust.bredband2.com] has joined #code
23:41 mode/#code [+o gnolam] by ChanServ
--- Log closed Thu Dec 21 00:00:41 2017
code logs -> 2017 -> Wed, 20 Dec 2017< code.20171219.log - code.20171221.log >

[ Latest log file ]