MJinH

Results 31 comments of MJinH

very excited for apache viewer project

very excited for apache viewer project

Hello everyone, I'd like to share how to run pgAdmin using docker for those who might have difficulty in connecting database. First, you need to install docker. Here's a link...

> I believe the graph path is just the path name of graph, so it can be the name of any graph. After connecting to the database, the connection status...

I believe DFS (Depth First Search) is a technique for traversing data in graphs and it uses stack data structure. The DFS is usually a recursive algorithm and it pushes...

Code for BFS ``` const bfs = (graph, node) => { let visited = []; let nodes= []; nodes.push(node); while (nodes.length !== 0) { const newNode = nodes.shift(); if (!visited.includes(newNode...

When I run the query that you provided, it is placed correctly under node label. Could you make sure if you've cloned from main branch or share the order of...

Thank you for providing it. I keep running the queries in the provided order above and it seems that I get the correct result. ![Screenshot (125)](https://user-images.githubusercontent.com/97130553/213263105-0d45c9bc-8883-45ec-bfb6-07797349c8af.png) I'd just like to...

I'm also using postgres version 11 and I get the correct result. This is the data output from query for the version 11 metadata. ![Screenshot (126)](https://user-images.githubusercontent.com/97130553/213283782-6d00d14c-7d97-4a4d-b83b-9732355839ee.png) I've looked at the...