00:00:00 --- log: started forth/18.08.06 00:22:08 --- quit: X-Scale (Quit: HydraIRC -> http://www.hydrairc.com <- In tests, 0x09 out of 0x0A l33t h4x0rz prefer it :)) 00:23:15 --- join: jedb (~jedb@199.66.90.113) joined #forth 00:50:38 --- quit: proteusguy (Remote host closed the connection) 01:05:47 --- join: Keshl_ (~Purple@24.115.185.149.res-cmts.gld.ptd.net) joined #forth 01:05:55 --- quit: Keshl (Read error: Connection reset by peer) 01:06:54 --- nick: Keshl_ -> Keshl 01:12:46 --- quit: Keshl (Read error: Connection reset by peer) 01:13:00 --- join: Keshl (~Purple@24.115.185.149.res-cmts.gld.ptd.net) joined #forth 02:04:14 --- join: gravicappa (~gravicapp@h62-133-162-76.dyn.bashtel.ru) joined #forth 02:04:26 --- quit: ashirase (Ping timeout: 240 seconds) 02:06:28 --- join: ashirase (~ashirase@modemcable098.166-22-96.mc.videotron.ca) joined #forth 02:11:55 --- join: ncv (~neceve@2a02:c7d:c5c9:a900:6eaf:6ef7:3b81:d5f6) joined #forth 02:11:55 --- quit: ncv (Changing host) 02:11:55 --- join: ncv (~neceve@unaffiliated/neceve) joined #forth 02:37:43 --- quit: nighty- (Quit: Disappears in a puff of smoke) 02:57:06 --- join: dddddd (~dddddd@unaffiliated/dddddd) joined #forth 03:11:03 --- quit: wa5qjh (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.) 03:18:12 --- join: proteusguy (~proteus-g@cm-134-196-84-236.revip18.asianet.co.th) joined #forth 03:18:12 --- mode: ChanServ set +v proteusguy 03:22:41 --- join: nighty- (~nighty@s229123.ppp.asahi-net.or.jp) joined #forth 03:29:49 --- quit: dave9 (Quit: one love) 04:34:25 --- quit: pierpal (Quit: Poof) 04:34:44 --- join: pierpal (~pierpal@host84-235-dynamic.181-80-r.retail.telecomitalia.it) joined #forth 05:01:26 --- quit: pierpal (Ping timeout: 240 seconds) 05:11:56 --- join: dave9 (~dave@90.20.215.218.dyn.iprimus.net.au) joined #forth 05:13:50 --- join: tusj (~tusj@185.176.244.137) joined #forth 05:45:17 --- quit: amuck (Ping timeout: 268 seconds) 05:45:50 --- join: amuck (~amuck@152.243.185.35.bc.googleusercontent.com) joined #forth 06:00:50 --- join: pierpal (~pierpal@host84-235-dynamic.181-80-r.retail.telecomitalia.it) joined #forth 06:37:40 --- quit: dave9 (Quit: one love) 06:52:18 --- quit: pierpal (Ping timeout: 240 seconds) 06:55:03 --- join: pierpal (~pierpal@host84-235-dynamic.181-80-r.retail.telecomitalia.it) joined #forth 07:08:40 --- quit: proteusguy (Remote host closed the connection) 07:10:03 --- join: proteusguy (~proteus-g@cm-134-196-84-236.revip18.asianet.co.th) joined #forth 07:10:03 --- mode: ChanServ set +v proteusguy 07:10:28 --- quit: pierpal (Quit: Poof) 07:10:48 --- join: pierpal (~pierpal@host84-235-dynamic.181-80-r.retail.telecomitalia.it) joined #forth 07:27:00 --- quit: groovy2shoes (Ping timeout: 240 seconds) 07:29:57 --- quit: proteusguy (Read error: Connection reset by peer) 07:31:02 --- join: groovy2shoes (~groovy2sh@unaffiliated/groovebot) joined #forth 07:31:24 --- join: proteusguy (~proteus-g@cm-134-196-84-236.revip18.asianet.co.th) joined #forth 07:31:24 --- mode: ChanServ set +v proteusguy 08:06:21 --- quit: Zarutian (Read error: Connection reset by peer) 08:06:43 --- join: Zarutian (~zarutian@173-133-17-89.fiber.hringdu.is) joined #forth 09:37:46 --- quit: ncv (Remote host closed the connection) 09:40:07 --- join: ncv (~neceve@90.207.222.160) joined #forth 09:40:08 --- quit: ncv (Changing host) 09:40:08 --- join: ncv (~neceve@unaffiliated/neceve) joined #forth 09:45:11 --- quit: pierpal (Quit: Poof) 09:45:29 --- join: pierpal (~pierpal@host84-235-dynamic.181-80-r.retail.telecomitalia.it) joined #forth 09:58:59 --- join: dys (~dys@tmo-103-58.customers.d1-online.com) joined #forth 13:14:30 --- quit: gravicappa (Ping timeout: 256 seconds) 14:18:15 --- quit: pierpal (Quit: Poof) 14:18:31 --- join: pierpal (~pierpal@host84-235-dynamic.181-80-r.retail.telecomitalia.it) joined #forth 14:47:53 --- join: pierpa (50b5eb54@gateway/web/freenode/ip.80.181.235.84) joined #forth 15:04:26 --- quit: pierpal (Ping timeout: 256 seconds) 15:37:00 * Zarutian has a look at https://skilldrick.github.io/easyforth/ 16:02:10 --- join: wa5qjh (~quassel@175.158.225.205) joined #forth 16:02:11 --- quit: wa5qjh (Changing host) 16:02:11 --- join: wa5qjh (~quassel@freebsd/user/wa5qjh) joined #forth 16:46:34 --- join: dave9 (~dave@90.20.215.218.dyn.iprimus.net.au) joined #forth 16:46:46 hi 16:52:26 h'lo 16:52:46 --- quit: nighty- (Quit: Disappears in a puff of smoke) 16:56:01 : str_cmp ( ptrA lenA ptrB lenB -- bool ) >R SWAP R> 2DUP = >R DROP R> IF mem_cmp EXIT THEN DROP 2DROP FALSE ; \ only leaks if the strings are of same length or not. 16:58:03 : mem_cmp ( ptrA ptrB len ) 0 SWAP DO >R 2DUP @ SWAP @ XOR R> OR >R CELL+ SWAP CELL+ R> LOOP >R 2DROP R> ; 16:59:00 gaah! s/R> ;/R> IF TRUE ELSE FALSE THEN ;/ 17:00:12 double gagh! s/R> IF TRUE ELSE FALSE THEN ; /R> IF FALSE ELSE TRUE THEN ;/ there 17:36:27 --- quit: ncv (Quit: Leaving) 18:15:20 --- join: nighty- (~nighty@kyotolabs.asahinet.com) joined #forth 18:31:04 --- join: nonlinear (~nonlinear@unaffiliated/discrttm) joined #forth 18:58:22 --- quit: reepca-laptop (Read error: Connection reset by peer) 18:59:41 --- join: reepca-laptop (~user@208.89.170.250) joined #forth 19:00:48 --- join: pierpal (~pierpal@host84-235-dynamic.181-80-r.retail.telecomitalia.it) joined #forth 19:41:43 --- quit: dave9 (Quit: one love) 19:44:09 --- quit: dddddd (Remote host closed the connection) 20:21:42 --- quit: pierpa (Quit: Page closed) 20:46:18 --- quit: pierpal (Quit: Poof) 20:46:34 --- join: pierpal (~pierpal@host84-235-dynamic.181-80-r.retail.telecomitalia.it) joined #forth 23:37:18 --- quit: dys (Ping timeout: 244 seconds) 23:53:21 --- join: gravicappa (~gravicapp@h62-133-162-97.dyn.bashtel.ru) joined #forth 23:59:59 --- log: ended forth/18.08.06