00:00:00 --- log: started forth/07.09.19 00:30:47 --- nick: FMota -> FMotAFK 00:54:39 --- join: mark4__ (n=mark4@ip70-190-68-238.ph.ph.cox.net) joined #forth 00:56:40 --- quit: edrx (Remote closed the connection) 01:11:12 --- quit: mark4_ (Read error: 110 (Connection timed out)) 05:31:46 --- join: H4ns (n=Hans@ita4fw1.itasoftware.com) joined #forth 05:41:20 --- join: timlarson_ (n=timlarso@65.116.199.19) joined #forth 06:01:00 --- part: H4ns left #forth 06:02:40 --- join: xaaax (n=seinfeld@bl5-145-83.dsl.telepac.pt) joined #forth 06:05:15 --- part: xaaax left #forth 06:09:40 --- join: H4n1 (n=Hans@ita4fw1.itasoftware.com) joined #forth 06:19:12 --- quit: Off_Namuh67 (Read error: 104 (Connection reset by peer)) 06:20:15 --- join: Off_Namuh67 (i=GPS@gateway/tor/x-003f0c4480d1da3c) joined #forth 06:26:03 --- nick: H4n1 -> H4ns 06:29:10 --- quit: FMotAFK () 06:48:06 --- quit: Off_Namuh67 (Remote closed the connection) 07:33:03 --- quit: nighty^ (Remote closed the connection) 08:30:51 --- quit: Quartus__ (Read error: 104 (Connection reset by peer)) 09:10:09 --- quit: gnomon (Read error: 110 (Connection timed out)) 09:37:20 --- join: gnomon (n=gnomon@CPE0050eb372bdb-CM001692f57b56.cpe.net.cable.rogers.com) joined #forth 10:07:20 --- quit: Sikkepitje ("#retro") 10:10:38 --- join: ygrek (i=user@gateway/tor/x-8d3abc54ea80e687) joined #forth 10:30:18 --- join: Off_Namuh (i=GPS@gateway/tor/x-d4918e6f715ea0b1) joined #forth 11:10:29 --- join: twb (n=twb@nat20.cyber.com.au) joined #forth 11:10:54 I have a silly question. Can one "compile" a Forth program? 11:13:23 there are forth compilers, so I guess that means yes 11:14:06 Byte compilers? 11:14:27 no I suppose you mean "to native code" compilers 11:15:37 forthcmp (dos), powermops (macintosh) for example 11:15:54 Neto. 11:16:02 *neato 11:16:10 What are you doing here, twb? 11:16:52 Get tired of trolling on #ratpoison? 11:17:36 male: jordanb was bitching in #emacs that automatic memory management always results in programs that use up lots of memory. So I looked on the shootout and noticed that GForth was top of the list of implementations of languages that support automatic memory management. 11:18:40 Well, the traditional Forth form of memory management is low/high water marking. 11:19:22 That is, you break your program up into small parts, which just allocate all they need and free it instantly when they're done. 11:19:46 Kind of like the philosohpy of never using free() in short-running C programs. 11:21:26 automatic memory management can also counter programs using up lots of memory as gc implementations kind of makes memory leaks non existant 11:21:32 But usually when people talk about the memory footprint of Forth programs, they're talking about the compliled code, not program data structures, which can be as big or small as you like. 11:21:49 Frek: I didn't say I *agreed* with jordanb 11:22:07 male: understood. 11:22:10 I didn't say you did 11:22:12 Yes, there have been many Forth-like languages written with built-in GC. 11:22:57 but anyway this is the same arguments people been having since operating systems begun using virtual memory 11:23:23 I've always felt that garbage collection should be hardware assisted and performed by the OS. 11:23:30 Just like other memory management. 11:23:49 well memory managment is often handled by respective languages runtime 11:23:53 But as it is, you pay a 20-50% penalty for GC. 11:24:21 the kernel/os allocator is usually pretty dumb and often fairly slow too 11:24:52 Frek: I'm talking about handling the MMU. 11:25:41 There is tagging support that can be implemented in hardware which cuts the cost of GC significantly. 11:26:02 male: you are talking about the kind of hardware optimizations found in lispms? 11:26:17 twb: Something like that. 11:26:28 male, I think it would be extremely difficult to do GC in hardware on current hardware 11:26:28 Although it need not be cons oriented. 11:27:00 Frek: Hardware GC exists. But it certainly isn't mainstream. 11:27:16 I don't really deal with hardware, but I can't help wondering if CPU manufacturers are doing that stuff more and more but then laying a silly x86 interface on top. 11:27:48 one thing I'm actually wondering about is why ram compression went away 11:27:54 CPU designers no longer know or fully understand how their chips work. 11:28:06 They're simply too complex. 11:28:19 Too many transistors. 11:28:47 I don't think that's true in most cases, Intel for example probably doesn't, but I'm pretty sure IBM/Freescale still design much by "hand" 11:29:05 Yes. I'm talking about legacy CPUs. 11:29:18 New designs can be simple and fully understood. 11:29:22 How can you have a modern legacy CPU? 11:29:39 Do you know how old the x86 is? 11:29:55 I thought x86 was an instruction set, not a CPU. 11:30:00 They just keep adding transistors. 11:30:03 well to be honest it won't get any better once the quantum processors gets introduced ;) 11:31:10 There isn't an Emacs written in Forth that I know of, but there is one written in TRAC. 11:32:22 I think most Forthers feel ill looking at something like Emacs. 11:33:49 But one could certainly do it. It would be smaller, faster, and more extensible. It wouldn't require byte-compliation either. 11:34:33 It would probably be easier to crash, however. 11:34:47 * madwork tries to picture a quantum Forth... 11:37:30 Well you'd just have a q+ q/ etc. 11:41:52 Frek: There are some old compressed RAM patches for Linux, IIRC. 11:42:12 male, yes I know, but it seems no one care about it anylonger 11:42:35 Frek: That's because everyone has 2G of RAM :-( 11:42:56 well I've got a 64 bit cpu and just "2GB" ram ;) 11:43:51 Frek: I believe the reasoning is that virtual memory gives more than RAM compression, at a lower cost. 11:44:17 Frek: Unless of course you have one huge dataset you need to keep locked in RAM. 11:44:18 male, yes probably 11:45:05 Frek: But if that's the case, you can just to the compression/decompression in the application. 11:45:51 male, I think ramcompression can give some speed benefits on larger memory chunks compared to swapping it out, but I can see how it's not economical for smaller segments 11:46:03 Has anyone written a Forth in elisp, btw? That would be a hoot. 11:46:54 Slowest Forth EVAR. 11:47:38 The bash one might be slower. 11:47:55 * male doubts it 11:48:26 http://www.jimbrooks.org/web/forth/emacs_gforth.php 11:48:37 Not quite there, but interesting nonetheless. 11:49:31 * male didn't know there was a gforth.el 11:54:07 The Bash Forth is pretty much a worst-case scenario. Defined words are stored as strings which are re-parsed upon being called. 11:54:22 A non-stupid Elisp Forth could easily outpace it. 11:54:47 It is possible for a fully interpreted but fast runtime to be faster than a byte-compiled but slow runtime. 11:54:59 Heck, I totally agree. 11:55:28 But I've read Bash Forth, and it is stupidity compounded atop stupidity. It is almost written as an exercise in devising the slowest-possible Forth engine. 11:55:29 TRAC is no less stupid than what you've describe. 11:55:45 Ok. I'm not arguing that point either. 11:55:57 Well, obviously no one indented it to be taken seriously. 11:56:13 I'm just saying that I've seen Malyon, for example, which implements a Z-machine in elisp. It's actually acceptably fast. 11:56:39 gnomon: so bashforth is the guile of forth implementations? 11:57:35 Not even. Guile isn't both colossally slow and braindead by design - just by accident. 11:57:41 ;) 11:58:39 heehee 12:01:40 male, speaking of Forth implementations that were never intended to be taken seriously - have you looked at jsForth? 12:02:11 gnomon: I'm allergic to JavaScript. 12:04:46 Heh. 12:06:01 It's actually quite impressive. It was obviously written by someone who had no (or very little) prior JS knowledge, since it lacks many common idioms which would have substantially simplified it; but on the other hand, the author obviously went far out of his, her or their way(s) to make sure that everything was implemented in a sane manner. There was no "well, this works, let's leave it alone and move on". 12:06:07 It's also *very* thorough. 12:06:32 Yeah.. Cookiedrive. 12:07:20 And JS block support, and loading blocks from external files... but I was referring to its implementation of multiple wordsets, its effort to include not one but several standard vocabularies, and a rather thorough bit of internal documentation. 12:07:41 It is impressive along an axis that many toy Forths are not. 12:08:29 True. 12:14:42 --- quit: ygrek ("Leaving") 12:31:57 --- quit: Al2O3 ("Eggplant & SenseTalk: Driving Success Through Automation") 12:42:11 --- join: iano (n=iosgood@71.216.22.202) joined #forth 12:48:11 --- join: mark4_ (n=mark4@ip70-190-68-238.ph.ph.cox.net) joined #forth 13:04:41 --- quit: mark4__ (Read error: 110 (Connection timed out)) 13:05:57 --- quit: ecraven ("bbl") 13:07:20 --- quit: Baughn (Remote closed the connection) 13:10:09 --- quit: timlarson_ ("Leaving") 13:11:14 --- join: slava (n=slava@CPE0007e97df149-CM000e5cdfda14.cpe.net.cable.rogers.com) joined #forth 13:11:14 --- mode: ChanServ set +o slava 13:30:08 --- join: Baughn (n=svein@084202038064.customer.alfanett.no) joined #forth 13:31:06 --- join: mark4__ (n=mark4@ip70-190-68-238.ph.ph.cox.net) joined #forth 13:41:38 --- quit: iano () 13:47:55 --- quit: mark4_ (Read error: 110 (Connection timed out)) 14:02:09 --- join: FMota (n=FMota@dhcp-36-203-57-69.cf-res.cfu.net) joined #forth 14:03:57 --- quit: ziggurat ("Leaving") 14:12:57 --- join: mark4_ (n=mark4@ip70-190-68-238.ph.ph.cox.net) joined #forth 14:29:43 --- quit: mark4__ (Read error: 110 (Connection timed out)) 15:07:33 --- join: iano (n=iosgood@71.216.22.202) joined #forth 15:10:13 --- join: crest_ (n=crest@p5489F1BA.dip.t-dialin.net) joined #forth 15:18:30 --- quit: crest__ (Read error: 110 (Connection timed out)) 15:31:08 --- quit: Quartus (Connection timed out) 15:31:23 --- join: Quartus (n=neal@CPE0001023f6e4f-CM001947482b20.cpe.net.cable.rogers.com) joined #forth 15:31:24 --- mode: ChanServ set +o Quartus 15:38:16 --- quit: H4ns (Read error: 110 (Connection timed out)) 15:55:55 --- join: DocPlatypus (n=skquinn@xevious.platypuslabs.org) joined #forth 15:59:05 --- join: mark4__ (n=mark4@ip70-190-68-238.ph.ph.cox.net) joined #forth 16:16:03 --- quit: mark4_ (Read error: 110 (Connection timed out)) 16:17:47 --- quit: mark4__ (Read error: 110 (Connection timed out)) 16:27:47 --- quit: iano () 16:36:40 gnomon: I believe you are correct when you say that BashForth is simply a toy; if memory serves me correctly, it was written as a "what if?" type of project. Just a hair shy of being a dare. The fact that it CAN be done is simply amazing, in that "oh ... my ... god ..." sort of way. 16:39:57 --- join: Quartus__ (n=Quartus_@205.205.50.1) joined #forth 16:40:20 Frek: Actually, most companies today use automatic layout systems -- VHDL or Verilog. They almost never design by hand, but they may *tweak* by hand as needed. 16:40:44 With CPUs exceeding 10 million transistors, it's just not possible to design by hand anymore. 16:41:10 --- join: tathi (n=josh@pdpc/supporter/bronze/tathi) joined #forth 16:41:11 --- mode: ChanServ set +o tathi 16:41:27 --- join: doublec (n=doublec@202.180.114.137) joined #forth 16:41:40 unless it's a simple CPU like a 6502 clone 16:41:42 XeF4: It's going. My position with Google will end in January, as I didn't get the full-time, regular job here. Oh well. Maybe, if I'm lucky, they'll be looking for Forth coders at Intellasys. 16:42:28 DocPlatypus: Not even. Western Design Center uses Verilog to implement their CPUs now. ;) But, that's more for "time to market" reasons really. The 6502 is definitely simple enough to do by hand. 16:42:45 Even Chuck Moore's OKAD-II system is "description"-based, not layout-based. :) 16:42:55 (although, the language describes layout, not logical structure. But, still...) 16:50:11 DocPlatypus: That being said, I have been thinking of writing a PCB layout package in Forth that worked using the tile-based approach like OKAD does for chips. But, when you get into such large scales, it starts to get pretty unweildly. :) 16:57:41 --- part: twb left #forth 16:57:49 hi 17:00:37 re hi 17:00:42 bahh 17:00:45 re Quartus__ :) 17:05:04 Today is a day that will go down in infamy -- in my personal biography at least. This is easily one of the most boring days of my life. 17:09:10 I only feel bored when forced to endure something that keeps me from my own pursuits. 17:09:39 frustrated, is perhaps the right word 17:09:42 Well, you work for yourself, right? (E.g., own your own business as your exclusive source of income) 17:10:11 yes, but nonetheless obligations do arise from time to time. 17:10:19 Historical records show that I'm not at all successful working for myself. 17:11:01 I'm saying, you're on the net, with free time; how can you be bored? 17:12:00 You sound like my mom. 17:12:07 "You have all these toys in your room. How can you be bored?" 17:12:10 I'm bored. 17:12:14 And that's all there is. :) 17:12:26 I have more interests than I ever have time to pursue as fully as I'd like. I'd relish a block of uninterrupted time. 17:12:50 I do too, but you get burned out after a while. 17:13:43 * DocPlatypus blows the dust off of some of his old Forth code 17:31:59 hey, the vacuum cleaner demonstration guy just cleaned the house...don't blow the dust this way ;) 17:32:55 (I guess this is funny to me because it is true...he just left a couple minutes ago, sadly for him, with no sale) 17:33:08 that sucks 17:33:08 not a Kirby salesman I hope? 17:33:14 heard bad stories about them 17:33:17 TriStar 17:33:31 ...our Hoover Z does a better job. 17:34:02 I have a Tristar. 17:34:07 (Hi!) 17:34:10 hi :) 17:34:23 it works well, ours just picks up a little bit more 17:34:32 All I can say about vacuums is, well, they all suck. 17:34:32 madgarden: Is (Hi!) the internal implementation of Hi!? 17:34:32 how do you like yours? 17:34:37 my former roommate's former roommate/girlfriend left behind an Amway ClearTrak 17:34:51 decent little vacuum dare I say it 17:34:52 kc5tja, yes. 17:35:13 Eh, it works fine I guess. It's getting oldish. We don't vacuum a whole lot really, because vacuuming is a sham. 17:35:25 madgarden: how so? 17:35:33 he said they last about 40-some years on average 17:35:47 Your former roommate's girlfriend was an Amwegian? 17:35:57 timlarson, then I guess I've got 30 more years to go. Maybe I should change the bag... 17:36:01 do you think it is worth 2200 USD? 17:36:22 we got our $400 hoover z for $80 17:36:31 DocPlatypus, well you can never get anything fully clean. Plus, immune systems are there for a reason. ;) 17:37:03 timlarson, no, it's not worth $2200. We got our salesperson to lower the price drastically though. Still, paid way too much for a vacuum cleaner. 17:37:03 Quartus: I have no idea where she got it from. she and I never talked 17:37:10 I read that the Henry is really good 17:37:42 (seems to be available only in europe, except for some rare importer) 17:38:06 The powerhead on ours is getting kinda ratty. I guess it needs new parts. 17:38:18 did you get the free servicing deal? 17:38:24 I don't remember. :) 17:38:38 Anyway, I checked out that jsForth earlier. Pretty impressive! 17:38:42 just checking, since it might not cost you anything to get it fixed :) 17:39:26 Yea. Maybe I'll stumble across the contract sometime. 17:39:38 Anyway, like I said, I try not to vacuum excessively anyway. ;) 17:39:49 you can return to your regularly scheduled forthing ;) 17:40:09 thankfully forth is low-dust and low allergen (at least to us) 17:40:10 Not much in the way of forthing, unfortunately. 17:40:43 I should probably get back to work on my biz website... 17:41:04 when it is up then I can get back to forthing 17:41:25 I want to get a biz website up in the next months as well. 17:42:34 What kinds of businesses? 17:43:22 me --> advertising 17:43:30 * kc5tja wishes he could find something that he's really honestly GOOD at, something that he can stick with for a long time, so that he can perhaps make some money that way. 17:43:49 Practice. 17:44:00 kc5tja, games. 17:44:04 madgarden: I hate games. 17:44:08 And related tools, initially. 17:44:11 Well, poo! 17:44:17 Well, let me rephrase. 17:44:21 I don't have the patience for games. 17:44:25 It's not that I hate them as such. 17:44:30 Have you tried my Saucelifter out? 17:44:30 I'll play them, but then I get bored with them. 17:45:07 Quartus: Useless advice I'm afraid. But, thanks anyway. 17:45:17 madgarden: Does it exist for Linux? 17:45:50 Useless? So you're looking for something you're expert at without ever practicing? 17:46:13 kc5tja, it does when my programming buddy builds it for Linux. ;) I'll try to get a build for you sooner than later, after it's complete. 17:46:31 Quartus: A little context would have helped. I practice at a lot of things quite often. 17:46:44 Guys, don't start. ;P 17:46:53 Well, I don't get it. 17:46:57 Quartus: I'm even an expert in a few (coding, for example). But I don't see myself getting rich in those fields. 17:47:57 kc5tja, unless you go into it for yourself. 17:48:34 madgarden: http://www.falvotech.com <-- that's why that exists. It produced only $1000 in one year. It is not economical. 17:48:54 After that, I had to close teh business, and it became my personal site. 17:48:58 the even 17:49:28 --- join: edrx (i=edrx@189.25.142.18) joined #forth 17:50:17 Well, that's not the only angle of attack. Anyway, I'm not going to pep talk you into going for it. It's my goal though... too creative to be slogging away working for someone else for peanuts and little recognition. 17:51:32 Well, you've something I do not -- tenacity. I burn out *WAY* too fast. 17:52:00 Without that, a business venture is a waste. 17:52:20 So, I don't/won't bother anymore. 17:52:56 * tathi wants to see Saucelifter for Linux. Need help? :) 17:52:57 I certainly burn out as well, but yes, I don't give up either. I know I'll not be satisfied, or happy, without an outcome on my own terms. 17:53:28 tathi, I have a machine here that's itching to be set up as a Linux boxxen... perhaps I can do that this weekend. 17:53:44 It's frickin' noisy though, ugh. 17:53:51 * madgarden is surrounded by ancient hardware. 17:54:20 heh 17:54:26 madgarden: The older I get, the more cynical I get. Nothing interests me anymore. 17:55:32 things interest me, but cost more money than I have allocatable 17:55:36 kc5tja, I hear you. Remember, I'm older than even you. ;) I refuse to give up though. 17:55:47 so I have to start a business to make money faster 17:56:03 timlarson, yep. That's one way to get motivated. :) 17:56:11 e.g. physics is very interesting to me...but equipment and materials cost $ 17:56:13 That doesn't motivate me though. 17:56:46 I've got a wife and 2 kids, house, etc. I want more time with them, and to share my successes with them. 17:56:46 So, first I have to be successful. ;) 17:56:46 I do find it hard to connect my internal motivation to money making activities 17:56:49 I'm a total physics whore -- but, the equipment involved costs *SO* much that no amount of self-owned business is going to pay for that hobby. 17:57:29 I guess what it boils down to is, frankly, I'm always behind the curve. 17:57:35 Not one of my skills is marketable. 17:57:53 I saw plans for a $100 STM http://www.geocities.com/spm_stm/ 17:57:54 kc5tja, port this to Forth: http://wiki.slembcke.net/main/published/Chipmunk 17:57:55 :) 17:58:13 kc5tja, just ride it out and wait for the Singularity. That's my fallback plan. ;) 17:58:17 I am, with the sole exception of technical support or software development, unemployable. Well, heh, except for making burgers. But burgers don't pay the bills around here, although it IS fun. :) 17:58:57 pizza driving is not bad, in good neighborhoods...but does not pay as well as coding 17:59:06 I did that for two years 17:59:13 Yea, pizza delivery was fun. 18:01:07 I know that wanted physics equipment will exceed any normal budget...so I want to combine budgets and start a chain of tech shops where I can go to use shared equipment 18:01:53 Eat at Joe's and Accelerate Particles, that sort of thing? 18:01:54 a nice side effect is that others could do the same 18:02:38 we could start a healthy+tasty fast food place too, but that is a separate idea...even if next door 18:04:36 timlarson, I've got a pub idea also. And/or a motel. ;) 18:05:02 The Quark and Kettle 18:05:04 timlarson: Cooking food using the waste heat from magnetic bottle confinement systems? :) 18:05:10 hehe 18:05:34 look into ETFE plastic film...and xanadomes for how to enclose the place 18:14:15 In Xanadome did Kubla Khan a stately pleasure dome decree 18:16:41 --- quit: tathi ("leaving") 18:17:17 I used to do messenger-courier work 18:17:30 that was more fun than I would expect shuttling pizzas to be 18:23:50 --- quit: Quartus__ (Read error: 104 (Connection reset by peer)) 18:28:16 http://www.xanadome.com/ApL2.html 18:33:01 timlarson: Is this what you'll be marketing? 18:33:21 That's a strange picture. Please tell me that is an artist's mockup. I can't tell what is near and what is far. 18:34:36 I am not connected with that...but wander the site a bit 18:41:33 --- join: nighty^ (n=nighty@sushi.rural-networks.com) joined #forth 18:45:54 I guess I'm just too stupid to understand the point of the structure. 18:49:50 small amount of materials, large area/volume enclosed 18:50:07 i.e. reduced cost/sqare foot 18:50:28 and with ETFE plastic film it lasts a long time 18:50:46 and gives you an "outdoors" with indoor weather. 18:50:49 Well, it just seems to me that it's flimsy. 18:50:56 They use the bicycle wheel as an example on the site. 18:51:05 But, my bike wheels are both bent out of round. 18:51:19 Slightly, but still. 18:51:29 It just seems to me that this kind of structure is impractical. 18:51:41 At least, on the scales they're thinking of. 18:51:50 or as permanent fixtures. 18:51:51 any engineer would probably say it needs additional margin beyond what they are saying. 18:51:54 I can see temporary fixtures... 18:52:21 I am thinking for normal-sized buildings, not giant spans... 18:52:39 and with more of an octet-truss arch 18:53:46 the ETFE has been up in some sites for 20+ years with no appreciable degredation 18:54:12 in full weather exposure 18:54:27 Well, I'm not so worried about the plastic. 18:54:37 (although, you ARE creating a greenhouse with it. I'd like some wind flow. :)) 18:54:53 then use octet-trusses instead plain pipes 18:55:21 and make use of the bernoli (sorry about spelling) effect for cooling 18:55:38 (small opening at the top, larger sum of openings around the bottom edge) 18:57:06 put some dark ground around the outside 18:57:18 sun heats the ground, which heats the air, which rises... 18:57:30 That's just thermal convection. 18:57:42 this pulls air out from the bottom edge vents, which gets replenished from the top vent 18:57:43 Bernoulli effect is the change in pressure due to airflow itself. 18:58:02 right -- ever see a solar chimney experiments in Spain? 18:58:11 They use PFTE (??) plastic, I think. 18:58:31 the difference in opening size causes a decrease in pressure and hence a drop in temperature of around ...what was it 10 or more degrees F. 18:58:32 But the idea is the same -- a big inverted funnel, with a wind turbine at the base of the chimney. 18:58:48 One person is able to run the facility, and it generates something like 200 to 400MW of power. 19:00:05 i think they're trying to build one in Australia now. 19:00:18 Anyway, this just seems to be "too good to be true". 19:00:41 did you look up octet truss? 19:02:24 Not yet -- still perusing the xanadome site. 19:02:27 Almost at the end though. 19:07:12 hmm 19:07:18 I'm googling, but lots of "noise" is appearing. 19:07:27 It appears to be 3 tetrahedrons coupled together. 19:08:17 did you try images.google.com 19:08:55 Yeah 19:08:57 I found a clear picture. 19:08:59 I was close. 19:09:10 The main structural support comes from octahedrons. 19:09:17 They're skewed at an angle. 19:09:32 Then rigidity is provided by tetrahedrons, which fill in the spaces between the octahedrons. 19:09:45 This produces a crystal lattice-like "slab" of joints. 19:10:04 In short, it's a _flat_ equivalent of a geodesic sphere. 19:11:53 * kc5tja has always wanted a geodesic home. :) 19:12:30 Going home. brb 19:12:45 k 19:25:54 --- quit: crest_ (kornbluth.freenode.net irc.freenode.net) 19:25:54 --- quit: Snoopy42 (kornbluth.freenode.net irc.freenode.net) 19:25:54 --- quit: nighty- (kornbluth.freenode.net irc.freenode.net) 19:25:54 --- quit: timlarson (kornbluth.freenode.net irc.freenode.net) 19:25:54 --- quit: gnomon (kornbluth.freenode.net irc.freenode.net) 19:25:54 --- quit: JasonWoof (kornbluth.freenode.net irc.freenode.net) 19:25:55 --- quit: male (kornbluth.freenode.net irc.freenode.net) 19:25:55 --- quit: segher (kornbluth.freenode.net irc.freenode.net) 19:25:55 --- quit: FMota (kornbluth.freenode.net irc.freenode.net) 19:25:55 --- quit: maht (kornbluth.freenode.net irc.freenode.net) 19:25:55 --- quit: saon (kornbluth.freenode.net irc.freenode.net) 19:25:55 --- quit: cmeme (kornbluth.freenode.net irc.freenode.net) 19:25:56 --- quit: Frek (kornbluth.freenode.net irc.freenode.net) 19:25:57 --- quit: mem4tim (kornbluth.freenode.net irc.freenode.net) 19:25:57 --- quit: arke (kornbluth.freenode.net irc.freenode.net) 19:25:57 --- quit: doublec (kornbluth.freenode.net irc.freenode.net) 19:25:57 --- quit: slava (kornbluth.freenode.net irc.freenode.net) 19:25:57 --- quit: warp0x00 (kornbluth.freenode.net irc.freenode.net) 19:25:58 --- quit: Quartus (kornbluth.freenode.net irc.freenode.net) 19:25:58 --- quit: DocPlatypus (kornbluth.freenode.net irc.freenode.net) 19:25:58 --- quit: proteusguy (kornbluth.freenode.net irc.freenode.net) 19:25:58 --- quit: crc (kornbluth.freenode.net irc.freenode.net) 19:25:59 --- quit: ccfg (kornbluth.freenode.net irc.freenode.net) 19:25:59 --- quit: Baughn (kornbluth.freenode.net irc.freenode.net) 19:25:59 --- quit: Off_Namuh (kornbluth.freenode.net irc.freenode.net) 19:26:00 --- quit: TreyB_ (kornbluth.freenode.net irc.freenode.net) 19:26:00 --- quit: XeF4 (kornbluth.freenode.net irc.freenode.net) 19:26:00 --- quit: nighty^ (kornbluth.freenode.net irc.freenode.net) 19:26:00 --- quit: madgarden (kornbluth.freenode.net irc.freenode.net) 19:26:00 --- quit: kc5tja (kornbluth.freenode.net irc.freenode.net) 19:26:59 --- join: Quartus (n=neal@CPE0001023f6e4f-CM001947482b20.cpe.net.cable.rogers.com) joined #forth 19:26:59 --- join: nighty^ (n=nighty@sushi.rural-networks.com) joined #forth 19:26:59 --- join: doublec (n=doublec@202.180.114.137) joined #forth 19:26:59 --- join: DocPlatypus (n=skquinn@xevious.platypuslabs.org) joined #forth 19:26:59 --- join: crest_ (n=crest@p5489F1BA.dip.t-dialin.net) joined #forth 19:26:59 --- join: FMota (n=FMota@dhcp-36-203-57-69.cf-res.cfu.net) joined #forth 19:26:59 --- join: Baughn (n=svein@084202038064.customer.alfanett.no) joined #forth 19:26:59 --- join: slava (n=slava@CPE0007e97df149-CM000e5cdfda14.cpe.net.cable.rogers.com) joined #forth 19:26:59 --- join: Off_Namuh (i=GPS@gateway/tor/x-d4918e6f715ea0b1) joined #forth 19:26:59 --- join: gnomon (n=gnomon@CPE0050eb372bdb-CM001692f57b56.cpe.net.cable.rogers.com) joined #forth 19:26:59 --- join: proteusguy (n=proteusg@ppp-124.120.223.169.revip2.asianet.co.th) joined #forth 19:26:59 --- join: segher (n=segher@82-217-247-28.cable.quicknet.nl) joined #forth 19:26:59 --- join: Snoopy42 (i=snoopy_1@dslb-084-058-171-114.pools.arcor-ip.net) joined #forth 19:26:59 --- join: saon (n=saon@unaffiliated/saon) joined #forth 19:26:59 --- join: nighty- (n=nighty-@66-163-28-100.ip.tor.radiant.net) joined #forth 19:26:59 --- join: timlarson (n=timlarso@user-12l37rb.cable.mindspring.com) joined #forth 19:26:59 --- join: maht (n=maht@85-189-31-174.proweb.managedbroadband.co.uk) joined #forth 19:26:59 --- join: arke (n=f2@bespin.org) joined #forth 19:26:59 --- join: JasonWoof (n=jason@unaffiliated/herkamire) joined #forth 19:26:59 --- join: madgarden (n=madgarde@bas2-kitchener06-1096621096.dsl.bell.ca) joined #forth 19:26:59 --- join: Frek (i=frek@accelerated.speeed.net) joined #forth 19:26:59 --- join: crc (n=crc@pdpc/supporter/active/crc) joined #forth 19:26:59 --- mode: irc.freenode.net set +oooo Quartus slava JasonWoof crc 19:26:59 --- join: cmeme (n=cmeme@boa.b9.com) joined #forth 19:26:59 --- join: TreyB_ (n=trey@cpe-66-87-192-27.tx.sprintbbd.net) joined #forth 19:26:59 --- join: male (n=male@adsl-250-8-232.bhm.bellsouth.net) joined #forth 19:26:59 --- join: kc5tja (n=kc5tja@c-24-6-87-99.hsd1.ca.comcast.net) joined #forth 19:26:59 --- join: mem4tim (n=timlarso@user-12l37rb.cable.mindspring.com) joined #forth 19:26:59 --- join: warp0x00 (n=warpzero@208.74.136.138) joined #forth 19:26:59 --- join: ccfg (n=pitkajus@tuomi.oulu.fi) joined #forth 19:26:59 --- join: XeF4 (i=xef4@epilogue.org) joined #forth 19:28:42 back 19:29:12 --- quit: nro (Remote closed the connection) 19:29:18 --- join: nro (i=o@o.ihqu.fi) joined #forth 19:29:18 wb 19:50:29 --- join: snoopy_1711 (i=snoopy_1@dslb-084-058-156-042.pools.arcor-ip.net) joined #forth 20:08:11 --- quit: Snoopy42 (Read error: 110 (Connection timed out)) 20:08:21 --- nick: snoopy_1711 -> Snoopy42 20:26:21 ##c: [23:17] I am soo old and tired 20:28:15 --- part: edrx left #forth 20:30:12 Quartus: how fitting 20:30:38 he's in full-on rant mode, flinging insults left and right presently 20:30:50 [23:28] Yer too stupid to live 20:31:10 [23:14] jsedgwick: just... die 20:31:25 [23:29] actually, frighteningly, I expect you to be a "man-ager" 20:31:31 and so on 20:31:31 ouch 20:32:25 hmm...pappavic by proxy 20:32:31 heh 20:32:58 Quartus: I'm sick of yer txtmsgaolsht 20:33:15 when will it stop? 20:33:17 slava: look, asswipe, "EMO" is a comedian 20:33:19 I gave up asking questions in ##c...thankfully I did not have very many 20:33:34 --- quit: male ("User disconnected") 20:34:01 --- join: male (n=male@adsl-250-8-232.bhm.bellsouth.net) joined #forth 20:37:32 wow. just... wow 20:37:36 yeah 20:37:42 he's getting worse 20:38:55 That's too bad. 20:42:15 gn 20:42:54 ciao 20:48:23 : You folks worry too much, which suggests you are guilty 20:48:53 a long day of what? IRC? 20:49:09 yup 20:49:17 was there a beer run? 20:49:19 he's a hard working, old (he's 46!) long-suffering man 21:53:15 --- nick: FMota -> FMotAFK 21:55:38 --- quit: nighty^ ("Disappears in a puff of smoke") 22:07:33 --- quit: madwork (Read error: 104 (Connection reset by peer)) 22:43:07 --- quit: doublec () 23:12:37 --- join: ecraven (n=nex@eutyche.swe.uni-linz.ac.at) joined #forth 23:56:01 --- quit: DocPlatypus ("Leaving") 23:59:59 --- log: ended forth/07.09.19