Customize user interface for n8n workflows - automation

Is it possible to customize the user interface for n8n workflows? if possible, can someone give an idea. Thank you.

You can find the source code for all the frontend code inside their repository: https://github.com/n8n-io/n8n/tree/master/packages/editor-ui
The editor-ui folder inside packages is what you are looking for.
The app is written using Vue.js ans it's very easy to understand. You can see the n8n-theme*.scss files in the mentioned folder that could be a good starting point.
Feel free to add / share ideas on what you're looking to do and I'll try to help if possible.
Also they have a very active community that can be found here: https://community.n8n.io/

Related

Directus custom interface

Can someone explain normally, how i can create directus interface extension? I readed docs, but i didn't understand anything from there. It just says that we can use vue js, but not a word about the implementation itself. I've been sitting for 4 hours and I can't find a normal source. The question is: Сan someone suggest what ш need to learn or read in order to be able to write interface extensions?
Tried:
https://docs.directus.io/extensions/interfaces.html
Dimitrov Adrian github repos..
I would suggest reading all of the extensions documentation from the start.
The page I've linked explains how to begin creating an extension, the page you have linked is a specific type of extension.
https://docs.directus.io/extensions/creating-extensions.html

Using DeckGL with Vue.js

I am struggling to get Deck play nice with vue. all the examples I have found till today are either quite hacked, not really my use case or out of date.
Does anyone know a good first step Source I could look at to get started?
I'm not sure if you ever found your solution or if you found other content, but I just wanted to post some info here in case you or anyone else who finds there way here needs some help on this.
There is a open source library we are working on to help bootstrap DeckGL/Mapbox implementations in Vue while providing some and soon more helpful abstractions.
Here is a couple links you may find useful:
Repo: https://github.com/loftylabs/vue_deckgl
Tutorial and documentation: https://loftylabs.github.io/vue_deckgl/
Feel free to stop by the repo and drop questions in issues if you are looking for any more help!

React Admin : How to use bootstrap instead of Material Design?

and first of all thank you for your amazing work.
The README file indicates that it is possible to use Bootstrap instead of Material Design, but I can’t find any documentation of how to implement it.
Does anybody has already done that ? Thank you in advance :)
Unfortunately, we did not find the time to document the ra-core package properly yet, so you'll have to explore the source code for now. I doubt you'll find any example for doing this as the separation into two packages (ra-core and ra-material-ui) is quite recent.
Be aware that building a bootstrap version of react-admin will take a lot of time. You'll have to explore the ra-material-ui package and build a bootstrap version of every components.

where is the source code for Oolong and Gnoloo?

I'm reading Programming for the Java Virtual Machine which discusses the Oolong assembler and Gnoloo disassembler. Judging by references online the source code was at one point available, but I can't find it now. Does anyone know where to get it?
UPDATE: thanks to belisarius I have the code, and have put it on GitHub with some build automation to make it a little easier to play with.
Found them here for download.
HTH!
Ps: there are several downloads in the page. The one you're looking for is this

Webkit-sharp example applications

Could anybody suggest a good open source (as in I can see the source, license irrelevant) webkit-sharp-based application? I've been wanting to jump into development with webkit-sharp and gtk-sharp, but I haven't found much of any documentation on webkit-sharp. I thought a good application example is as good as any documentation.
For anybody else that has this issue, a good application I just found is the sample app included with the source. For anybody answering, I didn't think about checking the source for samples when I posted this. The name of the sample is called FunnyBrowser.cs.
Here's mine:
https://github.com/dmulder/owa_browse
There don't seem to be many examples around of anyone using this. I've been looking through the docs at http://webkitgtk.org/reference/webkitgtk/stable to figure it out.