Main > Free Download Search >

Free settings band software for linux

settings band

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1466
jSettings 0.2

jSettings 0.2


jSettings package is meant to provide a Java library for dealing with program settings. more>>
jSettings package is meant to provide a Java library for dealing with program settings. (I use "settings" as just another synonym for preferences, properties, etc but I chose the word settings because of the already existing Preferences and Properties frameworks in Java). It wants to be a powerful tool for the developers of Java programs that want to manipulate structures of settings.
The code (as well as this page) is at an early development and testing stage. On top of that, I am only doing it as a means to teach myself Java (Im an economist by training and by profession) , so even at later stages you can expect the quality of the code to be quite low.
If you feel like any part of the design, code, Javadoc, examples etc is silly please dont hesitate to let me know about it. Also, I would also be happy to include requested features as long as I can understand the need for them and I also know how to do it. So please write to me if you have anything to say about this project!
Main features:
- Handles INI and FSTAB type of files and settings. There is no XML support yet, but I plan to do it if it seems to be requested.
- INI settings are specified by a setting = value pair.
- FSTAB settings are defined by an array of settings, each in a predefined field. I call them like this because the structure is similar to the fstab file in UNIX environments. Logical structure is quite similar to that of XML files.
- Settings can be logically structured into sections.
- There are two degrees of hierarchy available, called hierarchical and non-hierarchical. For example, in a hierarchical organization, the settings in a file called settings.ini, containing the following lines:
[section1]
setting1=value1
[[section1-2]] //Notice the double brackets
setting1-2=value1-2
would be refered to as
settings:section1:setting1
and
settings:section1:section1-2:setting1-2
In a non-hierarchical structure they would be
settings:section1:setting1
and
settings:section1-2:setting1-2 (section1-2 is not a child of section1 anymore).
- Loads settings from external files, either from individual files in ASCII format or from archives containing several settings files.
- Includes support for default values for settings, both for ini and fstab settings.
- The advantage is that the actual ini and fstab files will only contain the deviations from the defaults.
- Includes support for system-wide and user-specific settings, for multi-user environments.
- A program would first load the defaults, then the system-wide settings and then the user-specific ones. Also when modifying the settings, there is a choice between doing it at user and at system level.
- Support for adding/modifying/deleting settings.
- Default support for validating the settings.
- Each ini-type setting and each fstab-type field have a validation rule in the form of a regular expression. When loading the value for that setting/field, it is being checked against the rule and only accepted if it confirms to the rule. Of course, if the user wants it she can have .* as the rule for each setting.
- Support for flushing the changes made to the settings to the external files.
- Extensive logging/debug messages.
<<less
Download (0.33MB)
Added: 2006-06-16 License: MIT/X Consortium License Price:
1225 downloads
simplesettings 0.5

simplesettings 0.5


This provides simple settings for initialization for third party apps and libraries in Python. more>>
simplesettings 0.5 is an excellent tool for programmers. It provides simple settings for initialization for third party apps and libraries in Python.
<<less
Added: 2009-07-14 License: The Apache License 2.0 Price: FREE
1 downloads
Magic Settings Wizard 0.1

Magic Settings Wizard 0.1


Magic Settings Wizard is designed to quickly and easily restore or backup your favorite applications settings. more>>
Magic Settings Wizard is designed to quickly and easily restore or backup your favorite applications settings.
Magic Settings Wizard can backup/restore through an FTP location used as a storage medium.
Main features:
- backup or restore applications settings : select which ones from a list.
- personal home dir is automatically detected by default, but another directory can be specified.
- communicates with a FTP server specified by the user.
- FTP settings may be saved in a config file.
- a FTP directory may be created from the interface if needed.
- add your own applications settings definitions if yours dont exist in the database (edit settings_definitions.py).
<<less
Download (0.015MB)
Added: 2006-01-24 License: GPL (GNU General Public License) Price:
1374 downloads
gnome-settings-visualeffects 0.4

gnome-settings-visualeffects 0.4


gnome-settings-visualeffects allows the control of the xcompmgr composite manager. more>>
gnome-settings-visualeffects allows the control of the xcompmgr composite manager, it provides the user with control of the shadow radius,opacity,offsets and colour, and the speed of fades and where they are applied.
Main features:
- Splitting shadow configuration into active and inactive windows
- Adding a path locator and version checker for xcompmgr/transset
- Incorporating window translucency (decided on a minimum of 25%)
- Window translucency can be added to active/inactive windows by single windows or window types i.e. File Chooser, applications or application children, and Im hoping that I can make this persistent.
- Increase compatibility with gdesklets
- Propose to luminocity developers a configuration standard for these types of settings, therefore improving the future of the project.
- Incorporate code from xcompmgr/transset to reduce reliance on what are intended to be demos rather than real life tools.
- Notification area tool/Panel applet for accessing effects quickly.
<<less
Download (0.44MB)
Added: 2005-08-02 License: GPL (GNU General Public License) Price:
1548 downloads
libband 0.01

libband 0.01


LibBand is a simple library wrapper which is useful if you want to limit the bandwidth used by a program. more>>
LibBand is a simple library wrapper written in assembly and C (but I plan to rewrite everything in C) useful if you want to limit the bandwidth used by a program.
It simply overrides some libc functions, using the LD_PRELOAD environment variable, and puts some pauses in the program to clamp the bandwidth at the specified value, for both upload and download operations.
You just have to set UPLOAD_BAND and DOWNLOAD_BAND and run your program, for example:
export LD_PRELOAD=/replace-with-the-path/to/libband.so
export UPLOAD_BAND=1024
export DOWNLOAD_BAND=8192
ftp somewhere.com
The bandwidth must be expressed in bytes/s, and so in the above example, we want the upload band clamped at 1.0 kb/s, the download band at 8.0 kb/s.
Theres a small utility in the scripts/ directory, called lb: you can use it to set everything and start your program from a nice whiptail/dialog environment.
You need NASM to build the binary (but dont worry, a pre-assembled version is included in the package).
Just type "make" to compile, and "make install" to install the library.
Remember that $HOME/lib is the default installation directory, so you usually have to export LD_PRELOAD by using:
export LD_PRELOAD=$HOME/lib/libband.so
The "lb" script is configured to work with this path, but you may change it by editing the script itself (search for the LIBPATH variable).
Please note that at the moment libBand DOESNT WORK with multithreaded and _graphic_ applications.
Enhancements:
- We keep track of sockets by wrapping socket(), accept() and close(). The old fstat() mechanism has been obsoleted.
<<less
Download (0.022MB)
Added: 2005-09-14 License: GPL (GNU General Public License) Price:
1502 downloads
netGo 0.5

netGo 0.5


netGo is a distribution-independent networking tool. more>>
netGo is a distribution-independent networking tool (written in Qt) for changing network settings quickly and easily. It is intended for laptop owners, who often need to change network settings when relocating.
It allows you to create profiles that contain the network settings such as the IP, netmask, gateway, name servers and wireless options. After creating a profile it can be executed with a single click.
netGo is distributed under the terms of the GPL-license.
Main features:
- Configure an interface with static IP, netmask, gateway and nameservers.
- Configure an interface using DHCP.
- Configure an interface using wireless options.
- Execute a profile from the commandline - without GUI.
- System tray support (works in KDE, Gnome, xfce etc).
<<less
Download (0.23MB)
Added: 2005-06-02 License: GPL (GNU General Public License) Price:
1606 downloads
setv4l 0.3

setv4l 0.3


setv4l is a simple command line program for changing the picture settings of a video 4 linux device. more>>
setv4l is a simple command line program for changing the picture settings of a video 4 linux device.
You can change (if the specified device allows) the following settings:
- Brightness
- Hue
- Colour
- Contrast
- Whiteness.
For each you can specify a value from 0 to 65535.
I wrote setv4l project for managing remote webcams. It was originally called vidcontrol, but I found out that a program with that name existed with FreeBSD.
Installation:
- Just unpack it and do a make.
For my webcams I use the vidcat program for capturing. It is part of the w3cam package. However it does not comply to the v4l spec in respect to picture sizes (actually it doesnt set the size at all.....)
<<less
Download (0.009MB)
Added: 2006-01-27 License: GPL (GNU General Public License) Price:
1366 downloads
songanalysis 0.4.0

songanalysis 0.4.0


songanalysis software analyzes a song in WAV, Ogg Vorbis, or MP3 format. more>>
songanalysis software analyzes a song in WAV, Ogg Vorbis, or MP3 format and produces an output consisting of the volume differential, the relative strength in each frequency band, and the tempo.

This is useful if you want to build something that lets you find out whether you have duplicate files, if you need to find out the tempo of your songs, or if you need to find similar songs according to how they sound.

<<less
Download (0.027MB)
Added: 2006-01-15 License: GPL (GNU General Public License) Price:
1379 downloads
getmsmp3 0.1

getmsmp3 0.1


getmsmp3 provides a script that downloads MP3s from MySpace bands and profiles. more>>
getmsmp3 provides a script that downloads MP3s from MySpace bands and profiles.

getmsmp3 is a script that downloads MP3s off of MySpace profiles (including band playlists) to the current directory.

Since this program can only download publically-accessible files with no authentication it is assumed all file downloads are legal until MySpace decides to implement some DRM or at least a username and password requirement.

Or heck, even a "please-dont-download-MP3s" click-through license. In the meanwhile you the user assume all liability by using this program.

I the author provide no warranty expressed or implied about anything. Use this program at your own risk. You have been warned.

Pass this program the URL to a myspace page with a myspace mp3 player or myspace playlist and it will save each MP3 it can find to the current directory in a "bandname - songname.mp3" format.

<<less
Download (0.003MB)
Added: 2007-03-13 License: GPL (GNU General Public License) Price:
960 downloads
setov511 0.1

setov511 0.1


setov511 is an application that can set various aspects of ov511-based (and compatibles) WebCams. more>>
setov511 is an application that can set various aspects of ov511-based (and compatibles) WebCams. You can also make a dump of the current settings.

Installation:
make install

Usage:
setov511 -h will give details.

For a complete list of supported hardware see: http://alpha.dyndns.org/ov511/
<<less
Download (0.002MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
1178 downloads
MySysop 2.0-b

MySysop 2.0-b


MySysop is a PHP tool with AJAX support for managing MySQL server settings and monitoring process, variables, and status. more>>
MySysop is a PHP tool with AJAX support for managing MySQL server settings and monitoring process, variables, and status.
Enhancements:
- This version has a prototype window for the dialog window, new stats, and minor bugfixes.
<<less
Download (0.082MB)
Added: 2007-06-19 License: GPL (GNU General Public License) Price:
858 downloads
Band Saw 0.3.0

Band Saw 0.3.0


Band Saw is a syslog monitoring program for the GNOME desktop. more>>
Band Saw is a syslog monitoring program for the GNOME desktop. Band Saw project allows the user to setup filters that define which messages should generate alerts.

Combined with syslogs remote logging functionality it provides a scalable and easily deployed monitoring solution.

How does it work?

Band Saw is really quite simple; it monitors messages that are fed to it from a suitably configured syslog server, looking out for messages that contain text that the administrator is interested in. Any log message that matches the administrators filters will be brought to the users attention via a dialog box that pops up on screen.

Because syslog itself supports propagating messages between seperate computers, with syslog and Band Saw you can easily monitor a large number of computers for critical errors.

<<less
Download (0.18MB)
Added: 2006-03-09 License: GPL (GNU General Public License) Price:
1325 downloads
Sabayon 2.19.2

Sabayon 2.19.2


Sabayon is a system administration tool to manage GNOME desktop settings. more>>
Sabayon is a system administration tool to manage GNOME desktop settings.

Sabayon provides a sane way to edit GConf defaults and GConf mandatory keys: the same way you edit your desktop. Sabayon launches profiles in an Xnest window.

Any changes you make in the Xnest window are saved back to the profile file, which can then be applied to users accounts.

<<less
Download (0.80MB)
Added: 2007-08-15 License: GPL (GNU General Public License) Price:
807 downloads
 
Other version of Sabayon
Sabayon 2.18.1Sabayon is a system administration tool to manage GNOME desktop settings. settings. Sabayon provides a sane way to edit GConf defaults and GConf mandatory keys: the same
License:GPL (GNU General Public License)
Download (0.76MB)
947 downloads
Added: 2007-03-21
2532|Gigs 1.0.1

2532|Gigs 1.0.1


2532|Gigs is a PHP/SQL gig lister designed for bands and music sites. more>>
2532|Gigs is a PHP/SQL gig lister designed for bands and music sites. The Web-based control panel allows admins to add, edit, and delete shows.
2532|Gigs also supports multiple users and admins.
Installation:
Please follow these steps in order and you will have 2532|Gigs up and running in no time.
1: Unzip all files(retaining their folder structure) to a folder called 2532gigs.
2: Open upload/gig_settings.inc.php in your favorite text editor (ex: notepad). Change the info to your database info. Do not change the table names unless you change them in the sql file.
3: Create a file on your server called 2532gigs (or whatever you want) and upload ALL files inside the upload folder.
4: Go to whatever script you use to add/edit/delete tables in your database (most use phpMyAdmin). Select the database you will be using for 2532|Gigs. Import the sql file, database/2532gigs_sql.sql. This will create all tables needed along with default data. Remember if you changed the database table names in upload/gig_settings.inc.php you will need to change them here to.
5: Go to http://www.yoursite/2532gigs/index.php and login using; Username: admin and Password: pass.
6: Thats it. 2532|Gigs should now be installed and you should be able to login. First be sure and change your password via the Manage Users page. Remember that user lvl 1 is Admins and have access to every page and user lvl 0 is for normal users to add, edit, delete shows only (not users).
7: To display the gigs on your site open samples/band_sample.php if your a band using the script or samples/music_sample.php if your a music site using the script. More advanced users will be able to hack/mod the script to whatever they wish. In future releases ill be providing more samples of how to display the gigs. Ive personally used plenty of different way.
8: If you have any problems or run across any bugs please visit our SF.net page. (www.sf.net/projects/gigs-2532).
Enhancements:
- This is a major rewrite to mark the 1.0 branch.
- Older versions will not work with the 1.0 branch, and you will need to do a fresh install.
<<less
Download (0.20MB)
Added: 2007-01-11 License: GPL (GNU General Public License) Price:
1017 downloads
Helix Player 1.0.8 GOLD

Helix Player 1.0.8 GOLD


Helix Player is a streaming audio and video player. more>>
Helix Player is an audio and video player based on the Helix DNA Client engine. The GTK+ version includes a Mozilla browser plug-in and supports local file playback and streaming over RTSP/RTP and HTTP.
It supports video zoom in original, double size, and full screen, and supports: SMIL 2.0, Ogg Vorbis, H.263 video, JPEG, GIF, PNG, and RealPix.
The Symbian Series60 version supports local and streaming playback (RTSP, RTP, RDP, HTTP) of MP3, AMR narrow band, AMR wide band, RA8, sipro, RV7, RV8, RV9, RV10, H263+, 3GPP rel5 SMIL 2.0, images, and more.
Enhancements:
- This release is an update for the Firefox 1.5 API changes.
<<less
Download (3.5MB)
Added: 2006-08-17 License: GPL (GNU General Public License) Price:
698 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5