new

 

 



View filtered by:

Featured Diagrams


Here are a list of featured diagrams, showing the kind of things you can do with GitUML.

Sample GitUML Python Repository

#29 classic inheritance, multiplicity etc s…
Created by: admin   published
Language: Python
Repository: abulka/sample_python_uml  github
Commit: master
Tags: featured-py-sample
Description: This example shows how GitUML can visualise * inheritance * association * association with one to many * modules containing classes The one to many is had to detect. GitUML scans Python source code for ".append" operations and deduces its a one to many.
#194 multiple inheritance
Created by: admin   published
Language: Python
Repository: abulka/sample_python_uml  github
Commit: master
Tags: featured-py-sample
Description: This example shows how GitUML can visualise * multiple inheritance
#195 command pattern - design pattern
Created by: admin   published
Language: Python
Repository: abulka/sample_python_uml  github
Commit: master
Tags: featured-py-sample design pattern
Description: This example shows how GitUML can visualise the command design pattern. There are some unit tests in the same module, which are also visualised.

Javascript Diagrams

#81 javascript - graph and edge
Created by: admin   published
Language: Javascript
Repository: trekhleb/javascript-algorithms  github
Commit: master
Tags: featured-js
Description: In computer science, a graph is an abstract data type that is meant to implement the undirected graph and directed graph concepts from mathematics, specifically the field of graph theory A graph data structure consists of a finite (and possibly mutable) set of vertice…
#89 Disjoint Set
Created by: admin   published
Language: Javascript
Repository: trekhleb/javascript-algorithms  github
Commit: master
Tags: featured-js
Description: Disjoint-set data structure (also called a union-find data structure or merge- find set) is a data structure that tracks a set of elements partitioned into a number of disjoint (non-overlapping) subsets. It provides near-constant-time operations (bounded by the inverse…
#188 What 'JQuery' looks like
Created by: admin   published
Language: Javascript
Repository: abulka/todomvc-oo  github
Commit: master
Tags: featured-js
Description: This is a diagram showing what Jquery looks like, when analysed using GitUML's ability to visualise functions as boxes.

Java

#20 JAVA - command design pattern
Created by: abulka   published
Language: Java
Repository: iluwatar/java-design-patterns  github
Commit: master
Tags: featured-java
Description: In object-oriented programming, the **command pattern** is a behavioral design **pattern** in which an object is used to encapsulate all information needed to perform an action or trigger an event at a later time. This information includes the method name, the obje…
#22 Java - swing drag and drop - openjdk-jfx
Created by: abulka   published
Language: Java
Repository: javafxports/openjdk-jfx  github
Commit: master
Tags: featured-java
Description: Java Swing is old (JavaFX is now the latest GUI technology) but its not forgotton. OpenJFX is an open source, next generation client application platform for desktop, mobile and embedded systems based on JavaSE. It is a collaborative effort by many individuals and com…
#23 java-nested packages torture test
Created by: abulka   published
Language: Java
Repository: abulka/java-nested  github
Commit: 2b88837f12003993db859aa6acfef77e1def67ef
Tags: featured-java
Description: I use this source code as a torture test example for implementing java-nested package visualisation. I (the author of GitUML) also recently added optimisations so that nest packages with no classes would collapse into **a.b.c** etc. syntax rather than showing one nest…
#30 abstract document java-design-patterns
Created by: abulka   published
Language: Java
Repository: iluwatar/java-design-patterns  github
Commit: master
Tags: design pattern abstract featured-java
Description: A document is an object that contains a number of properties. A property can for an example be a value like a number or a string, or it can be a list of other documents. Every property is referenced using a key.[2] When traversing the document tree, the user specifies …
#38 Openjdk jfx animation performance
Created by: abulka   published
Language: Java
Repository: javafxports/openjdk-jfx  github
Commit: master
Tags: featured-java
Description: Quite a large chunk of classes from OpenJFX. OpenJFX is an open source, next generation client application platform for desktop, mobile and embedded systems based on JavaSE. It is a collaborative effort by many individuals and companies with the goal of producing a mo…
#160 plantuml - understanding boot up
Created by: abulka   published
Language: Java
Repository: plantuml/plantuml  github
Commit: master
Tags: featured-java
Description: Here is an analysis of the startup of `plantuml.jar` beginning with `Run.main()`. The first thing that happens is that the command line arguments are recorded in an attribute of the `Run` class by calling Run.`saveCommandLine()`. Then those arguments are parsed and re…

C#

#86 csharp example
Created by: admin   published
Language: CSharp
Repository: SolutionsDesign/Algorithmia  github
Commit: master
Tags: featured-csharp
Description: C# support now in GitUML! This example taken from Algorithmia GitHub repository - some random namespaces and classes being visualised. C# support currently being enhanced to support namespaces being visualised as packages.

TodoMVC Related

#134 TodoMVC Object Oriented Controllers imp…
Created by: admin   published
Language: Javascript
Repository: abulka/todomvc-oo  github
Commit: master
Tags: featured-todomvc
Description: The TodoMVC "rosetta stone" app - implemented using Object Oriented Controllers. This diagram shows the event flow, visualised using using literate code mapping. Notice how effective _colours_ are in following the event flow. This project is a Javascript implementat…
#153 TodoMVC-JQuery - Understanding the init…
Created by: abulka   published
Language: Javascript
Repository: tastejs/todomvc  github
Commit: master
Tags: featured-todomvc
Description: This is the initialisation use case of TodoMVC-Jquery, depicted as a Literate Code Map. Building this diagram helped me understand how this implementation worked, which led me to build my own implementation of TodoMVC called TodoMVC- OO which is an implementation witho…
#154 TodoMVC-JQuery - Understanding editing …
Created by: abulka   published
Language: Javascript
Repository: tastejs/todomvc  github
Commit: master
Tags: featured-todomvc
Description: This is the editing of todo items use case of TodoMVC-Jquery, depicted as a Literate Code Map. Building this diagram helped me understand how this implementation worked, which led me to build my own implementation of TodoMVC called TodoMVC-OO which is an implementation…
#168 jecs architecture (Entity Component Sys…
Created by: admin   published
Language: Javascript
Repository: zakplus/jecs  github
Commit: master
Tags: featured-todomvc
Description: Entity Component System frameworks are actually relatively simple. They offer ways of: 1. defining Entities, 2. adding Components (data objects) to those entity instances, 3. defining Systems \- which are code blocks which run across subsets of matched Component…
#170 TodoMVC-ECS (Entity Component System im…
Created by: admin   published
Language: Javascript
Repository: abulka/todomvc-ecs  github
Commit: master
Tags: featured-todomvc
Description: Here is the architecture of my TodoMVC-ecs project which is the classic TodoMVC app implemented using ECS, a gaming architecture. I chose to use the javascript Jecs library - pictured here. # Entity Component System • TodoMVC Is the Entity Component System any good …
#181 MVCA-architecture
Created by: admin   published
Language: Unknown
Repository: abulka/todomvc-oo  github
Commit: master
Tags: featured-todomvc
Description: ## MVCA Architectural Pattern The TodoMVC-OO project fully implements the TodoMVC specification. It is implemented without a framework, using plain Object Oriented programming + the MVCA architectural design pattern: Whilst the MVC (Model View Controller) pattern is …

Objective C

#175 DZNEmptyDataSet Application and AppDele…
Created by: admin   published
Language: ObjectiveC
Repository: dzenbot/DZNEmptyDataSet  github
Commit: master
Tags: uitableview empty datasets application mac featured-objc
Description: This is a diagram generated from an Objective C project on Github called DZNEmptyDataSet a drop-in UITableView/UICollectionView superclass category for showing empty datasets whenever the view has no content to display. This diagram looks at the AppDelegate and Applica…
#176 DZNEmptyDataSet Colours
Created by: admin   published
Language: ObjectiveC
Repository: dzenbot/DZNEmptyDataSet  github
Commit: master
Tags: featured-objc
Description: This is a diagram generated from an Objective C project on Github, with files from the Colors subdirectory. You can also play with Objective C code using the new UML fiddle pages.``

featured-py-misc

#533 Toolback /list flow
Created by: abulka   published
Language: Python
Repository: abulka/toolback  github
Commit: main
Tags: toolback list literate code map python featured-py-misc
Description: This is an example of a literate code map analysis of a bunch of classes and modules, following what calls what, and what parameters are being passed. The problem is that the 'user' parameter needs to be passed down into the functions - which is tricky, and the code m…

Delphi / Free Pascal pas

#87 JclOpenDialogHooks from jcl / JEDI Cod… pas
Created by: admin   published
Language: Pascal
Repository: project-jedi/jcl  github
Commit: master
Tags: featured-pascal
Description: Example of Delphi/Free Pascal reverse engineering - based on # JEDI Code Library The JEDI Code Library (JCL) consists of a set of thoroughly tested and fully documented utility functions and non-visual classes which can be instantly reused in your Delphi and C++ Buil…
#193 Delphi jcl - OnFileOk(), OnFolderChange… pas
Created by: admin   published
Language: Pascal
Repository: project-jedi/jcl  github
Commit: master
Tags: featured-pascal
Description: Reverse engineering of the Delphi https://github.com/project-jedi/jcl with some literate code map diagram enhancements surrounding the use of OnFileOk(), OnFolderChange(). # JEDI Code Library The JEDI Code Library (JCL) consists of a set of thoroughly tested and full…

Python - Pynsource repository

#1 App class in Pynsource
Created by: abulka   published
Language: Python
Repository: abulka/pynsource  github
Commit: master
Tags: featured-py-pynsource
Description: The App class owns an instance of Controller. The App class also has a Boot() method, as well as a Shutdown() method. The Controller is defined thus: class Controller: def __init__(self, app): self.app = app self.cmd_mgr = CommandManager(100) …
#5 pynsource - view
Created by: abulka   published
Language: Python
Repository: abulka/pynsource  github
Commit: master
Tags: featured-py-pynsource
#6 pynsource - GUI
Created by: abulka   published
Language: Python
Repository: abulka/pynsource  github
Commit: master
Tags: app canvas featured-py-pynsource
Description: The main app class **MainApp** is different to the App class in Pynsource \- containing the main GUI handlers. It points to a `umlcanvas` which is where all the fancy drawing is done, using the wxPython GUI toolkit. Here are some screenshots of what's possible to dra…

Public Diagrams by Others


#28 matplotlib collections
Created by: admin   published
Language: Python
Repository: matplotlib/matplotlib  github
Commit: master
Description: Not quite all the collection classes are visualised, in order to fit them into the diagram.
#27 matplotlib backend_bases
Created by: admin   published
Language: Python
Repository: matplotlib/matplotlib  github
Commit: master
Description: The «module» backend_managers contains various classes: * ToolTriggerEvent * ToolManagerMessageEvent * ToolManager Matplotlib is a Python 2D plotting library which produces publication-quality figures in a variety of hardcopy formats and interactive environment…
#26 tensorflow compute_bleu and how its tes…
Created by: admin   published
Language: Python
Repository: tensorflow/models  github
Commit: 7212436440eaa11293ca84befcc5d8327109ea76
Description: This is a visualisation of a tiny bit of TensorFlow, the 'transformer' package's 'compute_bleu' modules and **tests**. This TensorFlow repository contains a number of different models implemented in TensorFlow: The official models are a collection of example models t…
#25 tensorflow params dict
Created by: admin   published
Language: Python
Repository: tensorflow/models  github
Commit: 7212436440eaa11293ca84befcc5d8327109ea76
Description: The ParamsDict class of TensorFlow has this description: Instantiate a ParamsDict given a set of default parameters and a list of restrictions. Upon initialization, it validates itself by checking all the defined restrictions, and raise error if it finds inconsistency…
#16 signals and signing django
Created by: admin   published
Language: Python
Repository: django/django  github
Commit: master
Description: Just a couple more Django modules visualised. Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. Built by experienced developers, it takes care of much of the hassle of Web development, so you can focus on writin…
#15 Django registry
Created by: admin   published
Language: Python
Repository: django/django  github
Commit: master
Description: Django registry.py found in the **apps** package. Simple UML of a single module (python file).
#12 pynsource app and base cmd
Created by: admin   published
Language: Python
Repository: abulka/pynsource  github
Commit: master
Tags: command pattern
Description: Most of the commands in Pynsource are wrapped in command objects, which have an **execute** , undo and redo method. This is a classic use of the Command design pattern. ![](https://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Command_pattern.svg/1400px- Comman…
#11 Entity Component System architecture - …
Created by: abulka   published
Language: Python
Repository: abulka/wx_esper  github
Commit: master
Description: This is the architecture referred to in my forthcoming article. Here is a sample: ### Building traditional GUIs with the Entity Component System #### Is the Entity Component System any good for building traditional GUIs? Continuation of my Gui Showdown -- ECS vs Pl…
#10 "gui showdown" medium article - Python …
Created by: abulka   published
Language: Python
Repository: abulka/abulka.github.io  github
Commit: master
Description: From my forthcoming article - here is a sample: ### Implementing Object Oriented MVC in Python and also in plain Javascript vs. Vue.js Javascript framework Is converting a plain Javascript GUI app to OO MVC worth it? The Model View Controller (MVC) design pattern is…
#4 Slightly larger architectural picture r…
Created by: testing   published
Language: Python
Repository: abulka/pynsource  github
Commit: master
Tags: app command pattern
Description: A slightly larger architectural picture of **App** , **Cmd** and **Controller** classes in Pynsource.