Main > Free Download Search >

Free mcs software for linux

mcs

Sponsored Links
Sponsored Links
Sort by >> Relevance
rss
Secleted [ 0 ] software to compare
Results 1 - 15 of about 8
Meldware Communication Suite 1.0M6

Meldware Communication Suite 1.0M6


Meldware Communication Suite is a platform independent groupware package. more>>
Meldware Communication Suite is a platform independent groupware package consisting of:
Meldware Mail
Meldware Calendar
Meldware Webmail
Meldware Secure Administration System
Together the package provides support for thousands of users to concurrently send and receive email and schedule meetings. MCS uniquely allows you to store all messages and scheduling events in nearly any database and runs on nearly all popular software and hardware platforms.
Additionally, while the scheduling and calendaring services are able to be installed separately, the integrated featureset provides both a unique and powerful experience to both users and server-side Mail Based Applications and Collaboration Based Application Services.
The MCS platform provides security integration using LDAP sources including Microsoft Active Directory as well as flat-file and Database sources. Additionally, extensible security allows custom authentication/authorization sources.
Enhancements:
- IMAP is now stable with Mozilla Thunderbird and POP/SMTP are production ready.
- New Filestore code was implemented and many improvements were made in mailbox and storage code.
<<less
Download (64.9MB)
Added: 2006-12-13 License: LGPL (GNU Lesser General Public License) Price:
1050 downloads
Buni Meldware Communication Suite 1.0M8-final

Buni Meldware Communication Suite 1.0M8-final


Buni Meldware Communication Suite (MCS) is a platform-independent groupware package. more>>
Buni Meldware Communication Suite (MCS) is a platform-independent groupware package consisting of:
- Meldware Mail
- Meldware Calendar
- Meldware Webmail
- Meldware Secure Administration System
Together the package provides support for thousands of users concurrently to send and receive email and to schedule meetings. MCS uniquely allows you to store all messages and scheduling events in nearly any database and runs on nearly all popular software and hardware platforms.
MCS commitment to platform and database agnosticism aims to meet increasing business requirements to maximize ease and flexibility of managing and accessing data as well as putting a premium on interoperability.
Additionally, while the scheduling and calendaring services can be installed separately, the integrated feature set provides both a distinctive and powerful experience to both users and server-side Mail Based Applications and Collaboration Based Application Services.
The MCS platform provides security integration using LDAP sources including Microsoft Active Directory as well as flat-file and database sources.
Additionally, extensible security allows custom authentication/authorization sources.
Enhancements:
- This is the first milestone release with WCAP, freebusy for webmail, and mature IMAP all together.
- It has undergone extensive hardening, dogfooding, and QA testing.
- The WCAP protocol for calendaring now works well for Thunderbird and Lightning 0.3.
- Webmail calendaring was greatly improved.
- The abillity to download attachments has been added to the webmail interface.
- Numerous performance improvements have been made in SMTP, IMAP, and MIME parsing since 1.0-M7.
<<less
Download (55.3MB)
Added: 2007-08-02 License: LGPL (GNU Lesser General Public License) Price:
815 downloads
atmelprog 1.1

atmelprog 1.1


atmelprog is an Atmel AT89Cx051 microcontroller programmer (device schematics included). more>>
atmelprog is an Atmel AT89Cx051 microcontroller programmer (device schematics included). atmelprog allows writing and erasing flash, as well as verification of data written.
Main features:
- supports all AT89Cx051 family chips (MCS-51 compatibile)
- allows writing data to the microcontroller
- supports data verification during write
- allows reading data from microcontroller to file
- allows erasing flash
Enhancements:
- added diagnostic mode (-t)
- more readable code (use #defined pin values)
<<less
Download (0.058MB)
Added: 2006-03-29 License: GPL (GNU General Public License) Price:
1325 downloads
String::MFN 1.27

String::MFN 1.27


String::MFN is a Perl module to Normalize a string in the manner of the mfn utility. more>>
String::MFN is a Perl module to Normalize a string in the manner of the mfn utility.

SYNOPSIS

use String::MFN;

my $sane_string = mfn($retarded_string);
...

Normalizes a string. Normalization, in brief, means modifying the string to resemble a sane UNIX filename while retaining information carried by the original formatting.
Normalization, in specific, consists of characters other than [w-.+] being removed, lowercasing of all letters, separation of internaCaps, separation of leading numerals from trailing non-numerals, replacement of "bracketing" characters ({[()]}), replacement of ampersands, and collapsing (things that look like) repeating extentions.

Some concrete examples (filenames found by googling for "mp3 playlist"):

Frank Sinatra & Count Basie - More.mp3
frank_sinatra_and_count_basie-more.mp3

Cornershop - Heavy Soup [Outro] [*] [*].mp3
cornershop-heavy_soup-outro.mp3

Soundtrack - American Pie 2 5 - Uncle Kracker - (Im Gonna) Split This Room In Half.mp3
soundtrack-american_pie_205-uncle_kracker-im_gonna-split_this_room_in_half.mp3

12. Only You (Bad Boys Remix)(Ft. The Notorious B.I.G.).mp3
12-only_you-bad_boys_remix-ft_the_notorious_b.i.g.mp3

Ultramagnetic MCs - Critical Beatdown.mp3.mp3.mp3
ultramagnetic_mcs-critical_beatdown.mp3

FUNCTIONS

mfn

Normalizes a string. Returns the normalized string. If no argument is given, mfn operates on $_.

<<less
Download (0.008MB)
Added: 2006-11-15 License: Perl Artistic License Price:
1073 downloads
Mono-Readline 0.0.1

Mono-Readline 0.0.1


Mono-Readline is a simple little assembly for .Net (specifically Mono) that provides support for GNU Readline. more>>
Mono-Readline is a simple little assembly for .Net (specifically Mono) that provides support for GNU Readline support within Mono applications.

Mono-Readline project is based on the code of Martin Baulig in the Mono debugger. I just took it and made it all nice and autoconf/automake enabled.

Its pretty straight forward, but here is a short sample program:

using Mono.ReadLine;
using System;
using System.Reflection;

public class Test {

public static void Main(string[] args) {
GnuReadLine readline = new GnuReadLine();
Console.WriteLine("Monkeys!");

string the_prompt = "This is a test: ";
string result;
while (true) {
result = readline.ReadLine(the_prompt);
if (result != null) {
readline.AddHistory(result);
} else {
break;
}
}
}
}

You should be able to compile this with mcs -r:mono.readline test.cs and get a little executable program that keeps going until you hit CTRL-D. There is lots of other fun you could do such as setting up continuation prompts and what not. Basically, most of this is ripped from Martins code in the mono debugger.

But wait, odds are youre going to get some funky error saying it cant find the package or something like that. If thats the case, make sure you have MONO_PATH="/usr/local/lib" set before running the program and compiling. For example to compile run:

MONO_PATH="/usr/local/lib" mcs -r:mono.readline test.cs

And then to run type:

MONO_PATH="/usr/local/lib" mono test.exe

Im not a real Mono pro, but my hope is that this could possibly help someone else out. Im thinking that in the future I may also include a patch for IronPython.

As always, if you have comments or patches, please let me know.
<<less
Download (0.29MB)
Added: 2006-03-31 License: GPL (GNU General Public License) Price:
1305 downloads
airoleap 0.7.3

airoleap 0.7.3


Airctl is a commad-line utility to trigger connection and disconnection events on. more>>
Airctl is a commad-line utility to trigger connection and disconnection events on, and to print the status of an Apple AirPort Base Station. At the moment this is not a configuration utility; try the AirPort Java Configurator http://edge.mcs.drexel.edu/GICL/people/sevy/airport/] , airconf [http://c0re.jp/c0de/airconf/] , or Apples own software to configure thing.

To install follow these commands:
make airctl

Usage:
./airctl -h
<<less
Download (0.011MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1206 downloads
J51 1.00

J51 1.00


J51 is an 8051 emulator/debugger. more>>
J51 project is a Java Intel MCS51(8051,8052, etc) family microprocessor emulator, with integrated debugger, disassembler, Intel hex file loader and more.
Main features:
- Disassembler
- Debugger
- Intel Hex file loader
Standard peripheral emulated:
- Timer 0/1 (Mode 0,1,2 and interrupt)
- Serial interface (Only in polled mode)
- Standard port 0 to 4
Microprocessor emulated:
- Intel MCS 8051 (no peripheral)
- Intel 8051
- Intel 8052
- Philips LPC674
- Philips LPC900
This version is still experimental the sources are distributed only for reference, full source and documentation will be available with the first stable release.
<<less
Download (0.13MB)
Added: 2006-12-14 License: Freeware Price:
1048 downloads
Rant 0.5.6

Rant 0.5.6


Rant is a flexible build tool. more>>
Rant is a flexible build tool. The equivalent to a Makefile for make is the Rantfile, which is actually a valid Ruby script that is read in by the rant command.
It currently features automated testing, packaging, and RDoc generation for Ruby applications and libraries, creation of gzipped tar and zip archives on all supported platforms without additional software, recognition of file changes based on MD5 checksums, dependency checking for C/C++ source files (makedepend is not required), and more.
Rant can generate a script tailored to the needs of a specific project, which can be used instead of an Rant installation so that users arent dependent on Rant.
Main features:
- Defining custom tasks.
- Automated packaging, testing and RDoc generation for Ruby applications and libraries.
- Creation of a monolithic script tailored to the needs of a specific project which can be used instead of an Rant installation - users dont need to install Rant.
- Creating gzipped tar and zip archives -- without installing additional software.
- Optional recognition of file changes based on MD5 checksums instead of file modification times.
- Primitive support for compiling C# sources with csc, cscc and mcs.
- Dependency checking for C/C++ source files (integrated makedepend replacement).
Enhancements:
- This release fixes bugs in Rants packaging tasks and its dependency checking for C/C++ source files.
- The C::Dependencies task accepts a new option suitable for case-insensitive file systems.
<<less
Download (0.20MB)
Added: 2006-05-26 License: LGPL (GNU Lesser General Public License) Price:
1246 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 1
  • 1