Trending

#GraphVIZ

Latest posts tagged with #GraphVIZ on Bluesky

Latest Top
Trending

Posts tagged #GraphVIZ

Original post on mastodon.longlandclan.id.au

Silly question for the static webpage people here…

I want to put together a documentation webpage for a system that a few of us have developed. This isn't API documentation, but rather end-user documentation. Some of it will discuss deployment instructions, but there'll be a lot of diagrams and […]

0 0 1 0
Herdsim, a Distributed Systems Simulator written in Pony herdsim is a distributed systems simulator written in Pony. It is a rewrite of dssim, a simulator I wrote several years ago in C.

Herdsim, a Distributed Systems Simulator written in Pony

www.mirkomariotti.it/posts/2026-0...

#projects #herdsim #ponylang #simulator #distributed #distributed_systems #distributed_computing #graphviz

1 0 0 0
Preview
Stop Right There: Conducting Fraud Detection with Aerospike Graph Discover how to detect fraudulent financial transactions with speed and accuracy using G.V() and Aerospike Graph Database in this developer walkthrough.

Fraud is big business.

In this blog, Amber Lennox walks you through a straightforward fraud detection exercise using @aerospikedb.bsky.social Graph and G.V() to analyze #banking data and accurately identify fraudulent transactions in no time:

gdotv.com/blog/aerospi...

#finserv #graphviz

2 1 0 0
Preview
The Weekly Edge: Linkurious Gets Acquired, CDL Wraps, Graph Benchmarks for TinkerPop & More [5 December 2025] Discover what’s new this week in graph technology, including a big acquisition, a pre-seed investment, a 360-degree take on Connected Data London, and more.

The Weekly Edge:

Discover what’s new this week in graph technology, including a big acquisition, a pre-seed investment, a 360-degree take on Connected Data London, new Gremlin benchmarks, and more.

Catch it here: gdotv.com/blog/weekly-...

#graphviz #graphdatabases #RDF #AWS

2 1 0 0
Preview
G.V() Snatches Up £500,000 in First Cheque Investment from Techstart Ventures Learn all about G.V()’s recent $658,000 pre-seed investment round from Techstart Ventures and what’s ahead for the product, company, and graph community.

Big news! Today, we’re thrilled to announce that G.V() has received a £500,000 (~US$660,000) pre-seed investment round from Techstart Ventures! 🎉🥳💰

There are many, many people to thank, but let's start with the story of how we got to this moment: gdotv.com/blog/first-c...

#graphviz #graphdatabases

3 0 0 0
Preview
The Weekly Edge: Dgraph Lives, RyuGraph Rises, Gephi Lite & More [31 October 2025] Discover what’s new in the world of graph technology this week, including a Dgraph acquisition, a new fork of Kuzu, the release of Gephi Lite, and more.

This week's headlines from the world of #graphdatabases and graph tech:
* Meet #RyuGraph
* #Dgraph finds a new patron
* Dave Bechberger from #AWS talks AI memory
* Ontology design 101
* Gephi Lite v1.0 is here (ICYMI)

More here: gdotv.com/blog/weekly-...

#Kuzu #Ontologies #AmazonNeptune #Graphviz

3 1 0 0

Overview: HN discussed 'iongraph' as a custom Graphviz alternative. Topics included Graphviz nuances, benefits of specialized algorithms, challenges of large graph visualization, and alternative tools. A rich dive into graph tooling! #GraphViz 1/6

0 0 1 0
Preview
The Weekly Edge: LDBC No More, Memgraph 3.5, FinCrime (Prevention), & More [25 September 2025] Discover what’s new in the world of graph technology this week, including the end of the LDBC (as we know it), a new graph approach to smart buildings, and more.

The Weekly Edge: The @GraphCouncil Has Spoken, @memgraphdb 3.5 Arrives, Preventing #FinCrime & More
// by @bwmerkl.bsky.social @gdotv.bsky.social‬

This week’s graph tech tl;dr: gdotv.com/blog/weekly-...

#graphdatabases #Neo4j #Kuzu #GraphViz

3 1 0 0

Had fun at work today showing off my #Graphviz skills ... the software architect's friend! Drew a complex diagram in "real time" during a meeting to successfully explain a system integration.

Just because something is old doesn't mean it is worthless; will that apply to me too in a few years?! 😀

1 0 0 0
Preview
The Weekly Edge: Graph Size Matters, TuringDB, & (Somehow) Guy Fieri [15 August 2025] Discover what’s new in the world of graph technology this week, including a brand-new graph database, some thoughtful KG discussions, a graph viz game, & more.

The Weekly Edge: Graph Size Matters, a New #GraphDatabase, & (Somehow) a Guy Fieri #GraphViz [15 August 2025]
by @bwmerkl.bsky.social @gdotv.bsky.social

Read this human-curated graph news roundup here & every Friday: gdotv.com/blog/weekly-...
#DataViz #KnowledgeGraphs

0 0 0 0
— In UML create a comment note.

— In UML diagrams, a **comment** (or “note”) is shown as a rectangle with a dog-eared corner.
Graphviz can mimic this by using `shape=note`.

Example in DOT:

```dot
digraph UML_Comment {
    rankdir=LR;
    node [fontname="Arial", fontsize=12];

    // Regular UML component
    A [label="«component»\nOrder Service", shape=component];

    // UML comment
    Cmt [label="Processes orders\nand handles payments", shape=note, style=filled, fillcolor="#ffffcc"];

    // Dashed association from comment to element
    Cmt -> A [style=dashed, arrowhead=none];
}
```

**Key points:**

* `shape=note` → dog-eared corner rectangle.
* `fillcolor` → makes the note background match UML style (light yellow is common).
* `style=dashed, arrowhead=none` → matches UML’s “annotates” relationship from a comment to a model element.

---

If you want, I can insert UML comment nodes into your **O1/O2 Graphviz diagram** to annotate entire clusters or specific tasks, so they look like sticky notes connected to the relevant part. Would you like me to do that?

— In UML create a comment note. — In UML diagrams, a **comment** (or “note”) is shown as a rectangle with a dog-eared corner. Graphviz can mimic this by using `shape=note`. Example in DOT: ```dot digraph UML_Comment { rankdir=LR; node [fontname="Arial", fontsize=12]; // Regular UML component A [label="«component»\nOrder Service", shape=component]; // UML comment Cmt [label="Processes orders\nand handles payments", shape=note, style=filled, fillcolor="#ffffcc"]; // Dashed association from comment to element Cmt -> A [style=dashed, arrowhead=none]; } ``` **Key points:** * `shape=note` → dog-eared corner rectangle. * `fillcolor` → makes the note background match UML style (light yellow is common). * `style=dashed, arrowhead=none` → matches UML’s “annotates” relationship from a comment to a model element. --- If you want, I can insert UML comment nodes into your **O1/O2 Graphviz diagram** to annotate entire clusters or specific tasks, so they look like sticky notes connected to the relevant part. Would you like me to do that?

Many years ago I contributed to #GraphViz code for several new node shapes, including UML notes. Now #ChatGPT advises me how to use them! 😃

5 0 0 0
Preview
Plain simple dependency diagram with GraphViz This is a note-to-self style post 😉 Today I needed a simple graph to propose a re-engineering of a Terraform module of ours. I could of course use a tool like LibreOffice Draw, or maybe ask AI to g…

A note-to-self blog post: Plain simple dependency diagram with GraphViz syslog.me/2025/07/30/p...
#graphviz #devops #diagram

0 0 0 0
Jokainen Suomen kansallispuisto on esitetty suunnillen oikeassa sijainnissaan joko ellipsinä (40 kpl) tai ympyränä (yksi).

Jokainen Suomen kansallispuisto on esitetty suunnillen oikeassa sijainnissaan joko ellipsinä (40 kpl) tai ympyränä (yksi).

Graphviz – kuten arvelinkin – tarjosi ratkaisun. Neato-algoritmillä graafin attribuuteiksi overlap=vpsc, overlap_scaling=0. Jokainen kansallispuisto fixedsize=true, shape=ellipse, overlap=false ja pos-attribuutti oikeaan kohtaan. Sitten kaikkien solmujen […]

[Original post on mastodon.social]

0 0 1 0
Preview
The Weekly Edge: Kuzu Release, GraphRAG Course, Graph Theory, & More [18 July 2025] Discover what’s new in the world of graph technology this week, including a new GraphRAG course, a Kuzu release, a podcast on graph pathfinding, and more.

I edit a weekly tl;dr of graph tech news and resources for @gdotv.bsky.social called the Weekly Edge and here's the first edition: gdotv.com/blog/weekly-...

If you want to keep up with the world of #graphdatabases #graphviz and other #OSS graph tech, check it out.

1 0 0 0
Post image

For God’s sake, Ubuntu — Graphviz 2.42 was released more than 5 years ago! How much longer do we have to wait for you to catch up? This is ridiculous. Just don’t become another Debian stuck in the past.

#ubuntu #debian #graphviz

0 0 0 0
Post image Post image

I'm having fun exploring ways to visualise the history of BINs in @boldsystems.bsky.social using #graphviz Below is the history of BOLD:AAH8697 which is a BIN highlighted by @rudolf-meier.bsky.social in doi.org/10.1111/cla..... Columns are time-slices and the coloured boxes are bins.

11 2 2 0

Next up at #KGC2025 is the winner of our startup competition: Congrats to the team at @gdotv.bsky.social !

G.V() is a graph database client and IDE that makes it easy to query, visualize, model, and explore your connected data.

#graphdatabases #knowledgegraphs #GraphViz

2 2 0 0

Проте вплинути на те, як краще розмістити вузли на діаграмі, на жаль, не можливо. Цього дуже бракує в більш складних діаграмах. В цьому сенсі 35-річний #graphviz все ще поза конкуренцією, навіть не зважаючи на свій трохи ускладнений синтаксис.

1 0 1 0
a configuration file for a graphviz dot layout

a configuration file for a graphviz dot layout

After calculating the service dimensions, the dot file gets generated and fed into the #graphviz dot algorithm. The output is used to create the final Graph object which is returned to the client and rendered. The node with id 2 is the Service in this case.

1 0 1 0

There are lots of options out there for doing this, many of them are tied to some framework or graphing engine. Since I'm rolling my own flow chart editor I needed a way to be able to invoke the layout algorithm.

After poking around for a while, I landed on the dot tool from graphviz.

#graphviz

0 0 1 0
Preview
11 best open source tools for Software Architects | Cerbos Learn about the best open-source tools for software architects, from diagramming and modeling to access control. Discover tools like Graphviz, PlantUML, Mermaid, and Cerbos to enhance system design, c...

Good article on #OpenSource diagramming tools for #SoftwareArchitects - #PlantUML, #GraphVIZ, #Mermaid etc. Still trying to wean off of #Visio, #OmniGraffle 🙂 .. thanks @cerbos.dev

0 0 0 0
Hackers' Pub에서 DOT 언어(Graphviz)로 다이어그램 그리기 Hackers' Pub의 숨겨진 기능 중 하나는 Graphviz의 DOT 언어를 지원한다는 것입니다. 예를 들어, 다음과 같은 다이어그램을 그릴 수 있습니다: SimpleActivityPub server_a 서버 A (Mastodon) server_b 서버 B (Hackers' Pub) server_a->server_b ActivityStreams 데이터 전송 (HTTP POST) server_b->server_a 응답 및 상호작용 (HTTP POST) Graphviz를 이용하는 법은 간단합니다. Markdown의 코드 블럭 문법 안에 DOT 언어로 다이어그램을 기술하신 뒤, 코드 블럭의 언어 태그에 `graphviz`를 붙이시면 됩니다. 위에서 예를 든 다이어그램은 Markdown에서 아래와 같이 쓰면 됩니다: ```graphviz digraph SimpleActivityPub { graph [rankdir=LR, fontname="sans-serif", bgcolor="white"]; node [fontname="sans-serif", shape=box, style="rounded,filled"]; edge [fontname="sans-serif"]; server_a [label="서버 A\n(Mastodon)", fillcolor="#AED6F1"]; server_b [label="서버 B\n(Hackers' Pub)", fillcolor="#A3E4D7"]; server_a -> server_b [label="ActivityStreams 데이터 전송\n(HTTP POST)", color="red"]; server_b -> server_a [label="응답 및 상호작용\n(HTTP POST)", color="blue"]; } ``` 참고로 Graphviz는 긴 게시글 뿐만 아니라 단문에서도 똑같이 지원합니다.
1 1 0 3
GitHub - smlabto/GraphOptima Contribute to smlabto/GraphOptima development by creating an account on GitHub.

The source code and documentation for GraphOptima are available on GitHub. github.com/smlabto/Grap... #SNA #NetworkScience #GraphViz

0 0 0 0

[New Paper + Source Code] GraphOptima: A graph layout optimization framework for visualizing large networks socialmedialab.ca/2025/01/20/g... #SNA #NetworkScience #GraphViz #AcademicSky

6 2 1 0
Awakari App

Trying to generate Entity Relationship Diagram from an Aurora Postgres 15.4 on AWS with SchemaSpy...

stackoverflow.com/questions/79385218/tryin...

#postgresql #graphviz #erd #schemaspy

Event Attributes

0 0 0 0
Original post on fediscience.org

FTR, this paper was written entirely in #orgmode in #Emacs: a simple export to LaTeX and then upload resulting files (including images created via src blocks, e.g. with #gnuplot, #graphviz, and #PlantUML) to #arXiv. Thank you to all the code developers for all those tools for creating such a […]

0 4 0 0
A flow chart of the new GraphOptima framework's main modules: the Optimizer to explore the objective space of various solutions; the Layout Generator(s) to create a network layout based on a set of parameters; and the Layout Evaluator(s) to assess the readability of the resulting layout based on a set of readability metrics.

A flow chart of the new GraphOptima framework's main modules: the Optimizer to explore the objective space of various solutions; the Layout Generator(s) to create a network layout based on a set of parameters; and the Layout Evaluator(s) to assess the readability of the resulting layout based on a set of readability metrics.

A scatter plot depicting the "Objective Space of Layout Solutions for a Randomly Generated ‘Price’ Network"
The graphic shows the Pareto front as a scatter plot, representing possible layout solutions for a sample network with 10,000 nodes and 9,999 edges. The network is generated using a preferential attachment model. Each dot represents a ForceAtlas2 layout with specific parameter values for Scaling Factor, Gravity, and Max Iter (the number of iterations). The X, Y, and Z coordinates correspond to the values of the three readability metrics used for optimization: Crosslessness, Normalized Edge Length Variance, and Minimum Angle.

A scatter plot depicting the "Objective Space of Layout Solutions for a Randomly Generated ‘Price’ Network" The graphic shows the Pareto front as a scatter plot, representing possible layout solutions for a sample network with 10,000 nodes and 9,999 edges. The network is generated using a preferential attachment model. Each dot represents a ForceAtlas2 layout with specific parameter values for Scaling Factor, Gravity, and Max Iter (the number of iterations). The X, Y, and Z coordinates correspond to the values of the three readability metrics used for optimization: Crosslessness, Normalized Edge Length Variance, and Minimum Angle.

🚨[New Year, New Paper] 🚨Introducing "GraphOptima: A graph layout optimization framework for visualizing large networks (500k+ nodes/ 1M+ edges)" #SNA #SocialNetworkAnalysis #NetworkScience #GraphViz #HighPerformanceComputing www.sciencedirect.com/science/arti...

29 19 3 2

Played around with #graphviz visualization for part 2, but nothing jumped out at me. I guess it'll be the hard way. graphviz.org

0 0 1 0
Critical Path Method (CPM): Schedule Network Diagram #shorts #graphviz #javascript #observable #pmp
Critical Path Method (CPM): Schedule Network Diagram #shorts #graphviz #javascript #observable #pmp YouTube video by Christophe Yamahata

Critical Path Method (CPM): Schedule Network Diagram #graphviz #javascript

youtube.com/shorts/gs7mv...

1 0 0 0
Post image Post image

Need to make a (social) network graph or hierarchical graph? Here's my how to using #stata and #Graphviz!

blog.uvm.edu/tbplante/202...

#episky #statssky

11 2 0 0