Main > Free Download Search >

Free maxim software for linux

maxim

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 19
MEKA 0.72

MEKA 0.72


MEKA is a multi-machine emulator for MS-DOS, MS-Windows and maybe GNU/Linux. more>> MEKA is a multi-machine emulator for MS-DOS, MS-Windows and maybe GNU/Linux.
The following machines are supported by MEKA:
Sega Game 1000 (SG-1000)
Sega Computer 3000 (SC-3000)
Sega Super Control Station (SF-7000)
Sega Mark III (+ FM Unit)
Sega Master System (SMS)
Sega Game Gear (GG)
ColecoVision (COLECO)
Othello Multivision (OMV)
MEKA also include a powerful debugger and various debugging/hacking tools.
MEKA is the result of a several years effort from several persons.
Omar Cornut "Bock" - Machine emulation, Graphical User Interface, tools, and other general things. Im the main responsible for MEKA, although other people have contributed with various important work (read below).
Hiromitsu Shioya "Hiro-shi" has been working on the original MEKA sound engine years ago. His work still shows in the main sound engine structure, YM-2413 emulation through OPL and the sound interface to the SEAL Audio library.
Marat Fayzullin "Rst38h" wrote a Z80 CPU core for his various emulation project, and that ended being used in MEKA. Ive brought fixes and improvements to the core, but the very most of work is definitively from Marat.
Maxim has contributed work and research on the SN-76496 PSG along with an implementation that eventually replaced the initial one.
Mitsutaka Okazaki has wrote a digital YM-2413 emulator named Emu2413, which was implemented in MEKA. You can hear this emulator by enabling FM Unit and digital emulation.
Ulrich Cordes finally wrote a FDC-765 emulator that was used as a base to emulate the floppy disk controller of the SF-7000.
MEKA is distributed freely on the internet as a downloadable ZIP archive containing the whole, non-crippled program and additionnal data and documentation related to it.
If you like the emulator, any form of contribution is greatly welcome and appreciated. Contributions helps the MEKA and SMS Power! projects, which are tied together.
<<less
Download (777KB)
Added: 2009-04-22 License: Freeware Price: Free
190 downloads
TrafIP 3.3

TrafIP 3.3


TrafIP provides a small solution for monitoring traffic and bandwith. more>>
TrafIP provides a small solution for monitoring traffic and bandwith.
TrafIP - its a small solution(3 files) for monitoring your traffic and bandwidth. Its available for using with PHP and Linux(or any type of unix/bsd etc).
Unlike other programs you will have all data updated at 6 seconds. The graphs are generated when you access them. Oh, its FREE!
Options:
- the name of file wich contains colected data
- ip address filtered/of interface
- the maximum speed than the line can download in 6 seconds. if you see black lines without interface to be down, then increase this value, it is just to detect line up/down
- the color for upload traffic
- the color for download traffic
- image type png recomended for small size and look(can be png, gif or jpg)
Installation is easy. Just add those lines to your firewall or put somewhere to start allways.
After this modify the collect.sh script with the result from your iptables -L -n. And of course put the .php files somewhere to access via www :) and make the directory writeable.
The output file must be in the directory where are the php files. By default without selecting anything will show last hour traffic. Its pretty live(update at 6 seconds, not like other programs).
Quick example:
[root@lair trafip]# iptables -A OUTPUT -s 0.0.0.0/0 -d 127.0.0.1
[root@lair trafip]# iptables -A INPUT -d 0.0.0.0/0 -s 127.0.0.1
[root@lair trafip]# iptables -L -n|grep 127|grep -v ACCEPT|grep -v LOG|grep -v DROP
all -- 127.0.0.1 0.0.0.0/0
all -- 0.0.0.0/0 127.0.0.1
Get the strings "127.0.0.1 0.0.0.0/0" and "0.0.0.0/0 127.0.0.1" and put in collect.sh. Must be exact like iptables shows(better you copy paste that part). The script collect.sh must be allways running to count.
In img.php modify:
$target variable with the name where you redirect the output from collect.sh(ex: $target="local";)
$ip variable with the IP(ex: $ip="127.0.0.1";)
$maxspeed variable with the maximum maxim traffic can be done in 6 seconds(ex: $ip="115200";). If you have black lines on your graph without stopping the interface/traffic the increase the value.
$upload variable with red or green(ex: $upload="red";)
$download variable with red or green(ex: $download="green";)
$imagetype variable with png, gif or jpg, if for output format of graph(ex: $imagetype="gif")
The output file must be something like:
11/12/02 05:57:26 10782702 149477806
11/12/02 05:57:32 10783170 149489806
11/12/02 05:57:38 10783810 149509426
(format: month/day/year[space]hour:minutte:second[space]INPUT_counter[space]OUTPUT_counter
Enhancements:
- New output formats
- an interface to see detailed traffic.
<<less
Download (0.005MB)
Added: 2007-03-07 License: GPL (GNU General Public License) Price:
963 downloads
REXML 3.1.5

REXML 3.1.5


REXML is a conformant XML processor for the Ruby programming language. more>>
REXML is a conformant XML processor for the Ruby programming language. REXML passes 100% of the Oasis non-validating tests and includes full XPath support.
REXML is reasonably fast, and is implemented in pure Ruby. Best of all, it has a clean, intuitive API. REXML is included in the standard library of Ruby.
This software is distribute under the Ruby license.
REXML arose out of a desire for a straightforward XML API, and is an attempt at an API that doesnt require constant referencing of documentation to do common tasks. "Keep the common case simple, and the uncommon, possible."
REXML avoids The DOM API, which violates the maxim of simplicity. It does provide a DOM model, but one that is Ruby-ized. It is an XML API oriented for Ruby programmers, not for XML programmers coming from Java.
Some of the common differences are that the Ruby API relies on block enumerations, rather than iterators. For example, the Java code:
for (Enumeration e=parent.getChildren(); e.hasMoreElements(); ) {
Element child = (Element)e.nextElement(); // Do something with child
}
in Ruby becomes:
parent.each_child{ |child| # Do something with child }
Cant you feel the peace and contentment in this block of code? Ruby is the language Buddha would have programmed in.
One last thing. If you use and like this software, and youre in a position of power in a company in Western Europe and are looking for a software architect or developer, drop me a line. I took a lot of French classes in college (all of which Ive forgotten), and I lived in Munich long enough that I was pretty fluent by the time I left, and Id love to get back over there.
Main features:
- Four intuitive parsing APIs.
- Intuitive, powerful, and reasonably fast tree parsing API (a-la DOM
- Fast stream parsing API (a-la SAX)1
- SAX2-based API2
- Pull parsing API.
- Small
- Reasonably fast (for interpreted code)
- Native Ruby
- Full XPath support3
- XML 1.0 conformant4
- ISO-8859-1, UNILE, UTF-16 and UTF-8 input and output; also, support for any encoding the iconv supports.
- Documentation
Enhancements:
- Bugfixes and a couple of feature requests were made.
<<less
Download (0.51MB)
Added: 2006-09-11 License: Other/Proprietary License Price:
1138 downloads
xtklib 0.1.0

xtklib 0.1.0


xtklib provides a simple, complete API to developers who want to create cross-platform software. more>>
The purpose of xtklib is to provide a simple, unique and complete set of API to developers that wants to create cross-platform software under the maxim "Write once, compile everywhere".
In particular, the library, provides a full abstraction layer between the APIs and the main services offered by the underlying operating system(eg. Thread, processes,GUI,Filesystem...) plus a set of generic utilities (eg. Strings,Data structures...).
Unlike other famous libraries, xtklib makes full use of all features of C++ like RTTI, Templates, Exceptions so obtaining a strongly object-oriented set of APIs with a Java-like sensation.
The library is composed by two main modules: "Base" and "Widgets". Initially, the target operating systems are Windows and Unix(Linux and BSD in primis) with a plan to move also towards other systems.
Main features:
Threading and Synchronization
Advanced I/O Streams
- Binary streams
- Character streams
Exceptions with stack tracing support
- Exceptions hierarchy
- Stack trace walk and print
Socket Networking
- xServerSocket: for server socket
- xSocket: for client socket
FileSystem access
- File attribute access
- Directory scanning
- File streams
DataStructures framework
- xArrayList: Array-based list
- xLinkedList: Linked-structures based list
- xHashMap: Hash table based mappings
- xAvlMap: Avl tree based mappings
- xArray: Dynamic
String class
- Internal representation in Unicode
- Conversion to/from different encodings
Unicode support
- Support for main encodings
Memory leaks detection
Logging framework
Processes with I/O redirection
And many others...
Enhancements:
- In this release only the "Base" module works and the library can only be compiled statically.
<<less
Download (0.13MB)
Added: 2005-10-06 License: The Apache License 2.0 Price:
1478 downloads
dsflasher 0.9

dsflasher 0.9


dsflasher is a utility to flash Dallas (Maxim) DS89C450 microcontrollers using a ROM loader. more>>
dsflasher is a utility to flash Dallas (Maxim) DS89C450 microcontrollers using a ROM loader.

Usage:

dsflasher -f [input filename] -p [serial port]
<<less
Download (0.003MB)
Added: 2007-08-22 License: GPL (GNU General Public License) Price:
797 downloads
X File Explorer 1.00

X File Explorer 1.00


X File Explorer is a file manager for the X Window System. more>>
X File Explorer (Xfe) is an MS-Explorer like file manager for X. X File Explorer is based on the popular, but discontinued, X Win Commander, originally developed by Maxim Baranov.
Xfe aims to be the file manager of choice for all the Unix addicts!
Why another file manager when the excellent Konqueror or Nautilus exist on Linux systems? The answer is quite simple : these file managers are very good, features rich and look wonderful, but they are like a brontosaurus when you are a console addict and only want to copy some files or delete it. Another problem is that they require either the whole Gnome or KDE desktops to be installed on your system!
On the contrary, Xfe is small, very rapid and only requires the FOX library to be fully functional. It can be launched from the command line in a fraction of second, and can efficiently complete the set of command line tools.
Main features:
- Four different file manager styles (one panel, two panels, tree list and one panel, tree list and two panels)
- Integrated text viewer (X File View, xfv)
- Integrated RPM viewer / installer / uninstaller (X File Query, xfq)
- Status line
- File associations
- Auto save registry
- Right mouse click pop-up menu in tree list and file list
- Change file(s) attributes
- Mount/Unmount devices (for Linux only)
- Toolbar
- Bookmarks (up to 20)
- Color schemes (GNOME, KDE, Windows...)
- Drag and Drop ( ctrl -> copy, shift -> move, alt -> symlink )
- Create / Extract archives (tar, zip, gzip, bzip2, compress formats are supported)
- Tool tips for long file names
- Progress bars or dialogs for lengthy file operations
- Image preview as thumbnails
- Ability to enqueue multimedia files (open command)
Key bindings:
- Help - F1
- View - F3, return
- Edit - F4
- Copy - F5, ctrl-c
- Cut - ctrl-x
- Paste - ctrl-v
- Move - F6, ctrl-d
- Rename - ctrl-n
- Delete - F8, del, ctrl-del
- Symlink - ctrl-s
- New file - F2
- New folder - F7
- Properties - F9
- Tree and one panel - ctrl-F1
- Tree and two panels - ctrl-F2
- One panel - ctrl-F3
- Two panels - ctrl-F4
- Hidden files - ctrl-F5
- Hidden folders - ctrl-F6
- Execute - ctrl-e
- Go home - ctrl-h
- Go up - backspace
- Terminal - ctrl-t
- Console file manager - ctrl-k
- Refresh - ctrl-r
- Select all - ctrl-a
- Deselect all - ctrl-z
- Invert selection - ctrl-i
- Add bookmark - ctrl-b
- Mount (Linux only) - ctrl-m
- Unmount (Linux only) - ctrl-u
- Quit - ctrl-q
<<less
Download (1.6MB)
Added: 2007-07-17 License: GPL (GNU General Public License) Price:
839 downloads
Downloader for X 2.5.1

Downloader for X 2.5.1


A Linux/Unix userfriendly program with nice X interface to download files from the Internet more>>
Downloader for X is a Linux/Unix userfriendly program with nice X interface to download files from the Internet. It supports both FTP and HTTP protocols, supports resuming (of course if server side supports it) and makes downloading files from internet easy. Downloader for X is an analogue for Linux/Unix of such famous applications for Windows as ReGet, Go!Zilla and GetRight.
Of course this program is not a copy of any of programs above. Downloader for X was written from scratch by me in the hope to decrease a pain of downloading many files from Internet even on really bad modem lines. But if you are happy owner of T1 connection then D4X is for you too because It can use this bandwidth completely! And this is not a end of the list of Downloader for Xs features!
Not completed list of key features:
- Supporting both FTP and HTTP protocols as well as HTTP and FTP proxy servers. SOCKS5 support is also included! Authentication on the proxy servers is supported too.
-The Program keep the logs of all download sessions that allows advanced user to monitor problems manualy according information from these logs.
- It allows users to manage their downloads in real time. User can pause, continue, move in queue, add new downloads and remove downloads manualy. User also can allow to remove completed or failed downloads automatically by the program.
- Recursive downloading via FTP as well as via HTTP is supported. Powerful Filters-manager allow advanced user to specify files which must to be downloaded and files which must to be skipped. Wildcards are supported for FTP downloads too.
- Ability to download in more than one connection per time. Usualy downloading using number of connections increases speed of downloading up to 300% and even more!
- Supporting of so called `Persistent connections increases speed of downloading due much less amount of `standing connection stages. With this feature D4X uses connections to the servers many times. Persistent connections over HTTP are supported automaticaly but persistent connections over FTP can be turned on by user (Do not send QUIT command option of FTP settings).
- Ability to limit download speed of separate file as well as for the whole program allows modem user browse through the Web and download files at the same time.
- Built-in Scheduller, URL-manager and Automatically adding allow advaced user to simplify managing downloads by various criterias.
- Multiqueued design, ability to run without X interface, ability to manage D4X via command line and many other features will satisfy anybody who find a time to learn this program.
<<less
Download (1.68MB)
Added: 2009-04-11 License: Freeware Price:
198 downloads
KLMCL 0.1e

KLMCL 0.1e


KLMCL is a graphical MUD client for KDE. more>>
KLMCL is a graphical MUD client for KDE with support for aliases, regexp triggers, spellup spells management, key bindings More detailed information can be found under DocManager: Project Documentation.
Enhancements:
- Colour codes shouldnt break between buffers now.
- ANSI sequences besides colours are gracefully ignored instead of thrown away.
- Screen selections wont disappear.
- Random minor cleanups.
<<less
Download (1.43MB)
Added: 2005-09-14 License: GPL (GNU General Public License) Price:
1500 downloads
pause-on-xscreensaver 0.1

pause-on-xscreensaver 0.1


pause-on-xscreensaver is an Amarok script that will pause playback every time Xscreensaver activates more>>
pause-on-xscreensaver is an Amarok script that will pause playback every time Xscreensaver activates

Pause on Xscreensaver v0.1 by Evan Felix

Simalar to a kde-only script by Maxim Kulkin

This script will pause playback every time Xscreensaver activates.

It is useful to stop music when you lock your desktop.

<<less
Download (0.001MB)
Added: 2007-02-08 License: GPL (GNU General Public License) Price:
989 downloads
PyVib2 1.1

PyVib2 1.1


PyVib2 is a program for analyzing vibrational motion and vibrational spectra, written in pure Python. more>>
PyVib2 is a program for analyzing vibrational motion and vibrational spectra, written in pure Python. PyVib2 project was developed by Maxim Fedorovsky during his Ph.D. thesis work in Prof. Werner Hugs research group.

PyVib2 permits the automatic correlation of vibrational motions of molecules thereby allowing an understanding of Raman, Raman optical activity (ROA), infrared vibrational absorption (IR), and vibrational circular dichroism (VCD) spectra. The versatile representation of vibrational motions, the visualization techniques of Raman/ROA and IR/VCD generation in molecules and the production of publication quality spectra, are features of PyVib2.

Output files of Raman/ROA and IR/VCD calculations, produced with the DALTON and Gaussian quantum chemistry packages, can be directly opened. Files in the MOLDEN and XMol XYZ format can be imported and exported. A variety of formats (JPEG, TIFF, PNG, PNM, PS, PDF, Animated GIF, FLI) are available to the user for saving results.

All the functionalities are accessible via the pyviblib class library.

Windows and Mac OS X users can profit from the "all-in-one" installation archives (i.e. there is no need to install any additional software).
<<less
Download (0.72MB)
Added: 2007-04-17 License: GPL (GNU General Public License) Price:
921 downloads
Gideon 2.8.0

Gideon 2.8.0


Gideon is a versatile GUI designer for GTK/C++. more>>
Gideon is an innovative GUI builder for GTK+. It is an advanced IDE-embeddable RAD tool designed to fulfill the needs of desktop programmers who want to create multi-platform GTK+ based applications with minimal GUI coding.

Gideon is full-featured yet elegant: its unique Property Explorer solves many GUI constructing tasks in a versatile manner without additional popup dialogs. The project is targeted to develop a tool that is coherent and highly productive for GTK+ experts as well as simple and accessible for newcomers.

<<less
Download (0.31MB)
Added: 2006-08-18 License: GPL (GNU General Public License) Price:
1166 downloads
fsbackup 1.2

fsbackup 1.2


fsbackup is a file system backup and synchronization utility. more>>
fsbackup.pl is a incremental backup creation utility. fsbackup.pl support backup compression and encryption. Backup can be stored on local file system and on remote host stored over SSH or FTP.

Some addition scripts allow backups SQL tables from PostgreSQL and MySQL (pgsql_backup.sh and mysql_backup.sh)), save system configuration files and list of installed packages (sysbackup.sh).

Backuped with fsbackup.pl files can be recovered by script fsrestore.sh, backuped with sysbackup.sh system packeges can be reinstalled by sysrestore.sh

Options:

The following command-line options can be used with fsbackup.pl:

-n

Create new backup without checking files in previously stored hash.

-f

Create full backup, like as -n option.

-h

Only rebuild hash, no storing files in backup archive.

-c

Clean incremental backup storage and create new full backup without checking $cfg_increment_level config parameter.
<<less
Download (0.27MB)
Added: 2005-04-12 License: GPL (GNU General Public License) Price:
1658 downloads
GuiLoader 2.10.0

GuiLoader 2.10.0


GuiLoader is a high-performance and compact GuiXml loader library. more>>
GuiLoader is a high-performance and compact GuiXml loader library. This library allows GTK+ applications to create GUI widgets and objects at run-time from GuiXml resource files.

GuiLoader is written in C language as a GObject subclass and has a trivial language-independent API. GuiLoader was designed to be easily wrapped for any language that has GTK+ bindings.

<<less
Download (0.25MB)
Added: 2007-01-07 License: GPL (GNU General Public License) Price:
1022 downloads
Pause on screensaver 0.1

Pause on screensaver 0.1


Pause on screensaver script will pause playback every time the screensaver activates. more>>
Pause on screensaver script will pause playback every time the screensaver activates. Pause on screensaver is useful to stop music when you lock your desktop.

<<less
Download (0.010MB)
Added: 2006-03-21 License: GPL (GNU General Public License) Price:
1314 downloads
GuiLoader/C++ 2.10.0

GuiLoader/C++ 2.10.0


GuiLoader/C++ is a C++ binding to GuiLoader library. more>>
GuiLoader/C++ is a C++ binding to GuiLoader library.

GuiLoader/C++ is a convenience layer that simplifies development of GuiLoader based applications written in C++ language by introducing exception safety, binding GTK+ objects defined in GuiXml to C++ variables and type-safe dynamic connection to signals.

<<less
Download (0.23MB)
Added: 2007-01-07 License: GPL (GNU General Public License) Price:
1020 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 2
  • 1
  • 2