<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[01:12:19] ⇦ Quits: Lynndis (Lynndis!~Lynn@c-75-71-231-133.hsd1.co.comcast.net) (Ping timeout: 198 seconds)
L2[02:00:04] <MCPBot_Reborn> [TEST CSV] Pushing snapshot_20180520 mappings to Forge Maven.
L3[02:00:07] <MCPBot_Reborn> [TEST CSV] Maven upload successful for mcp_snapshot-20180520-1.12.zip (mappings = "snapshot_20180520" in build.gradle).
L4[02:00:18] <MCPBot_Reborn> Semi-live (every 10 min), Snapshot (daily ~3:00 EST), and Stable (committed) MCPBot mapping exports can be found here: http://export.mcpbot.bspk.rs/
L5[02:16:44] ⇨ Joins: Noppes (Noppes!~Noppes@ip56530f2e.direct-adsl.nl)
L6[02:39:27] ⇨ Joins: Ipsis (Ipsis!~Ipsis@82-69-71-184.dsl.in-addr.zen.co.uk)
L7[03:09:11] ⇨ Joins: Lynndis (Lynndis!~Lynn@c-75-71-231-133.hsd1.co.comcast.net)
L8[03:17:27] ⇨ Joins: Wuppy (Wuppy!~Wuppy@5072BE60.static.ziggozakelijk.nl)
L9[03:40:45] ⇦ Quits: quadraxis (quadraxis!~quadraxis@cpc77295-basf12-2-0-cust599.12-3.cable.virginm.net) (Ping timeout: 198 seconds)
L10[04:16:43] ⇨ Joins: ben_mkiv (ben_mkiv!~ben_mkiv@p4FED41A6.dip0.t-ipconnect.de)
L11[04:36:12] ⇨ Joins: Nedelosk (Nedelosk!~Nedelosk@ip-109-90-121-64.hsi11.unitymediagroup.de)
L12[04:49:48] ⇨ Joins: Lupus590 (Lupus590!~Lupus590@cpc124520-swan5-2-0-cust53.7-3.cable.virginm.net)
L13[05:16:34] ⇦ Quits: Lupus590 (Lupus590!~Lupus590@cpc124520-swan5-2-0-cust53.7-3.cable.virginm.net) (Remote host closed the connection)
L14[05:24:40] ⇨ Joins: Lupus590 (Lupus590!~Lupus590@cpc124520-swan5-2-0-cust53.7-3.cable.virginm.net)
L15[05:58:01] ⇨ Joins: arlyon (arlyon!~arlyon@2a00:23c5:be9b:ad00:c4be:cb50:cad5:bfe8)
L16[06:03:40] ⇦ Quits: arlyon (arlyon!~arlyon@2a00:23c5:be9b:ad00:c4be:cb50:cad5:bfe8) (Quit: quitting app)
L17[06:38:43] ⇦ Quits: Upthorn (Upthorn!~ogmar@108-85-88-44.lightspeed.frokca.sbcglobal.net) (Ping timeout: 198 seconds)
L18[06:39:34] ⇨ Joins: Upthorn (Upthorn!~ogmar@108-85-88-44.lightspeed.frokca.sbcglobal.net)
L19[06:45:00] <TechnicianLP> is there a better way to do this: https://hastebin.com/lunijekova.java ?
L20[06:46:20] <gigaherz> not that I'm aware of :P
L21[06:46:38] <gigaherz> well, you could use ++ instead of +=1
L22[06:46:43] <gigaherz> but that's just nitpicking :P
L23[06:46:51] <TechnicianLP> and < instead of <=
L24[06:47:07] <TechnicianLP> other wise 0.0 could give 1
L25[06:47:30] <gigaherz> true
L26[06:47:30] <TechnicianLP> still looks ugly :(
L27[06:48:43] <gigaherz> hmmm
L28[06:48:58] <gigaherz> Math.floor(luck + random);
L29[06:49:26] <gigaherz> that probably doesn't work
L30[06:49:50] <gigaherz> random() returns [0..1] or [0..1) ?
L31[06:50:01] <TechnicianLP> excluding 1
L32[06:50:05] <gigaherz> then it works.
L33[06:50:36] * TechnicianLP has to think over that
L34[06:50:39] <gigaherz> so long as you plan on adding 1
L35[06:50:56] <gigaherz> think about the worst case:
L36[06:51:09] <gigaherz> Math.floor(2.0 + 0.99999999) = 2.0
L37[06:51:19] <gigaherz> Math.floor(2.1 + 0.99999999) = 2.0 + 10% chance of 3.0
L38[06:51:28] <gigaherz> Math.floor(2.5 + 0.99999999) = 2.0 + 50% chance of 3.0
L39[06:51:43] <gigaherz> Math.floor(2.9999999 + 0.99999999) = 2.0 + 99.9999% chance of 3.0
L40[06:52:04] <gigaherz> the only issue with that method would be rounding errors
L41[06:52:36] <gigaherz> it's the part that makes me uncertain
L42[06:53:07] ⇦ Quits: Nedelosk (Nedelosk!~Nedelosk@ip-109-90-121-64.hsi11.unitymediagroup.de) (Read error: Connection reset by peer)
L43[06:53:16] <gigaherz> if the upper bount of random() added to a number, can round up to the next integer
L44[06:53:19] <gigaherz> then it would break
L45[06:53:22] <gigaherz> bound*
L46[06:54:58] <gigaherz> I mean like: if (Math.floor(15134.0 + 0.99999999) == 15135.0
L47[06:55:26] <gigaherz> if that can happen, and I feel that it can, then this is not a safe choice
L48[06:56:29] <gigaherz> whereas "random < remainder(luck)" can never be true, if remainder(luck)==0.0
L49[06:56:44] <gigaherz> no matter what the original number was.
L50[06:57:10] <gigaherz> for that reason, I'd continue using the same code you use now.
L51[06:57:27] <gigaherz> and in fact I will in one of my mods where I do that :P
L52[07:03:55] ⇦ Quits: immibis (immibis!~chatzilla@222-155-160-32-fibre.bb.spark.co.nz) (Ping timeout: 198 seconds)
L53[07:06:50] ⇨ Joins: axel (axel!~axel@79.99.175.30)
L54[07:38:36] ⇨ Joins: nallar (nallar!~nallar@cbs1-cani4-2-0-cust47.know.cable.virginm.net)
L55[07:50:34] ⇨ Joins: Fye (Fye!~Fye@146-241-18-251.dyn.eolo.it)
L56[08:47:04] ⇦ Quits: Wuppy (Wuppy!~Wuppy@5072BE60.static.ziggozakelijk.nl) (Quit: Leaving)
L57[08:51:34] ⇦ Quits: Blarghedy (Blarghedy!Blarghedy@50.90.116.51) (Killed (NickServ (GHOST command used by Guest97915)))
L58[08:51:39] ⇨ Joins: Blarghedy (Blarghedy!Blarghedy@50.90.116.51)
L59[08:58:24] ⇦ Quits: axel (axel!~axel@79.99.175.30) (Remote host closed the connection)
L60[09:18:33] ⇦ Quits: IoP (IoP!jikuja@irc.ioppi.info) (Ping timeout: 186 seconds)
L61[09:37:32] ⇨ Joins: Nedelosk (Nedelosk!~Nedelosk@ip-109-90-121-64.hsi11.unitymediagroup.de)
L62[10:25:32] ⇦ Quits: auenf (auenf!~David@110.150.99.123) (Read error: Connection reset by peer)
L63[10:25:41] ⇨ Joins: auenfx8 (auenfx8!~David@110.150.99.123)
L64[10:31:30] ⇨ Joins: IoP (IoP!jikuja@irc.ioppi.info)
L65[10:32:41] ⇦ Quits: ben_mkiv (ben_mkiv!~ben_mkiv@p4FED41A6.dip0.t-ipconnect.de) (Remote host closed the connection)
L66[10:41:15] ⇦ Quits: romibi (romibi!~quassel@cable-static-7-174.rsnweb.ch) (Ping timeout: 194 seconds)
L67[10:41:51] ⇨ Joins: romibi (romibi!~quassel@cable-static-7-174.rsnweb.ch)
L68[10:42:04] ⇦ Quits: auenfx8 (auenfx8!~David@110.150.99.123) (Remote host closed the connection)
L69[10:43:54] ⇨ Joins: auenf (auenf!~David@110.150.99.123)
L70[10:52:29] ⇨ Joins: Hanii (Hanii!~textual@2a00:23c4:484:d100:35f5:f660:28f2:4a24)
L71[11:10:43] ⇦ Quits: Lupus590 (Lupus590!~Lupus590@cpc124520-swan5-2-0-cust53.7-3.cable.virginm.net) (Ping timeout: 194 seconds)
L72[11:12:57] ⇦ Quits: AforAnonymous (AforAnonymous!bitch2k@212.108.50.174) (Ping timeout: 182 seconds)
L73[11:13:39] ⇨ Joins: AforAnonymous (AforAnonymous!bitch2k@212.108.50.123)
L74[11:32:35] ⇨ Joins: Lupus590 (Lupus590!~Lupus590@cpc124520-swan5-2-0-cust53.7-3.cable.virginm.net)
L75[11:52:49] ⇦ Quits: romibi (romibi!~quassel@cable-static-7-174.rsnweb.ch) (Ping timeout: 182 seconds)
L76[11:53:00] ⇨ Joins: romibi (romibi!~quassel@cable-static-7-174.rsnweb.ch)
L77[11:58:34] ⇦ Quits: flappy (flappy!~flappy@88-113-149-197.elisa-laajakaista.fi) (Ping timeout: 182 seconds)
L78[12:25:15] ⇦ Quits: h404bi (h404bi!~h404bi@119.129.114.135) (Ping timeout: 194 seconds)
L79[12:27:02] ⇨ Joins: axel (axel!~axel@79.99.175.30)
L80[13:15:52] ⇦ Quits: SuperCoder79 (SuperCoder79!uid276919@id-276919.brockwell.irccloud.com) (Quit: Connection closed for inactivity)
L81[13:41:07] ⇦ Quits: Ipsis (Ipsis!~Ipsis@82-69-71-184.dsl.in-addr.zen.co.uk) (Ping timeout: 198 seconds)
L82[14:00:02] ⇨ Joins: ben_mkiv (ben_mkiv!~ben_mkiv@p4FED41A6.dip0.t-ipconnect.de)
L83[14:14:46] ⇨ Joins: Doty1154 (Doty1154!~Doty1154@c-73-189-164-179.hsd1.ca.comcast.net)
L84[14:15:03] ⇦ Quits: Hanii (Hanii!~textual@2a00:23c4:484:d100:35f5:f660:28f2:4a24) (Quit: Textual IRC Client: www.textualapp.com)
L85[14:31:08] ⇦ Quits: axel (axel!~axel@79.99.175.30) (Remote host closed the connection)
L86[14:41:00] ⇨ Joins: Javaschreiber (Javaschreiber!~Thunderbi@xcn-svr20.xcony.com)
L87[14:44:34] ⇦ Quits: Javaschreiber (Javaschreiber!~Thunderbi@xcn-svr20.xcony.com) (Ping timeout: 194 seconds)
L88[14:47:42] ⇨ Joins: Javaschreiber (Javaschreiber!~Thunderbi@xcn-svr20.xcony.com)
L89[14:51:12] ⇦ Quits: Javaschreiber (Javaschreiber!~Thunderbi@xcn-svr20.xcony.com) (Client Quit)
L90[14:51:28] ⇨ Joins: Javaschreiber (Javaschreiber!~Thunderbi@xcn-svr20.xcony.com)
L91[15:01:13] ⇦ Quits: Javaschreiber (Javaschreiber!~Thunderbi@xcn-svr20.xcony.com) (Quit: Javaschreiber)
L92[15:13:28] <ben_mkiv> so im trying to hide JEI from some of my containers, this is my plugin => https://pastebin.com/kju8CrfZ
L93[15:14:03] <ben_mkiv> wait this doesnt belong here, sorry
L94[15:16:09] <ben_mkiv> anyways... getGuiExtraAreas() is querried but JEI still shows up even if i return an rectangle with the client screen size
L95[15:20:30] <ben_mkiv> nvm... it just hides the icons :>
L96[15:21:22] ⇨ Joins: Wuppy (Wuppy!~Wuppy@5072BE60.static.ziggozakelijk.nl)
L97[15:30:22] ⇦ Quits: Nedelosk (Nedelosk!~Nedelosk@ip-109-90-121-64.hsi11.unitymediagroup.de) (Read error: Connection reset by peer)
L98[15:44:37] ⇦ Quits: Lupus590 (Lupus590!~Lupus590@cpc124520-swan5-2-0-cust53.7-3.cable.virginm.net) (Remote host closed the connection)
L99[15:44:57] ⇨ Joins: Lupus590 (Lupus590!~Lupus590@cpc124520-swan5-2-0-cust53.7-3.cable.virginm.net)
L100[15:56:01] ⇦ Quits: Wuppy (Wuppy!~Wuppy@5072BE60.static.ziggozakelijk.nl) (Read error: Connection reset by peer)
L101[16:08:17] ⇨ Joins: Hanii (Hanii!~textual@2a00:23c4:484:d100:35f5:f660:28f2:4a24)
L102[16:18:25] ⇨ Joins: immibis (immibis!~chatzilla@222-155-160-32-fibre.bb.spark.co.nz)
L103[16:27:00] ⇨ Joins: MikrySoft (MikrySoft!~mikrysoft@89-71-96-37.dynamic.chello.pl)
L104[16:46:19] ⇦ Quits: immibis (immibis!~chatzilla@222-155-160-32-fibre.bb.spark.co.nz) (Ping timeout: 202 seconds)
L105[17:11:52] ⇦ Quits: Noppes (Noppes!~Noppes@ip56530f2e.direct-adsl.nl) (Read error: Connection reset by peer)
L106[17:52:18] ⇦ Quits: Fye (Fye!~Fye@146-241-18-251.dyn.eolo.it) (Quit: Bye.)
L107[17:59:08] ⇦ Quits: Lupus590 (Lupus590!~Lupus590@cpc124520-swan5-2-0-cust53.7-3.cable.virginm.net) (Ping timeout: 194 seconds)
L108[18:16:56] ⇨ Joins: Searge (Searge!~Searge@c83-251-224-78.bredband.comhem.se)
L109[18:19:09] ⇦ Quits: SeargeDP (SeargeDP!~Searge@c83-251-224-78.bredband.comhem.se) (Ping timeout: 198 seconds)
L110[18:36:27] ⇨ Joins: SuperCoder79 (SuperCoder79!uid276919@id-276919.brockwell.irccloud.com)
L111[19:16:54] ⇨ Joins: Wastl2 (Wastl2!~Wastl2@x4e374ed8.dyn.telefonica.de)
L112[19:19:31] ⇦ Quits: Wastl2_ (Wastl2_!~Wastl2@x4db44ba1.dyn.telefonica.de) (Ping timeout: 198 seconds)
L113[19:44:42] ⇦ Quits: ben_mkiv (ben_mkiv!~ben_mkiv@p4FED41A6.dip0.t-ipconnect.de) (Ping timeout: 182 seconds)
L114[20:43:45] ⇦ Quits: Lynndis (Lynndis!~Lynn@c-75-71-231-133.hsd1.co.comcast.net) (Ping timeout: 198 seconds)
L115[20:46:49] ⇦ Quits: armed_troop (armed_troop!~armedtroo@pool-173-59-20-178.phlapa.fios.verizon.net) (Quit: Bye)
L116[20:58:43] ⇨ Joins: Lynndis (Lynndis!~Lynn@c-75-71-231-133.hsd1.co.comcast.net)
L117[21:38:44] ⇨ Joins: armed_troop (armed_troop!~armedtroo@pool-173-59-20-178.phlapa.fios.verizon.net)
L118[21:48:12] *** Upth is now known as orn
L119[21:48:13] *** Upthorn is now known as Upth
L120[21:48:15] *** orn is now known as Upthorn
L121[22:21:38] ⇦ Quits: Hex (Hex!~Hex@four.out.of.five.doctors.recommend.hex.lc) (Quit: ?)
L122[22:22:30] ⇨ Joins: Hex (Hex!~Hex@four.out.of.five.doctors.recommend.hex.lc)
L123[22:25:09] ⇨ Joins: auenfx8 (auenfx8!~David@110.150.99.123)
L124[22:25:39] ⇦ Quits: auenf (auenf!~David@110.150.99.123) (Read error: Connection reset by peer)
L125[22:26:48] ⇦ Quits: auenfx8 (auenfx8!~David@110.150.99.123) (Remote host closed the connection)
L126[22:27:21] ⇨ Joins: auenf (auenf!~David@110.150.99.123)
L127[22:40:59] ⇦ Quits: Lathanael|Away (Lathanael|Away!~Lathanael@p54960678.dip0.t-ipconnect.de) (Ping timeout: 202 seconds)
L128[22:42:30] ⇨ Joins: Lathanael|Away (Lathanael|Away!~Lathanael@p54960175.dip0.t-ipconnect.de)
L129[23:05:04] ⇦ Quits: nallar (nallar!~nallar@cbs1-cani4-2-0-cust47.know.cable.virginm.net) (Ping timeout: 194 seconds)
L130[23:05:32] ⇨ Joins: nallar (nallar!~nallar@cbs1-cani4-2-0-cust47.know.cable.virginm.net)
L131[23:26:53] ⇨ Joins: quadraxis (quadraxis!~quadraxis@cpc77295-basf12-2-0-cust599.12-3.cable.virginm.net)
<<Prev Next>> Scroll to Top