code logs -> 2020 -> Thu, 07 May 2020< code.20200506.log - code.20200508.log >
--- Log opened Thu May 07 00:00:59 2020
00:01
<~Vornicus>
In which case it's the wrong number anyway
00:09
<@celticminstrel>
ToxicFrog: I just checked and it looks like math.frexp already exists?
00:10
<&ToxicFrog>
celticminstrel: in 5.1 and 5.2, yes. In 5.3, only if it was compiled with LUA_COMPAT_MATHLIB.
00:10
<@celticminstrel>
Huh, I wonder why they'd remove it.
00:11
<@celticminstrel>
I was checking on the 5.3.4 CLI-REPL but I guess that doesn't necessarily matter.
00:33 Pinkhair [user1@Nightstar-g7hdo5.dyn.optonline.net] has joined #code
00:35 Pink [user1@Nightstar-g7hdo5.dyn.optonline.net] has quit [Ping timeout: 121 seconds]
00:54
<&ToxicFrog>
I have no idea. Some of the other functions they removed are trivial to reimplement in pure lua, but not that one.
01:07 Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has quit [Connection closed]
03:27 catalyst [catalyst@Nightstar-v6lb30.cable.virginm.net] has joined #code
04:40 Degi [Degi@Nightstar-o9i4cg.dyn.telefonica.de] has quit [Ping timeout: 121 seconds]
04:54 Degi [Degi@Nightstar-ua5lvb.dyn.telefonica.de] has joined #code
05:05 McMartin [mcmartin@Nightstar-c25omi.ca.comcast.net] has quit [Connection closed]
05:10 McMartin [mcmartin@Nightstar-c25omi.ca.comcast.net] has joined #code
05:10 mode/#code [+ao McMartin McMartin] by ChanServ
05:13
< Pinkhair>
ah, windows thinks the epic launcher installer might contain a virus. Joke's on them, it contains something worse: the epic launcher.
05:31 Vorntastic [uid293981@Nightstar-ks9.9ff.184.192.IP] has joined #code
05:31 mode/#code [+qo Vorntastic Vorntastic] by ChanServ
05:58 himi [sjjf@Nightstar-v37cpe.internode.on.net] has quit [The TLS connection was non-properly terminated.]
06:05
<&McMartin>
Potentially Unwanted Programs
06:25 catalyst [catalyst@Nightstar-v6lb30.cable.virginm.net] has quit [Ping timeout: 121 seconds]
06:28 celticminstrel [celticminst@Nightstar-nuu42v.dsl.bell.ca] has quit [[NS] Quit: And lo! The computer falls into a deep sleep, to awake again some other day!]
06:36 himi [sjjf@Nightstar-v37cpe.internode.on.net] has joined #code
06:36 mode/#code [+o himi] by ChanServ
07:21 catalyst [catalyst@Nightstar-v6lb30.cable.virginm.net] has joined #code
08:16 Kindamoody[zZz] is now known as Kindamoody
10:41 catalyst [catalyst@Nightstar-v6lb30.cable.virginm.net] has quit [Connection reset by peer]
10:41 catalyst_ [catalyst@Nightstar-v6lb30.cable.virginm.net] has joined #code
10:59 Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has joined #code
11:52 gnolam_ [lenin@Nightstar-ik80lk.priv.bahnhof.se] has joined #code
11:54 sshine [simon@Nightstar-3bh0ea.eta.solutions] has quit [Operation timed out]
11:54 sshine [simon@Nightstar-3bh0ea.eta.solutions] has joined #code
11:55 sshine is now known as NSGuest26436
11:56 gnolam [lenin@Nightstar-ik80lk.priv.bahnhof.se] has quit [Ping timeout: 121 seconds]
12:01 gnolam_ is now known as gnolam
12:01 mode/#code [+o gnolam] by ChanServ
12:35 Kindamoody [Kindamoody@Nightstar-eubaqc.tbcn.telia.com] has quit [Client exited]
12:36 Kimo|autojoin [Kindamoody@Nightstar-eubaqc.tbcn.telia.com] has joined #code
12:36 mode/#code [+o Kimo|autojoin] by ChanServ
12:49 catalyst [catalyst@Nightstar-56ll7t.dab.02.net] has joined #code
12:50 catalyst_ [catalyst@Nightstar-v6lb30.cable.virginm.net] has quit [Ping timeout: 121 seconds]
13:00 Kimo|autojoin [Kindamoody@Nightstar-eubaqc.tbcn.telia.com] has quit [Client exited]
13:02 Kimo|autojoin [Kindamoody@Nightstar-eubaqc.tbcn.telia.com] has joined #code
13:02 mode/#code [+o Kimo|autojoin] by ChanServ
13:33 Kimo|autojoin [Kindamoody@Nightstar-eubaqc.tbcn.telia.com] has quit [Connection closed]
13:34 Kimo|autojoin [Kindamoody@Nightstar-eubaqc.tbcn.telia.com] has joined #code
13:34 mode/#code [+o Kimo|autojoin] by ChanServ
13:47 Kimo|autojoin is now known as Kindamoody
13:56 catalyst_ [catalyst@Nightstar-qj5h7i.dab.02.net] has joined #code
13:57 catalyst [catalyst@Nightstar-56ll7t.dab.02.net] has quit [Ping timeout: 121 seconds]
13:59 celticminstrel [celticminst@Nightstar-nuu42v.dsl.bell.ca] has joined #code
13:59 mode/#code [+o celticminstrel] by ChanServ
14:16 * ToxicFrog finally releases a version of vstruct that supports Lua 5.3
14:27
<@celticminstrel>
Got your Lua-only implementation of frexp working?
14:28
<&ToxicFrog>
Yep.
14:35
<~Vorntastic>
I should read that code
15:04 Pinkhair [user1@Nightstar-g7hdo5.dyn.optonline.net] has quit [Ping timeout: 121 seconds]
15:05 Pink [user1@Nightstar-g7hdo5.dyn.optonline.net] has joined #code
15:13
<&ToxicFrog>
Vorntastic: it's in https://github.com/ToxicFrog/vstruct/blob/master/frexp.lua
15:13
<&ToxicFrog>
It doesn't handle inf or nan, which will never be passed to it by vstruct anyways; bear that in mind if reusing it elsewhere.
15:14
<&ToxicFrog>
Apart from that it exactly matches the behaviour of frexp(3)
15:16 Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has joined #code
15:16 mode/#code [+qo Vornicus Vornicus] by ChanServ
15:21 Kindamoody [Kindamoody@Nightstar-eubaqc.tbcn.telia.com] has quit [Connection closed]
15:21 Kindamoody [Kindamoody@Nightstar-eubaqc.tbcn.telia.com] has joined #code
15:21 mode/#code [+o Kindamoody] by ChanServ
--- Log closed Thu May 07 16:43:33 2020
--- Log opened Thu May 07 16:44:09 2020
16:44 TheWatcher [chris@GlobalOperator.Nightstar.Net] has joined #code
16:44 Irssi: #code: Total of 35 nicks [22 ops, 0 halfops, 0 voices, 13 normal]
16:44 mode/#code [+o TheWatcher] by ChanServ
16:44 Irssi: Join to #code was synced in 16 secs
16:54 Pinkhair [user1@Nightstar-g7hdo5.dyn.optonline.net] has joined #code
16:56 Pink [user1@Nightstar-g7hdo5.dyn.optonline.net] has quit [Ping timeout: 121 seconds]
17:22 Vorntastic [uid293981@Nightstar-ks9.9ff.184.192.IP] has quit [[NS] Quit: Connection closed for inactivity]
17:38 catalyst_ [catalyst@Nightstar-qj5h7i.dab.02.net] has quit [[NS] Quit: -a- Connection Timed Out]
17:38 catalyst [catalyst@Nightstar-qj5h7i.dab.02.net] has joined #code
17:47 catalyst_ [catalyst@Nightstar-v6lb30.cable.virginm.net] has joined #code
17:50 catalyst [catalyst@Nightstar-qj5h7i.dab.02.net] has quit [Connection closed]
18:11 catalyst_ is now known as catalyst
19:13
<&[R]>
Today I found the largest int node.js can handle before float math fucks it all up: 0x20000000000000
19:13
<&[R]>
Well v8 actually
22:48 Emmy [Emmy@Nightstar-9p7hb1.direct-adsl.nl] has quit [Connection closed]
--- Log closed Fri May 08 00:00:04 2020
code logs -> 2020 -> Thu, 07 May 2020< code.20200506.log - code.20200508.log >

[ Latest log file ]