Main > Free Download Search >

Free external viewer software for linux

external viewer

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1264
external IP 0.9.9

external IP 0.9.9


external IP shows your current external IP in the browsers statusbar. more>>
external IP shows your current external IP in the browsers statusbar.

External IP is set to check your IP address once every hour.

<<less
Download (0.004MB)
Added: 2007-07-23 License: MPL (Mozilla Public License) Price:
846 downloads
K Executable Viewer 0.1

K Executable Viewer 0.1


K Executable Viewer is a KDE executable viewer. more>>
Kbview - also known as the K Executable viewer - is a program that is designed to allow you to browse most executable formats. At present only ELF is supported.

This program is presently in pre-alpha state. While I have a general idea of how I want the development to proceed, and I am taking steps towards this goal (the release that is on this page is not the bleeding edge code), it is not there yet. I have released this code only as a proof of concept, and in the hope that anyone that finds it useful will contribute to it.

In short, not everything is implemented, and not everything that is implemented works. Also, not everything that is implemented is in its final state, even if it does work.

At present you can: Open executable files, get a list of the sections, view the string, symbol, and note tables (though note support is presently half-assed), and partial support for demangling the symbols is also provided.
<<less
Download (0.79MB)
Added: 2005-03-07 License: GPL (GNU General Public License) Price:
1695 downloads
External Site Catalog 1.2

External Site Catalog 1.2


External Site Catalog allows you to index and search external sites in a Plone site. more>>
External Site Catalog allows you to index and search external sites in a Plone site.

ExternalSiteCatalog is a web crawler that can index external sites and make them searchable in Plone.

You can specify the sites to index in a Plone Configlet, and directly index them from Plone, or let a scheduler do the job.

Searching the external sites is done in a special portlet that is installed with ExternalSiteCatalog.

External sites are not searchable in the normal Plone catalog, but are only available in a separate catalog in the portal_externalcatalog tool.

<<less
Download (0.20MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
988 downloads
Sort::External 0.16

Sort::External 0.16


Sort::External is a Perl module that can sort huge lists. more>>
Sort::External is a Perl module that can sort huge lists.

SYNOPSIS

my $sortex = Sort::External->new( -mem_threshold => 2**24 );
while ( ) {
$sortex->feed($_);
}
$sortex->finish;
while ( defined( $_ = $sortex->fetch ) ) {
&do_stuff_with($_);
}

Problem: You have a list which is too big to sort in-memory.
Solution: "feed, finish, and fetch" with Sort::External, the closest thing to a drop-in replacement for Perls sort() function when dealing with unmanageably large lists.

How it works:

Cache sortable items in memory. Periodically sort the cache and empty it into a temporary sortfile. As sortfiles accumulate, interleave them into larger sortfiles. Complete the sort by sorting the input cache and any existing sortfiles into an output stream.

Note that if Sort::External hasnt yet flushed the cache to disk when finish() is called, the whole operation completes in-memory.

In the CompSci world, "internal sorting" refers to sorting data in RAM, while "external sorting" refers to sorting data which is stored on disk, tape, punchcards, or any storage medium except RAM -- hence, this modules name.

Stringification

Items fed to Sort::External will be returned in stringified form (assuming that the cache gets flushed at least once): $foo = "$foo". Since this is unlikely to be desirable when objects or deep data structures are involved, Sort::External throws an error if you feed it anything other than simple scalars.

Taint and UTF-8 flags

Expert: Sort::External does a little extra bookkeeping to sustain each items taint and UTF-8 flags through the journey to disk and back.

METHODS

new()
my $sortscheme = sub { $Sort::External::b $Sort::External::a };
my $sortex = Sort::External->new(
-mem_threshold => 2**24, # default: 2**20 (1Mb)
-cache_size => 100_000, # default: undef (disabled)
-sortsub => $sortscheme, # default sort: standard lexical
-working_dir => $temp_directory, # default: see below
);

Construct a Sort::External object.

-mem_threshold -- Allow the input cache to consume approximately -mem_threshold bytes before sorting it and flushing to disk. Experience suggests that the optimum setting is somewhere between 2**20 and 2**24: 1-16Mb.
-cache_size -- Specify a hard limit for the input cache in terms of sortable items. If set, overrides -mem_threshold.
-sortsub -- A sorting subroutine. Be advised that you MUST use $Sort::External::a and $Sort::External::b instead of $a and $b in your sub. Before deploying a sortsub, consider using a GRT instead, as described in the Sort::External::Cookbook. Its probably a lot faster.
-working_dir -- The directory where the temporary sortfiles will reside. By default, this directory is created using File::Temps tempdir() command.
feed()

$sortex->feed( @items );

Feed one or more sortable items to your Sort::External object. It is normal for occasional pauses to occur during feeding as caches are flushed and sortfiles are merged.

finish()
# if you intend to call fetch...
$sortex->finish;

# otherwise....
use Fcntl;
$sortex->finish(
-outfile => sorted.txt,
-flags => (O_CREAT | O_WRONLY),
);

Prepare to output items in sorted order.

If you specify the parameter -outfile, Sort::External will attempt to write your sorted list to that location. By default, Sort::External will refuse to overwrite an existing file; if you want to override that behavior, you can pass Fcntl flags to finish() using the optional -flags parameter.

Note that you can either finish() to an -outfile, or finish() then fetch()... but not both.

fetch()
while ( defined( $_ = $sortex->fetch ) ) {
&do_stuff_with($_);
}

Fetch the next sorted item.

<<less
Download (0.022MB)
Added: 2007-05-21 License: Perl Artistic License Price:
886 downloads
Gerber Viewer 1.0.2

Gerber Viewer 1.0.2


Gerber Viewer is a free Gerber viewer. more>>
Gerber Viewer in short gerbv is a viewer for Gerber files. Gerber files are generated from PCB CAD system and sent to PCB manufacturers as basis for the manufacturing process. The standard supported by gerbv is RS-274X.

The basic difference between RS-274D (the old standard) and RS-274X is basically the addition of apertures in RS-274X. It might be possible to make an RS-274X file out of an RS-274D file and an aperture list.

gerbv also supports drill files. The format supported are known under names as NC-drill or Excellon. The format is a bit undefined and different EDA-vendors implement it different. But basically you need to have the tools definition in the file, then the parser is quite tolerant. The different holes are shown as dots in the (scaled) correct size.

The different layers of the PCB are separated into different files. gerbv can load all files at the same time and display them "on top of each other". You can independently turn them on and off.

<<less
Download (1.0MB)
Added: 2006-07-30 License: GPL (GNU General Public License) Price:
708 downloads
image-viewer

image-viewer


image-viewer is a very simple Kommander script to view images. more>>
image-viewer is a very simple Kommander script. But written following one of the 2-3 tutorials you can find on the net. Included in tarball you can find this guide to introduce in Kommander GUI. The site is: http://applications.linux.com/article.pl?sid=04/12/17/2033227&tid=49 and was written in 2004 by Michał Kosmulski

I know people want to use this great program..but documentations are very poor...this example helps people who wants to learn something about simple array, combobox, label and connections between signals and slots..very very important.

So, i hope the guide and the example will be usefull.

<<less
Download (0.037MB)
Added: 2006-09-11 License: GPL (GNU General Public License) Price:
1166 downloads
ThinkFree Viewer 1.1

ThinkFree Viewer 1.1


ThinkFree Viewer allows you to view ThinkFree or Microsoft Office word processing, spreadsheet, and presentation files. more>>
ThinkFree Viewer allows you to view ThinkFree or Microsoft Office word processing, spreadsheet, and presentation files without having any other office applications installed. After installing the appropriate Widget simply drag and drop files from your desktop, or copy and paste the Web URL into the ThinkFree Widget.

ThinkFree Widgets allows users to open email attachments with ease, and supports the following file formats: .doc, .rtf, .txt, .xls, .csv, .ppt, and .pps.

<<less
Download (0.004MB)
Added: 2007-06-06 License: MPL (Mozilla Public License) Price:
1320 downloads
conntrack viewer 1.3

conntrack viewer 1.3


The Multithread Network Port Scanner uses 50 POSIX threads to scan hosts. more>>
The Multithread Network Port Scanner uses 50 POSIX threads to scan hosts. In 1 minute Up to 1000 ports can be scanned by it .
Conntrack-Viewer is a perl script to view the masquerading connections with iptables, it uses /proc/net/ip_conntrack
With ipchains, it was extremely easy to view the masquerading connections, netstat -M or netstat --masquerade gave you the result right away.
But since iptables, if you try this you will get: "netstat: no support for `ip_masquerade on this system.". With iptables, the informations regarding the masquerading connections are accesible via /proc/net/ip_conntrack wich is extremely hard to read
This is why Conntrack-Viewer is so helpfull, it make those criptic results a lot more legible.
Enhancements:
- changed the service detection to use distant AND source port
<<less
Download (0.010MB)
Added: 2006-07-03 License: GPL (GNU General Public License) Price:
1210 downloads
GeoTIFF Viewer 1.0.1

GeoTIFF Viewer 1.0.1


GeoTIFF Viewer is a simple viewer for GeoTIFF files, which are georeferenced raster images, typically used for maps. more>>
GeoTIFF Viewer is a simple viewer for GeoTIFF files, which are georeferenced raster images, typically used for maps.
Ive noticed that there really arent any programs for Linux that just view maps. There are several GIS packages, but if all you want to do is look, theyre overkill. I wrote GeoTIFF Viewer to be a simple viewer of digital raster graphics.
It uses libtiff and libgeotiff for the heavy lifting of reading the TIFF and associated GeoTIFF tags, and GTK+, GDK, and GLib for the widgets and graphical utilities. As such, it should run on any platform that these do, which is to say, most modern operating systems.
Digital raster graphics for California can be freely obtained at The California Spatial Information Library. The USGS and the Tennessee Valley Authority have data for the rest of the country.
Installation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
Enhancements:
- This release fixes calculation of seconds when lat/long is being displayed.
<<less
Download (0.19MB)
Added: 2007-01-11 License: GPL (GNU General Public License) Price:
1057 downloads
Pipe Viewer 1.0.1

Pipe Viewer 1.0.1


Pipe Viewer is a pipeline data transfer meter. more>>
Pipe Viewer project is a terminal-based tool for monitoring the progress of data through a pipeline.

It can be inserted into any normal pipeline between two processes to give a visual indication of how quickly data is passing through, how long it has taken, how near to completion it is, and an estimate of how long it will be until completion.

pv is now considered to be stable code: it appears to work reliably on systems it has been tested on.
<<less
Download (0.037MB)
Added: 2007-08-07 License: Artistic License Price:
819 downloads
tc-viewer 1.5

tc-viewer 1.5


tc-viewer provides the ability to watch current transfers that take place in HTB and HFSC traffic shaping classes. more>>
tc-viewer provides the ability to watch current transfers that take place in HTB and HFSC traffic shaping classes on specified interface.

tc-viewer reads output from: tc -s class show dev iface, and analyzes (for each class) values in lines like this one :

Sent 6173259431 bytes 6300224 pkt...

Measured speeds may little vary from the real ones.

<<less
Download (0.008MB)
Added: 2006-11-18 License: GPL (GNU General Public License) Price:
1080 downloads
Tk::Text::Viewer 0.93

Tk::Text::Viewer 0.93


Tk::Text::Viewer is a text widget that can display text files under TK. more>>
Tk::Text::Viewer is a text widget that can display text files under TK. It enable the user to search text and navigate in a Text widget. The reason for creating this module is that it doesnt require downloading of modules other that Tk; Look for widget options in the Tk::Text manpage. A separate viewer.pl program is included and can be used as a stand alone file browser.
The Viewer widget also inherits all the methods provided by the generic Tk::Widget and Tk::Text classes.
The following additional method is available for viewer widgets:
$text_view->Load($filename)
Load file into the text widget.
$text_view->LabelConfig(string or hash ref)
$text_view->LabelConfig(``Search:)
Change label for the search entry field. You might want to change this label if the widget is used in a non English application.
$text_view->LabelConfig(``-cursor=> dot)
Change one label widget option (for example cursor).
$text_view->LabelConfig({text=>Find:,-cursor=>dot,...})
Replace label widget options with your own set of options. Do not change the Name option of the label widget. See the Tk::Label manpage for valid options
$text_view->EntryConfig(string or hash ref)
Change the entry widget options. Read LabelConfig for information about parameters. See the Tk::Entry manpage for valid options.
Enhancements:
- This version requiers Tk 804. If you have older Tk you my use version 0.91
- fix Tk::Entry options like -text to comply with Tk 804.027
- Enable utf8 support for UTF-8 locale on Perl 5.8
<<less
Download (0.010MB)
Added: 2006-07-15 License: Artistic License Price:
1201 downloads
Mesh Viewer 0.3.1

Mesh Viewer 0.3.1


Mesh Viewer is an easy to use lightweight application to display triangular meshes from a variety of file formats. more>>
Mesh Viewer is an easy to use lightweight application to display triangular meshes from a variety of file formats (see 3D formats).
Mesh Viewer uses the OpenGL API to render the models. The program was born under the need for quickly displaying reconstructed triangulated meshes. The Mesh Viewer based on an idea and an early elementary implementation from Craig Robertson.
The current version was developed by Helmut Cantzler. Triangular meshes can be displayed texture mapped (optional with bilinear filtering), solid or as a skeleton (full or just the front lines).
The surface normals of the triangles can be displayed optionally. Features (from a different data file) like edges and points can be displayed into the mesh. Loaded models can be rotated, translated and scaled (all done with the mouse). The model is lighted by multiple light sources.
Viewpoints can be saved. Screenshots of the model can be taken (as BMP, JPEG, PNG and so on). The program is able to calculate the texture map for the 3D model (experimental!).
It can read:
- PMesh files (used at the Vision group of the University of Edinburgh)
- GTS files (from the Gnu Triangulation Library)
- Geomview files (only format "OFF")
- PLY files (only ASCII format)
- VRML 1 files (no texture mapping)
- VRML 2 files
- Feature file
- List file
File format descriptions:
The PMesh format begins optional with a header. The first header line consists of "#pmesh". The header ends with the first line not starting with a "#". The data starts with nv lines of the format "v float float float" for the vertices. Follows nf lines of the format "p 3 int int int" for the triangles. Each line contains the three indices of the vertices. The index of the vertices starts at one.
The GTS format is describe shortly. The first line contains three unsigned integers separated by spaces. The first integer is the number of vertices, nv, the second is the number of edges, ne and the third is the number of faces, nf. Follows nv lines containing the x, y and z coordinates of the vertices. Follows ne lines containing the two indices (starting from one) of the vertices of each edge. Follows nf lines containing the three ordered indices (also starting from one) of the edges of each face.
The Geomview formal starts with a header consisting of the format line "OFF" and a second line with three integer numbers. The first integer is the number of vertices, nv, the second is the number of polygons, np, and the third number is typically "0". Following are the nv lines of vertices (each consists of three floats). The other part of the file are np lines of polygons. The first number of each line stands for the size of the polygon. Mesh Viewer just reads polygons consisting of 2 or 3 vertices. Following are a number of indices of the vertices depending on the size of the polygon. The index of the vertices starts at zero.
VRML is only supported partly. The Mesh Viewer extracts only vertices and triangles from VRML files and ignores all other shapes. Shapes in VRML 2.0 are rotated, scaled and translated if necessary. The file name for JPEG texture and texture coordinates are read from VRML 2.0 files if existent.
The Feature file is used to store vertices and edges. A feature file can be loaded beside the mesh to display vertices or edges into the mesh. The first header line consists of "#list". The header ends with the first line not starting with a "#". The lines consists of either vertices or edges. A vertex line consists of the format "fv float float float". A edge line starts with "fe" followed by the x, y and z coordinates for the start and the end vertex.
The List file is only a text file listing n mesh files, which a loaded subsequently as different shapes into one mesh. Lists are useful for displaying a segmentation of a mesh. The first header line consists of "#list". The header ends with the first line not starting with a "#". The following n lines consists of the names for the mesh files (one per line).
<<less
Download (0.62MB)
Added: 2006-08-24 License: LGPL (GNU Lesser General Public License) Price:
1171 downloads
KSystem Viewer 0.0.2-1

KSystem Viewer 0.0.2-1


KSystem Viewer is a little Kommander bash script what aims see the characteristics of the current system. more>>
KSystem Viewer is a little Kommander bash script what aims see the characteristics of the current system.

KSystem Viewer can see hdd capacity or the name/frequency of the processor.

<<less
Download (0.080MB)
Added: 2006-05-15 License: GPL (GNU General Public License) Price:
1257 downloads
vdt52 VNC Viewer 0.0.7

vdt52 VNC Viewer 0.0.7


vt52vnc is a VNC viewer which can be used on prehistoric green monochromatic terminals. more>>
vt52vnc is a VNC viewer which can be used on prehistoric green monochromatic terminals called vdt52s, which are capable of vectorgraphics. vt52vnc is a VNC ( http://www.uk.research.att.com/vnc ) viewer, which can be used on old, green, monochromatic, prehistoric terminals labeled vdt52s, which are capable of vector graphics.The software is functional, but incomplete for now: it does not support compression, passwords and there are many ways to optimize the output.


Mouse:
As vdt52s does not have the mouse or any other pointing device, one of three unlabeled buttons near the numeric keypad have been used to act as mouse-lock. When you depress it, you can use the numeric keypad to move the mouse, and `+, `-, `., `enter, `0, and `5 as button 1,2,3 toggle and button 1,2,3 click.

Speed:
Based on my own experiences, I recommend the speeds 38400 and higher for "real work". The screen is drawn by rectangles. This is done to improve the reaction times, when the screen changes very often.

The software uses the XOR mode to actually draw the image, which can be improved using AND and OR mode in some cases. One can also imagine another optimizations for particular shapes. I will not add those optimizations, as the decisions are very memory-consumptive and after all, I dont want to implement some kind of prolog just to
choose the right one. If you want to improve it, let me know.

Colors:
The monochromatic translation is done by some bit of green color, which can be changed at the beginning of vncproto.c. If you want to make it better (implement some dithering or (better) the shape finding algorithm), let me know.

Why and how:
The work was inspired by mine never-ending desire for an X display on the "frog". Display drawings are based on the graphics library by Marek Zelem, which is, in turn, based on the documentation for vdt52s, as my work is based on vnc protocol documentation. Coded, of course, on vdt52s terminal with wrong Enter and Control. The sources are written to be easily extended.

Installation & running
1) edit Makefile to adjust some parameters,
vi Makefile
2) run `make
make
3) optionally install:
cp vt52vnc /usr/local/bin
<<less
Download (0.025MB)
Added: 2006-06-24 License: GPL (GNU General Public License) Price:
1227 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5