ktemperature 1.9 1
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 11905
KTemperature 1.9-1
KTemperature is an application to monitor the system temperature. more>>
KTemperature is an application to monitor the system temperature. I was motivated to develop this utility because I could not find a simple system tray resident application for monitoring the system temperature using the ACPI interface.
The application obtains the system temperature from the file /proc/acpi/thermal_zone/THRM/temperature .
I have been using Linux and Open Source for quite sometime and this is my first contribution. I hope this will lead to many more contributions from me.
Main features:
- Displays temperature in the system tray.
- Auto loading of ACPI thermal module if required and present.
- Detection of ACPI thermal interface if interface is present /proc/acpi/thermal_zone/*
- Right click options of Pause, Restart and Update for greater control of polling with ketboard shortcuts.
- Visually represents the temperature by increasing or decreasing the redness of the system tray icon with change in the temperature.
- The polling frequency can be changed from 1 second to 60 seconds.
- Configurable temperature monitoring interface. If the default monitoring point of /proc/acpi/thermal_zone/THRM/temperature is not present the icon displays NA instead of the temperature. The monitoring point can be configured in such cases.
- Persistent configuration. The configuration parameters are stored in a file located at $HOME/.ktemperatue . The file is read at application startup and previously stored values are used. If the application is being run for the first time the default values will be used.
Enhancements:
- Created archive to include version information.
- Added keyboard shortcuts to right click menu options.
- Added caption to root password dialog.
<<lessThe application obtains the system temperature from the file /proc/acpi/thermal_zone/THRM/temperature .
I have been using Linux and Open Source for quite sometime and this is my first contribution. I hope this will lead to many more contributions from me.
Main features:
- Displays temperature in the system tray.
- Auto loading of ACPI thermal module if required and present.
- Detection of ACPI thermal interface if interface is present /proc/acpi/thermal_zone/*
- Right click options of Pause, Restart and Update for greater control of polling with ketboard shortcuts.
- Visually represents the temperature by increasing or decreasing the redness of the system tray icon with change in the temperature.
- The polling frequency can be changed from 1 second to 60 seconds.
- Configurable temperature monitoring interface. If the default monitoring point of /proc/acpi/thermal_zone/THRM/temperature is not present the icon displays NA instead of the temperature. The monitoring point can be configured in such cases.
- Persistent configuration. The configuration parameters are stored in a file located at $HOME/.ktemperatue . The file is read at application startup and previously stored values are used. If the application is being run for the first time the default values will be used.
Enhancements:
- Created archive to include version information.
- Added keyboard shortcuts to right click menu options.
- Added caption to root password dialog.
Download (1.3MB)
Added: 2005-10-10 License: GPL (GNU General Public License) Price:
1474 downloads
Matew 1.9
Matew provides a valid HTML/CSS generator for static image albums. more>>
Matew provides a valid HTML/CSS generator for static image albums.
Matew is a valid HTML/CSS generator for static image albums. It supports retrieving information from EXIF cameras and includes customizable options like character set encoding.
Albums may contain sub-albums, and the appearance of an album can be fully personalized and customized by choosing a CSS style file and setting names and descriptions of albums and individual images.
Main features:
- Albums can contain sub albums: The album can have a tree structure;
- Automatical generation of a thumbnail and of scaled images for each image;
- EXIF information: Use of EXIF data structure found on some image files (usually, those produced by digital cameras and images softwares manipulation) to fill automatically some fields (camera model, date and time for example);
- Easy to use matew-wizard script to set the configuration file. Some of the fields it handles are:
- Character encoding for HTML generation, including UTF-8 (Unicode) support by default;
- Generated album appearance is customizable by choosing a default CSS style files or editing your own one;
- Internationalization (generation of album in different languages) by choosing a language file. Current supported languages are english, brazilian portuguese, italian, sweden and croatian;
- Support for a standard link to an external file;
- Thumbnails per page: You can choose how many thumbnails per column and per line the album will visualize.
- Three description fields (name, description and image identifier) can be associated with each album (in text or HTML format). You can easily customize these fields.
Enhancements:
- Added swedish language support file
- Revised checks() function
- Source code revised
- Small bug fixed in matew
<<lessMatew is a valid HTML/CSS generator for static image albums. It supports retrieving information from EXIF cameras and includes customizable options like character set encoding.
Albums may contain sub-albums, and the appearance of an album can be fully personalized and customized by choosing a CSS style file and setting names and descriptions of albums and individual images.
Main features:
- Albums can contain sub albums: The album can have a tree structure;
- Automatical generation of a thumbnail and of scaled images for each image;
- EXIF information: Use of EXIF data structure found on some image files (usually, those produced by digital cameras and images softwares manipulation) to fill automatically some fields (camera model, date and time for example);
- Easy to use matew-wizard script to set the configuration file. Some of the fields it handles are:
- Character encoding for HTML generation, including UTF-8 (Unicode) support by default;
- Generated album appearance is customizable by choosing a default CSS style files or editing your own one;
- Internationalization (generation of album in different languages) by choosing a language file. Current supported languages are english, brazilian portuguese, italian, sweden and croatian;
- Support for a standard link to an external file;
- Thumbnails per page: You can choose how many thumbnails per column and per line the album will visualize.
- Three description fields (name, description and image identifier) can be associated with each album (in text or HTML format). You can easily customize these fields.
Enhancements:
- Added swedish language support file
- Revised checks() function
- Source code revised
- Small bug fixed in matew
Download (MB)
Added: 2007-04-11 License: GPL (GNU General Public License) Price:
927 downloads
Cobertura 1.9
Cobertura is a free Java tool that calculates the percentage of code accessed by tests. more>>
Cobertura is a free Java tool that calculates the percentage of code accessed by tests.Cobertura project can be used to identify which parts of your Java program are lacking test coverage. It is based on jcoverage.
Main features:
- Can be executed from ant or from the command line.
- Instruments Java bytecode after it has been compiled.
- Can generate reports in HTML or XML.
- Shows percent of lines coveraged and branches coveraged for each class, package, and for the overall project.
- Shows the McCabe cyclomatic code complexity of each class, and the average cyclomatic code complexity for each package, and for the overall product.
- Can sort HTML results by class name, percent of lines covered, percent of branches covered, etc. And can sort in ascending or decending order.
Enhancements:
- Much improved branch coverage. Information on whether the true as well as the false of an if statement is collected. Also, information on the branches of a switch statement (including the default) is collected. (Jiri Mares)
- Assume Java source files are saved as UTF-8 instead of the computers default encoding.
- Write all HTML and XML reports in UTF-8 instead of the computers default encoding (Naoki Iwami).
- Fix a bug where the Cobertura ant tasks would not work correctly in Microsoft Windows when Cobertura was installed on a different drive than the drive from which youre running ant (Srivathsan Varadarajan).
- Added a "maxmemory" attribute to the instrument, merge and report ant tasks (Matt Cordes).
- Improve support for Maven and similar environments where control over system properties is difficult such as app servers, IoC containers, IDEs, etc. Setting the datafile location is difficult in these environments. To correct this, a cobertura.properties file located in the classpath is used to properly set the net.sourceforge.cobertura.datafile property. (Joakim Erdfelt)
<<lessMain features:
- Can be executed from ant or from the command line.
- Instruments Java bytecode after it has been compiled.
- Can generate reports in HTML or XML.
- Shows percent of lines coveraged and branches coveraged for each class, package, and for the overall project.
- Shows the McCabe cyclomatic code complexity of each class, and the average cyclomatic code complexity for each package, and for the overall product.
- Can sort HTML results by class name, percent of lines covered, percent of branches covered, etc. And can sort in ascending or decending order.
Enhancements:
- Much improved branch coverage. Information on whether the true as well as the false of an if statement is collected. Also, information on the branches of a switch statement (including the default) is collected. (Jiri Mares)
- Assume Java source files are saved as UTF-8 instead of the computers default encoding.
- Write all HTML and XML reports in UTF-8 instead of the computers default encoding (Naoki Iwami).
- Fix a bug where the Cobertura ant tasks would not work correctly in Microsoft Windows when Cobertura was installed on a different drive than the drive from which youre running ant (Srivathsan Varadarajan).
- Added a "maxmemory" attribute to the instrument, merge and report ant tasks (Matt Cordes).
- Improve support for Maven and similar environments where control over system properties is difficult such as app servers, IoC containers, IDEs, etc. Setting the datafile location is difficult in these environments. To correct this, a cobertura.properties file located in the classpath is used to properly set the net.sourceforge.cobertura.datafile property. (Joakim Erdfelt)
Download (0.60MB)
Added: 2007-06-06 License: GPL (GNU General Public License) Price:
878 downloads
JukePeg 1.9
JukePeg is an MP3 decoder/player that is controlled from a socket interface - easily driven from Perl. more>>
JukePeg is an MP3 decoder/player that is controlled from a socket interface - easily driven from Perl. It supports more than one output device (and can play different tracks to each), and is able to fade-in, fade-out and overlap tracks. The volume, fade-in, fade-out and overlap settings can be set on a track by track basis.
The MPEG decoder is taken from the FreeAmp (http://www.freeamp.org) source, so many thanks to them. On IA32 the decoder will use assembler functions for some of the decoder if you have the NASM assembler installedon that machine.
An alternative MPEG decoder from the MPG123 project (http://www.mpg123.com) is also included; JukePeg can be built using either decoder.
The code was built and tested on an IA32 Debian system (2.2r2) using the GCC 2.95.2 compiler (a quick test was also done on a DEC Alpha box). Id be interested to hear from anyone who builds it on a big-endian machine.
If you have multiple sound devices you can list them in the DEVICES entry in /etc/jukepeg.conf so that JukePeg controls all of them.
<<lessThe MPEG decoder is taken from the FreeAmp (http://www.freeamp.org) source, so many thanks to them. On IA32 the decoder will use assembler functions for some of the decoder if you have the NASM assembler installedon that machine.
An alternative MPEG decoder from the MPG123 project (http://www.mpg123.com) is also included; JukePeg can be built using either decoder.
The code was built and tested on an IA32 Debian system (2.2r2) using the GCC 2.95.2 compiler (a quick test was also done on a DEC Alpha box). Id be interested to hear from anyone who builds it on a big-endian machine.
If you have multiple sound devices you can list them in the DEVICES entry in /etc/jukepeg.conf so that JukePeg controls all of them.
Download (0.10MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1192 downloads
Xastir 1.9.1
Xastir ptoject can receive and plot APRS position packets. more>>
Xastir ptoject can receive and plot APRS position packets. Development is a collaborative effort of programmers from around the world. Xastir supports many map formats and is highly customizable. Check out the "Screen Shots" link to see just a few of the ways that Xastir can be used.
Xastir runs on Windows/MacOSX/Linux/FreeBSD/Solaris/Lindows, with many more possible. It supports 125 map formats, several types of TNCs and weather stations, Festival speech synthesizer, AX.25 networking (Soundmodem/Baycom/SCC!) and seven languages!. On Unix-like operating systems, you can run your weather station or GPS on a separate computer as well, which is good for those hams who are already short on serial ports.
Xastir is FREE! under the GPL license and comes with all source code.
<<lessXastir runs on Windows/MacOSX/Linux/FreeBSD/Solaris/Lindows, with many more possible. It supports 125 map formats, several types of TNCs and weather stations, Festival speech synthesizer, AX.25 networking (Soundmodem/Baycom/SCC!) and seven languages!. On Unix-like operating systems, you can run your weather station or GPS on a separate computer as well, which is good for those hams who are already short on serial ports.
Xastir is FREE! under the GPL license and comes with all source code.
Download (2.1MB)
Added: 2007-05-02 License: GPL (GNU General Public License) Price:
909 downloads
Portslave 1.9.11
Portslave is a RADIUS client used to create dialup access servers. more>>
Portslave is a RADIUS client used to create dialup access servers.
Portslave project uses the RADIUS protocol to authenticate from a remote RADIUS server which contains the actual user account information.
It primarily is for PPP access, but also works with other protocols and services.
Installation:
./configure --enable-shadow --with-pppdradius=/usr/sbin/pppd
make
make install
<<lessPortslave project uses the RADIUS protocol to authenticate from a remote RADIUS server which contains the actual user account information.
It primarily is for PPP access, but also works with other protocols and services.
Installation:
./configure --enable-shadow --with-pppdradius=/usr/sbin/pppd
make
make install
Download (0.39MB)
Added: 2006-01-17 License: GPL (GNU General Public License) Price:
1377 downloads
ktvschedule 0.1.9
ktvschedule is a front end for xmltv, based on KDE 3. more>>
ktvschedule is a front end for xmltv, based on KDE 3. It shows TV program listings in a calendar view.
Enhancements:
Upgrade :
- Added systemtray
- Added Credits of Tv shows (Actors, Guests, Producers)
- Added link to imdb for each actor in the menu
- Added Translations (german full, french partial, greek zero)
- Added possibility to choose the details one wants to display
- Changed grabber configuration menu. Takes in account the differences between each tv_grab
- Show in the tray icon the current shows.
- Added (first) support for nxtvepg. At the moment it only supports showing of the nxtvepg xml file. Updating should be done by the user
- Added control of row heights.
- Added horizontal bar at current time.
- Upgraded tv_grab configuration menu
BugFix :
- Probably the last fix needed for sorting and icons in function of the different grabbers
- If show is 2 lines long or less than 10 mins show text is cut. Fixed
- Tv_Grab did not quits after ktvschedule quits. Fixed
- Fixed minimum size of ComboBox in case of empty combolist
- Manage channel button is disabled while refreshing guide
<<lessEnhancements:
Upgrade :
- Added systemtray
- Added Credits of Tv shows (Actors, Guests, Producers)
- Added link to imdb for each actor in the menu
- Added Translations (german full, french partial, greek zero)
- Added possibility to choose the details one wants to display
- Changed grabber configuration menu. Takes in account the differences between each tv_grab
- Show in the tray icon the current shows.
- Added (first) support for nxtvepg. At the moment it only supports showing of the nxtvepg xml file. Updating should be done by the user
- Added control of row heights.
- Added horizontal bar at current time.
- Upgraded tv_grab configuration menu
BugFix :
- Probably the last fix needed for sorting and icons in function of the different grabbers
- If show is 2 lines long or less than 10 mins show text is cut. Fixed
- Tv_Grab did not quits after ktvschedule quits. Fixed
- Fixed minimum size of ComboBox in case of empty combolist
- Manage channel button is disabled while refreshing guide
Download (0.45MB)
Added: 2005-07-19 License: GPL (GNU General Public License) Price:
1557 downloads
PurpleView 1.9.1b
PurpleView provides a paper review system. more>>
PurpleView provides a paper review system.
PurpleView is a paper review system that was designed to help distributed project development. It serves as a collection of materials relevant to a field of interest, and its review capability allows users to distinguish good and relevant items from bad and irrelevant items.
Submission of papers in different Categories and Platforms aids their systematization. The sorting and searching features facilitate powerful and expedient data examination.
It incorporates discussion forums for each item, notifications and message boards, and features security logins and automated database backups that assure the systems accountability and availability.
The additional features added to PurpleView help increase its effectiveness. The systems notification and message board keeps members up-to-date with databases latest changes.
PurpleViews rank list shows users activity according to the submitted materials and reviews. Paging capabilities reduce bandwidth demands and improve clarity of big databases. Security logins and automated database backup assure respectively the systems accountability and availability.
Enhancements:
- dded the register_globals off kludge (Eric Titolo)
- put some comments in (Eric Titolo)
- added a db_prefix "pv_" in the table entries(Eric Titolo)
- added $server_name var(Eric Titolo)
- replace obsolete mysql_db_query with mysql_query(Lyudmil Antonov)
<<lessPurpleView is a paper review system that was designed to help distributed project development. It serves as a collection of materials relevant to a field of interest, and its review capability allows users to distinguish good and relevant items from bad and irrelevant items.
Submission of papers in different Categories and Platforms aids their systematization. The sorting and searching features facilitate powerful and expedient data examination.
It incorporates discussion forums for each item, notifications and message boards, and features security logins and automated database backups that assure the systems accountability and availability.
The additional features added to PurpleView help increase its effectiveness. The systems notification and message board keeps members up-to-date with databases latest changes.
PurpleViews rank list shows users activity according to the submitted materials and reviews. Paging capabilities reduce bandwidth demands and improve clarity of big databases. Security logins and automated database backup assure respectively the systems accountability and availability.
Enhancements:
- dded the register_globals off kludge (Eric Titolo)
- put some comments in (Eric Titolo)
- added a db_prefix "pv_" in the table entries(Eric Titolo)
- added $server_name var(Eric Titolo)
- replace obsolete mysql_db_query with mysql_query(Lyudmil Antonov)
Download (0.31MB)
Added: 2007-02-08 License: GPL (GNU General Public License) Price:
988 downloads
TheBOT 1.9
TheBOT provides an IRC bot written in bash. more>>
TheBOT provides an IRC bot written in bash.
TheBot is a simple IRC bot written in the bash scripting language. It is based on a modular design.
to get this thing online use the `run script (in this directory)
but please edit the configuration file first - `config.
for information about available commands see doc/commands.html
to learn how to write commands (or just try) read doc/writting-commands.html
to be able to identify youll need to crypt your password first, then add
it into the passwd file.
Ive included the source and the binary of the `crypt utlilty.
if you want to recompile just type make in the bin directory.
now, lets say that youre `SuperDude and wanna use the pass `ircforlife
first crypt your password:
SuperDude:thebot/bin$ crypt ircforlife
^Y7T08nTQpiz6
the next step is to add yourself into the passwd file:
SuperDude:thebot$ echo "SuperDude:^Y7T08nTQpiz6" >> passwd
to identif just use: /msg thebot +id ircforlife
everything else is the same.even when adding new user
with the add command.thebot crypts the password and writes it to the file.
<<lessTheBot is a simple IRC bot written in the bash scripting language. It is based on a modular design.
to get this thing online use the `run script (in this directory)
but please edit the configuration file first - `config.
for information about available commands see doc/commands.html
to learn how to write commands (or just try) read doc/writting-commands.html
to be able to identify youll need to crypt your password first, then add
it into the passwd file.
Ive included the source and the binary of the `crypt utlilty.
if you want to recompile just type make in the bin directory.
now, lets say that youre `SuperDude and wanna use the pass `ircforlife
first crypt your password:
SuperDude:thebot/bin$ crypt ircforlife
^Y7T08nTQpiz6
the next step is to add yourself into the passwd file:
SuperDude:thebot$ echo "SuperDude:^Y7T08nTQpiz6" >> passwd
to identif just use: /msg thebot +id ircforlife
everything else is the same.even when adding new user
with the add command.thebot crypts the password and writes it to the file.
Download (0.062MB)
Added: 2007-04-11 License: Freely Distributable Price:
926 downloads
PeaZip 1.9
PeaZip is an archiving application, archive/extract: 001 (raw file split/join), 7z, 7zip sfx, Bzip2, Gzip, Pea, Tar, Z, Zip. more>>
PeaZip project is an archiver tool that supports its native Pea archive format (featuring compression, split volumes, and flexible encryption and integrity check schemes) and other mainstream formats, with special focus on handling open formats.
Full support: 7Z, 7-Zip sfx, Bzip2, Gzip, PEA, split TAR and ZIP.
Browse/test/extract-only support for ARJ, CAB, CHM, CPIO, DEB, ISO, LZH, NSIS installers, OOo files, RAR, RPM, Z.
PeaZips UI aims giving aid to the user to: edit, save and restore layout of archives (input files and folders list) to speed up definition of archiving and backup operations; save job definition, as plain text, to be used in scripts or for learning purpose; have a detailed job log after each operation.
The interface is fully skinnable (skins can be customised and saved as plain text to be re-edited as freely as possible) and uses customisable transparency.
The program doesnt need to be installed/unistalled, it can run from any path (even remote; a writeable path is recommended), however Windows version is released both as a standalone binary and as a fully automated installer/uninstaller package, allowing tight system integration to use PeaZip right from Explorer.
PeaZip acts as a graphic frontend for Pea executable (graphical) from the same Author and for Igor Pavlovs 7z executable (Myspaces 7z POSIX port under Linux), that can run in console mode or through a graphical wrapper to allow more user-friendly handling of output information.
Enhancements:
- Release 1.9 introduces several updates, new functions and interface enhancements over 1.8 series, based on feedback collected on previous 1.8 release series, featuring a substantially renewed user interface driven to a cleaner design and better usability. The layout composer and the archive browser were improved, introducing multiple selection, AZ/ZA sorting, better designed popup menus, options organized in a tabs, archive browsing navigation bar, recent archives history and many other under the hood usability improvements; see change log for a detailed description.
<<lessFull support: 7Z, 7-Zip sfx, Bzip2, Gzip, PEA, split TAR and ZIP.
Browse/test/extract-only support for ARJ, CAB, CHM, CPIO, DEB, ISO, LZH, NSIS installers, OOo files, RAR, RPM, Z.
PeaZips UI aims giving aid to the user to: edit, save and restore layout of archives (input files and folders list) to speed up definition of archiving and backup operations; save job definition, as plain text, to be used in scripts or for learning purpose; have a detailed job log after each operation.
The interface is fully skinnable (skins can be customised and saved as plain text to be re-edited as freely as possible) and uses customisable transparency.
The program doesnt need to be installed/unistalled, it can run from any path (even remote; a writeable path is recommended), however Windows version is released both as a standalone binary and as a fully automated installer/uninstaller package, allowing tight system integration to use PeaZip right from Explorer.
PeaZip acts as a graphic frontend for Pea executable (graphical) from the same Author and for Igor Pavlovs 7z executable (Myspaces 7z POSIX port under Linux), that can run in console mode or through a graphical wrapper to allow more user-friendly handling of output information.
Enhancements:
- Release 1.9 introduces several updates, new functions and interface enhancements over 1.8 series, based on feedback collected on previous 1.8 release series, featuring a substantially renewed user interface driven to a cleaner design and better usability. The layout composer and the archive browser were improved, introducing multiple selection, AZ/ZA sorting, better designed popup menus, options organized in a tabs, archive browsing navigation bar, recent archives history and many other under the hood usability improvements; see change log for a detailed description.
Download (MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
812 downloads
Lyricue 1.9.10
Lyricue is used to edit/display song lyrics on a second screen/projector for use at singing events such as church services. more>>
Lyricue 1.9.10 is an extremely useful utility for everyone. It can be used to edit/display song lyrics on a second screen/projector for use at singing events such as church services.
With Lyricue you are not restricted to setting everything up before the event as you can add, remove and change songs on the fly. You can edit a song while it is up on the screen and quickly show your changes (good for when you notice a misspelling or the singers decide to change the words on you). You can even type up notes directly to the screen or quickly display a bible verse at an instants notice.
Major Features:
- Web interface available
- OpenGL accelerated server using Clutter
- Video backgrounds
- Display over live video
- Runs in English, German, French, Dutch or Swedish
- Networkable (i.e. run interface and server on different machines)
- User access controls
- Multiple Playlists
- Copyright info for songs
- Automatic Page advance
- Duplicate/Delete individual pages in playlist
- Preferences Dialog
- Re-orderable playlist
- Playlist entries to change background
- Can run at configurable resolution
- User-specific configuration/images (or can all refer to global one)
- All songs kept in a database and so screens are dynamically generated, allowing you to easily change the backdrop, font etc without having to change all the songs
- Can automatically create screens for bible verses (KJV included since there are licensing issues with NIV)
- Quick searching for songs
- Playlist shown as collapsible tree so easy to find wanted page
- Can use any image as backdrop (stored in database)
- Can add images to playlist (stored in database)
- Add/Edit/Remove Songs (even while they are being displayed)
- Honourize a song (change 'jesus' to 'Jesus' etc)
- Preview a song as you enter it
- Drag'n'Drop playlist adding
- Searching by song name or the lyrics themselves
- Change Font/Colours of server
- Graphical error reporting
- Spellchecking
Enhancements:
- Drag'n'Drop backgrounds
- First-run wizard to help with initial setup
- Much better automatic handling of multiple monitors
- Preview displays now look/scale better
- Gtk2-Perl 1.020
- MySQL 4.0.12
- Perl 5.8.0
Added: 2009-07-01 License: GPL Price: FREE
15 downloads
Other version of Lyricue
Price: FREE
License:GPL
License:GPL
kdepopup 0.1.9
kdepopup is a project that allows you to receive and send messages via Samba. more>>
kdepopup is a project that allows you to receive and send messages via Samba.
kdepopup uses smbclient to send SMB messages. Incoming SMB messages will be shown in a seperate window.
You may reply to these messages or save them to a file.
kdepopup is running as a server under KDE and can also issue smbclient -M commands.
This lets you receive, send and reply to these messages.
It relies on a running nmbd (and I think smbd).
Enhancements:
- now with more error recovery and session management
<<lesskdepopup uses smbclient to send SMB messages. Incoming SMB messages will be shown in a seperate window.
You may reply to these messages or save them to a file.
kdepopup is running as a server under KDE and can also issue smbclient -M commands.
This lets you receive, send and reply to these messages.
It relies on a running nmbd (and I think smbd).
Enhancements:
- now with more error recovery and session management
Download (0.31MB)
Added: 2006-10-26 License: GPL (GNU General Public License) Price:
1093 downloads
Wellenreiter 1.9
An easy to use, GTK/Perl-based wireless sniffer/scanner with enhanced features. more>>
Wellenreiter is a gtkperl program that makes the discovery and auditing of 802.11b wireless networks as easy as possible.
For discovery of the accesspoints / networks / ad-hoc cards, Wellenreiter has an amazingly easy to use scanner window, which searches for any accesspoint within the range of the scanning device.
It detects and differentiates essid broadcasting and non-broadcasting wireless networks. The manufacturer is detected by the devices MAC address. WEP and BSS / IBSS detection is also implemented.
Detecting essids of non-broadcasting networks is possible and gps support is also built in (Requires gpsd). Wellenreiter is the first Wireless scanner that does not need to be configured anymore.
Its amazing autodetection takes care about taking the correct cardtype and using the right comands. Lucent/Orinocco, Cisco and Prism2/2.5 (WLAN-NG drivers) based Cards are supported now. NO, hosap drivers actualy dont work in this version, stay tuned for that.
The Networks with a red symbol are "non-essid-broadcasting" ones. This means the accesspoint does not send out the essid network name for security reasons.
Non-broadcasting networks can be only detected by using the raw-sniffing mode. Green symbols are shown for a broadcasting network.
The distinction between WEP/cleartext sending accesspoints is indicated by the word "ON" or "OFF" and a little open or closed lock icon. AD-Hoc stations (BSS) have different icons than real accesspoints (IBSS).
Channels that are holding new objects are colored red until you select it. The pkt indicator on the right side of the listview alternates between the two characters "+" and "*". When it alternates, this accesspoint is sending traffic.
So its a traffic indication. If you click on an object in the treeview you will get the detail window. This window refresh after a while. Keep it open to see arp and dhcp traffic.
Use the logwindow to take care of all your findings and the trafficwindow to see what packets are coming in. Oh, one word about saving, it automaticly saves a dump and a savefile to your homedrive.
Main features:
- Cisco based cards
- Lucent based cards
- Prism2 based cards (Wlan-ng drivers only)
Enhancements:
- Added the Userguide in the docs diretory.
- Raised the packetcapture lenght from 400 to 65535 wich should not truncate anymore.
- Still adding some smaller fixes. Added a patch for better detection of prism2 based PCI and usb cards.
- Choose card window fixed.
- IBSS/ESS text in window is now correct, sorry for that.
<<lessFor discovery of the accesspoints / networks / ad-hoc cards, Wellenreiter has an amazingly easy to use scanner window, which searches for any accesspoint within the range of the scanning device.
It detects and differentiates essid broadcasting and non-broadcasting wireless networks. The manufacturer is detected by the devices MAC address. WEP and BSS / IBSS detection is also implemented.
Detecting essids of non-broadcasting networks is possible and gps support is also built in (Requires gpsd). Wellenreiter is the first Wireless scanner that does not need to be configured anymore.
Its amazing autodetection takes care about taking the correct cardtype and using the right comands. Lucent/Orinocco, Cisco and Prism2/2.5 (WLAN-NG drivers) based Cards are supported now. NO, hosap drivers actualy dont work in this version, stay tuned for that.
The Networks with a red symbol are "non-essid-broadcasting" ones. This means the accesspoint does not send out the essid network name for security reasons.
Non-broadcasting networks can be only detected by using the raw-sniffing mode. Green symbols are shown for a broadcasting network.
The distinction between WEP/cleartext sending accesspoints is indicated by the word "ON" or "OFF" and a little open or closed lock icon. AD-Hoc stations (BSS) have different icons than real accesspoints (IBSS).
Channels that are holding new objects are colored red until you select it. The pkt indicator on the right side of the listview alternates between the two characters "+" and "*". When it alternates, this accesspoint is sending traffic.
So its a traffic indication. If you click on an object in the treeview you will get the detail window. This window refresh after a while. Keep it open to see arp and dhcp traffic.
Use the logwindow to take care of all your findings and the trafficwindow to see what packets are coming in. Oh, one word about saving, it automaticly saves a dump and a savefile to your homedrive.
Main features:
- Cisco based cards
- Lucent based cards
- Prism2 based cards (Wlan-ng drivers only)
Enhancements:
- Added the Userguide in the docs diretory.
- Raised the packetcapture lenght from 400 to 65535 wich should not truncate anymore.
- Still adding some smaller fixes. Added a patch for better detection of prism2 based PCI and usb cards.
- Choose card window fixed.
- IBSS/ESS text in window is now correct, sorry for that.
Download (0.51MB)
Added: 2005-09-19 License: GPL (GNU General Public License) Price:
1525 downloads
xmmsctrl 1.9
xmmsctrl is a small utility to control xmms from the command line. more>>
xmmsctrl is a small utility to control xmms from the command line. xmmsctrls goal is to be used coupled with sh to test xmms state and perform an appropriate action, e.g. if playing then pause else play.
The interest of this is to bind keys in a window manager to have control over xmms with keys that do play/next/pause, prev, control sound...
Configuration: create in your home directory a directory .FancyLauncher and then copy the plugins directory with: cp -r /usr/local/FancyLauncher/plugins ~/.FancyLauncher/
<<lessThe interest of this is to bind keys in a window manager to have control over xmms with keys that do play/next/pause, prev, control sound...
Configuration: create in your home directory a directory .FancyLauncher and then copy the plugins directory with: cp -r /usr/local/FancyLauncher/plugins ~/.FancyLauncher/
Download (0.014MB)
Added: 2006-04-12 License: GPL (GNU General Public License) Price:
1291 downloads
cutmp3 1.9.2
cutmp3 is a small and fast command line MP3 editor. more>>
cutmp3 is a small and fast command line MP3 editor. cutmp3 lets you select sections of an MP3 interactively or via a timetable and save them to separate files without quality loss.
It uses mpg123 for playback and works with VBR files and even with files bigger than 2GB.
Other features are configurable silence seeking and ID3 tag seeking, which are useful for concatenated mp3s.
Playback is realized via mpg123, so be sure to have it installed or at least have a symlink to your favorite mp3 playing program.
I recommend a symlink to mpg321 which works better!
You can mark beginning and end of a segment with a and b and save the segment with s.
Using a timetable or direct times with VBR files delivers exact(!) results at the cost of slightly lower speed. cutmp3 even works with files bigger than 2 GB!
If you want a working graphical software you can try mp3directcut,
which runs fairly well in WINE after I asked the author about a WINEd version.
Installation:
make (you will need readline-devel or similar!)
install it to /usr/bin with
make install
Enhancements:
- A small fix for timetable cutting with negative values has been made.
- Another option for silence seeking has been added.
- The documentation has been updated.
<<lessIt uses mpg123 for playback and works with VBR files and even with files bigger than 2GB.
Other features are configurable silence seeking and ID3 tag seeking, which are useful for concatenated mp3s.
Playback is realized via mpg123, so be sure to have it installed or at least have a symlink to your favorite mp3 playing program.
I recommend a symlink to mpg321 which works better!
You can mark beginning and end of a segment with a and b and save the segment with s.
Using a timetable or direct times with VBR files delivers exact(!) results at the cost of slightly lower speed. cutmp3 even works with files bigger than 2 GB!
If you want a working graphical software you can try mp3directcut,
which runs fairly well in WINE after I asked the author about a WINEd version.
Installation:
make (you will need readline-devel or similar!)
install it to /usr/bin with
make install
Enhancements:
- A small fix for timetable cutting with negative values has been made.
- Another option for silence seeking has been added.
- The documentation has been updated.
Download (0.033MB)
Added: 2007-04-06 License: GPL (GNU General Public License) Price:
931 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above ktemperature 1.9 1 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed