mathstudio 0.7.2
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 69
MathStudio 0.7.2-1
MathStudio project is an interactive equation editor and step-by-step solver. more>>
MathStudio project is an interactive equation editor and step-by-step solver.
MathStudio is a project aimed at making math-typing, plotting, and symbolic math easier.
Its user can easily input, plot, and save/load math data in various formats (e.g., MathML). Step-by-step resolution makes this a powerful learning tool.
Main features:
- Open Source
- Cross-platform
- Compiler support
- Easy to use
- Simple, extensible
- Intermediate steps
<<lessMathStudio is a project aimed at making math-typing, plotting, and symbolic math easier.
Its user can easily input, plot, and save/load math data in various formats (e.g., MathML). Step-by-step resolution makes this a powerful learning tool.
Main features:
- Open Source
- Cross-platform
- Compiler support
- Easy to use
- Simple, extensible
- Intermediate steps
Download (4.0MB)
Added: 2006-10-31 License: GPL (GNU General Public License) Price:
1089 downloads
Cache Status 0.7.2
Cache Status displays cache status and allows easy management from status bar. more>>
Cache Status displays cache status and allows easy management from status bar.
This utility extension monitors your cache statistics for both memory and disk devices, pulling the numbers straight from the same place that about:cache does.
You can also clear your cache by right-clicking on the statusbar panel and selecting the right option.
NOTE: This extension does not have any influence on or from Firefoxs own memory consumption in your OS. The reported statistics are entirely independent.
NOTE2: A fresh profile usually doesnt have the RAM "maximum" capacity (stored in the browser.cache.memory.capacity preference), so you may see it blank. If so and if you set it to something, it will forever create that maximum, barring some prefs.js hacking of your own. Firefox does some sort of dynamic calculation if this isnt set, so use that with caution. In a future version, I may add a delete button to the settings to restore it to "factory settings." You can also put in "-1" to give Firefox back the "reins."
<<lessThis utility extension monitors your cache statistics for both memory and disk devices, pulling the numbers straight from the same place that about:cache does.
You can also clear your cache by right-clicking on the statusbar panel and selecting the right option.
NOTE: This extension does not have any influence on or from Firefoxs own memory consumption in your OS. The reported statistics are entirely independent.
NOTE2: A fresh profile usually doesnt have the RAM "maximum" capacity (stored in the browser.cache.memory.capacity preference), so you may see it blank. If so and if you set it to something, it will forever create that maximum, barring some prefs.js hacking of your own. Firefox does some sort of dynamic calculation if this isnt set, so use that with caution. In a future version, I may add a delete button to the settings to restore it to "factory settings." You can also put in "-1" to give Firefox back the "reins."
Download (0.018MB)
Added: 2007-07-09 License: MPL (Mozilla Public License) Price:
870 downloads
yhttpd 0.7.2
yhttpd provides an experimental, XML-configurable, light, multi-platform Web server. more>>
yhttpd provides an experimental, XML-configurable, light, multi-platform Web server.
yhttpd is an experimental, XML-configurable, light, very portable, multi-platform Web server written in C++ and a small subset of C.
It runs on all operating systems that are POSIX compatible and use the GNU GCC C++ compiler from 3.1 and up with pthreads enabled.
It is based on yChat socket and thread engines.
<<lessyhttpd is an experimental, XML-configurable, light, very portable, multi-platform Web server written in C++ and a small subset of C.
It runs on all operating systems that are POSIX compatible and use the GNU GCC C++ compiler from 3.1 and up with pthreads enabled.
It is based on yChat socket and thread engines.
Download (0.069MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
922 downloads
Agatha 0.7.2
Agatha is a simple PHP script for streaming music and playlists with Apache. more>>
Agatha is a Web-based MP3 playing system that allows the home user or office group to stream music, create, manage, and share play lists, and control the playing of music on a remote system. Agatha does not require a database and has full play-on-server support.
Tested with apache 1.3.x and php 4.x under linux.. This program is not guaranteed to
do anything but take up space on your disk..
Also note that this was designed to be used on a private network. Im sure there are terrible security holes... so treat it accordingly.
Installing
Since you are reading this.. I guess you already unpacked the tar ball... Just move/rename this directory to whatever you like under your apache document root (htdocs) directory and point your browser to it.
All files should be readable by apache.. and the playlists and sharedplaylists directories should be writable by the apache user.
Copy config.php.dist to config.php and edit your path and language file names. For security purposes.. please note that neither playlists nor mp3s need to be visible by your web server.
LOCAL PLAY SETUP:
To use the (very cool) local play features of agatha you will need to install a perl package. This can most easily be done via CPAN with the command (as root):
perl -MCPAN -e install MP3::Daemon
This perl package will also let you play music from the command line. As a test to verify everything is working.. try the command:
mp3 play song.mp3
Where song.mp3 is a file from your drive...
Once it is installed and you have verified that you can play mp3s from the command line.. you need to make a few small changes.
If it is running.. kill the daemon with:
mp3 quit
Using your favorite text editor.. open up the file /usr/bin/mp3. You need to change the location of the socket that the mp3daemon uses to something that agatha can reach... I suggest using /tmp/.mp3 as the new location. Look for the following line near the top.. and change it as Ive indicated:
FROM:
my $conf_dir = "$ENV{HOME}/.mp3";
TO:
my $conf_dir = "/tmp/.mp3";
Whatever location you use.. you will need to put the same path in the agatha config file.
There are a few device files in /dev that the apache user will need to have permissions for. There are many ways this can be done.. Ill list the easiest way here. If you have a need for better security in this regard Im sure you will know the other ways this can be accomplished.
chmod o+r,o+w /dev/mixer
chmod o+r,o+w /dev/dsp
Thats it... just read through the agatha config file and set a few paths.. there are comments in the file to help you.
Usage
Click the song name to stream.. select several songs and click submit to stream the list. Or.. if Add to Playlist is selected you can add the list of selected songs to a new or existing playlist.
Edit the list by clicking on the white icon next to the name. Click the red symbol icon to play on the local server using the perl package mp3daemon.
For recursive play.. click the little folder icons to stream whole directories and the red icons to play on the server. Everything else should be fairly straight forward.
Enhancements:
- MP3 file extensions are now case-insensitive.
- A bug where playing recursive directories from other than the top level would fail was fixed.
<<lessTested with apache 1.3.x and php 4.x under linux.. This program is not guaranteed to
do anything but take up space on your disk..
Also note that this was designed to be used on a private network. Im sure there are terrible security holes... so treat it accordingly.
Installing
Since you are reading this.. I guess you already unpacked the tar ball... Just move/rename this directory to whatever you like under your apache document root (htdocs) directory and point your browser to it.
All files should be readable by apache.. and the playlists and sharedplaylists directories should be writable by the apache user.
Copy config.php.dist to config.php and edit your path and language file names. For security purposes.. please note that neither playlists nor mp3s need to be visible by your web server.
LOCAL PLAY SETUP:
To use the (very cool) local play features of agatha you will need to install a perl package. This can most easily be done via CPAN with the command (as root):
perl -MCPAN -e install MP3::Daemon
This perl package will also let you play music from the command line. As a test to verify everything is working.. try the command:
mp3 play song.mp3
Where song.mp3 is a file from your drive...
Once it is installed and you have verified that you can play mp3s from the command line.. you need to make a few small changes.
If it is running.. kill the daemon with:
mp3 quit
Using your favorite text editor.. open up the file /usr/bin/mp3. You need to change the location of the socket that the mp3daemon uses to something that agatha can reach... I suggest using /tmp/.mp3 as the new location. Look for the following line near the top.. and change it as Ive indicated:
FROM:
my $conf_dir = "$ENV{HOME}/.mp3";
TO:
my $conf_dir = "/tmp/.mp3";
Whatever location you use.. you will need to put the same path in the agatha config file.
There are a few device files in /dev that the apache user will need to have permissions for. There are many ways this can be done.. Ill list the easiest way here. If you have a need for better security in this regard Im sure you will know the other ways this can be accomplished.
chmod o+r,o+w /dev/mixer
chmod o+r,o+w /dev/dsp
Thats it... just read through the agatha config file and set a few paths.. there are comments in the file to help you.
Usage
Click the song name to stream.. select several songs and click submit to stream the list. Or.. if Add to Playlist is selected you can add the list of selected songs to a new or existing playlist.
Edit the list by clicking on the white icon next to the name. Click the red symbol icon to play on the local server using the perl package mp3daemon.
For recursive play.. click the little folder icons to stream whole directories and the red icons to play on the server. Everything else should be fairly straight forward.
Enhancements:
- MP3 file extensions are now case-insensitive.
- A bug where playing recursive directories from other than the top level would fail was fixed.
Download (0.33MB)
Added: 2006-05-11 License: GPL (GNU General Public License) Price:
1262 downloads
mBox 0.7.2
mBox is an audio file manager. more>>
mBox is program intended to help you with organizing your music files.
Main features:
- ability to reencode mp3/ogg/wma to mp3/ogg
- contains utility convertor which converts whole directories to desired format. Bitrate, etc. is automatically adjusted depending on settings and source audio. See users-guide for further information
- supports reading/writing tags in MP3 ID3v1 and ID3v2, Ogg Vorbis
- supports reading WMA tags
- supports FreeDB, treates encoded files as if it was CD, so you can simply select your files and - if found in database - write tags to them. Nifty, isnt it? =)
- supports auto tagging - reads tag information from filename
- supports batch tags editing
- supports batch files renaming (can use tags)
- supports directory renaming (can use tags)
Enhancements:
- This version brings several small improvements in tag reading, file renaming and FreeDB searching.
<<lessMain features:
- ability to reencode mp3/ogg/wma to mp3/ogg
- contains utility convertor which converts whole directories to desired format. Bitrate, etc. is automatically adjusted depending on settings and source audio. See users-guide for further information
- supports reading/writing tags in MP3 ID3v1 and ID3v2, Ogg Vorbis
- supports reading WMA tags
- supports FreeDB, treates encoded files as if it was CD, so you can simply select your files and - if found in database - write tags to them. Nifty, isnt it? =)
- supports auto tagging - reads tag information from filename
- supports batch tags editing
- supports batch files renaming (can use tags)
- supports directory renaming (can use tags)
Enhancements:
- This version brings several small improvements in tag reading, file renaming and FreeDB searching.
Download (0.12MB)
Added: 2005-08-30 License: GPL (GNU General Public License) Price:
1521 downloads
Kmysqladmin 0.7.2
Kmysqladmin is a graphical frontend for administration of mysql servers. more>>
Kmysqladmin is a graphical frontend for administration of mysql servers. With a buildin script editor with syntax-highlighting you can process more complex script. A script generator is in work.
Main features:
- Displaying and edit the contents of tables within a separate view.
- export results of a query into another format (ASCII, Latex, HTML)
- Edit user rights
- Creating databases and tables
- watching status and threads continuously
- alter tables and keys
- execute sql scripts
- generate sql scripts from search results
Enhancements:
- massive layout work
- fix for build with mysql 4.1
<<lessMain features:
- Displaying and edit the contents of tables within a separate view.
- export results of a query into another format (ASCII, Latex, HTML)
- Edit user rights
- Creating databases and tables
- watching status and threads continuously
- alter tables and keys
- execute sql scripts
- generate sql scripts from search results
Enhancements:
- massive layout work
- fix for build with mysql 4.1
Download (MB)
Added: 2005-07-09 License: LGPL (GNU Lesser General Public License) Price:
1567 downloads
Gazpacho 0.7.2
Gazpacho is a Gtk+ User Interface Builder. more>>
Gazpacho is a fresh new GUI builder for the GTK+ toolkit designed to be ultra easy to use.
Gazpacho project is strongly inspired by the Glade project but it is written from scratch using the Python language. As a result there are few lines of code to read, understand and to maintain!
One of the goals of the project is that the .glade files that Gazpacho generates should be fully compatible with libglade so you can use Gazpacho whatever the language your application is written with.
Gazpacho is released under the LGPL license so you can use and distribute it freely. Gazpacho is very modular so integration with existing IDE should be fairly easy to do.
Main features:
- All-in-one window. Tired of not very usable multiple small windows messing up your screen? Try this new approach where only the window you are actually designing lives on top of Gazpacho interface
- Action based Menus / Toolbars. Create your actions with all the information about signals, accelerators and appareance and then just design your menus and toolbars linking to these Actions. Feel the great power and flexibility of GtkUIManager from Gazpacho!
- Unlimited Undo / Redo. Dont worry about making mistakes with Gazpacho, you can always revert your changes
- Templates. You can drag some part of your interface and drop it in the templates tab. Then you can reuse this widget again and again even between different Gazpacho sessions. Design once, use everywhere. (Not finished yet)
<<lessGazpacho project is strongly inspired by the Glade project but it is written from scratch using the Python language. As a result there are few lines of code to read, understand and to maintain!
One of the goals of the project is that the .glade files that Gazpacho generates should be fully compatible with libglade so you can use Gazpacho whatever the language your application is written with.
Gazpacho is released under the LGPL license so you can use and distribute it freely. Gazpacho is very modular so integration with existing IDE should be fairly easy to do.
Main features:
- All-in-one window. Tired of not very usable multiple small windows messing up your screen? Try this new approach where only the window you are actually designing lives on top of Gazpacho interface
- Action based Menus / Toolbars. Create your actions with all the information about signals, accelerators and appareance and then just design your menus and toolbars linking to these Actions. Feel the great power and flexibility of GtkUIManager from Gazpacho!
- Unlimited Undo / Redo. Dont worry about making mistakes with Gazpacho, you can always revert your changes
- Templates. You can drag some part of your interface and drop it in the templates tab. Then you can reuse this widget again and again even between different Gazpacho sessions. Design once, use everywhere. (Not finished yet)
Download (0.43MB)
Added: 2007-07-29 License: GPL (GNU General Public License) Price:
820 downloads
ajaxMyTop 0.7.2
ajaxMyTop project is a Web-based tool featuring an AJAX user interface for monitoring a MySQL server. more>>
ajaxMyTop project is a Web-based tool featuring an AJAX user interface for monitoring a MySQL server.
<<less Download (0.10MB)
Added: 2006-08-08 License: LGPL (GNU Lesser General Public License) Price:
1172 downloads
SLgtk 0.7.2
SLgtk package binds the GIMP Toolkit, also known as Gtk, to the S-Lang scripting language. more>>
SLgtk package binds the GIMP Toolkit, also known as Gtk, to the S-Lang scripting language. This application was created with the SLIRP code generator, and provides an importable module which makes most of Gtk and its constituent libraries callable directly from S-Lang scripts.
With SLgtk the S-Lang programmer now has access to a powerful, cross-platform widget set for creating sophisticated graphical user interfaces (GUIs). The package also includes bindings to GtkExtra, which are used in the vwhere visualization and filtering guilet, as well as a gdk-pixbuf loader for the FITS image file format widely used within astronomy, and an easy-to-use but powerful image compositing, display, and output tool.
Enhancements:
VWhere 1.3.9:
- When a vector is passed with the & operator VWhere will reflect the proper variable name in the Axis Expression window, instead of assigning the less-meaningful "arrayN".
imdisplay 0.3.4:
- new "panes" option added, to support display of multiple images using either horizontal or vertical tiling
- multiple animations may now be displayed, and even commingled alongside static images
- fill rule may now be specified in an option string, and now defaults to "scale" instead of "none"
- imdisplay_defaults() function added, for option persistence
- 1D images which can be reshaped to NxN are now accepted
changed S-Lang semantics of C Gdk function void gdk_window_get_frame_extents(GdkWindow, &GdkRectangle) to GdkRectantle gdk_window_get_frame_extents(GdkWindow)
- more sophisticated placement/reparenting strategies for win chaining
- rgbwidget version 0.3.0, which adds POW scaling and version info
<<lessWith SLgtk the S-Lang programmer now has access to a powerful, cross-platform widget set for creating sophisticated graphical user interfaces (GUIs). The package also includes bindings to GtkExtra, which are used in the vwhere visualization and filtering guilet, as well as a gdk-pixbuf loader for the FITS image file format widely used within astronomy, and an easy-to-use but powerful image compositing, display, and output tool.
Enhancements:
VWhere 1.3.9:
- When a vector is passed with the & operator VWhere will reflect the proper variable name in the Axis Expression window, instead of assigning the less-meaningful "arrayN".
imdisplay 0.3.4:
- new "panes" option added, to support display of multiple images using either horizontal or vertical tiling
- multiple animations may now be displayed, and even commingled alongside static images
- fill rule may now be specified in an option string, and now defaults to "scale" instead of "none"
- imdisplay_defaults() function added, for option persistence
- 1D images which can be reshaped to NxN are now accepted
changed S-Lang semantics of C Gdk function void gdk_window_get_frame_extents(GdkWindow, &GdkRectangle) to GdkRectantle gdk_window_get_frame_extents(GdkWindow)
- more sophisticated placement/reparenting strategies for win chaining
- rgbwidget version 0.3.0, which adds POW scaling and version info
Download (0.96MB)
Added: 2007-07-18 License: GPL (GNU General Public License) Price:
828 downloads
Krystal Drop 0.7.2
Krystal Drop is a free clone of NeoGeos Magical Drop. more>>
Krystal Drop project is a free clone of NeoGeos Magical Drop.
In it, you play on a field on which lines of gems are being dropped by the top of the screen, at a regular basis or when your opponent makes a combo. You can take or drop gems from the bottom of the screen to make gems disappear.
If you move gems in order to create a vertical alignment of at least three gems of the same colour, they will burst and start a chain reaction with all neighbouring matching gems.
The aim is to prepare some other chain reactions while the first gems are bursting, in order to make a combo and send lines to your opponent. You lose when some gems reach the bottom of the field.
<<lessIn it, you play on a field on which lines of gems are being dropped by the top of the screen, at a regular basis or when your opponent makes a combo. You can take or drop gems from the bottom of the screen to make gems disappear.
If you move gems in order to create a vertical alignment of at least three gems of the same colour, they will burst and start a chain reaction with all neighbouring matching gems.
The aim is to prepare some other chain reactions while the first gems are bursting, in order to make a combo and send lines to your opponent. You lose when some gems reach the bottom of the field.
Download (14.3MB)
Added: 2006-12-21 License: GPL (GNU General Public License) Price:
1039 downloads
Appleseed 0.7.2
Appleseed is a social networking software, similar to Friendster or Myspace. more>>
Appleseed project is an effort to create open source Social Networking software that is based on a distributed model. For instance, a profile on one Appleseed website could "friend" a profile on another Appleseed website, and the two profiles could interact with each other.
Apart from being distributed, Appleseed will also have a strong focus on privacy and security, as well as a commitment to seeing the user as an online citizen, as opposed to a consumer to be targetted. This is in stark contrast to current social networking websites, who rely heavily on ad placement and data mining of their users.
The first goal is to create a codebase for basic interaction, such as creating profiles, creating and participating in message groups, journals and comments, etc.
Eventually, Appleseed will encompass many different aspects, from mail to messaging to journals/blogs to photo uploads and management. A module architecture is also in the works for even greater extensibility.
Development currently uses Object Oriented PHP4, MySQL (InnoDB), XHTML, Javascript, and CSS2. Mozilla/Firefox will be the target platform.
<<lessApart from being distributed, Appleseed will also have a strong focus on privacy and security, as well as a commitment to seeing the user as an online citizen, as opposed to a consumer to be targetted. This is in stark contrast to current social networking websites, who rely heavily on ad placement and data mining of their users.
The first goal is to create a codebase for basic interaction, such as creating profiles, creating and participating in message groups, journals and comments, etc.
Eventually, Appleseed will encompass many different aspects, from mail to messaging to journals/blogs to photo uploads and management. A module architecture is also in the works for even greater extensibility.
Development currently uses Object Oriented PHP4, MySQL (InnoDB), XHTML, Javascript, and CSS2. Mozilla/Firefox will be the target platform.
Download (0.43MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
844 downloads
Sockso 0.7.2
ockso is a free, open-source, personal music server for everyone! more>>
ockso is a free, open-source, personal music server for everyone! Its designed to be as simple as possible so that anyone with a mouse and some mp3s can get their friends listening to their music across the internet in minutes!
Main features:
- Simple setup (up and running in seconds)
- Supports MP3s
- Easy web-interface for your friends, and a GUI for you!
- Statistics like most played, recently popular, etc...
- Drag and drop playlist creation
Enhancements:
- This release has a console mode so it can be installed, administrated, and run on servers without a GUI.
- Many bugs have been fixed after a lot of missing unit testing was implemented.
<<lessMain features:
- Simple setup (up and running in seconds)
- Supports MP3s
- Easy web-interface for your friends, and a GUI for you!
- Statistics like most played, recently popular, etc...
- Drag and drop playlist creation
Enhancements:
- This release has a console mode so it can be installed, administrated, and run on servers without a GUI.
- Many bugs have been fixed after a lot of missing unit testing was implemented.
Download (1.5MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
817 downloads
rndCiv 0.7.2
rndCiv (Random Civ) are randomized rulesets for Freeciv. more>>
rndCiv (Random Civ) are randomized rulesets for Freeciv.
If you play freeciv a lot, youll probably start to find that the games start to become the same, they blur into each other and after a while even though you love the game it starts to become boring and too easy.
Well i did, each game becomes a rush to The Republic, Gunpowder and Steam Engine. And one reason for that is that the techtree becomes totally sussed out. But techtrees are arbitrary anyway, and in another slightly different world they would be different. Sure you can download mod packs, but the problem reappears, after a while you learn their techtree, and youre back to square one.
rndCiv, is a solution to this problem. What rndCiv does is blend different genres together to produce unique (but still playable) techtrees. Its not random like Monarchy and Radio lead to Genetic Engineering, that would be silly. Its random like, Sailing could come from Boating, Map Making, Seafaring, Astronomy, or Craftsmanship. So pick two and get on with it.
Because the Techs, Units, Buildings and Governments are bundled into different generas, then you can get rndCiv to build a techtree (with related Units, Buildings & Governments) for whatever set of generas youd like to play with. Its a Meta-Modpack.
This code is beta, it works, it occasionally crashes the server (so save often), it also crashes the client (when you look up the help system for some units - weird), and its rules need to be fine-tuned.
Quick Start:
For a quick intro, try this command
./rndCiv.pl random4
then read the rulesets in the ./ouput dir
what i do, is symlink the output dir to freeciv/data/rnd and set rulesetdir to rnd
The ruleset.summary file gives a qick overview of the ruleset.
The techtree.dot file can be fed into the dot graph generator....
dot -Tps -o techtree.ps techtree.dot
gv techtree.ps
Then start civ..
./civ --tiles=rnd
and when in the civ server control mode, set the rule dir
/rulesetdir rnd
add other game options to suit, and start
<<lessIf you play freeciv a lot, youll probably start to find that the games start to become the same, they blur into each other and after a while even though you love the game it starts to become boring and too easy.
Well i did, each game becomes a rush to The Republic, Gunpowder and Steam Engine. And one reason for that is that the techtree becomes totally sussed out. But techtrees are arbitrary anyway, and in another slightly different world they would be different. Sure you can download mod packs, but the problem reappears, after a while you learn their techtree, and youre back to square one.
rndCiv, is a solution to this problem. What rndCiv does is blend different genres together to produce unique (but still playable) techtrees. Its not random like Monarchy and Radio lead to Genetic Engineering, that would be silly. Its random like, Sailing could come from Boating, Map Making, Seafaring, Astronomy, or Craftsmanship. So pick two and get on with it.
Because the Techs, Units, Buildings and Governments are bundled into different generas, then you can get rndCiv to build a techtree (with related Units, Buildings & Governments) for whatever set of generas youd like to play with. Its a Meta-Modpack.
This code is beta, it works, it occasionally crashes the server (so save often), it also crashes the client (when you look up the help system for some units - weird), and its rules need to be fine-tuned.
Quick Start:
For a quick intro, try this command
./rndCiv.pl random4
then read the rulesets in the ./ouput dir
what i do, is symlink the output dir to freeciv/data/rnd and set rulesetdir to rnd
The ruleset.summary file gives a qick overview of the ruleset.
The techtree.dot file can be fed into the dot graph generator....
dot -Tps -o techtree.ps techtree.dot
gv techtree.ps
Then start civ..
./civ --tiles=rnd
and when in the civ server control mode, set the rule dir
/rulesetdir rnd
add other game options to suit, and start
Download (0.16MB)
Added: 2006-01-12 License: GPL (GNU General Public License) Price:
1380 downloads
Xmlbeansxx 0.7.2
Xmlbeansxx is a set of tools for binding XML to C++ objects. more>>
Xmlbeansxx is a set of tools for binding XML to C++ objects. It contains a code generator, which tranforms XML Schema to C++ classes.
It is open, memory safe, fast, and well-tested.
Main features:
- Easy access to XmlSchema based XML data through generated C++ classes.
- Easy iteration over any XML data, even with no schema file, through XmlCursor iterators (being implemented).
- Runtime XPath queries, through XQuery technology (being implemented).
- Memory safe - uses boost::smart_ptr technology.
- Clear, configurable logging - uses log4cxx.
- Fast & lightweighted
<<lessIt is open, memory safe, fast, and well-tested.
Main features:
- Easy access to XmlSchema based XML data through generated C++ classes.
- Easy iteration over any XML data, even with no schema file, through XmlCursor iterators (being implemented).
- Runtime XPath queries, through XQuery technology (being implemented).
- Memory safe - uses boost::smart_ptr technology.
- Clear, configurable logging - uses log4cxx.
- Fast & lightweighted
Download (0.49MB)
Added: 2005-10-05 License: The Apache License 2.0 Price:
1479 downloads
Postfilter 0.7.2
Postfilter is a perl filter for Internet Net News. more>>
Postfilter is a perl filter for Internet Net News (innd) which checks all messages sent by local users searching for spam and invalid contents.
Although Postfilter is designed for large sites that need a complex tool, Postfilter could by used also by local or private servers.
Main features:
- A powerful banlist: rules can be based on every header and each article could be rejected, silently discarded, tracked throught syslog or saved for further inspection
- A content-based filter. A score could be assigned to every regex; when the body matches an expression, the assigned score is added to the total. If an article exceeds the maximum allowed score, its rejected by the script.
- A fine regulation of clients activity. Postfilter allows to set a max number of articles, bytes, groups, followups, crossposts, hierarchies and errors per time. A second shorter interval is also setable to avoid floods. All these rules can be applied to IP, domain (level n-1) or userid.
- Several built-in syntax checks that scans the headers searching for errors commonly made by spammers.
- A white list that allows to exclude from the check every article that matches a regular expression or every article that includes a predefined header.
Postfilter is released under the terms of BSD License.
<<lessAlthough Postfilter is designed for large sites that need a complex tool, Postfilter could by used also by local or private servers.
Main features:
- A powerful banlist: rules can be based on every header and each article could be rejected, silently discarded, tracked throught syslog or saved for further inspection
- A content-based filter. A score could be assigned to every regex; when the body matches an expression, the assigned score is added to the total. If an article exceeds the maximum allowed score, its rejected by the script.
- A fine regulation of clients activity. Postfilter allows to set a max number of articles, bytes, groups, followups, crossposts, hierarchies and errors per time. A second shorter interval is also setable to avoid floods. All these rules can be applied to IP, domain (level n-1) or userid.
- Several built-in syntax checks that scans the headers searching for errors commonly made by spammers.
- A white list that allows to exclude from the check every article that matches a regular expression or every article that includes a predefined header.
Postfilter is released under the terms of BSD License.
Download (0.037MB)
Added: 2006-12-29 License: BSD License Price:
1032 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 mathstudio 0.7.2 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