36 questions
2
votes
2
answers
720
views
Exploring Real-time Code Execution Visualization in Node.js with React and Socket.io
I'm currently working on a project involving real-time code execution visualization in Node.js, using React on the front end with Socket.io for communication. The key components include user-written ...
1
vote
0
answers
293
views
how to use pythontutor.com visualization in pycharm or visual studio IDE
since im new in coding using a visual debuger is a big help for me to understand the codes im writing , using pythontutor.com or thonny app is very helpful as long as we do not import any external ...
-1
votes
2
answers
1k
views
Possible approach to visualize the Tower of Hanoi problem [closed]
I recently started learning more about recursion in Python and quickly got myself into the Tower of Hanoi problem.
I already have a recursive solution in Python, which prints the moves I should play ...
0
votes
1
answer
220
views
C++ plotting libraries for visualizing the solution of TSP using Genetic Algorithms
I'm building a project to solve TSP using genetic algorithms in C++. I'm looking for C++ plotting libraries that I can use to visualize the solution. I found a video on youtube & was wondering if ...
1
vote
5
answers
2k
views
How does this specific nested for loop work in vanilla JavaScript?
I got a quiz question in my Full Stack Web Development online course that states the following:
let sum = 0;
for (let i = 0; i < 5; i++) {
for (let j = 0; j < 2; j++) {
sum = sum + i ...
1
vote
1
answer
121
views
Represent more than 20 levels in a glmtree
Currently I am working with the glmtree() function in R. I have some factor variables with 20+ levels. The problem comes with the representation of the tree. There is some information at certain leafs ...
-3
votes
1
answer
2k
views
How can I visualize network architectures effectively? [closed]
Is there some sort of software that can do so? Specifically, I would like to visualize Resnet18. Is there no other way other than to just draw it myself? Here is an example of what I want to see:
...
6
votes
0
answers
615
views
Interactive Flowchart Like Code Map When Debugging JavaScript (in Visual Studio Code)?
When reading some big open source projects' codes, it'd be pleasant if there's a view that shows the visualization result of program executing flow when debugging JavaScript. So if there're any tools ...
-2
votes
1
answer
1k
views
Static code visualization tool for any language? [closed]
As the title suggests, I'm hoping for a static code visualization tool that can support any language.
I'm hoping there is some tool which can be given some information about the language, and ...
12
votes
2
answers
4k
views
Visualizing R code with a flow chart
Are there any tools that can visualize R code?
I have some very complex R code split between several scripts that I need to understand. Part of the difficulty of this is that there are so many nested ...
1
vote
0
answers
151
views
Code Visualization and Arrow Annotations
I would like to generate a code visualization that displays
full source code file
with arrows connecting lines
Syntax highlighting (initially PHP, but extensible)
To clarify, I have an analysis that ...
2
votes
2
answers
121
views
Are there concrete tools or methods for visualizing the structure of a program/project?
I'm working on some beginner programming tutorials and am finding it difficult to keep track of the many modules and functions involved, their purpose (abstractly), and their interrelationships. I'd ...
-2
votes
1
answer
236
views
developing an algorithm visualization/simulation
I would like to develop a visualization tool that able to read c programming syntax. The code will includes some functions call, timing information and some triggering mechanism. By recognizing all ...
0
votes
0
answers
824
views
R ggplot grid of rectangles, borders top, bottom, left right individual colors
I am trying to make an image like the below (generated in MATLAB) in R.
I need to use ggplot because I need to add rectangles to the "grid" one by one and set the background of each rectangle ...
2
votes
2
answers
826
views
Visualising complex code flows in Visual Studio
I have one very old code-base which consists of C++, VB and Classic ASP nonsense and I am trying to understand some code flows there. Unfortunately, there are many projects written in different ...
2
votes
1
answer
1k
views
Does a Tool for Automatically Visualizing a Project's Source Code's Control Flow In-Line Exist?
I would like to be able to use a tool that lets you visualize a program's control flow(s) in the context of its source code. To clarify, such a tool should basically ...
1
vote
2
answers
580
views
Visual representation of classes and/or objects
recently I started to work on some big project written in php/js.
It is really big and I have constant problem of backtracing what functions are called where.
Is there any tool, that would import ...
20
votes
3
answers
13k
views
Which tool allows to generate such nice source code pictures? [closed]
examples below. I am pretty sure that there is online free tool that can do it. But I lost a link :(
May be someone has the link?
http://habrastorage.org/storage2/c43/58e/013/...
4
votes
1
answer
5k
views
Are there any programs that can visualize structure of C++ code? [duplicate]
I have source code that contains more than hundred source files and it is hard to understand what it does, how functions use each other, what is the flow of the execution....
Are there any programs ...
5
votes
1
answer
716
views
Visualize s-expressions in real-time
I want to write Lisp/Scheme/Clojure code like this
(map inc (range 0 5))
And have it visualized somewhat like this
map -- inc
\\
range -- 0
\
-- 5
I want to see ...
8
votes
2
answers
4k
views
MATLAB code analysis and visualization tools?
I just picked up a MATLAB codebase that's light on documentation and original developers (who all shot through long ago).
I'm comfortable with MATLAB but could still use some static analysis tools ...
5
votes
1
answer
1k
views
code visualizer for Racket programs
Is there a code visualization website for Racket programs (for novice WeScheme users) similar to what is available at Online Python Tutor? Needless to say, it would provide a great self-teaching or ...
2
votes
0
answers
94
views
IDE or plugin to add helpful graphics or illustrate code as-is?
I was staring at my code thinking how boring the text looks.
All I see is text, with no visualizable structure.
Visualizable structures would be awesome:
Background graphics such as 3D half-pipes on ...
285
votes
20
answers
201k
views
How can I get a side-by-side diff when I do "git diff"?
When I type git diff, I'd like to see a side-by-side diff, like with diff -y, or like to display the diff in an interactive diff tool like kdiff3. How can this be done?
13
votes
3
answers
3k
views
Class visualization tools for Objective-C?
Does anyone know of any static class/code explorer/visualisation tools for Objective-C? Something to help become familiar with large code-bases?
Thanks!
1
vote
2
answers
743
views
UML or CASE tool to analyze *huge* JavaScript code base?
I have to figure out how a huge JavaScript code base works and I'm wondering if there are any CASE/UML tools to analyze its structure. I understand that there are several limitations because of the ...
7
votes
3
answers
4k
views
Java source code display in a browser?
I have my Java source code in the standard src/ lib/ test/ directory structure for my project. I want to generate a web view of my source code where I can fire up a browser and see syntax-highlighted, ...
3
votes
2
answers
918
views
Dependency Graphs similar to VS 2010 Ultimate?
I'm looking for a visualization tool for net code dependency graphs similar to Dependency Graphs feature of VS 2010 Ultimate.
http://msdn.microsoft.com/en-us/library/ee847415.aspx
Since VS 2010 ...
1
vote
3
answers
901
views
Scheme: Convert Code to picture
I have a weird Scheme question. This is a part of something bigger that I'm helping a friend with.
I need to convert a Tree:Data into an image that accurately represents the tree (I'm sorry I don't ...
47
votes
10
answers
35k
views
How should I visualize the structure of my code? [closed]
I have an application written in Java. In is stored in several files. It uses different classes with different methods. The code is big and complicated. I think it would be easier to understand the ...
3
votes
1
answer
5k
views
Qt Dependency Visualizer
I have a lot of classes which interact with other classes through signal&slot mechanism, composition, inheratance etc.
I wonder, is there any tool which visualizes(such as:UML-like diagrams) ...
1
vote
1
answer
2k
views
Eclipse Code Visualizer
Is there code visualizer available (preferred as eclipse plugin)?
3
votes
2
answers
737
views
overview/understand architecture codes in eclipse
I have a maven project imported into Eclipse. I'm trying to understand the code pattern (architecture). What is the best way to do this?
will use any UML Eclipse plugin help on this?
will use ...
7
votes
7
answers
4k
views
Is it possible to display of the tree structure of the Java-code?
I am a newbie in Java. I am trying to figure out how to work this code. It seems to me that it would be very useful if in the beginning I get the general structure of the code (which methods exists ...
7
votes
3
answers
3k
views
Algorithm visualization for C#
Is there any software that visualizes algorithms from code? As a flow chart of something similar. Not dependencies, inheritance and that kind of thing, but the code inside a function, or a series of ...
2
votes
1
answer
162
views
Can I configure code_swarm to only create the png files sans visual display?
Is there a way to configure code_swarm to only create the .png files. I think it would speed up the processing if it wasn't trying to display as it created the images.
I've looked in the FAQ, but ...