Programming :: Utility That Draw The Graph Or Flow Chart Of An Application?

Oct 28, 2010

Does any one know any software or utility that draw the graph or flow chart of an application (if application code is on multiple files)?

View 1 Replies


ADVERTISEMENT

Security :: Flow Chart For File Access And Permissions Processing?

Jan 25, 2011

Is anyone aware of a detailed "flow chart" -- arrows and decision diamonds, etc -- that describes the file access and permissions processing? I would love to see that diagram. Years ago on a platform far away (Digitial VAX/VMS) their manuals had such a flow chart that covered not only the user-group-owner and read-write-execute permissions decision making but also include "access control list" processing at a superficial level. If someone has access to the VAX/VMS flow chart, that might be a start toward sorting what linux does.

View 4 Replies View Related

General :: Write A Script To Generate A Bar Graph / Chart / Histogram?

Feb 9, 2011

write a script to generate a bar graph/chart/histogram etc that can make the analysis part simpler.

While dealing with so much data, i fear a manual approach could lead to human errors and hence thought that a script might be a better approach.

View 4 Replies View Related

Programming :: Export An OpenOffice Chart With VB6

Nov 16, 2010

I am developing using vb6 to export a chart (line graph) to OpenOffice Calc. I am using:

Code:

Chart.diagram = Chart.CreateInstance("com.sun.star.chart.LineDiagram") to create the LineDiagram. However, it is just a line diagram. What I need is a line graph with points plotted on it. How can I make it to LineDiagram with LINES AND POINTS?

View 7 Replies View Related

Programming :: Configure Serial Port RS-232 To Use Flow Control?

Aug 2, 2010

how to configure serial port RS-232 to use flow control? The reason is without flow control is is not working properly(dala loss etc.) Im trying to run it as it is just with setting the flow control flag and Im sending my data via loop-back on the rs-232 to GTK TERM on the same computer... but when I enable IXON/IXOFF in GTK TERM, my sending program cant even open the port...

My current settings is:

Code:
struct termios termios_p;
//ferme_port();
tcgetattr(sc.fd, &termios_p);
termios_p.c_cflag = B9600;

[Code]....

View 2 Replies View Related

Programming :: Getting List Of Shell Scripts - Flow Tree

Apr 1, 2011

I am working on a build-test system of a set of codes. The system (large enough) is such that one shell script does some work and calls another shell script. This inturn calls a third shell script and so on. How to get the list of all such shell scripts according to the way they are called.? More like a shell script flow tree?

Ex.
Code:
#./1.sh
|
`--> 2.sh
|
`--> 3.sh
|
`--> 4.sh
|
`--> 5.sh ....
.
.
.
etc.

View 7 Replies View Related

Programming :: Draw A Circle In C++ Without Making Use Of BGI

Apr 10, 2010

How can one draw a circle in c++ without making use of BGI.

View 4 Replies View Related

Programming :: G++ - Draw On The Screen In X Windows Using C++?

Jun 9, 2011

I am looking for a way to draw on the screen in X Windows using c++, the GNU g++ compiler. I don't want to mess with requirements so just how to draw in x windows. Can it be done with g++ or is there something else I need to use.

View 8 Replies View Related

Programming :: Draw To Screen Without Using A GUI / Xwindows?

Mar 10, 2010

I am very new to Linux and I hope someone on here can provide some help.

Goal:
I am am developing an embedded application on Linux 2.6 that will hopefully run without a GUI. There will be no user input just simply displaying information to the user in a graphical form. I will be drawing the screen in C and outputting this to the display.

Problem:
I don't know how to draw to the display? From reading and talking with others, I think I can write to the frame buffer and that will output to the display, but I am not sure this is rite. If it is correct, can someone explain how this is done? Is there another way to draw to the screen without using the windows API?

View 11 Replies View Related

Programming :: Making A Graph In C

Dec 1, 2010

I am trying to understand how can I make a graph in C. So I wrote some program.

Code:
#include "declarations.h"
graph root = NULL;
int main()
{

[Code]....

View 6 Replies View Related

Programming :: QSplashScreen And QPainter - Draw Shapes And Gradients

Apr 7, 2011

Following on from my issues with QSplashScreen, I am wanting to investigate the QPainter class(es) some more.

Code:

How would I best achieve this:

- Draw some shapes and gradients with QPainter/QPen etc
- Create a splash screen out of it
- Display SplashScreen.
I cannot find anything that doesn't involve

Code:

I am comfortable making splash screens out of images, but now I want to try drawing one myself.

View 2 Replies View Related

Programming :: Create Graph In Gnuplot ?

Jan 3, 2010

I need a script that takes data fom a file mydata.dat and create a graph. the content of mydata.dat is Bin Data1 Data2 Data3

Then it asks from the user to select which colums with use for x and which for y. the x and y titles must be generated automaticly by the names of each column from the first line of mydata.dat the limits must also be auto generated by the width of the column (for example for data2 is 12-45). in the end for graph title must shown the current time and date in this format:

So it asks for the user the columns and in the end it shows the graph with the above settings.

View 3 Replies View Related

Programming :: Build A 2D Graph In Java As A Picture?

Feb 3, 2011

I am trying to build a 2D plot for my data and I have the code for it. However, I want to save it as a jpg/png file so that I can have a link to it for my webpage. Below is the code:

Quote:

import java.awt.*;
import java.awt.font.*;
import java.awt.geom.*;
import javax.swing.*;

[Code].....

View 1 Replies View Related

Programming :: Gnuplot Graph Using Trace File

May 1, 2011

How to plot graphs for trace files generated in ns2 using xgraph and gnuplot.

View 7 Replies View Related

Programming :: Define A Structure Node In Graph?

Oct 27, 2010

I wanted to implement a graph.By graph I mean to say that I am writing programs for BFS,DFS and other such stuff and want to see them in action. For this I started writing a program.The first entry point is to define a graph. I took a pen and paper and made a graph. Now to be able to code this in C.I defined a structure but I am finding problem in defining this structure. I looked into Google and came across incidence list and adjacency list representation [URL] after understanding that I am not able to understand how do I define my structure that would be a node in graph. Here is what my graph looks like

Quote:

|-----------31
| |
| 2---4---6---8
| |

[code]....

View 3 Replies View Related

Software :: Application/Utility For Usbmodeswitch And Wvdial?

Jan 24, 2010

Is there any particular application which can be used to do the work of usbmodeswitch and wvdial at one go?

P.S. Something other than using shell scripts to automate the tasks using the same.

View 1 Replies View Related

Programming :: Graph Creation Software (Graphviz / NetworkX)?

Apr 15, 2011

I am going to be creating some graph representations of neural networks for my thesis. I am trying to find a good method for drawing them, preferably in a scripting manner. I like NetworkX since I know python, but am also curious about GraphViz (though the documentation is sparse) or any other solutions anyone may know of. It is important that there is a decent ability to interface with LaTeX.

View 2 Replies View Related

Programming :: PHP Booleans - Print Draw The First Image From A Function Then Hide The Rest Of The Images Using 'display: None'

Jul 29, 2010

I have this function that is supposed to print draw the first image from a function then hide the rest of the images using 'display: none' however for some reason the boolean test does not seem to work on one of my servers however it works on another, is there some php.ini setting I am missing or can you see any issues with the following code:

[Code]....

View 1 Replies View Related

Programming :: Shell Translator Utility ?

Jul 25, 2010

Usability? Home: you use bash. Work, school, vacation, seminar: you're stuck using zsh or tcsh (or Drush in Drupal).

Function: Without giving errors, quietly cross-checks a non-shell command for its equivalent in the running shell and executes that command, properly-syntaxed.

Name: Well, as the word "imperative" in rudimentary linguistics is a synonym for "command," I thought of an acronym derived from the terms SHell Imperatives Translator. But this morning, I re-thought the lavatorial acronym. Considering it was a "container" of "hooks" that had the potential to operate much like a stripped-down cron or Ubuntu hook bundle, a more polite term for it would be "tacklebox".

View 2 Replies View Related

Ubuntu Installation :: Cpuid Utility Is Not Compiled With U9.04 And Utility Is Not Available As Package With Synaptic?

Feb 5, 2010

cpuid utility is not compiled with U9.04 and the utility is not available as a package with synaptic -
other distributions have it available as rpm . url

Any way to run this utility in the Debian world?

View 2 Replies View Related

Programming :: Right Utility To Rename Multiple Folders?

Sep 14, 2009

I've got about twenty folders with names such as "Bennett Galleries" or "Athletic House" and I want to rename them to "Bennett_Galleries" or "Athletic_House". Any right utility to use to accomplish this (sed, awk, bash script, etc...)?

View 2 Replies View Related

OpenSUSE :: Getting A Recommendation For A Chart Drawing Program?

May 5, 2010

I was wondering if there is a good program for drawing charts of fx programs. Flow charts, Gannt charts and such.I'm sure I can get openoffice to do it, but somehow I'm not comfortable with drawing anything in that program. I don't really know why. There is a nice program for it in the OpenSuse 11.2 with gnome, but I run KDE4. Is there a good recommendable program for this under KDE4?

View 2 Replies View Related

General :: Convert Tab Separated File To Simple X-Y Chart

Aug 27, 2009

I wrote a script which analysis apache logs. This script generates a tab separated data file. There is two columns in the data. The first column is a file name accessed from remote. The second column shows how many times a file access.

I am looking for a linux command drawing a chart corresponding data.of course, I know that I can draw the chart in OpenOffice Calc. That's not what I need. Because there is some steps to do for a simple chart drawing. If there is a command line tool, then I can write a script that drawing a chart when the data file is updated.

View 6 Replies View Related

Programming :: Write A Utility Which Will Scan In A Text File And Search And Replace Strings?

Jul 16, 2010

Something very handy to do in a Linux shell, is manipulating files and strings - essentially parsing data. Write a utility which will scan in a text file and search and replace strings. We also want to keep track of how many strings we've replaced.

I know that my command would look like this: <utility name> <filename> <stringToSearchFor> <stringToReplaceWith>
Code: #!/bin/bash

[code]....

View 2 Replies View Related

Software :: Run A Java App From A Stock Chart Service Called ThinkorSwim?

Nov 15, 2010

I'm trying to run a java app from a stock chart service called ThinkorSwim. I've tried it in NetrunnerOS2, Ubuntu 10.4 and Ubuntu 10.10. All of them result in the same java error.:I'm running Sun Java 6 update 22 on all these OSs.The install seemed to go OK, and I get the splash screen when it starts up and I get a "loading desktop" type of message then it throws that error. I've googled for 2 days and nothing I find is dealing with this error.

View 8 Replies View Related

Fedora :: Firefox Wont Display Team Icons Or Drive Chart

Dec 22, 2009

running Fedora 12 (worked fine when I used ubuntu) [URL] gamecenter... firefox will not display the team icons or the drive chart...what am i missing? Chrome does it perfectly.

View 4 Replies View Related

General :: Script Execution Flow Stopped?

Apr 1, 2010

Now my script is able to start server, But I am still have some problem with my script. When the start server command is executed, the control does not pass the line and does not execute further of that line.what is the problem and how can I get smooth execution of the my script. My Script:

SUBIT="su - adminuser -c "
SERVER_BOX_COMMAND_A="Server"
##############

[code].....

View 1 Replies View Related

General :: Flow Control In Bash Pipe?

Jul 25, 2010

Two processes are communicating through a pipe: A | B. A is writing data faster than B is reading it in. Is there any way to have A limit its writing rate to match B's reading rate?

AFAIK the pipe will get full, and will make A's writing block, waiting for B to read in more data. But is there a way to limit A's writing rate before the pipe fills up? (In a way it's like having a pipe with a really small capacity, but as far as I know pipe capacity is a constant compiled into the kernel.)

Code:

EXAMPLE FOR CLARIFICATION

Right now the command is printing out the following in 1-second intervals:

But with flow control it should print out (again in 1-second intervals):

...since "date" would block on the writing loop due to the slow reading loop.

View 4 Replies View Related

Ubuntu Security :: Check Data Flow For Viruses?

Aug 2, 2010

i was thinking that is there a way to check data flow for viruses? i mean if i set up calm av in my internet sharing server could it detect anything in incoming and outgoing data ?!!

View 2 Replies View Related

Ubuntu :: Nautilus Elementary Clutter Flow - ATI Official Driver Crash

May 8, 2011

i successfully installed the nautilus elementary on ubuntu 11.04 and the clutter flow as well and it was working as charm, but when i installed the ATI official driver, it starts to crash ( i mean clutter flow ), i uploaded a screen-shot of what it turns to.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved