From (spam-protected) Fri Feb 3 16:21:37 2017 From: (spam-protected) (nemesis) Date: Fri, 03 Feb 2017 16:21:37 +0100 Subject: [Interop-dev] NetJSON in OpenWISP2 Controller Message-ID: <98dc5c961e6f18bf7a59622ed747282c@ninux.org> Hi everyone, I have been very busy working on implementations of NetJSON latelly. One of the most promising is the new openwisp manager application, which allows to manage configurations of devices based on OpenWRT/LEDE. I will give a presentation at FOSDEM on sunday about the subject, but if you are curious, here's a screencast I just made to show at FOSDEM: https://www.youtube.com/playlist?list=PLPueLZei9c8_DEYgC5StOcR5bCAcQVfR8 The mailing list of the project [1] has been very active latelly, which gives me hope about the diffusion of NetJSON and the possibility of finding future funding to keep improving the NetJSON spec and its ecosystem. Federico [1]: https://groups.google.com/d/forum/openwisp From (spam-protected) Wed Feb 22 08:32:01 2017 From: (spam-protected) (Xiang Gao) Date: Wed, 22 Feb 2017 15:32:01 +0800 Subject: [Interop-dev] GSoC 2017 student application Message-ID: <38953D5C-8D58-4BAB-B6C7-77B9793F02A6@gmail.com> Hi all, I find this great project, NetJSON, from results searched ‘GSoC’. And the good intention about your project to apply the GSoC 2017 present in the doc page. I wonder if I could involve in netjsongraph.js if the application accept. I’m a master student from China study the visualization. I’m familiar with in d3.js, SVG and canvas and proficient in JS.. please reply any messages you want to talk to me… best regards. ------ 高翔 Email: geekplux at gmail.com | geekplux at foxmail.com WeChat: geekplus Blog: http://geekplux.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From (spam-protected) Wed Feb 22 09:51:21 2017 From: (spam-protected) (Nemesis) Date: Wed, 22 Feb 2017 09:51:21 +0100 Subject: [Interop-dev] GSoC 2017 student application In-Reply-To: <38953D5C-8D58-4BAB-B6C7-77B9793F02A6@gmail.com> References: <38953D5C-8D58-4BAB-B6C7-77B9793F02A6@gmail.com> Message-ID: Hi Xiang, you are welcome to start contributing to netjsongraph.js. If NetJSON is accepted we will welcome applications from anyone and I will surely welcome yours and review it carefully, especially if you are an enthusiast of this kind of technologies. Let's get technical, I am not very satisfied with D3. I found it very hard to work with. I am also not satisfied with SVG, because as the number of elements on the graph grows, it becomes very slow, especially on mobile. More people have suggested to me to switch to http://visjs.org/network_examples.html, which is something I'm considering. This example seems to be using canvas: http://visjs.org/examples/network/events/renderEvents.html netjsongraph.js has attracted quite some interest from around the world, but I couldn't dedicate much time to it recently. It is also lacking automated tests and a modern build process. Probably it would be better to develop it using ES6 (which have some kind of built-in templating feature) and transpile it with babel.js. Our goals should be the following: * make it faster with large numbers * make it more mobile friendly * use modern tools that are familiar to JS developers, so they can contribute more easily * add automated tests so we can be more confident of introducing changes * get rid of complex features * make it easy to extend, so users can experiment and build their own derivatives * make it easy to redraw/update the graph as new data comes in, at least at the library level we should support this If we can accomplish these tasks, the library has the potential to become useful to more communities and become a basic building block for more advanced networking tools. Take a look also at this other application, which is using netjsongraph.js for the visualization part: https://github.com/netjson/django-netjsongraph Federico On 02/22/2017 08:32 AM, Xiang Gao wrote: > Hi all, > > I find this great project, NetJSON, from results searched ‘GSoC’. And > the good intention about your project to apply the GSoC 2017 present in > the doc page. I wonder if I could involve in netjsongraph.js if the > application accept. > > I’m a master student from China study the visualization. I’m familiar > with in d3.js, SVG and canvas and proficient in JS.. > > please reply any messages you want to talk to me… > > best regards. > > /------/ > /高翔/ > /Email: geekplux at gmail.com | > geekplux at foxmail.com > WeChat: geekplus/ > /Blog: //http://geekplux.com// > > > > _______________________________________________ > Interop-dev mailing list > Interop-dev at lists.funkfeuer.at > https://lists.funkfeuer.at/mailman/listinfo/interop-dev > From (spam-protected) Wed Feb 22 10:27:29 2017 From: (spam-protected) (Nemesis) Date: Wed, 22 Feb 2017 10:27:29 +0100 Subject: [Interop-dev] Fwd: Re: GSoC 2017 student application In-Reply-To: References: Message-ID: Reply from Xiang below -------- Forwarded Message -------- Subject: Re: [Interop-dev] GSoC 2017 student application Date: Wed, 22 Feb 2017 09:17:09 +0000 From: GeekPlux To: Nemesis thanks. I recommend the http://sigmajs.org/ beacaus it dedicated to graph drawing based on canvas and WebGL. The goal you mentiond I think it is easy to me :) because I'm a web developer and have compeleted the network visualization project last year. But I find out the last commit to NetJSON is one year ago, there are any people maintain and using it? Nemesis >于2017年2月22日周三 下午4:51写道: Hi Xiang, you are welcome to start contributing to netjsongraph.js. If NetJSON is accepted we will welcome applications from anyone and I will surely welcome yours and review it carefully, especially if you are an enthusiast of this kind of technologies. Let's get technical, I am not very satisfied with D3. I found it very hard to work with. I am also not satisfied with SVG, because as the number of elements on the graph grows, it becomes very slow, especially on mobile. More people have suggested to me to switch to http://visjs.org/network_examples.html, which is something I'm considering. This example seems to be using canvas: http://visjs.org/examples/network/events/renderEvents.html netjsongraph.js has attracted quite some interest from around the world, but I couldn't dedicate much time to it recently. It is also lacking automated tests and a modern build process. Probably it would be better to develop it using ES6 (which have some kind of built-in templating feature) and transpile it with babel.js. Our goals should be the following: * make it faster with large numbers * make it more mobile friendly * use modern tools that are familiar to JS developers, so they can contribute more easily * add automated tests so we can be more confident of introducing changes * get rid of complex features * make it easy to extend, so users can experiment and build their own derivatives * make it easy to redraw/update the graph as new data comes in, at least at the library level we should support this If we can accomplish these tasks, the library has the potential to become useful to more communities and become a basic building block for more advanced networking tools. Take a look also at this other application, which is using netjsongraph.js for the visualization part: https://github.com/netjson/django-netjsongraph Federico On 02/22/2017 08:32 AM, Xiang Gao wrote: > Hi all, > > I find this great project, NetJSON, from results searched ‘GSoC’. And > the good intention about your project to apply the GSoC 2017 present in > the doc page. I wonder if I could involve in netjsongraph.js if the > application accept. > > I’m a master student from China study the visualization. I’m familiar > with in d3.js, SVG and canvas and proficient in JS.. > > please reply any messages you want to talk to me… > > best regards. > > /------/ > /高翔/ > /Email: geekplux at gmail.com > | > geekplux at foxmail.com > > WeChat: geekplus/ > /Blog: //http://geekplux.com// > > > > _______________________________________________ > Interop-dev mailing list > Interop-dev at lists.funkfeuer.at > https://lists.funkfeuer.at/mailman/listinfo/interop-dev > From (spam-protected) Wed Feb 22 10:28:43 2017 From: (spam-protected) (Nemesis) Date: Wed, 22 Feb 2017 10:28:43 +0100 Subject: [Interop-dev] GSoC 2017 student application In-Reply-To: References: <38953D5C-8D58-4BAB-B6C7-77B9793F02A6@gmail.com> Message-ID: <2ed15a56-afeb-ee44-4a87-25bf97af860d@ninux.org> Hey Xiang, please always use reply to all when replying. On 02/22/2017 10:17 AM, GeekPlux wrote: > thanks. > > I recommend the http://sigmajs.org/ beacaus it dedicated to graph > drawing based on canvas and WebGL. Oh yeah I remember I noticed that library when I was developing netjsongraph.js but don't remember why I didn't go ahead with it. Can it also do 3D? That would be super awesome. > The goal you mentiond I think it is easy to me because I'm a web > developer and have compeleted the network visualization project last year. Well, it's not a very complex or hard problem, but I don't think it's easy. There are many cases to deal with, and when users like the library because they could use it in one of their projects they start sending lots of questions and feature requests and if for some reason maintainers don't reply, they just abandon the library, write their own thing or use something else, and the projects loses momentum. > But I find out the last commit to NetJSON is one year ago, there are any > people maintain and using it? I'm the only maintainer and I haven't had much time to dedicate to it because I'm working heavily on the implementations of NetJSON DeviceConfiguration object that deal with configurations of routers. Some people are using the library it although I don't know how many. A few communities and projects using it that I know: ninux.org: http://ninux-graph.netjson.org/topology/56714e1c-9673-405f-a1c4-463e8af51a28/ django-netjsongraph: https://github.com/netjson/django-netjsongraph aspath graph: https://github.com/coxley/aspath_graph Federico From (spam-protected) Wed Feb 22 11:06:14 2017 From: (spam-protected) (L. Aaron Kaplan) Date: Wed, 22 Feb 2017 11:06:14 +0100 Subject: [Interop-dev] GSoC 2017 student application In-Reply-To: References: Message-ID: Dear Xiang, dear list, > On 22 Feb 2017, at 10:27, Nemesis wrote: > > Reply from Xiang below > > > -------- Forwarded Message -------- > Subject: Re: [Interop-dev] GSoC 2017 student application > Date: Wed, 22 Feb 2017 09:17:09 +0000 > From: GeekPlux > To: Nemesis > > > > thanks. > > I recommend the http://sigmajs.org/ beacaus it dedicated to graph > drawing based on canvas and WebGL. > > The goal you mentiond I think it is easy to me :) because I'm a web > developer and have compeleted the network visualization project last year. > > But I find out the last commit to NetJSON is one year ago, there are any > people maintain and using it? > Yes, there are people using it! olsr.org for example outputs netjson format. All the community wireless networks would benefit from good, intuitive, user friendly and comprehensive visualisations / UI of the network topology. Best, a. > > > Nemesis >于2017年2月22日周三 > 下午4:51写道: > > Hi Xiang, > > you are welcome to start contributing to netjsongraph.js. > > If NetJSON is accepted we will welcome applications from anyone and I > will surely welcome yours and review it carefully, especially if you are > an enthusiast of this kind of technologies. > > Let's get technical, I am not very satisfied with D3. I found it very > hard to work with. I am also not satisfied with SVG, because as the > number of elements on the graph grows, it becomes very slow, especially > on mobile. > > More people have suggested to me to switch to > http://visjs.org/network_examples.html, which is something I'm > considering. > This example seems to be using canvas: > http://visjs.org/examples/network/events/renderEvents.html > > netjsongraph.js has attracted quite some interest from around the world, > but I couldn't dedicate much time to it recently. It is also lacking > automated tests and a modern build process. Probably it would be better > to develop it using ES6 (which have some kind of built-in templating > feature) and transpile it with babel.js. > > Our goals should be the following: > > * make it faster with large numbers > * make it more mobile friendly > * use modern tools that are familiar to JS developers, so they can > contribute more easily > * add automated tests so we can be more confident of introducing changes > * get rid of complex features > * make it easy to extend, so users can experiment and build their own > derivatives > * make it easy to redraw/update the graph as new data comes in, at least > at the library level we should support this > > If we can accomplish these tasks, the library has the potential to > become useful to more communities and become a basic building block for > more advanced networking tools. > > Take a look also at this other application, which is using > netjsongraph.js for the visualization part: > https://github.com/netjson/django-netjsongraph > > Federico > > > On 02/22/2017 08:32 AM, Xiang Gao wrote: >> Hi all, >> >> I find this great project, NetJSON, from results searched ‘GSoC’. And >> the good intention about your project to apply the GSoC 2017 > present in >> the doc page. I wonder if I could involve in netjsongraph.js if the >> application accept. >> >> I’m a master student from China study the visualization. I’m familiar >> with in d3.js, SVG and canvas and proficient in JS.. >> >> please reply any messages you want to talk to me… >> >> best regards. >> >> /------/ >> /高翔/ >> /Email: geekplux at gmail.com > > | >> geekplux at foxmail.com > > >> WeChat: geekplus/ >> /Blog: //http://geekplux.com// >> >> >> >> _______________________________________________ >> Interop-dev mailing list >> Interop-dev at lists.funkfeuer.at >> https://lists.funkfeuer.at/mailman/listinfo/interop-dev >> > > > _______________________________________________ > Interop-dev mailing list > Interop-dev at lists.funkfeuer.at > https://lists.funkfeuer.at/mailman/listinfo/interop-dev -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 801 bytes Desc: Message signed with OpenPGP using GPGMail URL: From (spam-protected) Wed Feb 22 10:47:24 2017 From: (spam-protected) (GeekPlux) Date: Wed, 22 Feb 2017 09:47:24 +0000 Subject: [Interop-dev] GSoC 2017 student application In-Reply-To: <2ed15a56-afeb-ee44-4a87-25bf97af860d@ninux.org> References: <38953D5C-8D58-4BAB-B6C7-77B9793F02A6@gmail.com> <2ed15a56-afeb-ee44-4a87-25bf97af860d@ninux.org> Message-ID: thanks for the quick reply. You are right, massive issues would come if the project become hot. what I said is a snap judgement, sorry. So you are going to use NetJSON on wireless devices? Just curious Nemesis 于2017年2月22日周三 下午5:28写道: > Hey Xiang, please always use reply to all when replying. > > On 02/22/2017 10:17 AM, GeekPlux wrote: > > thanks. > > > > I recommend the http://sigmajs.org/ beacaus it dedicated to graph > > drawing based on canvas and WebGL. > > Oh yeah I remember I noticed that library when I was developing > netjsongraph.js but don't remember why I didn't go ahead with it. > > Can it also do 3D? That would be super awesome. > > > The goal you mentiond I think it is easy to me because I'm a web > > developer and have compeleted the network visualization project last > year. > > Well, it's not a very complex or hard problem, but I don't think it's > easy. There are many cases to deal with, and when users like the library > because they could use it in one of their projects they start sending > lots of questions and feature requests and if for some reason > maintainers don't reply, they just abandon the library, write their own > thing or use something else, and the projects loses momentum. > > > But I find out the last commit to NetJSON is one year ago, there are any > > people maintain and using it? > > I'm the only maintainer and I haven't had much time to dedicate to it > because I'm working heavily on the implementations of NetJSON > DeviceConfiguration object that deal with configurations of routers. > > Some people are using the library it although I don't know how many. > > A few communities and projects using it that I know: > > ninux.org: > > http://ninux-graph.netjson.org/topology/56714e1c-9673-405f-a1c4-463e8af51a28/ > django-netjsongraph > : > https://github.com/netjson/django-netjsongraph > aspath graph: https://github.com/coxley/aspath_graph > > Federico > -------------- next part -------------- An HTML attachment was scrubbed... URL: From (spam-protected) Wed Feb 22 12:10:59 2017 From: (spam-protected) (Nemesis) Date: Wed, 22 Feb 2017 12:10:59 +0100 Subject: [Interop-dev] GSoC 2017 student application In-Reply-To: References: <38953D5C-8D58-4BAB-B6C7-77B9793F02A6@gmail.com> <2ed15a56-afeb-ee44-4a87-25bf97af860d@ninux.org> Message-ID: <19ece24e-b4bc-daf1-ae29-2690c1791c48@ninux.org> On 02/22/2017 10:47 AM, GeekPlux wrote: > thanks for the quick reply. > > You are right, massive issues would come if the project become hot. what > I said is a snap judgement, sorry. > > So you are going to use NetJSON on wireless devices? Just curious Yes, see "Introduction to OpenWISP2", the screencast shows NetJSON when going in what is called "Advanced mode": https://www.youtube.com/watch?v=MY097Y2cPQ0&index=2&list=PLPueLZei9c8_DEYgC5StOcR5bCAcQVfR8 That system is gaining quite a lot of interest. If we could make netjsongraph.js more mature,I could easily reuse all this work to build an optional module for network visualization in OpenWISP2, this would bring several advantages and new opportunities: * more people would use it * more people could contribute to it * people participating on the OpenWISP Mailing List (https://groups.google.com/d/forum/openwisp) have been sending a lot of feedback regarding the configuration part, if they do the same for the network visualization part NetJSON and its ecosystem would benefit greatly * it would be easier to find funds to keep working and improving netjsongraph.js, the NetJSON NetworkGraph spec and all its related tools in general Federico From (spam-protected) Wed Feb 22 15:34:08 2017 From: (spam-protected) (GeekPlux) Date: Wed, 22 Feb 2017 14:34:08 +0000 Subject: [Interop-dev] GSoC 2017 student application In-Reply-To: <19ece24e-b4bc-daf1-ae29-2690c1791c48@ninux.org> References: <38953D5C-8D58-4BAB-B6C7-77B9793F02A6@gmail.com> <2ed15a56-afeb-ee44-4a87-25bf97af860d@ninux.org> <19ece24e-b4bc-daf1-ae29-2690c1791c48@ninux.org> Message-ID: Great thanks for all. Sounds very cool and useful. I don't know about wireless dev, but know a generic data format is important. Do I need to understand OpenWISP2? Xiang Nemesis 于2017年2月22日周三 下午7:11写道: On 02/22/2017 10:47 AM, GeekPlux wrote: > thanks for the quick reply. > > You are right, massive issues would come if the project become hot. what > I said is a snap judgement, sorry. > > So you are going to use NetJSON on wireless devices? Just curious Yes, see "Introduction to OpenWISP2", the screencast shows NetJSON when going in what is called "Advanced mode": https://www.youtube.com/watch?v=MY097Y2cPQ0&index=2&list=PLPueLZei9c8_DEYgC5StOcR5bCAcQVfR8 That system is gaining quite a lot of interest. If we could make netjsongraph.js more mature,I could easily reuse all this work to build an optional module for network visualization in OpenWISP2, this would bring several advantages and new opportunities: * more people would use it * more people could contribute to it * people participating on the OpenWISP Mailing List (https://groups.google.com/d/forum/openwisp) have been sending a lot of feedback regarding the configuration part, if they do the same for the network visualization part NetJSON and its ecosystem would benefit greatly * it would be easier to find funds to keep working and improving netjsongraph.js, the NetJSON NetworkGraph spec and all its related tools in general Federico -------------- next part -------------- An HTML attachment was scrubbed... URL: From (spam-protected) Wed Feb 22 19:16:42 2017 From: (spam-protected) (Nemesis) Date: Wed, 22 Feb 2017 19:16:42 +0100 Subject: [Interop-dev] GSoC 2017 student application In-Reply-To: References: <38953D5C-8D58-4BAB-B6C7-77B9793F02A6@gmail.com> <2ed15a56-afeb-ee44-4a87-25bf97af860d@ninux.org> <19ece24e-b4bc-daf1-ae29-2690c1791c48@ninux.org> Message-ID: <8a8dfc9f-edef-2359-5237-f8a793061df0@ninux.org> On 02/22/2017 03:34 PM, GeekPlux wrote: > Great thanks for all. > > Sounds very cool and useful. I don't know about wireless dev, but know a > generic data format is important. Do I need to understand OpenWISP2? You don't need to understand OpenWISP2 in order to work on netjsongraph.js. You need to know NetJSON, be sure to read the information provided on the website and the RFC. Federico From (spam-protected) Mon Feb 27 22:33:50 2017 From: (spam-protected) (=?UTF-8?Q?Andreas_Br=c3=a4u?=) Date: Mon, 27 Feb 2017 22:33:50 +0100 Subject: [Interop-dev] GSoC 2017 - Freifunk accepted! Message-ID: Hi there, today Google announced the organizations they choosed for GSoC 2017. I’m happy to tell you: Freifunk is again accepted as mentoring organization for Google Summer of Code together with 200 other OpenSource organizations! Our friends from OpenWISP.org got accepted, too! Thanks to all who helped making this application successful: those who collected all the ideas (this year we have really a lot of ideas!), those who talked to possible mentors and those who wrote the application texts. >From now on students can find us on the GSoC Website, and we should start talking to students that want to propose projects to freifunk. If you know students, point them to our Ideas page at https://wiki.freifunk.net/Ideas so they can get in touch with our mentors. The official Students Application period will start on March, 20. Then students can start submitting their applications. As a next step we’ll add the possible mentors to a mailing list. If you have any questions regarding GSoC, our ideas or as organization, please don’t hesitate to ask! Best regards, Andi — Andreas Bräu XMPP: andibraeu at jabber.weimarnetz.de Twitter:@evAltenberga Blog:https://blog.andi95.de PGP:0xB7E04818 -------------- next part -------------- An HTML attachment was scrubbed... URL: From (spam-protected) Tue Feb 28 13:37:22 2017 From: (spam-protected) (Nemesis) Date: Tue, 28 Feb 2017 13:37:22 +0100 Subject: [Interop-dev] GSoC 2017 student application In-Reply-To: <8a8dfc9f-edef-2359-5237-f8a793061df0@ninux.org> References: <38953D5C-8D58-4BAB-B6C7-77B9793F02A6@gmail.com> <2ed15a56-afeb-ee44-4a87-25bf97af860d@ninux.org> <19ece24e-b4bc-daf1-ae29-2690c1791c48@ninux.org> <8a8dfc9f-edef-2359-5237-f8a793061df0@ninux.org> Message-ID: Hi, NetJSON has not been accepted for the GSOC 2017, but you can still apply with Freifunk for the same ideas, see https://wiki.freifunk.net/Ideas#Netjsongraph.js:_canvas_and_geographic_data Best regards Federico On 02/22/2017 07:16 PM, Nemesis wrote: > On 02/22/2017 03:34 PM, GeekPlux wrote: >> Great thanks for all. >> >> Sounds very cool and useful. I don't know about wireless dev, but know a >> generic data format is important. Do I need to understand OpenWISP2? > > You don't need to understand OpenWISP2 in order to work on netjsongraph.js. > > You need to know NetJSON, be sure to read the information provided on > the website and the RFC. > > Federico From (spam-protected) Tue Feb 28 18:59:24 2017 From: (spam-protected) (Xiang Gao) Date: Wed, 1 Mar 2017 01:59:24 +0800 Subject: [Interop-dev] GSoC 2017 student application In-Reply-To: References: <38953D5C-8D58-4BAB-B6C7-77B9793F02A6@gmail.com> <2ed15a56-afeb-ee44-4a87-25bf97af860d@ninux.org> <19ece24e-b4bc-daf1-ae29-2690c1791c48@ninux.org> <8a8dfc9f-edef-2359-5237-f8a793061df0@ninux.org> Message-ID: Thank you for providing the information. Maybe I should write a proposal to Freifunk. Thanks Xiang > On Feb 28, 2017, at 20:37, Nemesis wrote: > > Hi, > > NetJSON has not been accepted for the GSOC 2017, but you can still apply > with Freifunk for the same ideas, see > > https://wiki.freifunk.net/Ideas#Netjsongraph.js:_canvas_and_geographic_data > > Best regards > Federico > > > On 02/22/2017 07:16 PM, Nemesis wrote: >> On 02/22/2017 03:34 PM, GeekPlux wrote: >>> Great thanks for all. >>> >>> Sounds very cool and useful. I don't know about wireless dev, but know a >>> generic data format is important. Do I need to understand OpenWISP2? >> >> You don't need to understand OpenWISP2 in order to work on netjsongraph.js. >> >> You need to know NetJSON, be sure to read the information provided on >> the website and the RFC. >> >> Federico > -------------- next part -------------- An HTML attachment was scrubbed... URL: From (spam-protected) Tue Feb 28 19:25:29 2017 From: (spam-protected) (Germano Massullo) Date: Tue, 28 Feb 2017 19:25:29 +0100 Subject: [Interop-dev] netjsonconfig in Fedora Project repositories Message-ID: I am glad to announce that netjsonconfig[1] has been included into Fedora Project repositories. In a few days it will reach the stable status and you can install it with # dnf install python-netjsonconfig command. Fedora package page https://admin.fedoraproject.org/pkgdb/package/rpms/python-netjsonconfig/ Best regards [1]: http://netjsonconfig.openwisp.org/en/stable/ From (spam-protected) Tue Feb 28 19:28:20 2017 From: (spam-protected) (Xiang Gao) Date: Wed, 1 Mar 2017 02:28:20 +0800 Subject: [Interop-dev] GSoC 2017 student application In-Reply-To: References: <38953D5C-8D58-4BAB-B6C7-77B9793F02A6@gmail.com> <2ed15a56-afeb-ee44-4a87-25bf97af860d@ninux.org> <19ece24e-b4bc-daf1-ae29-2690c1791c48@ninux.org> <8a8dfc9f-edef-2359-5237-f8a793061df0@ninux.org> Message-ID: <65BF3999-094F-49EF-9E23-35F7B52E3FC3@gmail.com> Hi, Excuse my-ties, I wonder what relationship between OpenWisp and Freifunk? I saw the NetJSON project in http://openwisp.org/gsoc/ideas-2017.html , too. Best regards Xiang > On Feb 28, 2017, at 20:37, Nemesis wrote: > > Hi, > > NetJSON has not been accepted for the GSOC 2017, but you can still apply > with Freifunk for the same ideas, see > > https://wiki.freifunk.net/Ideas#Netjsongraph.js:_canvas_and_geographic_data > > Best regards > Federico > > > On 02/22/2017 07:16 PM, Nemesis wrote: >> On 02/22/2017 03:34 PM, GeekPlux wrote: >>> Great thanks for all. >>> >>> Sounds very cool and useful. I don't know about wireless dev, but know a >>> generic data format is important. Do I need to understand OpenWISP2? >> >> You don't need to understand OpenWISP2 in order to work on netjsongraph.js. >> >> You need to know NetJSON, be sure to read the information provided on >> the website and the RFC. >> >> Federico > -------------- next part -------------- An HTML attachment was scrubbed... URL: