IRC logs for #openttd on OFTC at 2008-04-11
            
00:33:00 *** Dominik has quit IRC
00:33:24 *** SmatZ has quit IRC
00:35:07 *** Eddi|zuHause3 has joined #openttd
00:41:58 *** Eddi|zuHause2 has quit IRC
00:51:20 *** gfldex_ has joined #openttd
00:53:13 *** gfldex has quit IRC
00:54:02 *** michi_cc has quit IRC
01:26:11 *** michi_cc has joined #openttd
01:26:11 *** ChanServ sets mode: +v michi_cc
02:09:06 *** roboman has joined #openttd
02:34:31 *** Aerandir has quit IRC
02:39:50 *** roboman has quit IRC
03:04:54 *** glx has quit IRC
03:06:30 *** sunkan has quit IRC
03:06:50 *** sunkan has joined #openttd
03:25:37 *** Ammler has quit IRC
04:01:16 *** Ammler has joined #openttd
04:06:44 *** a1270 has quit IRC
04:15:34 *** a1270 has joined #openttd
04:57:05 *** Osai^zZz is now known as Osai
04:59:27 *** bowman^2 has joined #openttd
05:05:47 *** bowman has quit IRC
05:14:18 *** divo has joined #openttd
05:47:57 *** bowman^2 is now known as bowman
05:48:43 *** raimar3 has joined #openttd
05:55:47 *** raimar2 has quit IRC
06:01:06 *** llugo has joined #openttd
06:02:44 *** SpComb^ has joined #openttd
06:04:40 *** SpComb has quit IRC
06:07:35 *** lugo has quit IRC
06:15:08 *** GoneWacko has joined #openttd
06:17:07 *** dR3x4cK has joined #openttd
06:57:54 *** Alberth has joined #openttd
07:01:19 *** Gekz has quit IRC
07:03:19 *** Xeryus|bnc is now known as XeryusTC
07:17:02 *** Morloth has quit IRC
07:20:53 *** TinoM has joined #openttd
07:42:27 <Alberth> Rubidium: Is the BaseWindow out the window, or are you still discussing it?
07:44:45 <Rubidium> it's just that we don't like lots of lines doing what a simple memset would be able to do
07:45:05 <Rubidium> doesn't mean that the idea isn't good
07:47:19 <Alberth> when moving from struct to class, the logical next step is to initialize the class in its constructor. You will get those lines then anyway.
07:48:29 *** ThePizzaKing has joined #openttd
07:49:14 <Alberth> In addition, you can initialize data members to XXX_INVALID or NULL, which are not necessarily 0-bits
07:50:22 <Rubidium> if NULL isn't 0 then OTTD wouldn't even work on that platform
07:50:51 <Rubidium> and I don't think NULL != 0 happens on any 'recent' platform
07:51:26 <Rubidium> primarily because the linux kernel assumes NULL to be 0, which means it works on a vast number of platforms
07:52:54 <Tefad> i think C++ requires the null pointer to be recognized as 0 anyway.
07:53:12 <Tefad> the compiler should do tricks to find out context if 0 != null pointer.
07:53:21 <Alberth> In the C++ language yes, in memory not necessarily
07:53:30 <Tefad> see above.
07:54:56 <Alberth> theoretically, address 0 in memory could be a legal address to put an object. In that case the c++ compiler would use a a different bit pattern to represent NULL pointer (which you'd still write as 0 or NULL in your program)
07:55:52 <Rubidium> though that doesn't happen on the platforms that OTTD supports.
07:56:36 <Alberth> a different question, does c++ guarantee that you can safely memset an allocated object (ie in the middle of _windows)?
07:56:52 <Alberth> Rubidium: I said *theoretically*
07:57:50 <Rubidium> memsetting an object with virtual functions fails, but there are tricks to solve that easily
07:58:00 * Rubidium points to the pools
08:01:16 *** mikl has joined #openttd
08:03:04 <peter1138> hmm
08:06:16 *** Frostregen has quit IRC
08:06:36 <Alberth> is it tasty?
08:06:36 *** DaleStan_ has joined #openttd
08:06:36 *** DaleStan is now known as Guest1374
08:06:36 *** Frostregen_ has joined #openttd
08:06:51 *** DaleStan_ is now known as DaleStan
08:06:54 *** Frostregen_ is now known as Frostregen
08:11:01 *** Guest1374 has quit IRC
08:15:06 <CIA-3> OpenTTD: rubidium * r12657 /trunk/src/ (9 files): -Codechange: add 'FindClosestDepot' to the vehicle class.
08:18:18 *** elmex has joined #openttd
08:23:48 *** Aerandir has joined #openttd
08:26:47 <Alberth> Rubidium: I am getting quite confused now. You said that introducing the base class was a problem. Now you say that you don't like 20-30 lines var=0; can you define the problem more precisely please?
08:30:18 <Alberth> can mem-pools handle different classes (of different size)?
08:31:22 <peter1138> no
08:31:41 <blathijs> I have been working on new mem pools that can (ie, one mempool for each subclass)
08:33:17 *** Wezz6400 has joined #openttd
08:34:04 <HMage> мямя. всем привет.
08:34:19 <peter1138> quiet
08:35:45 <Rubidium> Alberth: I didn't say that the base class is a problem; I just said that I didn't like the addition of that vast array of variables that is initialized to 0
08:36:17 <Rubidium> because 'tomorrow' someone adds a variable and that person forgets to explicitly zero it and we're going to have all kinds of funny bugs
08:37:55 <Alberth> in that case, your message was slightly too cryptic for me.
08:38:25 <Alberth> this can be solved by deriving from a mem-pool thus?
08:38:45 <blathijs> Doesn't C++ provide some warning for unitialized variables?
08:39:35 <Rubidium> no, the mempool code shows you how you can do it with memset
08:40:24 <CIA-3> OpenTTD: rubidium * r12658 /trunk/src/ (8 files): -Codechange: unify a vast portion of the CmdSend<VehicleType>ToDepot commands.
08:41:28 <Alberth> i have in my mind that c++ does initialize all data members (ie implicit mydata()) when you don't specify anything
08:42:35 <Alberth> Rubidium: was your no for me or for blathijs?
08:42:48 <blathijs> Alberth: for you
08:43:10 *** Ammller has joined #openttd
08:47:05 *** Ammler has quit IRC
08:48:20 *** Noldo has quit IRC
08:49:18 *** Roujin has joined #openttd
08:49:27 <Roujin> @revision
08:49:33 <Alberth> would implementing a new operator with memset for Window be a solution?
08:49:48 <Roujin> hmpf i always forget these bot commands ><
08:49:54 <Alberth> Roujin: 12658
08:50:28 <Roujin> wow, that's one clever bot ;) thanks :P
08:51:00 <Alberth> well i do have the problem of ambigious interpretation :)
08:54:05 *** shodan has joined #openttd
08:55:30 *** Noldo has joined #openttd
08:57:09 <Alberth> argh. no it isn't in the current setting :(
08:57:31 <Roujin> what isn't in the current setting?
08:58:03 <Alberth> (10:48:28 AM) Alberth: would implementing a new operator with memset for Window be a solution? <-- this
08:59:27 <Alberth> it is only after eliminating _windows
08:59:44 *** xahodo has joined #openttd
09:12:26 *** GoneWacko has quit IRC
09:13:50 *** sulai has joined #openttd
09:16:13 <sulai> Hey guys =)
09:17:37 <Rubidium> Alberth: yes
09:17:42 <Rubidium> 'lo sulai
09:17:55 <sulai> I can't register to Flyspray... some errors are comming up. http://www.tt-forums.net/viewtopic.php?p=680872#p680872
09:18:36 <sulai> Is this issue known?
09:19:08 <Rubidium> can you login with the username/password you entered?
09:19:19 *** Volley has joined #openttd
09:20:25 <Rubidium> if so, then it has been fixed a gazillion times (or so said the maintainer of flyspray)
09:20:25 *** GoneWacko has joined #openttd
09:20:38 <peter1138> fixed just like WT2...
09:22:08 *** SmatZ has joined #openttd
09:22:24 <sulai> Rubidium: no, I can't register as a new user
09:22:51 *** Singaporekid has joined #openttd
09:24:15 <Rubidium> sulai: you should try pressing the lost password thingy
09:24:21 * peter1138 tests
09:24:23 <Rubidium> seems the user has been made
09:24:26 <peter1138> works for me
09:24:30 <peter1138> leaving the jabber stuff blank
09:24:41 <sulai> Rubidium: I am not yet registered to Flyspray at all
09:24:53 <peter1138> at least, the first part does
09:25:04 <Rubidium> sulai == Martin R......
09:25:20 <Rubidium> with some dots too few
09:25:22 <sulai> hm ok I'll try =)
09:25:43 *** sulai has quit IRC
09:25:58 <peter1138> yeah
09:26:09 <peter1138> you get the error when trying to register with an already existing username
09:26:37 *** sulai has joined #openttd
09:28:39 <sulai> Rubidium: I tried the lost password thing, when I press "Send link", it says:
09:28:41 <sulai> Notice: Undefined index: action in /www/openttd.org/bugs/scripts/modify.php on line 1797
09:28:42 <sulai> Notice: Undefined index: action in /www/openttd.org/bugs/scripts/modify.php on line 2231
09:28:44 <sulai> A message has been sent to your notification address. It contains a link that will take you to a page to complete this task.
09:29:55 <Eddi|zuHause3> most likely these errors are meaningless
09:30:07 <Rubidium> stupid fracking flyspray
09:30:13 <Eddi|zuHause3> if you get no email, the two most obvious reasons are wrong address
09:30:17 <Eddi|zuHause3> or spam blocker
09:31:33 *** Vikthor has joined #openttd
09:32:58 <peter1138> somehow i doubt that every flyspray install has these problems
09:33:15 <Eddi|zuHause3> must be the admin ;)
09:33:25 <peter1138> i wouldn't like to say
09:33:26 <Rubidium> most'll use MySQL instead of PostgreSQL
09:33:42 <peter1138> true
09:33:53 <peter1138> many idiots put up with mysql :(
09:42:01 <sulai> Rubidium: there is no email in my inbox / junk mail folder... =(
09:43:25 <Rubidium> that sucks, cause then I can't help you and you have to contact MiHaMiX
09:46:17 *** Trond has quit IRC
09:47:39 *** Gekz has joined #openttd
09:47:48 <sulai> how to contact MiHaMiX?
09:48:31 *** xahodo has quit IRC
09:48:52 *** lobster_MB has quit IRC
09:52:24 *** Progman has joined #openttd
09:56:28 <Alberth> sulai: maybe you should wait a while, and give the Internet a chance to transport the mail
09:57:23 *** Gekz has quit IRC
09:57:35 *** Gekz has joined #openttd
10:00:31 <Roujin> nice Alberth
10:01:07 <Roujin> (your patch)
10:01:09 <Rubidium> sulai: his contact info is on openttd's website, but do not expect a swift reply from him :(
10:01:50 *** Gekz has quit IRC
10:01:54 <sulai> hm anyway, better late than never =)
10:02:01 <sulai> thanks guys
10:02:32 *** tokai has quit IRC
10:03:53 *** Gekz has joined #openttd
10:04:08 *** tokai has joined #openttd
10:04:08 *** ChanServ sets mode: +v tokai
10:06:33 <Roujin> Alberth: you could have the .diff create the new file too, so there'd be no need to copy stuff, no?
10:07:05 <Roujin> but i reckon you've got a lot more experience with that stuff, so i better not advise you ^^
10:07:31 <sulai> what is the patch about Alberth is working on?
10:08:53 <Alberth> FS#1905
10:08:56 <Roujin> making windows object oriented
10:09:12 <Roujin> nothing fancy for users but i think devs will like it;)
10:09:26 <Noldo> -fancy
10:09:38 <Alberth> about 200K patches later, users will benefit :)
10:09:50 <Alberth> s/K/KB/
10:10:58 <Alberth> Roujin: "so there'd be no need to copy stuff": yes, but you loose history of the file if not copying with svn
10:12:56 <Alberth> gtg, bye
10:13:03 <sulai> I haven't been to ottd for a while... are you working on a conversion to C++ OO ?
10:13:54 <sulai> hm well I like it too ;)
10:14:46 <Alberth> yes, but no new functionality, just code refactoring
10:15:40 <Alberth> (very much tempted to type ^D here to leave, but the program would understand that probably)
10:15:42 <Noldo> features are overrated ;)
10:15:55 *** Alberth has left #openttd
10:21:17 *** lobster_MB has joined #openttd
10:26:48 *** Arie- has joined #openttd
10:29:22 *** lobster_MB has quit IRC
10:32:34 *** lobster_MB has joined #openttd
10:43:24 <SmatZ> Q: How long does compilation of 2.6 kernel take on a 200MHz PMMX? A: AGES!
10:52:40 *** bowman^2 has joined #openttd
10:59:05 *** bowman has quit IRC
11:04:38 *** lobster_MB has quit IRC
11:05:33 *** Morloth has joined #openttd
11:14:32 *** SmatZ has quit IRC
11:16:38 <Volley> unless using distcc :)
11:19:02 *** lobster_MB has joined #openttd
11:19:33 *** Arie- has quit IRC
11:23:51 *** Mirrakor has joined #openttd
11:31:32 *** sulai has quit IRC
11:31:56 *** sulai has joined #openttd
11:33:18 *** frosch123 has joined #openttd
11:35:36 *** lobster_MB has quit IRC
11:39:19 *** sulai_ has joined #openttd
11:40:37 *** sulai has quit IRC
11:40:46 *** sulai_ is now known as sulai
11:43:35 *** lobster_MB has joined #openttd
11:46:04 *** Gekz has quit IRC
11:56:55 *** SmatZ has joined #openttd
12:02:54 *** lobster_MB has quit IRC
12:08:08 *** Poopsmith has quit IRC
12:10:54 *** Ammller has quit IRC
12:11:16 *** Ammler has joined #openttd
12:21:49 *** SmatZ has quit IRC
12:24:36 *** ThePizzaKing has quit IRC
12:25:06 <Sacro> hmm, shall i broadcast the lecture on teamspeak?
12:26:28 *** stillunknown has joined #openttd
12:28:45 *** lobster_MB has joined #openttd
12:55:23 *** lobster_MB has quit IRC
12:56:13 *** glx has joined #openttd
12:56:13 *** ChanServ sets mode: +v glx
13:01:12 *** lobster_MB has joined #openttd
13:10:53 *** Trond has joined #openttd
13:11:19 <Mirrakor> make it available as podcast ;)
13:12:27 *** Frostregen has quit IRC
13:13:40 *** Zahl has joined #openttd
13:17:44 <Ammler> We are currently playing a Stream only game (old area), but sometimes, it happens, you buy a new car or build a modern station. So I looked, if it's possible to set it over patches, but found only the constant MAX_YEAR, possible to replace that with a patch setting? (http://www.openttdcoop.org/ammler/max_year.diff)
13:20:16 <CIA-3> OpenTTD: rubidium * r12659 /trunk/src/vehicle.cpp: -Cleanup: some style cleanups in vehicle.cpp.
13:21:20 *** Frostregen has joined #openttd
13:25:17 *** glx has quit IRC
13:25:26 *** glx has joined #openttd
13:25:26 *** ChanServ sets mode: +v glx
13:28:46 *** HerzogDeXtE1 has joined #openttd
13:32:28 <Eddi|zuHause3> Ammler: you could do something with the daylength patch
13:33:11 <Eddi|zuHause3> there was recently an update for really really high factors, which then displays the date in hours/minutes
13:33:37 <Ammler> Eddi|zuHause3: my patch works
13:34:14 <Ammler> I fear the balancing of daypatch...
13:34:36 <Eddi|zuHause3> i was not questioning that
13:34:57 <Ammler> the patch I posted uses the "old" max 2090) workaround :-)
13:34:59 <Eddi|zuHause3> it just might be a more sensible solution than just cycling the same year over and over
13:35:37 *** HerzogDeXtEr has quit IRC
13:36:32 *** yeti_ has joined #openttd
13:36:35 <yeti_> hi :)
13:37:07 <yeti_> does that new "plane speed factor" patch do what i think it does? i.e. 1/2 means plane speed is halved compared to what it was before (0.5.2) ?
13:37:11 <Ammler> Eddi|zuHause3: I am not a coder, I can only change small peces of code :-)
13:37:41 <Ammler> +i
13:37:47 <glx> yeti_: 1/4 == TTD speed, 1/1 == same as other vehicles
13:38:15 <Rubidium> so 1/2 means double the speed
13:38:38 <Eddi|zuHause3> Ammler: the patch is there, just needs to be applied ;)
13:38:55 <yeti_> so 1/4 for superfast planes then.. great
13:39:02 <Eddi|zuHause3> no
13:39:07 <Eddi|zuHause3> 1/4 for original speed
13:39:13 <Eddi|zuHause3> 1/1 for fast speed
13:41:02 <Roujin> nice work with the order buttons btw, Rubidium
13:43:03 *** GoneWacko has quit IRC
13:51:28 *** hylje has quit IRC
13:58:16 <Ammler> transfer has changed with that GUI, so no transfer income anymore?
13:58:28 *** lobster_MB has quit IRC
13:58:54 <Belugas> has there EVER been ANY income with transfers????
13:59:29 <Ammler> ah, I need to set no loading
14:00:24 <Ammler> Belugas: the yellow part?
14:01:05 <Belugas> yes
14:01:09 <Belugas> it is not income
14:01:12 <Belugas> at all
14:01:12 *** lobster_MB has joined #openttd
14:01:18 <Belugas> green is income
14:01:21 <Ammler> yeah
14:02:02 <Ammler> somehow I missed those, but it appears now
14:10:11 <Mirrakor> I've a question, I've got three train stations: S1: accepts coal and passangers, S2: provides coal(is in the middle) and S3: accepts passengers. I've to two trains on the rail: Train one should move between S1 and S2 - and the other one moves between S2 and S3
14:10:31 <Mirrakor> now I want that T1 unloads passengers to S2 and T1 to pick them up..
14:14:16 <Eddi|zuHause3> use "unload" order
14:14:44 <Mirrakor> but then T1 won't load coal (sorry - if I didn't mentioned that)
14:15:33 <Belugas> poor passengers... suffocating by the dust of coal been loaded/unloaded :(
14:15:53 <Eddi|zuHause3> Mirrakor: in any case, transfering passengers will not work both ways
14:16:07 <Mirrakor> good to know..
14:16:08 <Mirrakor> hm..
14:16:13 <Belugas> you can't specify orders by cargo type (last time i check anyway)
14:16:32 <Eddi|zuHause3> that might very well be the next commit ;)
14:16:53 <Eddi|zuHause3> considering the "instability" of orders lately ;)
14:17:27 *** hylje has joined #openttd
14:17:48 <Kloopy> How far out the back of a station will wagons get filled up?
14:17:55 <Eddi|zuHause3> Mirrakor: the only solution would be the passenger destinations patch, then passengers will switch trains automatically
14:18:19 <Eddi|zuHause3> Kloopy: the train always loads all wagons, but it'll be very slow
14:18:33 <Kloopy> Ah, so it's the loading rate that's affected? Cool
14:18:50 *** hylje has quit IRC
14:19:42 <Mirrakor> Is the passenger destination patch in the regular patch settings?
14:20:27 <Eddi|zuHause3> no, Mirrakor
14:20:54 <Eddi|zuHause3> it's an inofficial development, you must patch the source code and compile
14:21:15 *** Gekz has joined #openttd
14:21:25 <Eddi|zuHause3> on windows xp you can do that with buildottd
14:21:43 <yeti_> does the money you get for delivering cargo depend on point-to-point distance or on the number of track pieces travelled?
14:22:00 <yeti_> i.e. if you're making large detourss, does that give extra money or not?
14:22:05 <Eddi|zuHause3> yeti_: "air distance" between the station signs
14:22:12 <yeti_> ok, thanks
14:22:34 <Eddi|zuHause3> where "air" is "manhattan", i believe
14:22:44 <Celestar> yeah, afaik it's manhattan distance
14:23:14 <Celestar> geometric distance is expensive to calculate and would require fixed-point arithmetic (which is in branches/gamebalance/ but not in trunk/)
14:23:39 <Eddi|zuHause3> which _someone_ abandoned ;)
14:24:08 <Rubidium> well, he wants to fly in 2013 ;)
14:24:26 <Rubidium> or rather he might want to fly
14:24:34 <Celestar> (=
14:24:44 <Celestar> Eddi|zuHause3: I didn't abandon it. I ran outta time in the past 6 months
14:24:56 <Eddi|zuHause3> same in green...
14:25:19 <Eddi|zuHause3> you don't have to justify ;)
14:27:43 *** Frostregen_ has joined #openttd
14:27:47 <CIA-3> OpenTTD: rubidium * r12660 /trunk/src/ (42 files in 3 dirs): -Codechange: make the creation of depot order strings a little more modular (instead of causing a string explosion).
14:27:56 <Celestar> well it appears that other things come first in the game
14:30:30 *** Volley has quit IRC
14:33:21 *** Frostregen has quit IRC
14:33:23 *** Frostregen_ is now known as Frostregen
14:45:51 *** hylje has joined #openttd
14:49:24 <peter1138> heh
14:52:34 *** llugo has quit IRC
14:53:13 *** lugo has joined #openttd
14:55:58 *** sulai has quit IRC
14:56:04 *** hylje has quit IRC
14:57:02 *** hylje has joined #openttd
14:57:32 *** De_Ghosty has quit IRC
15:00:07 *** Morloth has quit IRC
15:09:20 <Mirrakor> Which type of rail do you recommend?
15:09:34 <ln> Schwebebahn.
15:09:52 <Mirrakor> the magnet one?
15:10:09 <Eddi|zuHause3> don't listen to him, he learned a new word yesterday ;)
15:10:21 <Mirrakor> lol
15:10:37 <Mirrakor> Magnet-Schwebebahn :)
15:10:50 <Eddi|zuHause3> that is not what he meant ;)
15:11:11 *** Brianetta has joined #openttd
15:11:16 <Eddi|zuHause3> anyway, maglev looks ugly
15:11:43 <Eddi|zuHause3> i use the DBSetXL, where you can get away with conventional and electrified rail most of the times
15:12:42 <ln> Eddi|zuHause3: objection -- i travelled on the Schwebebahn back in 1992, and I have known the word since then.
15:12:45 <Eddi|zuHause3> there is a grf that replaces the maglev graphics with transrapid tracks, but the elevation is a visual "hack"
15:13:35 <peter1138> visual pig
15:14:10 <Eddi|zuHause3> let's call it "illusion"
15:14:35 *** XeryusTC is now known as Xeryus|bnc
15:16:52 *** sunkan has quit IRC
15:16:59 <Mirrakor> hm.. I'd have to start a new game to use the DBSetXL, right?
15:18:41 <peter1138> yes
15:18:46 *** svippy has quit IRC
15:19:23 *** svippy has joined #openttd
15:19:43 *** Aerandir has quit IRC
15:22:20 *** Aerandir has joined #openttd
15:24:01 *** sunkan has joined #openttd
15:24:02 *** lobster_MB has quit IRC
15:28:33 *** frosch123 has quit IRC
15:29:42 *** dR3x4cK has joined #openttd
15:41:05 *** mikl has quit IRC
15:42:17 *** mikl has joined #openttd
15:44:24 *** mikl_ has joined #openttd
15:44:24 *** mikl has quit IRC
15:52:27 *** mikl_ has quit IRC
15:59:08 <CIA-3> OpenTTD: rubidium * r12661 /trunk/src/ (5 files in 2 dirs): -Add: ability to send a vehicle (using default orders) to the nearest depot.
15:59:34 <KingJ> Are there any plans to add filtering to the server browser? E.g only show full servers or servers of the same version etc
15:59:57 <Rubidium> if plans is suggestions, then yes
16:00:08 <Rubidium> if plans is somebody actively writing them at the moment, then no
16:00:41 <KingJ> Okay, thanks. Would be a nice feature to have though
16:02:55 <peter1138> go for it then :)
16:03:59 <KingJ> My coding abilities are, uh, nonexistant :P
16:05:22 *** Roujin has quit IRC
16:13:21 *** planetmaker has joined #openttd
16:13:53 <Eddi|zuHause3> makes them easy to improve ;)
16:16:53 <HMage> everyone must know how to code? :D
16:17:17 *** Digitalfox_Home_ has joined #openttd
16:17:50 *** Digitalfox_Home_ has quit IRC
16:18:31 *** Digitalfox_Home_ has joined #openttd
16:18:34 *** Digitalfox_Home_ has quit IRC
16:18:45 *** lobster_MB has joined #openttd
16:19:45 *** Digitalfox_Home has quit IRC
16:22:35 *** Mirrakor has quit IRC
16:26:30 *** Brianetta has quit IRC
16:29:10 <Belugas> HMage, no, but it would greatly help in order to get a feature done... UNless it is such a wonderfull idea that one is inspired by it and codes it day and night :)
16:29:41 <Belugas> in the end, it all comes down to interest...
16:30:20 *** Nitehawk has quit IRC
16:31:52 *** shodan has quit IRC
16:33:14 *** Yorick has joined #openttd
16:41:07 *** planetmaker has quit IRC
16:57:35 <HMage> ямям. всем пакета.
16:58:07 <hylje> thank goodness for utf-8
16:59:06 <ln> что єта за пакета?
17:04:19 *** Digitalfox has joined #openttd
17:06:27 <Belugas> c'est comique, ln.. j'allais demander exactement la meme chose...
17:06:57 *** Roujin has joined #openttd
17:09:49 *** lobster_MB has quit IRC
17:10:08 *** Morloth has joined #openttd
17:11:00 *** mikl has joined #openttd
17:11:51 *** lobster_MB has joined #openttd
17:12:41 *** SmatZ has joined #openttd
17:17:25 *** dR3x4cK has quit IRC
17:27:34 *** SmatZ has quit IRC
17:31:10 *** planetmaker has joined #openttd
17:35:57 * hylje starts up the interpeter
17:37:14 <Sacro> que?
17:39:27 <Born_Acorn> The Interpeter?
17:39:39 <Born_Acorn> Is that like some sort of international Peter1138?
17:39:50 <Eddi|zuHause3> might be the next opponent of The Doctor ;)
17:40:21 *** Priski- has joined #openttd
17:40:46 <Eddi|zuHause3> Sacro: ¿Qué?
17:42:45 *** Yorick has quit IRC
17:42:50 *** lobster_MB has quit IRC
17:42:51 *** Wezz6400 has quit IRC
17:45:58 <Ammler> how does ottd measure the length of trains?
17:46:16 <Ammler> asking because of the ETD from USSet
17:47:02 <Eddi|zuHause3> what is an ETD?
17:47:11 <peter1138> it doesn't measure them
17:47:17 <Ammler> endian train device
17:47:17 <peter1138> End of Train Device
17:47:23 <Ammler> or so, yes
17:47:30 <hylje> caboose!
17:47:37 <Ammler> peter1138: it does
17:48:04 <Ammler> at least in depot, but is it now also too long for stations?
17:48:34 <peter1138> well it's supplied with the lengths and they're added up, heh
17:49:08 <Eddi|zuHause3> the depot counts the total length of the train
17:49:31 *** lobster_MB has joined #openttd
17:49:47 <Eddi|zuHause3> the station loading ignores the last wagon if it does not take cargo
17:50:01 <peter1138> no it doesn't
17:50:07 *** Slowpoke has joined #openttd
17:50:23 <Eddi|zuHause3> i'm pretty sure a recent commit said sat
17:50:23 <hylje> i thought there was a patch earlier which made it so
17:50:26 <Eddi|zuHause3> *that
17:50:43 *** Arie- has joined #openttd
17:51:14 <peter1138> i made a patch for it, months ago
17:51:21 <peter1138> but no commit
17:51:42 <Eddi|zuHause3> i am very sure i read that in a commit message
17:53:12 <ln> what's the probability of Bjarni tonight? i'd say it's well below 50%.
17:56:10 *** gfldex_ has quit IRC
18:01:14 <CIA-3> OpenTTD: belugas * r12662 /trunk/src/airport.h: -Codechange: Comment-code style application
18:03:11 *** sulai_ has joined #openttd
18:03:13 *** sulai_ is now known as sulai
18:05:56 <Roujin> holy sh!t, there's a thunderstorm outside oO
18:06:34 <Roujin> all day long it was really nice weather and now it's like the world is ending...
18:07:05 <Eddi|zuHause3> "nice weather"? in which world do you live in?
18:07:23 *** dR3x4cK has joined #openttd
18:07:57 <Eddi|zuHause3> it is cold, it is cloudy, it is on the edge of raining...
18:08:11 <Eddi|zuHause3> not exactly my definition of "nice"
18:09:34 *** dR3x4cK has quit IRC
18:11:15 <Roujin> probably in a world with better weather than yours :P (at least before it went bad)
18:12:12 <Digitalfox> Roujin in Portugal we had rain, storms and even tornados all this week
18:12:26 <Digitalfox> I had a tornado 20KM from where I live
18:12:37 <Digitalfox> between F1 and F2
18:13:02 <Digitalfox> Reaaly close where my father is building a new house
18:13:52 <Digitalfox> And in Portugal in this part of year it should be sun all day with temperatures between 20 - 30ºC and now it's 11ºC
18:15:20 *** Xeryus|bnc is now known as XeryusTC
18:15:42 <Digitalfox> http://diario.iol.pt/artmedia.html?id=938048&pagina_actual=1&tipo=1
18:15:48 <Digitalfox> some pictures
18:16:04 <Roujin> ooh... well i guess i shouldn't complain about a little thunderstorm then
18:16:07 <Eddi|zuHause3> i remember when we went to portugal (algarve) around february, we were bathing in the sea and the locals couldn't understand why we would bath in such a cold (water temperature was something like 15°C)
18:16:14 <Digitalfox> like this :(
18:16:16 <Digitalfox> http://diario.iol.pt/artmedia.html?id=938048&div_id=0&tipo=1&mul_id=10018518&pagina_actual=2
18:17:08 <Digitalfox> Eddi|zuHause3 well we have a pretty much normal temperature betwwen 25 and 35ºC all year so 15ºC is low for us :)
18:18:08 <Eddi|zuHause3> yes, but it is totally acceptable for germans, where the sea temperature rarely even reaches that kind of values ;)
18:19:06 <Digitalfox> Look at this http://diario.iol.pt/artmedia.html?id=938048&div_id=0&tipo=1&mul_id=10018521&pagina_actual=2 metal is all fuc* up
18:19:47 <Eddi|zuHause3> i witnessed a tornado from my window a few years ago
18:20:34 <peter1138> "whhops"
18:20:37 <Digitalfox> I just hope we don't have a F4 or F5 or portugal will bow up.. We just don't are prepared for tornados.. Like USA where they almost know when they will happen and where :\
18:21:40 <Digitalfox> Eddi|zuHause3 what scale was it?
18:21:54 <Eddi|zuHause3> something very weak, don't remember
18:22:37 <Eddi|zuHause3> http://saevert.de/040612schochwitz.htm
18:23:59 <Eddi|zuHause3> a few days later there was a tornado that destroyed half a village somewhere near here
18:24:56 <Digitalfox> Our forecast weather guys say that Portugal will have more tornado's in the next years since our weather is all fuc* up.. We will became like a desert cold at night and hot in the day.. + Tornados ...
18:27:08 *** dR3x4cK has joined #openttd
18:28:10 *** Vikthor has quit IRC
18:28:47 <yeti_> what am i doing wrong if the "transfer and leave empty" cimmand does not work? i'm trying to drop off oil at a station, but every now and then the delivering train will pick up oil even if it has orders to be left empty
18:29:18 <Rubidium> what version?
18:29:27 <yeti_> 0.6.0 stable release
18:29:40 *** dR3x4cK has quit IRC
18:29:59 <Rubidium> then I've got no idea
18:30:49 <peter1138> could have just ended up there by accident on another order
18:30:55 <Eddi|zuHause3> "12.06.2004 Seeburg Sachsen-Anhalt F0 (2x)"
18:31:58 <Eddi|zuHause3> "23.06.2004 Micheln Sachsen-Anhalt (6 Verletzte) F3"
18:32:39 <yeti_> http://yeti.yefx.org/Sladwood1980.sav - the trains dropping off oil at Fennford West occassionally do it - not everytime, but sometimes
18:35:09 <yeti_> ah, seems i was missing an outbound track
18:36:09 *** Wolf01 has joined #openttd
18:36:40 <Wolf01> hello
18:40:15 *** stillunk1own has joined #openttd
18:40:15 *** stillunknown has quit IRC
18:47:20 <Patrick`> yeti_: yeah, if they cycle back through the station as a waypoint, they'll stop and load cargo
18:48:49 <Eddi|zuHause3> http://www.naturgewalten.de/841123zoellnitz.htm
18:49:36 <hylje> whats the point
18:50:29 <Eddi|zuHause3> it has rails and wagons
18:51:14 <hylje> oh
18:58:53 <Patrick`> wow, a page in a language I don't read, about derilict buildings
18:58:55 <Patrick`> great!
19:00:34 <Eddi|zuHause3> http://www.wetterzentrale.de/cgi-bin/webbbs/wzarchive2003_2.pl?noframes%3bread=339356 <- result of an F4 tornado in germany
19:01:01 *** Sacro` has joined #openttd
19:01:07 <hylje> ME CEDES-BENZ
19:01:38 <Patrick`> wow, even the tornado is efficient in germany
19:02:02 <Eddi|zuHause3> http://www.saevert.de/bilder/tornados/19680710pforzheimkarte.jpg <- route of the tornado
19:05:47 *** Sacro has quit IRC
19:07:16 *** Yorick has joined #openttd
19:07:45 *** divo has quit IRC
19:07:52 *** divo has joined #openttd
19:10:38 <ln> http://ircpics.com/img.php?id=12796
19:11:46 <Eddi|zuHause3> hehe ;)
19:11:54 <hylje> instant godwin
19:12:11 <Eddi|zuHause3> but afaik the assignment of the olympic games was long before the nazis took power
19:13:18 *** Diadem has joined #openttd
19:14:21 <Diadem> Hey guys
19:14:29 <Diadem> How is the maximum number of passengers per month determined?
19:14:31 <Diadem> from a town
19:14:37 <Diadem> Is there a factor of reputation, or nearly trees?
19:14:54 <Eddi|zuHause3> each house has a number of passengers
19:14:57 <Eddi|zuHause3> they get added up
19:14:59 <Diadem> My maximum passengers per month dropped from 300 to 200 while the town grew...
19:15:21 <Eddi|zuHause3> towns may replace buildings with "less efficient" ones
19:16:51 <Diadem> Nah I don't think it changed *that* much. It's a drop from 300 to 200.. that's big
19:16:58 <Diadem> How do you see the # of passengers per building, by the way?
19:17:17 <Eddi|zuHause3> in the code
19:17:24 <Eddi|zuHause3> src/tables/*.h
19:17:45 <Diadem> Is it related to the 4/8 passengers, 6/8 passengers etc that buildings have?
19:18:06 <Eddi|zuHause3> not directly
19:18:19 <Diadem> ok
19:20:17 *** Brianetta has joined #openttd
19:27:54 *** raimar2 has joined #openttd
19:29:41 *** sulai has quit IRC
19:35:27 *** raimar3 has quit IRC
19:36:45 *** KritiK has joined #openttd
19:46:29 *** Wolf01 is now known as Wolf01|AWAY
19:51:00 <Digitalfox> Eddi|zuHause3 one of my friends recently was on Germany and he told me that tornado's in Germany where getting worse and worse every year.. True?
19:51:32 <Eddi|zuHause3> not necessarily
19:51:46 <Eddi|zuHause3> i don't know real statistics
19:52:05 <Digitalfox> But you have a lot don't you every year?
19:54:32 <Eddi|zuHause3> i wouldn't call it "a lot"
19:54:54 <Eddi|zuHause3> the statistics i have seen have something around 50 per year
19:54:56 *** Sacro` has quit IRC
19:55:00 <Eddi|zuHause3> most of them harmless
19:55:10 *** Sacro has joined #openttd
19:55:56 <Eddi|zuHause3> tornados existed since the beginning of time, i have not heard of a significant increase in either strength or number
19:58:22 *** jjr has joined #openttd
19:59:00 <peter1138> i dunno, telstar was quite a popular hit from the tornados in the 60s
20:00:34 <jjr> Hi, what conditions affect train speed, apart from track shape?
20:01:31 <KingJ> Wagon speed limits, Slopes
20:02:48 <jjr> When I began to build longer trains, they ran only at 88 km/h, even if the engine max speed was greater (US ans Canadian tran set)
20:03:04 <Eddi|zuHause3> max speed results from the equation "driving force == resisance force"
20:03:19 <Eddi|zuHause3> jjr: that is most likely the wagon speed limit
20:04:22 <jjr> thx, i thought the engines weren't powerful enough
20:05:16 <Eddi|zuHause3> lack of power usually results in different max speeds with full and empty trains
20:05:58 <glx> max speed is not affected by power, but acceleration is
20:06:04 <jjr> I'll check out
20:07:07 <Eddi|zuHause3> glx: it is, but most of the times other limitations yield lower max speeds
20:07:30 <jjr> is that 88 km/h speed usual for freight trains (specifically coal) ?
20:07:46 <Eddi|zuHause3> @calc 88/1.6
20:07:46 <DorpsGek> Eddi|zuHause3: 55
20:08:30 <Eddi|zuHause3> jjr: yes, in the DBSet speed limit for freight trains is 80km/h [120 km/h for the later wagons]
20:09:23 <Eddi|zuHause3> jjr: it will tell you the speedlimit of the wagon when you click on the wagon in the depot
20:10:08 <glx> in ukrs coal wagon are slower
20:10:09 <jjr> Eddi : OK thx
20:10:53 <KingJ> I personally just disable wagon speed limits. Screws up my network
20:11:19 <jjr> so basically buying faster engines is waste of money...
20:11:29 *** Yorick has quit IRC
20:11:33 *** TinoM has quit IRC
20:11:36 <Eddi|zuHause3> exactly, buy more powerful engines instead
20:13:08 <glx> fast engines are usually designed for passenger trains
20:13:16 <peter1138> the speed limit of wagons is show in the purchase list
20:13:38 <Belugas> +n
20:13:41 <Belugas> ;)
20:14:13 <KingJ> Are there any good guides for building 2-rail (as in two tracks for each direction) networks which trains will switch between the two to avoid slow trains?
20:14:19 <jjr> peter1138 i know this... but didn't knew that wagons also have max speed
20:14:34 <glx> KingJ: needs PBS
20:15:13 <Eddi|zuHause3> PS: driving force is P/v, where P is the power and v is the current speed, and wind resistance is rho/2*c*A*v^2 where rho is the air density, c is a viscosity constant, A is the front area
20:15:59 <Eddi|zuHause3> KingJ: realistically, slow trains switch lines, because fast trains would have to slow down to switch lines
20:16:13 <KingJ> Yeah
20:16:24 <KingJ> Might just have to isolate my freight and passenger lines then
20:17:18 <Eddi|zuHause3> and to really solve fast/slow issues, you'd have to use proper scheduling
20:17:41 <KingJ> The timetabling interface?
20:17:56 <Eddi|zuHause3> i'm afraid that one is not powerful enough yet
20:18:17 <Eddi|zuHause3> or needs really extreme micromanagement to work properly
20:19:00 <KingJ> Currently, I try to fit everything on one network, freight, passengers the lot. Which means you will always get a slow freight train jam everything up
20:19:48 <Eddi|zuHause3> yes, that's why you would schedule the freight trains to leave a big gap before an express passenger train would be leaving the station
20:20:20 <Eddi|zuHause3> realistically, freight trains are standing most of the time
20:20:46 <KingJ> Yeah :/
20:21:13 <KingJ> Or have some sort of pause segment, where the train will stop for say 10 or so days to let the others go
20:21:15 <Eddi|zuHause3> which is one of the reasons why a lot of freight movement turned to roads
20:21:18 <KingJ> Actually, I can do that now...
20:21:23 <jjr> thx for advice for now, I just need to think few things out now
20:22:24 <KingJ> Just been on the openttd coop server though, and their network, wow :P
20:22:40 <Eddi|zuHause3> i find their networks ugly
20:22:51 <Eddi|zuHause3> impressive, maybe, but definitely ugly
20:22:54 <KingJ> Ugly, but the amount of traffic they carry...
20:23:09 <KingJ> Real world networks ofen are not pretty either
20:23:11 <jjr> yes, those are megalomaniacal...
20:23:26 <jjr> ... the coop ones
20:24:39 <Belugas> proof that TTD is not a representation/simulation of real world/life!
20:24:46 * Belugas hides
20:25:01 <KingJ> "TTD: The Sims"? :P
20:26:35 *** Arie- has quit IRC
20:26:44 *** jjr has quit IRC
20:26:53 *** thgergo has joined #openttd
20:27:26 <Belugas> NEVAR!
20:31:50 <Eddi|zuHause3> ln: btw, did you know that the olympic torch run was invented for the olymic games 1936 in berlin?
20:32:51 *** divo has quit IRC
20:33:15 <KingJ> and went from Greece to Germany only as opposed to all over the world :)
20:33:33 <ln> i didn't, though someone mentioned that just a moment ago #elsewhere.
20:34:25 <Eddi|zuHause3> KingJ: and was already accompanied by protesters along the whole path ;)
20:36:21 <Eddi|zuHause3> KingJ: the "all over the world" thing was only a very recent development, afaik
20:36:42 <KingJ> Yeah, and it's mostly airmiles as opposed to actually walking/running it
20:38:26 <ln> i suppose 1936 was also the last olympics where the reich participated in?
20:38:51 <KingJ> Only time olympics didn't occour was during the world wars AFAIK
20:38:54 <Eddi|zuHause3> there were no olympic games 1940 and 1944
20:39:09 <ln> indeed
20:39:15 <Eddi|zuHause3> and i'm not sure about 1948
20:39:23 <ln> wasn't that london?
20:39:28 <KingJ> Yeah
20:39:31 <Eddi|zuHause3> i don't know
20:39:34 <ln> or how should i know, i don't care about sports.
20:39:45 <KingJ> Google knew :P
20:40:09 <ln> 1952 helsinki
20:40:28 <Eddi|zuHause3> london must still have been heavily damaged from the war back then
20:40:34 <KingJ> Germany and Japan where banned from 1948 olympics heh
20:40:57 <Eddi|zuHause3> technically, there was not really a german state at that time
20:41:19 <KingJ> Well, what resembled Germany and Japan anyway
20:43:17 <ln> and innsbruck had olympics twice in the 1970s.
20:45:57 *** Bjarni has joined #openttd
20:45:57 *** ChanServ sets mode: +o Bjarni
20:50:20 <Eddi|zuHause3> hm, london was originally assigned for the olympic games 1944, and tokio 1940
20:50:50 <ln> and helsinki probably 1948
20:51:12 <ln> did tokio get to have its games at all?
20:51:19 <Bjarni> I think so
20:51:29 <Eddi|zuHause3> yes, in the 60s or so
20:51:41 <Eddi|zuHause3> 1964
20:52:15 <Bjarni> I was thinking of 64 too
20:52:16 <Eddi|zuHause3> they gave up the 1940 games because of the war with china, before the 2nd world war started
20:52:18 <Bjarni> but I'm not sure
20:52:37 *** TinoDidriksen has joined #openttd
20:52:39 <Eddi|zuHause3> 1940 games then went to helsinki
20:52:49 *** Mirrakor has joined #openttd
20:53:02 <Bjarni> btw it's spelled Tokyo
20:53:15 <Eddi|zuHause3> not in german
20:53:22 <ln> seems like the windmills in denmark are spinning tonight.
20:54:16 <Bjarni> surprisingly they are only producing 757 MW right now
20:54:20 <Bjarni> I would expect more
20:54:39 <Bjarni> o_O
20:54:45 <Bjarni> it says 3 m/s
20:54:59 <Bjarni> now there is for sure a huge difference in wind speed in the country
20:55:31 <Bjarni> whatever
20:55:43 <Bjarni> ahh now I know why
20:55:52 <Bjarni> the wind is from an unusual direction
20:56:04 <ln> let's re-paste for Bjarni!: 22:10 < ln> http://ircpics.com/img.php?id=12796
20:56:12 <Bjarni> meaning that the windmills are not in the wind right now
20:56:19 <Bjarni> as the land brakes the wind before it arrives
20:56:53 <Bjarni> how about 1936? :)
20:57:19 <Bjarni> I think it was in Munich
20:57:26 <Bjarni> maybe I should look this up
20:57:39 <Eddi|zuHause3> no, 1972 was munich
20:57:45 <Eddi|zuHause3> 1936 was berlin
20:58:14 <Bjarni> right
20:58:52 <Eddi|zuHause3> munich was with the hostage thing
20:59:52 <Bjarni> I know
21:00:24 <Bjarni> according to wikipedia the 1940 winter games were in Garmisch-Partenkirchen
21:00:50 <Bjarni> where is the picture from?
21:00:56 <Eddi|zuHause3> no, that was 1936
21:01:32 <Bjarni> yes but it says 1940 too
21:01:42 <Eddi|zuHause3> http://de.wikipedia.org/wiki/Olympische_Winterspiele_1936
21:01:42 <Bjarni> ) Sapporo→
21:01:42 <Bjarni> St Moritz→
21:01:42 <Bjarni> Garmisch-Partenkirchen
21:02:14 <Bjarni> looks like the wars made it tricky to find anywhere to host the games
21:02:34 <Eddi|zuHause3> http://de.wikipedia.org/wiki/Olympische_Winterspiele_1940
21:03:00 *** Mucht has quit IRC
21:03:12 <Bjarni> heh
21:03:23 *** De_Ghosty has joined #openttd
21:03:30 <Bjarni> maybe we should correct the English page telling that it was cancelled :)
21:04:04 <Bjarni> lol
21:04:27 <Bjarni> if you click on some small link you are taken to a page telling that it was cancelled
21:04:42 <Bjarni> but it looks like they held it when you look at the main overview
21:04:59 <Bjarni> now that's clever design :P
21:05:30 <Eddi|zuHause3> which page are you viewing?
21:05:48 <Eddi|zuHause3> http://en.wikipedia.org/wiki/1940_Winter_Olympics definitely says they were cancelled
21:06:54 <Bjarni> that's where the link goes
21:07:00 <Bjarni> http://en.wikipedia.org/wiki/Olympic_games <-- this is the overview
21:08:58 <Eddi|zuHause3> see the little (4) next to the numbers?
21:09:07 <Bjarni> yes
21:09:20 <Eddi|zuHause3> it leads to a footnote saying "cancelled because of WWII"
21:10:42 <ln> i noticed Denmark has never held the olympics.
21:10:47 <Bjarni> yeah but the arrows gives a different impression and the note is not on the screen at the same time as the 1940 line (unless you have a huge monitor)
21:11:10 <Eddi|zuHause3> but they are in italics
21:11:14 *** SpComb^ is now known as SpComb
21:11:40 <Bjarni> ln: some bonehead politicians wants to make it their work to get the games to Denmark in 2016
21:11:52 <Bjarni> which I consider to be a big mistake
21:12:19 <ln> Winter or summer games?
21:12:21 <Eddi|zuHause3> they tried to get 2012 games to Leipzig, but that failed
21:12:29 * SpComb organizes the 2016 Olympic games in Bjarni's backyard
21:12:41 <Bjarni> I don't think it's big enough
21:12:42 <Bjarni> sorry
21:12:47 <SpComb> you'd be surprised
21:13:45 <Bjarni> the problem is that the capacity for everything (hotels, public transportation, arenas...) is of a size so there will be no room for the local population
21:14:20 <Bjarni> and that's with the really expensive expansion plan (expansion for the olympics only)
21:14:21 <Eddi|zuHause3> that was one of the main concerns against leipzig, too
21:14:38 <Bjarni> and then we will be stuck with expensive and totally oversized sports buildings afterwards
21:14:47 <SpComb> in china they'll just ship some city's population out to the countryside for a month and be done with it
21:15:38 <Bjarni> here we would have to move 20% of the country's population
21:15:43 <Bjarni> I don't think that will happen
21:15:48 <Bjarni> besides where should they go?
21:16:41 <Bjarni> <ln> Winter or summer games? <-- we don't get snow every year so take a guess ;)
21:16:59 <Bjarni> besides even with snow we lack the hills needed for the winter games
21:19:15 <CIA-3> OpenTTD: rubidium * r12663 /trunk/src/ (order_gui.cpp timetable_gui.cpp window_gui.h): -Codechange: move the definition from 'order_d' to a more appropriate place and do not misuse it for the time table GUI.
21:19:19 <ln> so does finland, but still some bonehead has suggested applying for winter games to be held in Lahti.
21:20:23 <Bjarni> :)
21:21:27 <Bjarni> why not host the winter games in Alaska?
21:21:34 <Bjarni> I think they got enough snow
21:21:40 <ln> and hint: Lahti is quite much in the south, no guarantee of sufficient snow.
21:29:47 <Diadem> what do you need snow for anyway?
21:29:57 <Diadem> Only interesting sport during winter games is skating :)
21:34:13 <ln> not even that
21:34:22 <Eddi|zuHause3> "Man konnte die italienische Nationalhymne nicht finden und spielte stattdessen das Lied ’O sole mio." <- haha ;)
21:37:08 <Bjarni> lol
21:37:29 <Bjarni> where and when did that happen? :)
21:37:47 <Eddi|zuHause3> if you ever trust belgian orchestras [Antwerpen 1920]
21:38:10 <KingJ> One can the Italian National Amthem not find and play <cant translate rest> ?
21:38:23 <Bjarni> to be honest I never considered the idea of trusting or distrusting Belgian orchestras
21:38:31 <Eddi|zuHause3> "the rest" is the name of the song
21:38:49 <Eddi|zuHause3> o sole mio, very famous italian song
21:39:07 <Bjarni> KingJ: "O sole mio" is the song that you most likely heard or read about
21:39:33 <Eddi|zuHause3> it is sung by pretty much every gondola driver in venice
21:39:44 <Eddi|zuHause3> at least in the cliche ;)
21:39:44 <Bjarni> like the "crew" in Gondolas in Venice. They tend to sing it all the time (at least in cartoons)
21:40:01 <Bjarni> ...
21:40:09 <KingJ> I sort of know it, but not. Just the cartoon version :)
21:40:46 <Bjarni> Eddi|zuHause3: I said the same thing as you but I took it to the level of the reader to ensure understanding of the concept ;)
21:41:27 <Bjarni> at least they did play something Italian
21:42:51 <Bjarni> considering when it happened I'm not surprised that it could happen
21:43:00 <Bjarni> and it's a bit funny
21:43:33 <Bjarni> if it happened today it would be lack of leadership and an insult (like saying "we didn't think you could win anything so we didn't bother")
21:43:34 <Eddi|zuHause3> something similar happened during the opening of the Nordsee-Ostsee-Kanal, when the ship from turkey sailed by, they did not know the turkish national anthem, so they played a song that had "something to do with turkey"
21:43:53 <Bjarni> which one?
21:44:17 <Bjarni> Nordsee-Ostsee-Kanal <-- you mean the one near Kiel?
21:44:32 <Eddi|zuHause3> it is said that this was the origin of the phrase "etwas türken" [meaning to fake something]
21:44:47 <Bjarni> :D
21:45:05 <Bjarni> and it can be right
21:45:06 <Eddi|zuHause3> if by "near" you mean "in the northern part of germany", then yes ;)
21:45:39 <Bjarni> I think it's the one we call "Kieler-kanalen" (without the -)
21:46:09 <Bjarni> and it was originally built by the Danish king and then Prussia stole it in 1864
21:46:31 <Bjarni> we got some of the land back in 1920 but not everything
21:46:45 <Eddi|zuHause3> "Der Nord-Ostsee-Kanal (NOK, engl. Kiel Canal)"
21:47:23 <Bjarni> partly because some Danish politician didn't want it back so he helped Germany setting up the election zones in favour of Germany (don't ask me why he didn't want this land)
21:47:47 <Eddi|zuHause3> "[...] wurde 1895 als Kaiser-Wilhelm-Kanal eröffnet und trug diesen Namen bis 1948."
21:48:20 <Bjarni> doesn't look like we are talking about the same thing
21:48:43 <Eddi|zuHause3> "Die Endpunkte befinden sich in Brunsbüttel an der Elbe und in Kiel"
21:49:47 <Eddi|zuHause3> "Der direkte Vorläufer des Nord-Ostsee-Kanals war der Eiderkanal, den der dänische König Christian VII. von 1777 bis 1784 errichten ließ."
21:51:22 * Tefad looks at topic
21:51:23 * Tefad shrugs
21:51:36 <Eddi|zuHause3> just don't tell ln ;)
21:52:11 <ln> it's all ok when it's between quotes.
21:53:35 <Diadem> ln is an interesting nickname. Where did you get it from?
21:53:51 <Eddi|zuHause3> it's derived from ln- ;)
21:54:00 *** thgergo has quit IRC
21:54:02 <Bjarni> "Kanalen er verdens mest benyttede kunstige kanal." (the canal is the most used artificial canal in the world) <--- do you trust that one?
21:54:18 <Bjarni> how about artificial canals like Panama and Suez?
21:54:33 <Eddi|zuHause3> depends on what you count
21:54:48 <Bjarni> swimming humans
21:54:50 <Eddi|zuHause3> number of ships... panama and suez probably do not have many small ships
21:55:07 <Eddi|zuHause3> but rather few huge ones
21:55:28 <Bjarni> Panama has a surprisingly high number of small ships
21:56:59 <Bjarni> Excluding sporting boats and other small boats, an average of 118 ships per day used the canal in 2007 <-- o_O
21:57:03 <Bjarni> ok that's pretty high
22:01:16 <Eddi|zuHause3> what i always find interesting is that i can understand a lot of dutch, but almost no danish when i read it [i have learned neither language]
22:01:59 <Diadem> Interesting, I can almost read Danish, while never having learned it
22:01:59 <yeti_> Eddi|zuHause3: try understanding dutch when someone speaks it though... nearly impossible
22:02:00 <Bjarni> I can read both those languages
22:02:03 <Diadem> (And I can read German, but I learned that)
22:02:08 * Diadem dutch
22:02:43 <Bjarni> but I only received education in one of them (and I was able to handle a conversation even before getting the education)
22:02:49 <Eddi|zuHause3> yeti_: but you can say the same about austrians and bavarians ;)
22:03:50 <Bjarni> <yeti_> Eddi|zuHause3: try understanding dutch when someone speaks it though... nearly impossible <-- yeah.... it's like they speak and write two different languages
22:03:55 <yeti_> Eddi|zuHause3: i'm biased on that one though, my dad is swiss and i have austrian friends...
22:05:32 <Eddi|zuHause3> luxemburgian is funny, you understand three sentences, and then it's totally ununderstandable for another two sentences
22:06:01 <yeti_> Eddi|zuHause3: they have their own language?
22:06:09 <Eddi|zuHause3> yes
22:06:12 <yeti_> i thought they spoke flemish and/or french?
22:06:51 <Eddi|zuHause3> but they have french as office-language, and pretty much all of them speak 3 languages (french, german and luxemburgian)
22:07:03 <yeti_> ahh interesting, didn't know that
22:07:23 <Bjarni> it's not like languages are that tricky
22:07:37 <Sacro> Anyone wanna talk on skype?
22:07:42 <Sacro> Bjarni: get skype!
22:07:43 <Bjarni> not with you
22:07:45 *** lolman has joined #openttd
22:07:47 <Sacro> ohnoes
22:07:51 <lolman> ohyeses
22:07:53 <Bjarni> I have skype
22:07:55 <Sacro> Bjarni: joooooooooooin us
22:08:04 <Bjarni> if the account is still valid
22:08:17 <Bjarni> I once used it to call Australia
22:08:24 <Eddi|zuHause3> "Die luxemburgische Sprache oder kurz Luxemburgisch (Eigenbezeichnung Lëtzebuergesch) ist eine westgermanische Sprachvarietät, die zum moselfränkischen Dialektkontinuum gehört. Luxemburgisch ist linguistisch daher ein hochdeutscher Dialekt"
22:08:25 <Bjarni> cheaper than a normal phone
22:08:31 *** Wolf01|AWAY is now known as Wolf01
22:08:33 <Sacro> Bjarni: joooooooooooooooooin us
22:08:46 <Bjarni> no
22:09:04 <Bjarni> if I do then you will start a porn movie or something
22:09:16 <Bjarni> to make funny noises in my speakers
22:09:25 <Tefad> *uNF* *uNF*
22:10:17 <Bjarni> for all we know Sacro could be a collector of videos of people in pain
22:10:44 <Bjarni> and I don't want to listen to that either
22:11:39 <Bjarni> look
22:11:47 <Bjarni> Sacro aren't going to deny
22:12:03 <Sacro> Bjarni: we're not gonna do that
22:12:08 <Bjarni> maybe I should just kick him for his weird ideas
22:12:21 <Bjarni> but he might enjoy that so I will not do it
22:12:31 <Bjarni> Sacro: who are "we"?
22:12:38 <Bjarni> you and you and you?
22:12:49 <Sacro> Bjarni: me, lolman and welshdragon
22:13:29 <Bjarni> and why should I talk to you guys?
22:14:35 <Bjarni> I thought so
22:15:15 <Sacro> because we love you
22:16:01 <Bjarni> that's a reason for you to want to talk to me
22:16:07 <Bjarni> not a reason for me to talk to you
22:16:19 <Bjarni> so I will repeat my question
22:16:22 <Bjarni> and why should I talk to you guys?
22:17:09 <Sacro> pfft
22:17:16 <Sacro> cos we wanna talk to some foreigners
22:18:00 <Bjarni> you are still seeing it from your point of view
22:18:05 <Bjarni> why would I talk to you? :)
22:18:25 <Sacro> because you want to humour me
22:18:57 <Bjarni> no I don't
22:19:20 <Bjarni> you are from Hull after all
22:19:29 <Bjarni> humouring you is done horizontally
22:21:49 <Bjarni> again he ain't denying
22:24:08 <Sacro> you can do me horizontally if you want
22:24:10 *** bowman^2 is now known as bowman
22:24:12 <Sacro> i won't complain
22:24:45 <Bjarni> no way
22:25:02 <Bjarni> rumours has it that you have an STD
22:25:09 <Bjarni> that get people committed
22:27:20 *** NukeBuster|laptop has joined #openttd
22:29:35 <ln> how to count timezone offset with DST using C?
22:30:35 <Bjarni> look for some library
22:30:42 <Wolf01> 'night
22:30:46 *** Wolf01 has quit IRC
22:31:00 <Bjarni> or you will have to work for a while to get it right if it has to work everywhere
22:31:02 *** Mirrakor has quit IRC
22:31:25 <ln> yes, it's not as trivial as one would think.
22:32:44 *** Progman has quit IRC
22:37:07 <Sacro> Bjarni: i don't have any stds
22:37:14 <Sacro> i've only got 2 people commited
22:37:22 *** Roujin has quit IRC
22:41:44 <Bjarni> 2?
22:41:53 <Bjarni> who were the other one?
22:42:13 <Sacro> my next door neighbour
22:42:34 <Bjarni> ...
22:42:38 <Bjarni> how did that happen?
22:42:44 <Bjarni> then again it's Hull after all
22:44:31 <Sacro> heeh
22:44:33 <Sacro> he was old
22:44:35 <Sacro> and senile
22:44:39 <Sacro> i sent him to a better place
22:45:43 <Bjarni> the cemetery?
22:48:20 <Sacro> nah
22:53:39 <ln> would this fail? http://uselesscode.net/patch/timezone-offset-dst.diff
22:54:16 *** Slowpoke has quit IRC
22:55:43 <Eddi|zuHause3> http://de.wikipedia.org/wiki/Bild:Rendsburg-map.png <- you don't see that kind of loop construction very often in flat areas ;)
22:59:31 *** lolman has quit IRC
23:01:18 *** dR3x4cK has joined #openttd
23:07:14 *** Ammller has joined #openttd
23:08:12 <Ammller> Eddi|zuHause3: what it that good for?
23:08:45 <Eddi|zuHause3> Ammller: crossing a canal at large height
23:08:53 <yeti_> Ammller: the bridge is too high for the train to descend to the station directly
23:08:56 <Eddi|zuHause3> http://www.move-team-ev.de/artikel/rendsburg.html
23:10:22 <Ammller> nice
23:11:03 <Eddi|zuHause3> funny is also the ferry that does not touch water ;)
23:11:57 *** Ammler has quit IRC
23:13:36 *** Mucht has joined #openttd
23:21:22 *** dR3x4cK has quit IRC
23:26:51 *** gfldex has joined #openttd
23:28:57 *** yeti_ has quit IRC
23:36:48 *** mikl has quit IRC
23:36:50 *** dR3x4cK has joined #openttd
23:39:26 *** Morloth has quit IRC
23:54:55 *** stillunk1own has quit IRC
23:56:59 *** Phoenix_the_II has quit IRC