Main > Free Download Search >

Free how to run a bar software for linux

how to run a bar

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5504
New Tab Button on Tab Bar 2.0

New Tab Button on Tab Bar 2.0


New Tab Button on Tab Bar is an extension which adds a new tab button to the tab bar. more>>
New Tab Button on Tab Bar is an extension which adds a new tab button to the tab bar.

This extension adds a new tab button to the tab bar. You do not need an extension to add a new tab button to the *toolbar*, but if you want a new tab button on the *tab bar* youll need this extension.

This is a simple, single-feature extension, -- there are no options to configure!

Theme authors:
Please see this extensions homepage for information on how to make your theme support the new tab button.

<<less
Download (0.009MB)
Added: 2007-04-26 License: MPL (Mozilla Public License) Price:
916 downloads
Cookie Button in the status bar0.8.9

Cookie Button in the status bar0.8.9


Cookie Button in the status bar is a Firefox button for easy access to cookie permissions in the status bar. more>>
Cookie Button in the status bar is a Firefox button for easy access to cookie permissions in the status bar. For those who have been asking for cookie button in the status bar.

Some features are optional. See Tools -> Extensions/Addons, select Cookie button in the status bar, press Options/Preference Button.

Please post more info about the context menu bug to http://bugzilla.mozdev.org/show_bug.cgi?id=15011

<<less
Download (0.025MB)
Added: 2007-07-28 License: MPL (Mozilla Public License) Price:
820 downloads
Torrent-Search Bar 1.0.1.21

Torrent-Search Bar 1.0.1.21


Torrent-Search Bar will improve your browsers capability greatly. It is designed as a Firefox addon that provides you the best way to search in more than 26 top torrent search engines. more>>
Torrent-Search Bar 1.0.1.21 will improve your browser's capability greatly. It is designed as a Firefox addon that provides you the best way to search in more than 26 top torrent search engines.

Major Features:

  1. Search Torrents in more than 31 Top Torrent Search sites - The Torrent Search engines in the toolbar are auto-updated
  2. Get RSS feeds with new torrents links - Fresh Torrents has tons of seeds...
  3. Links to the best private torrents communities
  4. E-Mail Notifier - Check multiple POP3, Gmail, Hotmail, Yahoo accounts for new mail It displays an icon in the toolbar and notifies you whenever new mail is waiting. It also optionally to play a WAV file.
  5. Highlight the Torrent Search Results - Make your life easier
  6. Online Anti Virus scanner - Cookie-Cleaner, History-Cleaner, Cache-Cleaner
  7. Popup Blocker - Block annoying pop-ups
  8. Weather - Offers forecasts for cities worldwide
  9. Auto Update - Help to keep your Toolbar current
  10. Supports:
    • Google Torrent search
    • MiniNova
    • Meganova
    • MoNova
    • biteNova
    • torrent valley
    • thepiratebay
    • TorrentReactor
    • Isohunt
    • And more...

Requirements:

  • Mozilla Firefox 1.0-3.0
  • Windows 2000/XP/Vista
<<less
Added: 2006-09-09 License: GPL Price: FREE
1 downloads
phpWebPROXY 1.3 Beta

phpWebPROXY 1.3 Beta


phpWebPROXY provides a simple Web proxy written in PHP. more>>
phpWebPROXY provides a simple Web proxy written in PHP.

It allows you to run your Web surfing through your own Web server and bypass filters which may be between you and what you want to see.

It supports cookies, and its Web-based location bar lets you move around the Web easily.

<<less
Download (0.091MB)
Added: 2007-03-16 License: BSD License Price:
959 downloads
phpEditIni 1.0 Beta4

phpEditIni 1.0 Beta4


phpEditIni is a PHP script for Windows and Linux/*nix which lets you edit your PHP.INI file in a browser based GUI. more>>
phpEditIni is a PHP script for Linux/*nix and Windows which lets you edit your PHP.INI file in a browser based GUI. phpEditIni project lets you alter the values of configuration settings, and uncomment or comment lines by clicking a checkbox.

You can also insert, edit and delete lines. It is in the Beta4 stage of release (fixed CR/LF for Windows and LF for Linux/*nix from Beta3). We will probably not implement new features for the moment, so please dont email us feature requests.

Installation:

To install on Linux, download the zip file, unzip it, and copy the phpEditIni folder to
your webroot. Then do a "chmod 777" on the phpeditini directory.

To run the script, you can just enter http://localhost/phpEditIni/ into your address bar.
<<less
Download (0.020MB)
Added: 2006-06-02 License: GPL (GNU General Public License) Price:
1239 downloads
Run a web server inside LAN

Run a web server inside LAN


Run a web server inside LAN is a simple script to run a WWW server inside a Local Area Network. more>>
Run a web server inside LAN is a simple script to run a WWW server inside a Local Area Network. Run a web server inside LAN script assume all iptables features are compiled statically in the kernel, or all modules are loaded.

Otherwise you may encounter some surprises trying to utilize the more featureful and creative commandlines that Ive come up with.

Sample:

#external and internal interfaces
EXT=eth0
INT=eth1

# clear everything, and create my cascading chains
iptables -F
iptables -N e0
iptables -N tcpin
iptables -N udpin

# e0 is the name of our chain for eth0
iptables -I INPUT -i $EXT -j e0

# OUTPUT Chain
iptables -A OUTPUT -o $EXT -j DROP -p icmp --icmp-type ! echo-request

# remote gnutella queries were really pissing me off one day
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --dport 6346
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --sport 6346

# $EXT Chain
# a single rule to accept SYN Packets for multiple ports (up to 15)
iptables -A tcpin -j ACCEPT -p tcp --syn -m multiport --destination-ports 873,993,995,143,80,113,21,22,23,25,53

# stateful connection tracking is wonderful stuff
# ESTABLISHED tcp connections are let through
# If we send a SYN out, the ACK is seen as RELATED
# then further communication is accepted by the ESTABLISHED rule
iptables -A e0 -j ACCEPT -m state --state ESTABLISHED
iptables -A e0 -j ACCEPT -m state --state RELATED

# certain ports I simply DROP
iptables -A tcpin -j DROP -p tcp --syn -m multiport --destination-ports 6346,139

# UDP rules...
iptables -A udpin -j DROP -p udp -m multiport --destination-ports 137,27960

# I run a DNS server, so we must accept UDP packets on port 53
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 53

# lets log NEW udp packets on ports 1024:65535, then let them through
iptables -A udpin -j LOG -p udp -m state --state NEW --destination-port 1024:65535 --log-level debug --log-prefix UDPNEW --log-ip-options
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 1024:65535

# lets log NEW tcp packets on ports 1024:65535, then let them through
iptables -A tcpin -j LOG -p tcp --syn --destination-port 1024:65535 --log-level debug --log-prefix TCPNEW --log-tcp-options --log-ip-options
iptables -A tcpin -j ACCEPT -p tcp --syn --destination-port 1024:65535

# lets log INVALID or NEW tcp packets on priveleged ports, then DROP
# (remember I have certain ACCEPT rules higher up the chain)
iptables -A tcpin -j LOG -p tcp -m state --state INVALID,NEW --destination-port 1:1023 --log-level warn --log-prefix TCPPRIV --log-tcp-options --log-ip-options
iptables -A tcpin -j DROP -p tcp -m state --state INVALID,NEW --destination-port 1:1023

iptables -A e0 -p tcp -j tcpin
iptables -A e0 -p udp -j udpin
iptables -A e0 -j LOG --log-level debug --log-prefix NETFILTER --log-ip-options -m state --state INVALID,NEW
iptables -A e0 -j DROP

# NAT Rules
# I run a web server inside...
iptables -t nat -A PREROUTING -p tcp -i eth0 --dport 80 -j DNAT --to-destination 192.168.1.4:80
<<less
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
985 downloads
run in xterm 0.9.1

run in xterm 0.9.1


run in xterm is an servcie menu which adds run in xterm & run in xterm as root to action menu on binary files, scripts etc. more>>
run in xterm is an servcie menu which adds "run in xterm" & "run in xterm as root" to action menu on binary files, scripts etc.

It has 2 languages: english and polish.

Installation:

copy/save this file in
~/.kde/share/apps/konqueror/servicemenus

<<less
Download (MB)
Added: 2006-06-12 License: GPL (GNU General Public License) Price:
1230 downloads
warichu bar 1.1.00

warichu bar 1.1.00


warichu bar provides a social annotation tool that sits on top of the web and allows everyone to discuss the webs content. more>>
warichu bar provides a social annotation tool that sits on top of the web and allows everyone to discuss the webs content.

Warichu is a social annotation tool that sits on top of the web and allows everyone to discuss the webs content. You can think of the situation as being similar to that of an ant colony mapping out the terrain it lives in - all the ants investigate here and there, finding useful resources, remembering the details and telling their friends so they can use the resources too. In this analogy the web is the terrain, and we are the ants! We communicate on a layer that overlays the web - a layer just for collaborative communication of information. That layer is the Warichu.

With Warichu you can create various types of virtual sticky note and attach them to web pages. Whenever you go back to that page, your note will appear - and if you send the note to some friends it will appear on the page for them too. Different types of sticky note fulfill different requirements - some can be shared with other people, some are stored locally on your computer, some allow you to modify the web page you stick them to, others allow you to conglomerate snippets of text from a page..

An API is included that allows developers to create their own types of content notes (eg, page highlights, annotations, blogging tools)

<<less
Download (0.013MB)
Added: 2007-04-04 License: MPL (Mozilla Public License) Price:
933 downloads
run 0.1

run 0.1


run adds a service menu for all file types. more>>
run adds a service menu for all file types. This service menu will just call the file in the command line using the active folder as work folder.

Makes running some scripts and applications much easier (Some require work folder to be the same where they are located so double-clicking does not work).

Maybe a good fix would be to make it available only for files that have the executable permission

<<less
Download (MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1215 downloads
Organize Status Bar 0.5.2

Organize Status Bar 0.5.2


Organize Status Bar is an extension which allows you to organize your status bar icons. more>>
Organize Status Bar is an extension which allows you to organize your status bar icons.

This extension will enable you to organize your status bar icons. You can now rearrange or remove any item (icon or text) in the Firefox status bar.

If your status bar is full and cluttered like mine was, give this a try.

<<less
Download (0.031MB)
Added: 2007-03-30 License: MPL (Mozilla Public License) Price:
939 downloads
Bio::Tools::Run::JavaRunner 1.5.2_100

Bio::Tools::Run::JavaRunner 1.5.2_100


Bio::Tools::Run::JavaRunner is a Perl module that can run java programs. more>>
Bio::Tools::Run::JavaRunner is a Perl module that can run java programs.

SYNOPSIS

my $runner = Bio::Tools::Run::JavaRunner->new(-jar => $jar);
$runner->run();

This module is probably incomplete. It is intended to be a wrapper for running java programs.

<<less
Download (0.92MB)
Added: 2007-06-05 License: Perl Artistic License Price:
872 downloads
EthGraph 0.5a1

EthGraph 0.5a1


EthGraph provides a Qt-based graphical network device traffic monitor. more>>
EthGraph provides a Qt-based graphical network device traffic monitor.
Installation instructions for ethgraph.
1) Download and untar/ungzip the source
2) Edit the makefile as necessary for paths on your system
3) Run "make"
4) Run "make install" as root
For help, run "ethgraph --help".
Enhancements:
- Bugfix: fix scaling of bars on graph (not dependent on refresh rate)
- Enlarge widget to fix clipping of text on other systems
- Create an INSTALL doc
<<less
Download (0.007MB)
Added: 2007-04-03 License: BSD License Price:
935 downloads
PostScript::Graph::Bar 1.02

PostScript::Graph::Bar 1.02


PostScript::Graph::Bar Perl module can draw a bar chart on a postscript file. more>>
PostScript::Graph::Bar Perl module can draw a bar chart on a postscript file.

SYNOPSIS

Simplest

Take labels and values from a csv file and output as a bar chart on a postscript file.

use PostScript::Graph::Bar;

my $bar = new PostScript::Graph::Bar();
$bar->build_chart("survey.csv");
$bar->output("survey");

Typical

use PostScript::Graph::Bar;

my $bar = new PostScript::Graph::Bar(
file => {
paper => A4,
landscape => 1,
},
layout => {
background => [1, 1, 0.9],
heading => Test results,
},
y_axis => {
smallest => 4,
},
style => {
auto => [qw(green blue red)],
}
);

$bar->series_from_file( data.csv );
$bar->build_chart();
$bar->output( results );

The file data.csv has a row of headings followed by 4 rows of 10 items. This produces a bar chart with four groups of ten bars each. The groups are labelled with the first value in each row. The bars in each group are coloured ranging from brown through green and then shades of blue. A Key links the row of headings to each colour. In addition, the background is beige, a heading is placed above the chart and the y axis is not too crowded.

All options

use PostScript::Graph::Bar;

my $bar = new PostScript::Graph::Bar(
file => {
# Paper size, orientation etc
# See PostScript::File
},
layout => {
# General proportions, headings
# See PostScript::Graph::Paper
},
x_axis => {
# All settings for X axis
# See PostScript::Graph::Paper
},
y_axis => {
# All settings for Y axis
# See PostScript::Graph::Paper
},
style => {
# Appearance of bars
# See PostScript::Graph::Style
},
key => {
# Settings for any Key area
# See PostScript::Graph::Key
},
show_key => 1,
labels_row => 1,
);

<<less
Download (0.054MB)
Added: 2007-07-24 License: Perl Artistic License Price:
825 downloads
Test-Run 0.0110

Test-Run 0.0110


Test-Run is an improved test harness for scripts that emit TAP (Test Anything Protocol). more>>
Test-Run is an improved test harness for scripts that emit TAP (Test Anything Protocol). It was forked from Test::Harness, and it uses TAP::Parser.

The project is used to analyze the output of the scripts and present it to the user in a summarized form. Test-Run features separation of the test-running backend and the command line frontend, a "runprove" utility for running tests from the command line, a plugin-system, and colors for the summary line.

<<less
Download (0.067MB)
Added: 2007-06-12 License: MIT/X Consortium License Price:
865 downloads
Gr_Monitor 0.81

Gr_Monitor 0.81


Gr_Monitor displays a series of datasets as animated 3D bar charts. more>>
Gr_Monitor project displays a series of datasets as animated 3D bar charts. The latest version of Gr_monitor uses XML as for the gather-view interface. SGI IRIX support has been dropped - I no longer have easy access to an SGI box (donations welcome).

By default gr_monitor displays information about processes resident on a UNIX system. For each process it displays a 3D bar graph of CPU consumed, memory consumed, resident set size, and elapsed time. The processes are grouped by username. Each username grouping sits on its own little plinth.

There are controls for translating, rotating, scaling, lighting and fog effects. Gr_monitor receives info via an input stream and displays it in a X11 Mesa or X11 OpenGL window. The input is expected to be an XML document with a DTD that defines the data to be plotted.

Gr_gather is a default implementation of a data gatherer. It obtains data from the Linux process file system and reformats it as a suitable XML document. If you wish to record data for later playback, you can run a gather process stand alone and redirect its output to a file.
<<less
Download (0.074MB)
Added: 2007-06-27 License: GPL (GNU General Public License) Price:
850 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5