--- Log opened Wed Jun 13 00:00:04 2018 |
00:06 | | gnolam [quassel@Nightstar-e9kifc.cust.bredband2.com] has joined #code |
00:06 | | mode/#code [+o gnolam] by ChanServ |
00:21 | | Jessikat [Jessikat@Nightstar-ici.equ.132.82.IP] has joined #code |
01:07 | | celticminstrel [celticminst@Nightstar-jocbi5.dsl.bell.ca] has joined #code |
01:07 | | mode/#code [+o celticminstrel] by ChanServ |
01:10 | <@celticminstrel> | For some reason my Windows 7 computer randomly restarted itself this morning. It's not Windows Update (because there was no "We installed updates!" notification when I logged in). Normally I'd assume a brownout, but the bedside clock wasn't reset. |
01:10 | <@celticminstrel> | Not sure if that categorically rules it out though... |
01:11 | <&[R]> | I've had brownouts take out some systems but not others or clocks |
01:12 | <@Alek> | I've had brownouts take out my UPS /only/ including my PC and the modem which are on it, and nothing else in the house. |
01:13 | <@Alek> | more than once. |
01:13 | <&[R]> | Lame |
01:13 | <@Alek> | albeit it was twice just a week apart the last couple times, so I feel like maybe I should look at replacing the UPS itself, might be something more with it than just a dead battery. |
01:14 | <@Alek> | also uh. should move the repeater closer to the modem by a floor, I guess. unrelated, just thinking out loud. |
01:16 | <@gnolam> | celticminstrel: checked the event log? |
01:16 | <@celticminstrel> | I didn't. |
01:16 | <&[R]> | I've yet to be anything but unimpressed with the event log every time I've looked at it |
01:17 | <@Reiv> | HEY VORN |
01:17 | <@Reiv> | how do I math a thing |
01:17 | <@Reiv> | ... first by checking Vorn is here, I guess, welp |
01:17 | <@Reiv> | so, I have guns in a game |
01:17 | <@Reiv> | I have a bonus that grants something "-15% cooldown" |
01:17 | <@Reiv> | How do I turn that into "Effective DPS increase"? |
01:18 | <@celticminstrel> | So cooldown is time between attacks, yes? |
01:18 | <@Reiv> | Question is open to the floor, I am just forgetting basic math here |
01:18 | <@Reiv> | right |
01:19 | <@celticminstrel> | So based on the cooldown I guess you can calculate attacks per second (which would probably be a fraction). |
01:20 | <@celticminstrel> | I guess if cooldown is one second maybe that'd be one attack per second (or maybe not?). |
01:20 | <@Reiv> | Right |
01:20 | <@Reiv> | In this case, we're looking at 4.3 damage on a 2 second cooldown, for instance |
01:21 | <@Reiv> | So presumably -15% becomes a 1.7 second cooldown |
01:21 | <@celticminstrel> | Then each attack has an average damage, so the effective DPS would be the product of the two, I think. |
01:21 | <@celticminstrel> | If you know DPS before and after you can calculate percentage increase or whatever. |
01:21 | <@Reiv> | So 4.3/2 = 2.15/sec, 4.3/1.7 = 2.53 or something |
01:22 | <@Reiv> | What I would like, however, is that if I know the starting DPS, to be able to have the math to know the final DPS without doing all the intermediate stages |
01:22 | <@celticminstrel> | I guess a 2-second cooldown is half an attack per second so yeah that makes sense. |
01:22 | <@celticminstrel> | Well the answer to that requires algebra. |
01:22 | <@Reiv> | Yes |
01:22 | <@Reiv> | It was the algebra I was after~ |
01:23 | | Jessikat` [Jessikat@Nightstar-om9ps6.dab.02.net] has joined #code |
01:25 | | Jessikat [Jessikat@Nightstar-ici.equ.132.82.IP] has quit [Ping timeout: 121 seconds] |
01:27 | | gnolam [quassel@Nightstar-e9kifc.cust.bredband2.com] has quit [Connection closed] |
01:31 | | Derakon[AFK] is now known as Derakon |
01:37 | <&ToxicFrog> | damage[after] = damage[before] * 1/(1-[cooldown bonus]), I think |
01:39 | <@Reiv> | so 1/(1-.15), correct? |
01:40 | <@celticminstrel> | That's a little different from what I came up with but perhaps I didn't fully simplify... |
01:40 | | * Reiv muses |
01:40 | <@Reiv> | And of course every extra point of cooldown becomes increasingly more valuable |
01:40 | <@Reiv> | Thanks, TF, that's what I needed! |
01:41 | <@celticminstrel> | (FTR what I got was -(cooldown)/(cooldown+1).) |
01:42 | <@celticminstrel> | They differ by exactly 1, huh. |
01:43 | <@celticminstrel> | Looks like ToxicFrog's gives the multiplier while mine gives the percent change? |
02:06 | | Vornucopia [Vorn@Nightstar-sjaki9.res.rr.com] has joined #code |
02:22 | | Degi [Degi@Nightstar-n35a25.dyn.telefonica.de] has quit [Connection closed] |
03:14 | | ErikMesoy [Bruker@Nightstar-hq72t5.customer.cdi.no] has quit [Connection closed] |
03:53 | | Vornucopia [Vorn@Nightstar-sjaki9.res.rr.com] has quit [Ping timeout: 121 seconds] |
04:43 | <@mac> | <TheWatcher> Whoever thought it would be a good idea to make -r not require confirmation was a bit of a dick. |
04:43 | <@mac> | That seems to be pretty core to the whole command-line design philosophy, though? I was quite irritated when I learned the hard way that there is exactly one character difference between `rm -rf *~`, which deletes all editor backup files, and `rm -rf * ~`, which deletes literally everything then complains it can't find the file '~'. |
05:11 | | Derakon is now known as Derakon[AFK] |
05:14 | <&[R]> | <mac> <TheWatcher> Whoever thought it would be a good idea to make -r not require confirmation was a bit of a dick. <-- all my current systems default to asking me about every single file with -r |
05:15 | <&[R]> | Which is annoying as hell |
05:15 | <&[R]> | Since I'm usually using -r on something that ends up being several thousand files... |
05:15 | <@mac> | [R]: |
05:15 | <@mac> | * TheWatcher sighs, would rather like to throttle the people behind crontab implementations |
05:15 | <@mac> | <TheWatcher> Whoever thought it would be a good idea to make -r not require confirmation was a bit of a dick. |
05:16 | <&[R]> | It'd be better if it'd just confirmed the arguments were correct. |
05:16 | <&[R]> | mac: ? |
05:16 | <@mac> | [R]: TW was talking about crontab, not rm. |
05:16 | <@mac> | When he said -r doesn't require confirmation. |
05:17 | <&[R]> | What does crontab -r even do? |
05:17 | <&[R]> | My manpage doesn't say |
05:18 | <@mac> | No clue. Something drastic and dificult to undo, from context. |
05:20 | <&[R]> | Ha |
05:20 | <&[R]> | Boring company's flamethrowers shipped out this week |
05:21 | <&[R]> | To get around customs issues, any of the ones they shipped (you could pick up yours from their LA office as an alternative), they branded them as "not a flamethrower" |
05:33 | | celticminstrel [celticminst@Nightstar-jocbi5.dsl.bell.ca] has quit [[NS] Quit: And lo! The computer falls into a deep sleep, to awake again some other day!] |
05:34 | | celticminstrel [celticminst@Nightstar-jocbi5.dsl.bell.ca] has joined #code |
05:34 | | mode/#code [+o celticminstrel] by ChanServ |
05:35 | | celticminstrel [celticminst@Nightstar-jocbi5.dsl.bell.ca] has quit [[NS] Quit: And lo! The computer falls into a deep sleep, to awake again some other day!] |
05:44 | | Derakon[AFK] [Derakon@Nightstar-fr5qel.ca.comcast.net] has quit [Ping timeout: 121 seconds] |
06:01 | | Vornucopia [Vorn@Nightstar-sjaki9.res.rr.com] has joined #code |
06:07 | | VirusJTG [VirusJTG@Nightstar-42s.jso.104.208.IP] has quit [Connection closed] |
06:30 | | Reiv [NSkiwiirc@Nightstar-ih0uis.global-gateway.net.nz] has quit [[NS] Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] |
06:34 | | ErikMesoy [Bruker@Nightstar-hq72t5.customer.cdi.no] has joined #code |
06:34 | | mode/#code [+o ErikMesoy] by ChanServ |
07:09 | | Vornucopia [Vorn@Nightstar-sjaki9.res.rr.com] has quit [Ping timeout: 121 seconds] |
07:18 | | Vornucopia [Vorn@Nightstar-sjaki9.res.rr.com] has joined #code |
07:23 | | Vornucopia [Vorn@Nightstar-sjaki9.res.rr.com] has quit [Ping timeout: 121 seconds] |
07:41 | | Vorntastic [uid293981@Nightstar-6br85t.irccloud.com] has joined #code |
07:48 | | M4rjo [Martin@Nightstar-9cmf82.se.alltele.net] has joined #code |
07:53 | | Jessikat [Jessikat@Nightstar-kgmdqb.dab.02.net] has joined #code |
07:55 | | M4rjo [Martin@Nightstar-9cmf82.se.alltele.net] has quit [Ping timeout: 121 seconds] |
07:56 | | Jessikat` [Jessikat@Nightstar-om9ps6.dab.02.net] has quit [Ping timeout: 121 seconds] |
08:48 | | mac is now known as macdjord|slep |
09:51 | | M4rjo [Martin@Nightstar-9cmf82.se.alltele.net] has joined #code |
11:18 | | VirusJTG [VirusJTG@Nightstar-42s.jso.104.208.IP] has joined #code |
11:18 | | mode/#code [+ao VirusJTG VirusJTG] by ChanServ |
12:09 | | macdjord [macdjord@Nightstar-grpbnp.mc.videotron.ca] has joined #code |
12:09 | | mode/#code [+o macdjord] by ChanServ |
12:11 | | macdjord|slep [macdjord@Nightstar-grpbnp.mc.videotron.ca] has quit [Connection closed] |
12:52 | <@AnnoDomini> | PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php/20151012/imap.so' - /usr/lib/php/20151012/imap.so: cannot open shared object file: No such file or directory in Unknown on line 0 |
12:52 | <@AnnoDomini> | How dangerous is that ^ |
12:52 | <@AnnoDomini> | ? |
12:52 | <@AnnoDomini> | 'Cause cron keeps spammin' but things are working anyhow. |
12:52 | <@Tamber> | it's probably just an annoyance, unless you need support for IMAP, I guess? |
12:53 | <@AnnoDomini> | Well, this is part of the mail server package I installed. |
12:53 | <@Tamber> | Oh, that might be annoying, then. |
12:53 | <@Tamber> | Perhaps a touch troublesome, too. |
12:53 | <@AnnoDomini> | Everything seems to work. Imap works. |
12:53 | <@Tamber> | hm |
12:53 | <@AnnoDomini> | Imap is working because I get this message via imap. :V |
12:54 | <@Tamber> | I perhaps should have phrased that as "support for IMAP in PHP" |
12:54 | <@Tamber> | So, stuff like webmail probably won't work. |
12:54 | <@AnnoDomini> | Webmail also works. :P |
12:54 | <@AnnoDomini> | This warning is coming from some kind of cleanup script. |
12:54 | <@Tamber> | huh. |
12:55 | <@AnnoDomini> | "sessionclean - a script to cleanup stale PHP sessions" |
13:01 | <@AnnoDomini> | Hmm. May be the result of me ineptly removing packages. |
13:01 | <@AnnoDomini> | Config files left behind after one purge of php or another. |
13:02 | <@AnnoDomini> | I'll just reinstall imap and ldap for php 7.0 and see if the spam stops. |
13:12 | < Jessikat> | I really wish I could do open source work |
13:25 | | Degi [Degi@Nightstar-n35a25.dyn.telefonica.de] has joined #code |
13:39 | | Kindamoody is now known as Kindamoody|afk |
14:08 | <@AnnoDomini> | What's stopping you? |
14:13 | | * Vorntastic puts his money on moonlighting clauses |
14:23 | | Jessikat` [Jessikat@Nightstar-8sl.159.132.82.IP] has joined #code |
14:25 | | Jessikat [Jessikat@Nightstar-kgmdqb.dab.02.net] has quit [Ping timeout: 121 seconds] |
14:40 | | Degi [Degi@Nightstar-n35a25.dyn.telefonica.de] has quit [Connection closed] |
15:03 | | Vornucopia [Vorn@Nightstar-sjaki9.res.rr.com] has joined #code |
15:45 | <@AnnoDomini> | Cronspam has ceased! :D |
15:50 | <@Tamber> | \o/ |
16:06 | < Vornucopia> | sponcram D: |
16:23 | | M4rjo [Martin@Nightstar-9cmf82.se.alltele.net] has quit [Connection closed] |
16:59 | | Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has joined #code |
18:00 | | Vornucopia is now known as Vornicus |
18:01 | | mode/#code [+qo Vornicus Vornicus] by ChanServ |
18:08 | | Jessikat [Jessikat@Nightstar-8sl.159.132.82.IP] has joined #code |
18:08 | | Jessikat [Jessikat@Nightstar-8sl.159.132.82.IP] has quit [[NS] Quit: Bye] |
18:11 | | Jessikat` [Jessikat@Nightstar-8sl.159.132.82.IP] has quit [Ping timeout: 121 seconds] |
18:21 | | Vorntastic [uid293981@Nightstar-6br85t.irccloud.com] has quit [[NS] Quit: Connection closed for inactivity] |
19:19 | | Kindamoody|afk is now known as Kindamoody |
19:33 | | mac [macdjord@Nightstar-grpbnp.mc.videotron.ca] has joined #code |
19:33 | | mode/#code [+o mac] by ChanServ |
19:34 | | macdjord [macdjord@Nightstar-grpbnp.mc.videotron.ca] has quit [Connection closed] |
19:59 | | Degi [Degi@Nightstar-n35a25.dyn.telefonica.de] has joined #code |
21:34 | | M4rjo [Martin@Nightstar-9cmf82.se.alltele.net] has joined #code |
22:09 | | gnolam [quassel@Nightstar-e9kifc.cust.bredband2.com] has joined #code |
22:09 | | mode/#code [+o gnolam] by ChanServ |
22:11 | | Degi_ [Degi@Nightstar-03ct09.dyn.telefonica.de] has joined #code |
22:14 | | Degi [Degi@Nightstar-n35a25.dyn.telefonica.de] has quit [Ping timeout: 121 seconds] |
22:28 | | Reiv [NSkiwiirc@Nightstar-ih0uis.global-gateway.net.nz] has joined #code |
22:28 | | mode/#code [+o Reiv] by ChanServ |
22:28 | | Reiv [NSkiwiirc@Nightstar-ih0uis.global-gateway.net.nz] has quit [[NS] Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] |
22:29 | | Reiv [NSkiwiirc@Nightstar-ih0uis.global-gateway.net.nz] has joined #code |
22:29 | | mode/#code [+o Reiv] by ChanServ |
22:36 | | gnolam [quassel@Nightstar-e9kifc.cust.bredband2.com] has quit [[NS] Quit: Z?] |
22:44 | | Reiv [NSkiwiirc@Nightstar-ih0uis.global-gateway.net.nz] has quit [[NS] Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] |
22:45 | | Reiv [NSkiwiirc@Nightstar-ih0uis.global-gateway.net.nz] has joined #code |
22:45 | | mode/#code [+o Reiv] by ChanServ |
22:51 | | Degi_ is now known as Degi |
23:21 | | Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has quit [Ping timeout: 121 seconds] |
23:35 | | himi [sjjf@Nightstar-v37cpe.internode.on.net] has quit [Ping timeout: 121 seconds] |
--- Log closed Thu Jun 14 00:00:06 2018 |