--- Log opened Thu Jul 27 00:00:04 2017 00:07 -!- pmckinley [~Peter_McK@88-110-196-96.dynamic.dsl.as9105.com] has quit [Read error: Connection reset by peer] 02:01 -!- t_ [2bfa9da6@gateway/web/freenode/ip.43.250.157.166] has joined #navit 02:07 #navit: < t_> Hi again. Yesterday I wrote my issue here about navit crash after 2-3 mins. Running on rpi2. So ram is 1 gb. Also I used Bluetooth GPS. I noticed that when I disconnect Bluetooth GPS soon after Rpi gets my location. No issue occurs. But if I keep connection continued, navit crashes after 2 or 3 mins. Gdb shows "Cannot access memory at 0x01" and "systems/Unix/sysv/Linux/waitpid.c No such file or directory".. what should I do? 02:10 #navit: < t_> I also built Navit from svn. But still no change. I built gdb 7.12 in rpi2 still no change. It is using libc6. 03:08 -!- t_ [2bfa9da6@gateway/web/freenode/ip.43.250.157.166] has quit [Ping timeout: 260 seconds] 03:26 -!- t_ [2bfa9da6@gateway/web/freenode/ip.43.250.157.166] has joined #navit 04:09 -!- t_ [2bfa9da6@gateway/web/freenode/ip.43.250.157.166] has quit [Ping timeout: 260 seconds] 04:48 -!- t_ [2bfa9da6@gateway/web/freenode/ip.43.250.157.166] has joined #navit 04:53 -!- t_ [2bfa9da6@gateway/web/freenode/ip.43.250.157.166] has quit [Ping timeout: 260 seconds] 04:56 -!- xenos1984 [~xenos1984@2001:bb8:2002:200:6651:6ff:fe53:a120] has joined #navit 07:02 -!- pmckinley [~Peter_McK@88-110-216-65.dynamic.dsl.as9105.com] has joined #navit 07:02 #navit: < pmckinley> :-D 07:02 #navit: < pmckinley> hey @KaZer 07:15 -!- robertp [d9f3f0ac@gateway/web/freenode/ip.217.243.240.172] has joined #navit 09:23 -!- jfitie [5c6e9fbe@gateway/web/freenode/ip.92.110.159.190] has joined #navit 09:23 #navit: < jfitie> hi 09:24 #navit: < robertp> hi 09:24 #navit: < robertp> can you explain what you want to acheive? 09:24 #navit: < jfitie> @kazer, can you help me out a bit? Can't figure out how/when display width and height are set. Also, how to propagate the width and height to transformation->w and transformation->h? --> https://github.com/navit-gps/navit/pull/303/files 09:25 #navit: < jfitie> hi robertp, you mean with my pr? 09:25 #navit: < robertp> yes, I am pohlinkzei ;) 09:26 #navit: < jfitie> so the default pitch of 20 is OK for low res devices, but on high res devices it kinda sucks :-) -> https://user-images.githubusercontent.com/23396293/28256973-782eaa70-6ac7-11e7-9883-e3eeecafe8af.png 09:26 #navit: < jfitie> The pitch value needs to be corrected based on window resolution to get consistent results, as shown in the images in the pr --> https://github.com/navit-gps/navit/pull/303#issuecomment-318112067 09:27 #navit: < robertp> So you want to recalculate and set the pitch when the screen is resized? 09:27 #navit: < jfitie> But I'm struggling to get the window width and height from within transform_setup_matrix 09:27 #navit: < jfitie> well I want to correct the pitch in transform_setup_matrix, based on window size 09:28 #navit: < jfitie> I've added a w and h variable to the transformation struct already --> https://github.com/navit-gps/navit/pull/303/files 09:28 #navit: < jfitie> the correction is then done here: https://github.com/navit-gps/navit/pull/303/files#diff-566f77ab83fc5b075f55c56579774d23R97 09:29 #navit: < robertp> I know I checked out your branch, trying to understand what is going on there 09:29 #navit: < robertp> But as I can see, the transform does not know the screen size... 09:29 #navit: < jfitie> Correct ... 09:30 #navit: < jfitie> Which should be set in these 2 lines: https://github.com/navit-gps/navit/pull/303/files#diff-566f77ab83fc5b075f55c56579774d23R186 09:30 #navit: < jfitie> instead of DEFRESX and DEFRESY 09:31 #navit: < robertp> But this just sets the resolution to 240x320 09:31 #navit: < jfitie> as the pr is now, it compiles OK and as the terms cancel each other out there is no visible difference 09:31 #navit: < jfitie> yes, so somehow I need to get the real window resolution there ... 09:32 #navit: < robertp> and another point -> your calculated pitch is never applied to the screen... I'd expect it should change due to rounding errors at least. 09:32 #navit: < jfitie> Did you take a look at the screenshots for the result I'm trying to achieve? 09:33 #navit: < robertp> Yes, Its a really cool feature. 09:33 #navit: < jfitie> Well I guess the transformation is recalculated whenever the screen resolution changes, not sure yet though 09:33 #navit: < jfitie> This is why I added the 'help wanted' label to the pr ;-) 09:33 #navit: < robertp> I enabled the debug outputs for transform()... Holy mess of output 09:34 #navit: < jfitie> the calculated (corrected) pitch is used in the transformation results 09:34 #navit: < jfitie> yep, there's a lot 09:34 #navit: < robertp> So the calculations are done very often 09:39 #navit: < jfitie> So I'm kinda stuck at the moment, I'd really like to have this feature but I'm not sure how to proceed. In theory it's quite simple. 09:39 #navit: < robertp> Start here: https://github.com/navit-gps/navit/blob/androidpitchcorrection/navit/navit.c#L340 09:40 #navit: < robertp> This is called as soon as the resolution chanhes 09:40 #navit: < robertp> g 09:40 #navit: < robertp> even on startup 09:41 #navit: < jfitie> also, maybe I should move the logic to transform_set_pitch; https://github.com/navit-gps/navit/blob/6728e21b0c9383504003684ef65fdf410c409971/navit/transform.c 09:41 #navit: < robertp> Since I have no idea what the transform stuff does, why did you choose this location? 09:42 #navit: < jfitie> Because that's where the pitch is used in calculating the transformation matrix --> https://github.com/navit-gps/navit/blob/6728e21b0c9383504003684ef65fdf410c409971/navit/transform.c#L94-L95 09:43 #navit: < robertp> Ok, but isnt this a few levels toooooooo deep? 09:44 #navit: < robertp> I'd try to recalculate the pitch in the resize handle and (if autopitch is set) reset the pitch 09:44 #navit: < robertp> brb lunch 09:46 -!- pmckinley [~Peter_McK@88-110-216-65.dynamic.dsl.as9105.com] has left #navit [] 09:50 #navit: < jfitie> ok; something like this would (almost) be enough then; https://github.com/navit-gps/navit/pull/303/files 09:51 #navit: < jfitie> but it should only be executed when pitch is set automatically, and probably not when pitch equals zero 09:57 #navit: < jfitie> probably better to move it to navit_set_attr_do 09:57 #navit: < jfitie> transform_set_pitch is called there, and width and height are known :-) 09:58 #navit: < jfitie> so I could just pass the corrected pitch instead 10:06 #navit: < jfitie> Done. Also this would work for both automatic (20) and manual set pitch. 10:07 #navit: < jfitie> be back later today 10:07 -!- jfitie [5c6e9fbe@gateway/web/freenode/ip.92.110.159.190] has quit [Quit: Page closed] 10:09 #navit: < robertp> But not for resize. Do you want this to work for resize, too? 12:07 -!- robertp [d9f3f0ac@gateway/web/freenode/ip.217.243.240.172] has quit [Quit: Page closed] 14:32 -!- xenos1984 [~xenos1984@2001:bb8:2002:200:6651:6ff:fe53:a120] has quit [Quit: Leaving.] 14:55 -!- xenos1984 [~xenos1984@22-164-191-90.dyn.estpak.ee] has joined #navit 15:02 #navit: <@KaZeR> hi there 15:34 -!- noradtux [~noradtux@2a02:2028:62b:c401:2900:46ea:d5a5:e65b] has quit [Ping timeout: 255 seconds] 15:39 -!- noradtux [~noradtux@2a02:2028:521:ab01::1] has joined #navit 15:59 -!- jfitie [5c6e9fbe@gateway/web/freenode/ip.92.110.159.190] has joined #navit 16:05 -!- xenos1984 [~xenos1984@22-164-191-90.dyn.estpak.ee] has quit [Ping timeout: 260 seconds] 16:05 #navit: < jfitie> @robertp @kazer : first successful results :-) https://github.com/navit-gps/navit/pull/303#issuecomment-318407981 16:06 #navit: < jfitie> All with pitch=20; transform_set_pitch receives the corrected pitch value 16:14 #navit: <@KaZeR> jfitie: nice work! 16:15 #navit: <@KaZeR> these screenshots look good! 16:15 #navit: < jfitie> and only one changed line of code :-) https://github.com/navit-gps/navit/pull/303/files 16:15 #navit: < jfitie> yeah! 16:16 #navit: <@KaZeR> so you still need to find the current resolution? 16:16 #navit: < jfitie> one thing to try: does this also work when resizing the window 16:16 #navit: < jfitie> yes because the pitch needs to be corrected based on the resolution. The transformation doesn't know about the resolution, so now I call the transformation with the corrected pitch instead of the pitch. 16:17 #navit: < jfitie> win32 build doesn't allow resizing, correct? Do any other builds allow for window resizing? 16:18 #navit: <@KaZeR> i am surprised that win32 does not allow resizing 16:18 #navit: < jfitie> well not under wine anyway 16:18 #navit: < jfitie> not sure how to test that, any ideas? 16:21 #navit: <@KaZeR> to test the resizing? you could just use the GTK ui, it should behave like any usual application 16:26 #navit: <@KaZeR> to get the window size, you should be able to get navit->get_width() and navit->get_height() : http://doxygen.navit-project.org/group__navit.html 16:27 #navit: < jfitie> where can I find the binary in the artifacts? 16:28 #navit: <@KaZeR> https://2180-30791823-gh.circle-artifacts.com/0/tmp/circle-artifacts.wg4egsh/navit.exe 16:28 #navit: < jfitie> wait, that's only the win32 installer, right? 16:29 #navit: <@KaZeR> oh! you might be correct. 16:29 #navit: < jfitie> that's the one I tried using wine, but like I said - it can't be resized 16:29 #navit: <@KaZeR> i don't think that we save the standalone binary currently 16:29 #navit: < jfitie> ok 16:29 #navit: < jfitie> well I could try the android apk and rotate the screen and see what happens :-) 16:29 #navit: <@KaZeR> but it would be easy to change that let me see 16:30 #navit: <@KaZeR> oh yeah, android rotation is quite important 16:30 #navit: < jfitie> will test now 16:35 #navit: < jfitie> awesome ! will post screenshots in a few mins 16:35 #navit: <@KaZeR> oh wow the windows build sucks 16:38 #navit: < jfitie> Ta-dah!! --> https://github.com/navit-gps/navit/pull/303#issuecomment-318417312 16:40 #navit: < jfitie> So, now we know that orientation changes still work as expected. However this doesn't count as a resize as the correction is about the total number of pixels, not about the aspect ratio. 16:40 #navit: < jfitie> corrected pitch would be the same for both images 16:43 #navit: <@KaZeR> really nice work jfitie ! 16:43 #navit: <@KaZeR> is it just me or the screenshots make you feel like you are in a plane and that plane is veering right? :) 16:45 #navit: < jfitie> thanks :-) It's probably because of the shape of the coastline. Just tried the Berkeley map on Android and results are similar to those from the win32 build posted before 16:46 #navit: < jfitie> Can you hook me up with a GTK binary so that we can test if resizing works? If that works too I think it's ready :-) 16:47 #navit: < jfitie> or is there a way we can resize the win32 binary? Maybe using tell_navit ? 16:47 #navit: <@KaZeR> i have to say that i am really not familiar with the win32 build. I was looking into the config to rename navit.exe to navit-installer.exe for example 16:47 #navit: <@KaZeR> ha, one easy way to resize the binary would be to toggle fullscreen mode 16:48 #navit: <@KaZeR> i tried to enable the gtk ui, but navit.exe crashes in that case 16:48 #navit: < jfitie> Was the first thing I tried, but it didn't work .. 16:48 #navit: < jfitie> again, using wine, so maybe there's an issue with that 16:48 #navit: < jfitie> are you on Windows? 16:49 #navit: < jfitie> So if it doesn't work, is resizing the ui even a use case then? :-) 16:50 #navit: <@KaZeR> i'm on linux but i started a virtual machine 16:50 #navit: <@KaZeR> looks like there's no mapset defined in the navit.xml we ship with the windows installer 16:51 #navit: < jfitie> correct, I used your Berkeley map from ci 16:51 #navit: <@KaZeR> did you add an entry to your navit.xml file? 16:51 #navit: < jfitie> 16:52 #navit: < jfitie> where map.bin = http://sd-55475.dedibox.fr/berkeley.bin 16:53 #navit: <@KaZeR> ah so we do have mapsets defined. It's just that notepad.exe sucks 17:00 #navit: <@KaZeR> eh. can't get the map to load. WTF is wrong 17:03 #navit: < jfitie> Correct location? Try: center="3752 N 12216 W" 17:12 #navit: <@KaZeR> nop, the map does not show up in the maps list in the settings 17:12 #navit: < jfitie> backslashes instead of slashes? 17:25 #navit: <@KaZeR> nop, even tried "c:\map.bin" 17:25 #navit: <@KaZeR> what path do you use with wine? 17:26 #navit: < jfitie> c:/Program Files/Navit/maps/ 17:26 #navit: < jfitie> uh... backslashes of course 17:36 #navit: <@KaZeR> mmm odd. 17:38 #navit: < jfitie> No luck? 17:39 #navit: < jfitie> do you build the GTK binary yourself? Could you compile it with my changes and see if they work for resizing? 17:47 #navit: < jfitie> I zipped my navit directory --> http://click1.clickrouter.com/redirect?token=a2258079c24c4c50a56b6b1ffb75d6e2&url=https%3A//wetransfer.com/downloads/870014f4a1a1292cd4474cb6ede16d1f20170727174651/3d57973190422877c9f4a5ed31fa99df20170727174651/af6fee 18:30 #navit: <@KaZeR> i used the binary from the CI 18:33 #navit: < jfitie> As I said before: if it doesn't work, is resizing the ui even a use case then? 18:53 #navit: <@KaZeR> well this is two different problems i think. One is with the map driver (probably) and the other one with the graphics driver 18:53 #navit: <@KaZeR> resizing the ui should be a use case - because it should work :) 18:54 #navit: < jfitie> Correct, but out of scope for my patch 18:54 -!- xenos1984 [~xenos1984@22-164-191-90.dyn.estpak.ee] has joined #navit 18:55 #navit: < jfitie> Just did some more tests with more Android devices with different resolutions; 720x1280 2560x1440 2560x1600. All work fine, both in portrait and landscape. 19:05 #navit: <@KaZeR> nice work. This is a huge improvement in my opinion 19:06 #navit: < jfitie> Yeah, that's why I wanted to try and fix it. I'm happy with this single line fix. Want to merge it? 19:10 #navit: < jfitie> Also, I think that the patch might automagically work for resizing, 'cat navit.log | grep navit_set_attr_do' returns 'debug:navit:navit_set_attr_do:enter, this_=0x2475e8, attr=0xaae740 (pitch), init=0'. So apparently the pitch is set outside of the initialization. 19:24 -!- robertp [5cd040c0@gateway/web/freenode/ip.92.208.64.192] has joined #navit 19:24 #navit: < robertp> Hi 19:24 #navit: < jfitie> Hi, was just about to reply to your comment 19:25 #navit: < robertp> feel free to do so. :D 19:29 #navit: <@KaZeR> jfitie: makes sense 19:29 #navit: <@KaZeR> hey robertp 19:29 #navit: < robertp> Salut kazer! 19:31 #navit: < jfitie> @robertp: https://github.com/navit-gps/navit/pull/303#issuecomment-318463365 19:32 #navit: < robertp> @jfitie: I get an email whenever someone comments on a pr at navit. :D 19:33 #navit: < robertp> So I got it. 19:33 #navit: < robertp> :D 19:33 #navit: < robertp> I pulled the branch and played around with it today. 19:33 #navit: < robertp> resizing does not work in the current version. 19:34 #navit: < robertp> And for large y's and small x's the calculation does not work. 19:35 #navit: < jfitie> What do you mean with large y's and small x's? 19:35 #navit: < robertp> The force-pitch-to-20 means that we should have a switch for the autopitch feature. Like 19:35 #navit: < jfitie> 320x1600? https://user-images.githubusercontent.com/23396293/28632651-9c83b25a-7231-11e7-8558-18cac70414f0.png 19:36 #navit: < robertp> Jawohl! 19:36 #navit: < jfitie> oh wait, pitch is not forced to 20. 20 is just the default value. Also, when playing around with it, what commit did you use (that's kinda important)? 19:37 #navit: < robertp> the one before you left the chat today 19:37 #navit: < robertp> this one: https://github.com/navit-gps/navit/pull/303/commits/46c9021994d3ad4bbdfb821202939d73d6ea2834 19:40 #navit: < jfitie> So what it does is it just takes the pitch and passes the corrected value to the transformation routine. So a default pitch of 20 at 320x240 will still be 20. At 1024x768 it will be transformed using a pitch of 7 (ceil(20*sqrt(240*320)/sqrt(1024*768)))) 19:40 #navit: < jfitie> But in the 2nd case, 20 will still be the pitch known to navit 19:41 #navit: < jfitie> If you change it in navit.xml to 10 f.ex., at 1024x768 it will be transformed using a pitch of 4 (ceil(10*sqrt(240*320)/sqrt(1024*768)))) 19:41 #navit: < jfitie> 20 is (and was) only used when no pitch is set in navit.xml 19:42 #navit: < jfitie> https://github.com/navit-gps/navit/blob/trunk/navit/gui/internal/gui_internal.c#L3430 19:43 #navit: < robertp> Sure. But cuurently we do not have the option to set it hard to 20, at all cost. ;) 19:43 #navit: < robertp> Some say we want everything customizable. 19:44 #navit: < jfitie> I understand, but the problem is that '20' is not the same at all resolutions. The default of 20 on a high res device looks ugly: https://user-images.githubusercontent.com/23396293/28256973-782eaa70-6ac7-11e7-9883-e3eeecafe8af.png 19:44 #navit: < jfitie> If 20 was meant to look like this, https://camo.githubusercontent.com/354382af5f8dea018071202f4ffb73930517bccb/687474703a2f2f77696b692e6e617669742d70726f6a6563742e6f72672f696d616765732f652f65612f4e617649745f343939375f6f6e5f4854435f57696c64666972652e706e67, then this patch makes 20 look the same on any resolution 19:45 #navit: < jfitie> Also, no need for the user to know the 'corrected pitch', whatever he sets will ook the same on any device 19:45 #navit: < jfitie> So his preference of f.ex. 35 will be 35 on one device, 18 on another, and 12 on yet another device. 19:45 #navit: < jfitie> But he just sets 35 in navit.xml and it will all look the same 19:46 #navit: < jfitie> hope this makes sense :-) 19:46 #navit: < robertp> Ok, you win. :D 19:47 #navit: < jfitie> Haha :-). So did I answer all of your questions? 19:47 #navit: < jfitie> And @kazer, do you agree with the above? 19:49 #navit: < robertp> jfitie: As you are making the icons much more beatiful, could you add a image to the pr's that the using-windows-at-work-gui can see the changes without copying the code to notepad++ and view in inkscape? O.o 19:49 #navit: < robertp> Yes, you appearently answered all my questions. Or I gave up. 19:51 #navit: < jfitie> Does viewing the svg in the browser not work for you? F.ex. https://github.com/navit-gps/navit/blob/b67baccda6eca4ccd246cb262cd50a04b4e7ee0f/navit/xpm/beer.svg 19:52 #navit: < robertp> Whoops... I didn't realize that option. Haha - cool. 19:52 #navit: < jfitie> ;-) 19:56 #navit: < jfitie> @kazer @robertp Can I merge this (single line change) pr? https://github.com/navit-gps/navit/pull/303/files 19:57 #navit: < robertp> maybe rebase first? 19:58 #navit: < robertp> 29 commits for a single line: 19:58 #navit: < robertp> ? 20:01 #navit: < jfitie> haha yeah, lots of tries. Don't you love squash commits? ;-) 20:01 #navit: < jfitie> this is probaby some world record! 20:09 #navit: < jfitie> Done, enough for today for me. ttyl! 20:09 -!- jfitie [5c6e9fbe@gateway/web/freenode/ip.92.110.159.190] has quit [Quit: Page closed] 20:37 -!- robertp [5cd040c0@gateway/web/freenode/ip.92.208.64.192] has quit [Ping timeout: 260 seconds] 22:25 -!- xenos1984 [~xenos1984@22-164-191-90.dyn.estpak.ee] has quit [Quit: Leaving.] 22:32 -!- pmckinley [~peter@host86-154-247-25.range86-154.btcentralplus.com] has joined #navit 22:32 #navit: < pmckinley> hey @KaZer 22:32 #navit: < pmckinley> :) 22:35 #navit: < pmckinley> =-O 22:39 -!- bzed_ [~bzed@217.196.148.210] has joined #navit 22:41 -!- Irssi: No PONG reply from server irc.freenode.net in 301 seconds, disconnecting 22:41 -!- Irssi: Connection lost to irc.freenode.net 22:41 -!- Irssi: Removed reconnection to server irc.freenode.net port 6667 22:41 -!- Irssi: Looking up irc.freenode.net 22:41 -!- Irssi: Reconnecting to irc.freenode.net [38.229.70.22] port 6667 - use /RMRECONNS to abort 22:41 -!- Irssi: Connection to irc.freenode.net established 22:41 !card.freenode.net *** Looking up your hostname... 22:41 !card.freenode.net *** Checking Ident 22:41 !card.freenode.net *** Couldn't look up your hostname 22:42 !card.freenode.net *** No Ident response 22:42 -!- Welcome to the freenode Internet Relay Chat Network NavitLog1er 22:42 -!- Your host is card.freenode.net[38.229.70.22/6667], running version ircd-seven-1.1.4 22:42 -!- This server was created Tue Feb 7 2017 at 17:41:14 UTC 22:42 -!- card.freenode.net ircd-seven-1.1.4 DOQRSZaghilopswz CFILMPQSbcefgijklmnopqrstvz bkloveqjfI 22:42 -!- CHANTYPES=# EXCEPTS INVEX CHANMODES=eIbq,k,flj,CFLMPQScgimnprstz CHANLIMIT=#:120 PREFIX=(ov)@+ MAXLIST=bqeI:100 MODES=4 NETWORK=freenode STATUSMSG=@+ CALLERID=g CASEMAPPING=rfc1459 are supported by this server 22:42 -!- CHARSET=ascii NICKLEN=16 CHANNELLEN=50 TOPICLEN=390 DEAF=D FNC TARGMAX=NAMES:1,LIST:1,KICK:1,WHOIS:1,PRIVMSG:4,NOTICE:4,ACCEPT:,MONITOR: EXTBAN=$,ajrxz CLIENTVER=3.0 KNOCK CPRIVMSG CNOTICE are supported by this server 22:42 -!- WHOX SAFELIST ELIST=CTU ETRACE are supported by this server 22:42 -!- There are 124 users and 88779 invisible on 29 servers 22:42 -!- 29 IRC Operators online 22:42 -!- 617 unknown connection(s) 22:42 -!- 50959 channels formed 22:42 -!- I have 4839 clients and 1 servers 22:42 -!- 4839 7467 Current local users 4839, max 7467 22:42 -!- 88903 97718 Current global users 88903, max 97718 22:42 -!- Highest connection count: 7468 (7467 clients) (1918050 connections received) 22:42 -!- - card.freenode.net Message of the Day - 22:42 -!- - 22:42 -!- - Welcome to card.freenode.net in Washington, DC, US, kindly sponsored by 22:42 -!- - Team Cymru (http://www.team-cymru.org). 22:42 -!- - 22:42 -!- - CARD, ORSON SCOTT [1951-]. Born in Richland, Washington, Card grew up in 22:42 -!- - California, Arizona, and Utah. He lived in Brazil for two years as an unpaid 22:42 -!- - missionary for the Mormon Church. Author of the Ender and Alvin Maker books, 22:42 -!- - Card's science fiction and fantasy work is strongly influenced by his Mormon 22:42 -!- - cultural background. The first author to win the Hugo and Nebula novel awards 22:42 -!- - two years in a row, Card currently lives in Greensboro, North Carolina, US. 22:42 -!- - 22:42 -!- - 22:42 -!- - Welcome to freenode - supporting the free and open source 22:42 -!- - software communities since 1998. 22:42 -!- - 22:42 -!- - By connecting to freenode you indicate that you have read and 22:42 -!- - accept our policies as set out on http://www.freenode.net 22:42 -!- - freenode runs an open proxy scanner. Please join #freenode for 22:42 -!- - any network-related questions or queries, where a number of 22:42 -!- - volunteer staff and helpful users will be happy to assist you. 22:42 -!- - 22:42 -!- - You can meet us at FOSSCON (http://www.fosscon.org) where we get 22:42 -!- - together with like-minded FOSS enthusiasts for talks and 22:42 -!- - real-life collaboration. 22:42 -!- - 22:42 -!- - We would like to thank Private Internet Access 22:42 -!- - (https://www.privateinternetaccess.com/) and the other 22:42 -!- - organisations that help keep freenode and our other projects 22:42 -!- - running for their sustained support. 22:42 -!- - 22:42 -!- - In particular we would like to thank the sponsor 22:42 -!- - of this server, details of which can be found above. 22:42 -!- - 22:42 -!- - By connecting to freenode you indicate that you have read and 22:42 -!- - agree with our policies and guidelines as published on 22:42 -!- - https://freenode.net 22:42 -!- End of /MOTD command. 22:42 -!- Mode change [+i] for user NavitLog1er 22:42 -!- Irssi: Your nick is owned by Navit Logger [~NavitLogg@176.126.247.29] 22:42 -!- NavitLog1er [~NavitLogg@176.126.247.29] has joined #navit 22:42 -!- Topic for #navit: The open source vector based navigation program with routing engine. See http://wiki.navit-project.org. Please be patient if you don't get a response immediately. Please use http://navit.pastebin.com for your pastes! Channel is logged : http://irclogs.navit.ie/ Follow @NavitProject on Twitter. 22:42 -!- Topic set by KaZeR [~kazer@4.170.67.86.rev.sfr.net] [Mon May 23 17:10:04 2011] 22:42 [Users #navit] 22:42 [@ChanServ] [ bzed_ ] [ j_f-f ] [ Marc0_ ] [ NavitLogger] [ pmckinley] 22:42 [@Horwitz ] [ Celelibi ] [ jkoan ] [ Millesimus ] [ noradtux ] [ rdorsch ] 22:42 [@KaZeR ] [ ColdFyre ] [ latouche] [ Navit ] [ Number6 ] [ tryagain ] 22:42 [ bzed ] [ ilovekiruna] [ magruder] [ NavitLog1er] [ oh2fzo ] 22:42 -!- Irssi: #navit: Total of 23 nicks [3 ops, 0 halfops, 0 voices, 20 normal] 22:42 -!- Channel #navit created Sun Nov 26 06:47:57 2006 22:42 -!- Irssi: Join to #navit was synced in 7 secs 22:42 -!- latouche_ [~Latouche@reverse-169.fdn.fr] has joined #navit 22:42 -!- bzed [~bzed@shell.bzed.at] has quit [Write error: Broken pipe] 22:42 -!- bzed_ is now known as bzed 22:42 -!- latouche [~Latouche@reverse-169.fdn.fr] has quit [Write error: Broken pipe] 22:43 -!- pmckinley [~peter@host86-154-247-25.range86-154.btcentralplus.com] has quit [Remote host closed the connection] 22:46 -!- NavitLogger [~NavitLogg@176.126.247.29] has quit [Ping timeout: 240 seconds] 22:57 -!- pmckinley [~peter@host86-154-247-25.range86-154.btcentralplus.com] has joined #navit 22:57 #navit: < pmckinley> :-/ 23:06 -!- pmckinley [~peter@host86-154-247-25.range86-154.btcentralplus.com] has quit [Remote host closed the connection] 23:19 -!- Horwitz [~mich1@p200300800E58FA00022268FFFE64E7C4.dip0.t-ipconnect.de] has quit [Ping timeout: 255 seconds] 23:32 -!- Horwitz [~mich1@p200300800E6FD100022268FFFE64E7C4.dip0.t-ipconnect.de] has joined #navit 23:32 -!- mode/#navit [+o Horwitz] by ChanServ --- Log closed Fri Jul 28 00:00:06 2017