nissan 3.3 xterra
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 142
Munin 1.3.3
Munin is a tool for graphing all sorts of information about one or more servers and displaying it in a web interface. more>>
Munin is a tool for graphing all sorts of information about one or more servers and displaying it in a web interface. Munin uses the execellent RRDTool (written by Tobi Oetiker) and is written in Perl. Munin has a master/node architecture.
The master connects to all the nodes at regular intervals, and asks them for data. It then stores the data in RRD-files, and (if needed) updates the graphs. One of the main goals has been ease of creating own "plugins" (graphs).
Installation:
edit Makefile.config
- create the user "munin"
- make install-main
- create a cron-entry to run "munin-cron" as the user "munin" every 5 minutes
- if you want to use the dynamic graphs, configure the cgi directory (an example for apache can be found in README-apache-cgi).
<<lessThe master connects to all the nodes at regular intervals, and asks them for data. It then stores the data in RRD-files, and (if needed) updates the graphs. One of the main goals has been ease of creating own "plugins" (graphs).
Installation:
edit Makefile.config
- create the user "munin"
- make install-main
- create a cron-entry to run "munin-cron" as the user "munin" every 5 minutes
- if you want to use the dynamic graphs, configure the cgi directory (an example for apache can be found in README-apache-cgi).
Download (0.30MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1097 downloads
Sanos 1.3.3
Sanos is a minimalistic 32-bit x86 OS kernel for network server appliances running on standard PC hardware. more>>
Sanos is a minimalistic 32-bit x86 OS kernel for Java based server appliances running on standard PC hardware.
This enables you to run java server applications without the need to install a traditional host operating system like Windows or Linux. Only a standard Java HotSpot VM and the sanos kernel are needed.
The kernel was developed as part of an experiment on investigating the feasibility of running java server applications without a traditional operating system only using a simple kernel.
The kernel implements basic operating system services like booting, memory management, thread scheduling, local and remote file systems, TCP/IP networking and DLL loading and linking.
A win32 layer allows the Windows version of the standard HotSpot JVM to run under sanos, essentially providing a JavaOS platform for server applications. This enables you to run java based server applications, like tomcat and jboss, under sanos.
Alternatively, you can use sanos as a small kernel for embedded server applications written in C. Sanos has a fairly standard POSIX based API and an ANSI Standard C library. In this case you dont need the JVM and the win32 wrappers.
Sanos is open source under a BSD style license. Please see the COPYING file for details.
Click on the topics below for further information, or send me an e-mail if you have any questions, comments or problems regarding sanos. Please include the word sanos in the mail to prevent it from being intercepted by my spam filter.
Sanos can be downloaded as either binary or source. All the files in the binary version can be built from the source version, so you do not need the binary version, if you are building sanos from source.
The binary version contains the compiled version of sanos, with files and utilities for making a boot disk.
The source version contains all the source code and build files for building sanos from source. You will need a Microsoft Visual C compiler to build sanos from source.
Enhancements:
- GetLogicalDrives() in kernel32 implemented.
- A bug in cmd_ipconfig() in sh.c prevented proper display of network configuration if no DNS servers was configured. This problem has been fixed. (FGA)
- New -a option added to mkdfs to support file lists with alternative files names. This simplifies configurations with both debug and release builds.
- The Visual Studio wizard can now generate a floppy disk boot image configured for the application.
- Shell prompt can be configured by setting the prompt property in the [shell] section of the os.ini file.
- If command line arguments are given to the shell it now executes the built-in command and exits the shell.
- The floppy motor timeout routine now acquires the floppy mutex before turning off the motor in order to prevent race conditions.
- Advanced Power Management (APM) support implemented. The computer can now be powered off after os shutdown. The mode parameter for exitos() can be used to specify the shutdown mode (halt, reboot, poweroff, debug). A shutdown command has been added to the shell. The power status can be retrieved using /proc/apm.
- Added /proc/cpu for CPU information.
- The raise() function now returns an error if the signal number is invalid.
- Breakpoint traps are now sent to the user mode signal handler. This allows breakpoints to be handled by user mode code.
- Signals now exits the currently executing job with the signal number as exit code. However, if the debug flag in the PEB is set the debugger is entered if an unhandled signal is encountered. The debug flag can be set using the debug command in the shell. The debug flag can be configured using the debug property in the [os] section of os.ini. The default value of the debug flag is 0, unless the system is build in debug configuration.
- readv() and writev() implemented in vfs.
- The kernel log is now implemented by the device driver /dev/klog. The kernel log now support ioctl for waiting for new log entries in the kernel log. The kprintf has been extended to support different log levels.
- The syslog interface has been redesigned in to comply with POSIX. The syslog now supports logging to a syslog server by setting the loghost property in the [os] section of os.ini.
- New klog daemon to read entries from the kernel log (/dev/klog) and add them to the system log.
- The sockaddr and sockaddr_in structures has been change to conform to winsock definitions.
- The sleep() function has been renamed to msleep(). A new POSIX conformant sleep function has been added to unistd.h.
- Added sys/time.h header file. Also added tzp parameter to gettimeofday() for POSIX compliance.
- New simple text editor utility (edit.exe) added.
- The syserror() function has been moved from libc.lib to the os.dll as an exported os api call.
- readline() now uses stdin and stdout for input and output.
- Bug in iomux fixed. Now a monitored event signals the iomux and not the associated object.
- Implemented popen() and pclose(). Also added a P_SUSPEND parameter to spawn() to allow new jobs to be started suspended.
- The kernel version information is now kept in a version resource in krnl.dll. The version information is retrieved using the new module version information functions in verinfo.c.
- The build type can now be controlled by compile time switches. The kernel version can be displayed in the Windows Explorer by viewing Properties for krnl.dll and selecting the Version tab.
- User management added to kernel. Each thread is now assigned to a user and a group. A thread has both a real and an effective user and group owner. The {get|set}[e]{uid|gid}() functions can be used to change the effective and real user and group for a thread. When a new thread is created the effective user and group are inherited from the creator thread.
- Added functions to query /etc/passwd and /etc/group files.
- New whoami, id, chmod, and chown commands added to shell. The format of the output from ls has been changed to display the file permission info.
- New file system version for DFS. The new version supports user and group owner for files and directories as well as permission bits. The new DFS version also supports files larger than 2GB. The fchown() and chown() functions has been added to vfs.
- DES-based crypt() implementation added.
- The spawn() function now computes the pgm parameter from the cmdline parameter if the pgm parameter is NULL. The initpgm and initargs properties in the [os] section of /etc/os.ini has been replaced with a single property named init. The default for init has been changed to /bin/sh.
- The behavour of the initial application has been changed. Previously the os shut down after the initial application exited. Now the initial application is executed again if it exits.
- Telnet daemon moved from the shell to separate server (telnetd.exe). The new telnet daemon has a more robust handling of the telnet protocol. The telnet daemon invokes the new login utlity in order to log on user.
- FTP daemon implemented.
<<lessThis enables you to run java server applications without the need to install a traditional host operating system like Windows or Linux. Only a standard Java HotSpot VM and the sanos kernel are needed.
The kernel was developed as part of an experiment on investigating the feasibility of running java server applications without a traditional operating system only using a simple kernel.
The kernel implements basic operating system services like booting, memory management, thread scheduling, local and remote file systems, TCP/IP networking and DLL loading and linking.
A win32 layer allows the Windows version of the standard HotSpot JVM to run under sanos, essentially providing a JavaOS platform for server applications. This enables you to run java based server applications, like tomcat and jboss, under sanos.
Alternatively, you can use sanos as a small kernel for embedded server applications written in C. Sanos has a fairly standard POSIX based API and an ANSI Standard C library. In this case you dont need the JVM and the win32 wrappers.
Sanos is open source under a BSD style license. Please see the COPYING file for details.
Click on the topics below for further information, or send me an e-mail if you have any questions, comments or problems regarding sanos. Please include the word sanos in the mail to prevent it from being intercepted by my spam filter.
Sanos can be downloaded as either binary or source. All the files in the binary version can be built from the source version, so you do not need the binary version, if you are building sanos from source.
The binary version contains the compiled version of sanos, with files and utilities for making a boot disk.
The source version contains all the source code and build files for building sanos from source. You will need a Microsoft Visual C compiler to build sanos from source.
Enhancements:
- GetLogicalDrives() in kernel32 implemented.
- A bug in cmd_ipconfig() in sh.c prevented proper display of network configuration if no DNS servers was configured. This problem has been fixed. (FGA)
- New -a option added to mkdfs to support file lists with alternative files names. This simplifies configurations with both debug and release builds.
- The Visual Studio wizard can now generate a floppy disk boot image configured for the application.
- Shell prompt can be configured by setting the prompt property in the [shell] section of the os.ini file.
- If command line arguments are given to the shell it now executes the built-in command and exits the shell.
- The floppy motor timeout routine now acquires the floppy mutex before turning off the motor in order to prevent race conditions.
- Advanced Power Management (APM) support implemented. The computer can now be powered off after os shutdown. The mode parameter for exitos() can be used to specify the shutdown mode (halt, reboot, poweroff, debug). A shutdown command has been added to the shell. The power status can be retrieved using /proc/apm.
- Added /proc/cpu for CPU information.
- The raise() function now returns an error if the signal number is invalid.
- Breakpoint traps are now sent to the user mode signal handler. This allows breakpoints to be handled by user mode code.
- Signals now exits the currently executing job with the signal number as exit code. However, if the debug flag in the PEB is set the debugger is entered if an unhandled signal is encountered. The debug flag can be set using the debug command in the shell. The debug flag can be configured using the debug property in the [os] section of os.ini. The default value of the debug flag is 0, unless the system is build in debug configuration.
- readv() and writev() implemented in vfs.
- The kernel log is now implemented by the device driver /dev/klog. The kernel log now support ioctl for waiting for new log entries in the kernel log. The kprintf has been extended to support different log levels.
- The syslog interface has been redesigned in to comply with POSIX. The syslog now supports logging to a syslog server by setting the loghost property in the [os] section of os.ini.
- New klog daemon to read entries from the kernel log (/dev/klog) and add them to the system log.
- The sockaddr and sockaddr_in structures has been change to conform to winsock definitions.
- The sleep() function has been renamed to msleep(). A new POSIX conformant sleep function has been added to unistd.h.
- Added sys/time.h header file. Also added tzp parameter to gettimeofday() for POSIX compliance.
- New simple text editor utility (edit.exe) added.
- The syserror() function has been moved from libc.lib to the os.dll as an exported os api call.
- readline() now uses stdin and stdout for input and output.
- Bug in iomux fixed. Now a monitored event signals the iomux and not the associated object.
- Implemented popen() and pclose(). Also added a P_SUSPEND parameter to spawn() to allow new jobs to be started suspended.
- The kernel version information is now kept in a version resource in krnl.dll. The version information is retrieved using the new module version information functions in verinfo.c.
- The build type can now be controlled by compile time switches. The kernel version can be displayed in the Windows Explorer by viewing Properties for krnl.dll and selecting the Version tab.
- User management added to kernel. Each thread is now assigned to a user and a group. A thread has both a real and an effective user and group owner. The {get|set}[e]{uid|gid}() functions can be used to change the effective and real user and group for a thread. When a new thread is created the effective user and group are inherited from the creator thread.
- Added functions to query /etc/passwd and /etc/group files.
- New whoami, id, chmod, and chown commands added to shell. The format of the output from ls has been changed to display the file permission info.
- New file system version for DFS. The new version supports user and group owner for files and directories as well as permission bits. The new DFS version also supports files larger than 2GB. The fchown() and chown() functions has been added to vfs.
- DES-based crypt() implementation added.
- The spawn() function now computes the pgm parameter from the cmdline parameter if the pgm parameter is NULL. The initpgm and initargs properties in the [os] section of /etc/os.ini has been replaced with a single property named init. The default for init has been changed to /bin/sh.
- The behavour of the initial application has been changed. Previously the os shut down after the initial application exited. Now the initial application is executed again if it exits.
- Telnet daemon moved from the shell to separate server (telnetd.exe). The new telnet daemon has a more robust handling of the telnet protocol. The telnet daemon invokes the new login utlity in order to log on user.
- FTP daemon implemented.
Download (0.38MB)
Added: 2005-10-21 License: GPL (GNU General Public License) Price:
1466 downloads
Sashenka 3.3
Sashenka is aJ2EE Servlet container and framework for IRC bots and clients. more>>
Sashenka is aJ2EE Servlet container and framework for IRC bots and clients.
Much of it is incomplete and it only handles basic incoming and outgoing messages but it is enough to build trivial bots with.
Bots are written as Servlets following the
Sun J2EE servlet model which are loaded by the container.
The container dispatches messages to and through the modules so that they may respond (if they so wish).
You could even build a functional IRC client with the utility classes in sashenka but there are enough of those out there already so I dont recommend that you try.
What sashenka does offer is an object oriented framework for managing IRC traffic. My only use for it is the bot framework built on top of the IRC framework.
The distro comes with the j2ee.jar from the 1.2.1 j2ee sdk. I include this for convenience, if you have the j2eesdk I encourage you to use your own copy as mine may not jive with your runtime.
<<lessMuch of it is incomplete and it only handles basic incoming and outgoing messages but it is enough to build trivial bots with.
Bots are written as Servlets following the
Sun J2EE servlet model which are loaded by the container.
The container dispatches messages to and through the modules so that they may respond (if they so wish).
You could even build a functional IRC client with the utility classes in sashenka but there are enough of those out there already so I dont recommend that you try.
What sashenka does offer is an object oriented framework for managing IRC traffic. My only use for it is the bot framework built on top of the IRC framework.
The distro comes with the j2ee.jar from the 1.2.1 j2ee sdk. I include this for convenience, if you have the j2eesdk I encourage you to use your own copy as mine may not jive with your runtime.
Download (0.13MB)
Added: 2006-09-14 License: GPL (GNU General Public License) Price:
1137 downloads
LinCAN 0.3.3
LinCAN is a Linux kernel module that implements a CAN driver. more>>
LinCAN is a Linux kernel module that implements a CAN driver capable of working with multiple cards, even with different chips and IO methods. Each communication object can be accessed from multiple applications concurrently.
It supports RT-Linux, 2.2, 2.4, and 2.6 with fully implemented select, poll, fasync, O_NONBLOCK, and O_SYNC semantics and multithreaded read/write capabilities. It works with the common Intel i82527, Philips 82c200, and Philips SJA1000 (in standard and PeliCAN mode) CAN controllers.
LinCAN project is part of a set of CAN/CANopen related components developed as part of OCERA framework.
Enhancements:
- Some more fixes were made in SJA1000 bus-off recovery.
- The i82527 IRQ stuck problem was fixed.
- The module was updated and tested up to kernel version 2.6.17 (rc4).
- Minimal chip information was added in /proc/can.
- Support for NSI CAN PCI was contributed.
<<lessIt supports RT-Linux, 2.2, 2.4, and 2.6 with fully implemented select, poll, fasync, O_NONBLOCK, and O_SYNC semantics and multithreaded read/write capabilities. It works with the common Intel i82527, Philips 82c200, and Philips SJA1000 (in standard and PeliCAN mode) CAN controllers.
LinCAN project is part of a set of CAN/CANopen related components developed as part of OCERA framework.
Enhancements:
- Some more fixes were made in SJA1000 bus-off recovery.
- The i82527 IRQ stuck problem was fixed.
- The module was updated and tested up to kernel version 2.6.17 (rc4).
- Minimal chip information was added in /proc/can.
- Support for NSI CAN PCI was contributed.
Download (1.2MB)
Added: 2006-05-29 License: GPL (GNU General Public License) Price:
1247 downloads
ADempiere 3.3 Beta
Adempiere is a community driven project which develops and supports an open source business solution. more>>
Adempiere is a community driven project which develops and supports an open source business solution of the same name, that delivers Enterprise Resource Planning, Customer Relationship Management and Supply Chain Management functionality.
The Adempiere project was created in September 2006 after a long running disagreement between ComPiere Inc., and the community that formed around that project. The community believed ComPiere Inc. placed too much emphasis on the open source commercial/lock-in nature of the project, rather than the community sharing/enriching nature of the project, and after an impassioned discussion decided to split from Compiere giving birth to the Adempiere project.
The project name comes from the Italian word meaning to fulfill but with additional context of "to complete, reach, practice, perform the duties of, or free (discharge), it also means to honor and respect", which is absolutely what the community wished to achieve.
Enhancements:
- GUI enhancements/stabilization and a graphical redesign of the Web client.
- Average costing and landed cost fixes.
- A security hole when accessing the Web UI has been resolved.
- RMA and an accounting model validator have been added.
- PostgreSQL, 2pack, and Jasper integration stabilization.
- A lot of code refactoring.
<<lessThe Adempiere project was created in September 2006 after a long running disagreement between ComPiere Inc., and the community that formed around that project. The community believed ComPiere Inc. placed too much emphasis on the open source commercial/lock-in nature of the project, rather than the community sharing/enriching nature of the project, and after an impassioned discussion decided to split from Compiere giving birth to the Adempiere project.
The project name comes from the Italian word meaning to fulfill but with additional context of "to complete, reach, practice, perform the duties of, or free (discharge), it also means to honor and respect", which is absolutely what the community wished to achieve.
Enhancements:
- GUI enhancements/stabilization and a graphical redesign of the Web client.
- Average costing and landed cost fixes.
- A security hole when accessing the Web UI has been resolved.
- RMA and an accounting model validator have been added.
- PostgreSQL, 2pack, and Jasper integration stabilization.
- A lot of code refactoring.
Download (58.3MB)
Added: 2007-07-27 License: MPL (Mozilla Public License) Price:
834 downloads
PyWireless 3.3
PyWireless is a basic wireless connection monitor with DCOP support. more>>
PyWireless is a basic wireless connection monitor with DCOP support.
This is written because:
- KWifiManager seems like disaster (sorry guys!),
- Karamba eats my CPU,
- And there is no (or i cant find) KDE integrated wifi monitor tool
Enhancements:
- Program crashes at Shutdown problem solved.
<<lessThis is written because:
- KWifiManager seems like disaster (sorry guys!),
- Karamba eats my CPU,
- And there is no (or i cant find) KDE integrated wifi monitor tool
Enhancements:
- Program crashes at Shutdown problem solved.
Download (0.039MB)
Added: 2006-11-26 License: GPL (GNU General Public License) Price:
1065 downloads
nrsTable 0.3.3
nrsTable is a JavaScript script that will allow a developer to create HTML tables from arrays. more>>
nrsTable library is a JavaScript script that will allow a developer to create HTML tables from arrays.
The tables can be automatically sorted simply by clicking on the heading. A lot of customization can be done for the tables, such as colors, pages, captions, and more.
The following are some examples of how nrsTable can be used to make dynamic tables. Now, I have already entered the script declaration, which looks like:
< script type="JavaScript" src="nrs_table.js" >< /script >
In the head of this page. Now we can create different examples. Note that each table must have its own, unique id in order for this to work.
Ill also be using the same dummy data for all the tables, since I dont feel like writting more than one example.
The dummy data will look like this:
< script language="JavaScript" src="nrsTable.js" >
var header = new Array("First Name", "Last Name", "Income", "Date Hired");
var data = new Array( new Array ( "Joseph", "Smith", "$35,000", "2000"),
new Array ( "Aaron", "Zelzet", "$45,000", "1997"),
new Array ( "Michael", "Doe", "$55,000", "1965"),
new Array ( "Cindy", "Perez", "$44,345", "2004"),
new Array ( "Robert", "Williams", "$48,234", "1990"),
new Array ( "William", "Cohen", "$12,234", "2005"),
new Array ( "David", "Gross", "$34,563", "1998"),
new Array ( "Linda", "Mendez", "$46,975", "1988"),
new Array ( "Karen", "Anderson", "$124,345", "1978"),
new Array ( "Veronica", "OReiley", "$89,034", "1968")
);
< /script >
Enhancements:
- A small bug that would skip displaying a row at the beginning of a table was fixed.
- This was only the case in IE.
<<lessThe tables can be automatically sorted simply by clicking on the heading. A lot of customization can be done for the tables, such as colors, pages, captions, and more.
The following are some examples of how nrsTable can be used to make dynamic tables. Now, I have already entered the script declaration, which looks like:
< script type="JavaScript" src="nrs_table.js" >< /script >
In the head of this page. Now we can create different examples. Note that each table must have its own, unique id in order for this to work.
Ill also be using the same dummy data for all the tables, since I dont feel like writting more than one example.
The dummy data will look like this:
< script language="JavaScript" src="nrsTable.js" >
var header = new Array("First Name", "Last Name", "Income", "Date Hired");
var data = new Array( new Array ( "Joseph", "Smith", "$35,000", "2000"),
new Array ( "Aaron", "Zelzet", "$45,000", "1997"),
new Array ( "Michael", "Doe", "$55,000", "1965"),
new Array ( "Cindy", "Perez", "$44,345", "2004"),
new Array ( "Robert", "Williams", "$48,234", "1990"),
new Array ( "William", "Cohen", "$12,234", "2005"),
new Array ( "David", "Gross", "$34,563", "1998"),
new Array ( "Linda", "Mendez", "$46,975", "1988"),
new Array ( "Karen", "Anderson", "$124,345", "1978"),
new Array ( "Veronica", "OReiley", "$89,034", "1968")
);
< /script >
Enhancements:
- A small bug that would skip displaying a row at the beginning of a table was fixed.
- This was only the case in IE.
Download (0.031MB)
Added: 2006-02-15 License: GPL (GNU General Public License) Price:
1346 downloads
PloneGlossary 1.3.3
PloneGlossary is a project made for showing links to defined words when they appear in the site text. more>>
PloneGlossary is a project made for showing links to defined words when they appear in the site text.
PloneGlossary is a Plone content type that allows you to manage your own glossaries, propose definitions and search in one or more glossaries. Any word defined is instantly highlighted in the content of your site.
Once a glossary is created, you can add your definitions to it. Definitions are a simple content type. Enter the word you want to define as the title, and the definition of the word in the text body. You can also specify variants of the word. For example if you define the word yoghurt, you may also want to allow the variants yogurt or yoghourt to be valid. Definitions will be highlighted (like an acronym) when they appear elsewhere in your site. (Also see the ploneglossary configlet.)
Once you have a large number of definitions in your glossary, you can browse the glossary by the means of an alphabetic index, or perform a search in the glossary. Each glossary has an integrated search engine, which is simply a ZCatalog.
Main features:
- Glossary portlet: If switched on, a portlet listing all definitions found in the currently shown content.
- Highlight content: if this option is chosen, all defined words are hightlighted in the chosen content types (see further).
- Description length : Choose the maximum length of the given definition in the highlights.
- Description ellipsis: Choose an ellipsis. It is used in the highlight when the defined term exceeds the description length.
- Not highlighted tags: Define the html tags in which definitions should not be highlighted. Default: h1, a, input, textarea
- Allowed portal types: Select the portal types for which defined words are highlighted.
- General glossaries: Select glossaries used to check related terms of content.
<<lessPloneGlossary is a Plone content type that allows you to manage your own glossaries, propose definitions and search in one or more glossaries. Any word defined is instantly highlighted in the content of your site.
Once a glossary is created, you can add your definitions to it. Definitions are a simple content type. Enter the word you want to define as the title, and the definition of the word in the text body. You can also specify variants of the word. For example if you define the word yoghurt, you may also want to allow the variants yogurt or yoghourt to be valid. Definitions will be highlighted (like an acronym) when they appear elsewhere in your site. (Also see the ploneglossary configlet.)
Once you have a large number of definitions in your glossary, you can browse the glossary by the means of an alphabetic index, or perform a search in the glossary. Each glossary has an integrated search engine, which is simply a ZCatalog.
Main features:
- Glossary portlet: If switched on, a portlet listing all definitions found in the currently shown content.
- Highlight content: if this option is chosen, all defined words are hightlighted in the chosen content types (see further).
- Description length : Choose the maximum length of the given definition in the highlights.
- Description ellipsis: Choose an ellipsis. It is used in the highlight when the defined term exceeds the description length.
- Not highlighted tags: Define the html tags in which definitions should not be highlighted. Default: h1, a, input, textarea
- Allowed portal types: Select the portal types for which defined words are highlighted.
- General glossaries: Select glossaries used to check related terms of content.
Download (0.084MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
984 downloads
NanoBlogger 3.3
NanoBlogger is a small weblog engine written in Bash for the command line. more>>
NanoBlogger is a small weblog engine written in Bash for the command line. NanoBlogger uses common UNIX tools such as cat, grep and sed to create static HTML content. Its free to use and modify under the GNU General Public License.
Main features:
- intuitive commandline interface
- highly configurable and scriptable :)
- easy drafting, editing, and management of entries
- archiving by category, entry, and month
- pagination
- permanent and navigational links
- templates and CSS style sheets for full control over layout
- placeholders for easy template manipulation
- support for multiple weblogs
- support for multiple categories
- support for relative and absolute links
- support for date manipulation of entries
- Atom syndication (comes with 1.0 format)
- RSS syndication (comes with RSS 1.0 and 2.0 formats)
- plugins for calendar, recent entries, weblog status, etc.
- plugins for text formatting (e.g. line breaks translate to HTML)
- global (nb.conf) and per-weblog (blog.conf) configuration
- intelligent build system - only updates relative files
- simple cache system for improved effeciency
- independent of java-script and server-side scripting (e.g. PHP)
- independent of external database (stores data in flat-files)
- multi-language support
- multi-platform portability (just bash and the required commands)
Enhancements:
- This release includes many logical bugfixes, user contributed patches, and a new --query option which combines with other options, such as --edit, to manipulate entries by date.
- It introduces friendly (title based) links and archiving by day.
- Of course, it also includes all the changes and bugfixes from the previous 3.3 release candidates.
<<lessMain features:
- intuitive commandline interface
- highly configurable and scriptable :)
- easy drafting, editing, and management of entries
- archiving by category, entry, and month
- pagination
- permanent and navigational links
- templates and CSS style sheets for full control over layout
- placeholders for easy template manipulation
- support for multiple weblogs
- support for multiple categories
- support for relative and absolute links
- support for date manipulation of entries
- Atom syndication (comes with 1.0 format)
- RSS syndication (comes with RSS 1.0 and 2.0 formats)
- plugins for calendar, recent entries, weblog status, etc.
- plugins for text formatting (e.g. line breaks translate to HTML)
- global (nb.conf) and per-weblog (blog.conf) configuration
- intelligent build system - only updates relative files
- simple cache system for improved effeciency
- independent of java-script and server-side scripting (e.g. PHP)
- independent of external database (stores data in flat-files)
- multi-language support
- multi-platform portability (just bash and the required commands)
Enhancements:
- This release includes many logical bugfixes, user contributed patches, and a new --query option which combines with other options, such as --edit, to manipulate entries by date.
- It introduces friendly (title based) links and archiving by day.
- Of course, it also includes all the changes and bugfixes from the previous 3.3 release candidates.
Download (0.065MB)
Added: 2007-01-14 License: GPL (GNU General Public License) Price:
1014 downloads
Eclipse 3.3
Eclipse is a kind of universal tool platform - an open extensible IDE for anything and nothing in particular. more>>
Eclipse project is an open source community whose projects are focused on providing an extensible development platform and application frameworks for building software.
Eclipse provides extensible tools and frameworks that span the software development lifecycle, including support for modeling, language development environments for Java, C/C++ and others, testing and performance, business intelligence, rich client applications and embedded development.
A large, vibrant ecosystem of major technology vendors, innovative start-ups, universities and research institutions and individuals extend, complement and support the Eclipse Platform
<<lessEclipse provides extensible tools and frameworks that span the software development lifecycle, including support for modeling, language development environments for Java, C/C++ and others, testing and performance, business intelligence, rich client applications and embedded development.
A large, vibrant ecosystem of major technology vendors, innovative start-ups, universities and research institutions and individuals extend, complement and support the Eclipse Platform
Download (MB)
Added: 2007-06-30 License: GPL (GNU General Public License) Price:
563 downloads
Xplns 3.3.1
Xplns is an astronomy simulation. more>>
Xplns reproduces real starry sky on your display of X Window System. It calculates the position of many celestial objects (stars, galaxies, nebulae, constellations, planets, comets, etc.) very accurately.
You can enjoy the past and future sky on the desk top as if you have traveled all around the world. In solar system projection mode, you can examine motion of solar objects.
You can observe motion of the stars with tracking an object. The information display function let you know the rise, set and meridian time of solar objects, when dusk ends, when dawn starts, moon age, etc.
These functions are helpful for observing stars under the real sky. There are fourteen projection mode in xplns, "Horizontal View Mode", "Equatorial Mode", "Ecliptic Mode", "Galactic Mode", "Planisphere Mode" and "Solar System Mode".
Main features:
- Fourteen projection mode (Horizontal, Equatorial, Planisphere, Solar System, Planisphere mode, etc.).
- Display stars, nebulae, galaxies, planets, sun, moon, comets, minor planets, galilean satellites, etc.
- In addition to standard star catalog (up to magnitude 6.5), SAO star catalog and guide star catalog (GSC) supported.
- Display function of name of the constellations, planets, stars, nebulae, galaxies, etc.
- Magnified figure of planets.
- Grid of equatorial coordinates, ecliptic coordinates, horizontal coordinates, etc.
- Motional display of stars with continuous or real-time drive.
- Display function of Rise, set, meridian time of solar objects, moon age.
- Images of celestial objects.
Environment
- Linux 2.4 with libc5(ELF), glibc 2.1, 2.2 or 2.3 on i386
- FreeBSD 4.6.2, 4.7, 4.8 on i386
- XFree86 4.1 or later (256 or more colors)
<<lessYou can enjoy the past and future sky on the desk top as if you have traveled all around the world. In solar system projection mode, you can examine motion of solar objects.
You can observe motion of the stars with tracking an object. The information display function let you know the rise, set and meridian time of solar objects, when dusk ends, when dawn starts, moon age, etc.
These functions are helpful for observing stars under the real sky. There are fourteen projection mode in xplns, "Horizontal View Mode", "Equatorial Mode", "Ecliptic Mode", "Galactic Mode", "Planisphere Mode" and "Solar System Mode".
Main features:
- Fourteen projection mode (Horizontal, Equatorial, Planisphere, Solar System, Planisphere mode, etc.).
- Display stars, nebulae, galaxies, planets, sun, moon, comets, minor planets, galilean satellites, etc.
- In addition to standard star catalog (up to magnitude 6.5), SAO star catalog and guide star catalog (GSC) supported.
- Display function of name of the constellations, planets, stars, nebulae, galaxies, etc.
- Magnified figure of planets.
- Grid of equatorial coordinates, ecliptic coordinates, horizontal coordinates, etc.
- Motional display of stars with continuous or real-time drive.
- Display function of Rise, set, meridian time of solar objects, moon age.
- Images of celestial objects.
Environment
- Linux 2.4 with libc5(ELF), glibc 2.1, 2.2 or 2.3 on i386
- FreeBSD 4.6.2, 4.7, 4.8 on i386
- XFree86 4.1 or later (256 or more colors)
Download (1.1MB)
Added: 2005-04-01 License: Free To Use But Restricted Price:
1667 downloads
Download (3.2MB)
Added: 2007-07-27 License: GPL (GNU General Public License) Price:
822 downloads
cgoban2 3.3.8
cgoban2 is a Go game file editor and KGS server client. more>>
cgoban2 is a Go game file editor and KGS server client.
Capable of creating and editing SGF files. This is the full-featured client to the go server KGS.
- An editor for SGF go files.
- A client for the Kiseido Go Server.
Notes: (2004/12/23)
KGS is probably the most user-friendly and full-featured of the online go servers (although not the one with the strongest players). It includes a wide range of go game playing, reviewing, and teaching tools.
Most recently, the capability of voice commented lessons was added, along with a pay service including frequent replayable lectures.
<<lessCapable of creating and editing SGF files. This is the full-featured client to the go server KGS.
- An editor for SGF go files.
- A client for the Kiseido Go Server.
Notes: (2004/12/23)
KGS is probably the most user-friendly and full-featured of the online go servers (although not the one with the strongest players). It includes a wide range of go game playing, reviewing, and teaching tools.
Most recently, the capability of voice commented lessons was added, along with a pay service including frequent replayable lectures.
Download (MB)
Added: 2006-11-11 License: GPL (GNU General Public License) Price:
1081 downloads
ntop 3.3
ntop is a network probe that shows network usage in a way similar to what top does for processes. more>>
ntop is a network traffic probe that shows the network usage, similar to what the popular top Unix command does.
The project is based on libpcap and it has been written in a portable way in order to virtually run on every Unix platform and on Win32 as well.
ntop users can use a a web browser (e.g. netscape) to navigate through ntop (that acts as a web server) traffic information and get a dump of the network status.
In the latter case, ntop can be seen as a simple RMON-like agent with an embedded web interface. The use of:
a web interface
limited configuration and administration via the web interface
reduced CPU and memory usage (they vary according to network size and traffic)
make ntop easy to use and suitable for monitoring various kind of networks.
Main features:
- Sort network traffic according to many protocols
- Show network traffic sorted according to various criteria
- Display traffic statistics
- Store on disk persistent traffic statistics in RRD format
- Identify the indentity (e.g. email address) of computer users
- Passively (i.e. withou sending probe packets) identify the host OS
- Show IP traffic distribution among the various protocols
- Analyse IP traffic and sort it according to the source/destination
- Display IP Traffic Subnet matrix (whos talking to who?)
- Report IP protocol usage sorted by protocol type
- Act as a NetFlow/sFlow collector for flows generated by routers (e.g. Cisco and Juniper) or switches (e.g. Foundry Networks)
- Produce RMON-like network traffic statistics
Additional features of "ntop":
- Network Flows
- Local Traffic Analysis
- Multithread and MP (MultiProcessor) support on both Unix and Win32
- Perl/PHP/Python lightweight API for accessing ntop from remote
- Support of both NetFlow andsFlow as flow collector. ntop can collect simultaneously from multiple probes.
- Traffic statistics are saved into RRD databases for long-run traffic analysis.
- Internet Domain, AS (Autonomous Systems), VLAN (Virtual LAN) Statistics
- Network assets discovery and categorization according to their OS and users
- Protocol decoders for most of known P2P (Peer to Peer) protocols
- Advanced per user HTTP password protection with encrypted passwords
- RRD support for persistently storing per-host traffic information
- Passive remote host fingerprint (Courtesy of ettercap)
- HTTPS (Secure HTTP via OpenSSL)
- Virtual/multiple network interfaces support
- Graphical Charts (via gdchart)
- WAP support
<<lessThe project is based on libpcap and it has been written in a portable way in order to virtually run on every Unix platform and on Win32 as well.
ntop users can use a a web browser (e.g. netscape) to navigate through ntop (that acts as a web server) traffic information and get a dump of the network status.
In the latter case, ntop can be seen as a simple RMON-like agent with an embedded web interface. The use of:
a web interface
limited configuration and administration via the web interface
reduced CPU and memory usage (they vary according to network size and traffic)
make ntop easy to use and suitable for monitoring various kind of networks.
Main features:
- Sort network traffic according to many protocols
- Show network traffic sorted according to various criteria
- Display traffic statistics
- Store on disk persistent traffic statistics in RRD format
- Identify the indentity (e.g. email address) of computer users
- Passively (i.e. withou sending probe packets) identify the host OS
- Show IP traffic distribution among the various protocols
- Analyse IP traffic and sort it according to the source/destination
- Display IP Traffic Subnet matrix (whos talking to who?)
- Report IP protocol usage sorted by protocol type
- Act as a NetFlow/sFlow collector for flows generated by routers (e.g. Cisco and Juniper) or switches (e.g. Foundry Networks)
- Produce RMON-like network traffic statistics
Additional features of "ntop":
- Network Flows
- Local Traffic Analysis
- Multithread and MP (MultiProcessor) support on both Unix and Win32
- Perl/PHP/Python lightweight API for accessing ntop from remote
- Support of both NetFlow andsFlow as flow collector. ntop can collect simultaneously from multiple probes.
- Traffic statistics are saved into RRD databases for long-run traffic analysis.
- Internet Domain, AS (Autonomous Systems), VLAN (Virtual LAN) Statistics
- Network assets discovery and categorization according to their OS and users
- Protocol decoders for most of known P2P (Peer to Peer) protocols
- Advanced per user HTTP password protection with encrypted passwords
- RRD support for persistently storing per-host traffic information
- Passive remote host fingerprint (Courtesy of ettercap)
- HTTPS (Secure HTTP via OpenSSL)
- Virtual/multiple network interfaces support
- Graphical Charts (via gdchart)
- WAP support
Download (2.4MB)
Added: 2007-06-10 License: GPL (GNU General Public License) Price:
547 downloads
NodeMon 0.3.3
NodeMon is a resource utilization monitor tailored to the Altix architecture, but is applicable to any Linux system or cluster. more>>
NodeMon is a visualization tool for monitoring system resource utilization. It allows distributed resource monitoring via the Growler software infrastructure.
It is modular, with existing modules for monitoring of CPU, memory, network, and numalink activity. Its most notable feature is its composition of large amounts of statistics into a single graphical window. This project was originally designed for monitoring NASAs Columbia supercomputer.
<<lessIt is modular, with existing modules for monitoring of CPU, memory, network, and numalink activity. Its most notable feature is its composition of large amounts of statistics into a single graphical window. This project was originally designed for monitoring NASAs Columbia supercomputer.
Download (0.68MB)
Added: 2007-08-03 License: GPL (GNU General Public License) Price:
813 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 nissan 3.3 xterra 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