Author Topic: May FidocadJ be used in the Forum?  (Read 4490 times)

0 Members and 1 Guest are viewing this topic.

Offline brabusTopic starter

  • Frequent Contributor
  • **
  • Posts: 326
  • Country: it
May FidocadJ be used in the Forum?
« on: April 11, 2016, 08:40:02 pm »
Hi guys,

I saw FidocadJ being used in the Italian Forum "Electroyou", and I was impressed! Example

It is essentially a schematic drawer, very useful to sketch circuits and pictures.
It helps avoiding the cumbersome process of taking photos of paper notes with smartphones, drawing dreadful stuff with Paint, or upload pictures on hosts.
Plus, it allows the participants to edit the schematic, suggest modifications and build the circuit together!  :-+

Plus, it's suitable for all platforms, including Android!

Some examples of extreme use cases: All the pictures have been drawin with FidocadJ
Also here!

Official website
Download from SourceForge

If we find it interesting, maybe Dave can talk with Davide Bucci (aka Darwin), the mind behind this project, and integrate the compiler in the Forum!

What do you think?  :)
« Last Edit: April 11, 2016, 08:41:48 pm by brabus »
 
The following users thanked this post: JPortici

Offline Brumby

  • Supporter
  • ****
  • Posts: 12297
  • Country: au
Re: May FidocadJ be used in the Forum?
« Reply #1 on: April 12, 2016, 12:47:39 am »
Functionality is one thing - but there are a couple of matters that need to be considered...

The first is server load.  Adding functionality means you have to get a processor somewhere to do more work.  If it's local to your machine, then that's fine - but if Dave's server resources have to front up, it could impact everyone ... and if Dave has to get more processing capacity on his server, it's going to add cost.

The second is security.  Does adding the functionality introduce any risks to the security of the site?

The last is maintenance.  How much effort would be involved in installing it and keeping it up to scratch.  You have to include the work required in upgrading versions of SMF (the forum software).  Dave isn't interested in anything that's involved - and having been in software development all my working life, I can absolutely understand that and support him 110%.


With these issues aside, the question is "Who would find it useful?"
« Last Edit: April 12, 2016, 01:05:45 am by Brumby »
 

Offline brabusTopic starter

  • Frequent Contributor
  • **
  • Posts: 326
  • Country: it
Re: May FidocadJ be used in the Forum?
« Reply #2 on: April 13, 2016, 08:43:43 pm »
Good points.

As far as I can tell, it definitely was a success story on the forum I linked before. The biggest part of the job has already been done, the tool is now stable and pretty refined.

Regarding security, I am not really an expert; I would like to hear the opinion of someone who really is.

I proposed it because of the evolution of things I already experienced in the other forum: basic functionalities --> Latex compiler --> graphic tool (e.g. FidocadJ)

It definitely improved the user experience, I would find it very useful.  :)
 

Offline DarwinNE

  • Newbie
  • Posts: 1
  • Country: fr
Re: May FidocadJ be used in the Forum?
« Reply #3 on: April 27, 2016, 03:18:30 pm »
Hi to all,
  I am the maintainer of the FidoCadJ project. I am happy to see that it has been cited here, since I am a big fan of EEVblog and I really enjoy Dave's videos (and BTW this is my first post here)  :-DMM

I can provide some partial answers about concerns expressed by Brumby.

For the server load, I believe that in ElectroYou the drawings are converted each time a new post containing one of them is posted. Then, the image is stored in PNG format in a cache and it is used as it is. FidoCadJ is a Java program and most part of the overload comes from the time necessary to load the Java virtual machine each time it is executed.

Concerning the security, it is something that has to be taken into account very seriously. First of all, you need to run Java on your server and this may be not allowed in some cases. That being said, the text format of files employed by FidoCadJ is quite restrictive: you just describe simple graphical objects (no file inclusion and no external access). The technique has been used with success on ElectroYou (and on Matematicamente) for several years and they did not experience security issues coming from that. However, nobody can be positively sure about a perfect security. It is part of the work of integrating FidoCadJ in a forum to make sure that the problems that an attack on it can generate may remain limited.

I am working only on FidoCadJ code and not on its integration with forums. I know that there is a vBulletin extension, but I do not know anything about SMF. I think the webmaster of ElectroYou inspired himself from the LaTeX vBulletin extension to implement it and we had a fairly usable implementation in a few days starting from scratch.

Finally, the official development site is not anymore on Sourceforge; we moved it on GitHub in August 2015:

https://github.com/DarwinNE/FidoCadJ

(open source GPL v.3 project)

Hope it helps  :)
 

Offline EEVblog

  • Administrator
  • *****
  • Posts: 37730
  • Country: au
    • EEVblog
Re: May FidocadJ be used in the Forum?
« Reply #4 on: April 27, 2017, 08:38:21 am »
Just from an effort required to install and maintain this, and the security stuff, and the JAVA stuff (which I don't think we have anything else running JAVA on the server), I see this as potentially troublesome.
Add to that, why would people want to go to the effort of learn and then draw schematics in some proprietary format when they already have their tool of choice available?
And then you have the question about what happens in the future if say the forum moves or something else, or support for the product stops and doesn't keep up to date etc or breaks with new version of SMF etc. Existing images, both embedded and attachment have none of these issues.
Sorry, but I don't see the need for this.
 

Offline T3sl4co1l

  • Super Contributor
  • ***
  • Posts: 21658
  • Country: us
  • Expert, Analog Electronics, PCB Layout, EMC
    • Seven Transistor Labs
Re: May FidocadJ be used in the Forum?
« Reply #5 on: April 27, 2017, 09:44:39 am »
Looks neat. :)

I don't see anything about web support, offhand -- safe enough to have trusted Java code run in an offline JVM (no worse than any other application you choose to install), but Java (and Flash) have been turned off (by default) in browsers for years now.  It would have to be ported to JavaScript.  (Which would then be clientside, so no worries about server load.)

That would be pretty neat, having a plugin which is simply a script that loads on the page, and lets you create, or at least just view embedded drawings.  But yeah, that would probably be a lot of work!

Tim
Seven Transistor Labs, LLC
Electronic design, from concept to prototype.
Bringing a project to life?  Send me a message!
 

Offline hendorog

  • Super Contributor
  • ***
  • Posts: 1617
  • Country: nz
Re: May FidocadJ be used in the Forum?
« Reply #6 on: April 27, 2017, 08:42:25 pm »
Looks neat. :)

I don't see anything about web support, offhand -- safe enough to have trusted Java code run in an offline JVM (no worse than any other application you choose to install), but Java (and Flash) have been turned off (by default) in browsers for years now.  It would have to be ported to JavaScript.  (Which would then be clientside, so no worries about server load.)

That would be pretty neat, having a plugin which is simply a script that loads on the page, and lets you create, or at least just view embedded drawings.  But yeah, that would probably be a lot of work!

Tim

I don't think it needs Java or Flash plugins in the browser. It renders PNG's in the browser and if you want to edit it then you need to download the source file - which is just text - and run the app.

It seems that does need a JVM on the server, and a JVM on the users machine so they can run the app if they want to create/edit diagrams.

Javascript based diagramming would be cool I agree. I've used a tool like that before and its very convenient to be able to quickly embed a diagram or picture in a web page when trying to explain or describe something.
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf