claudio
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 20
LXRAD 0.5
LXRAD means Linux X11 Rapid Application Development. more>>
LXRAD means Linux X11 Rapid Application Development, LXRAD is written in c++ and uses own component Library (liblxrad + GTK2.0), there are components such as button, editbox, menu and others.
The project is a collection of RAD tools for creating x11 interface based.
Enhancements:
- A layout bug was fixed.
- The CString class was renamed to CLabel.
- The layout files are stored in an XML format.
- A new implementation using GTK widgets was started.
<<lessThe project is a collection of RAD tools for creating x11 interface based.
Enhancements:
- A layout bug was fixed.
- The CString class was renamed to CLabel.
- The layout files are stored in an XML format.
- A new implementation using GTK widgets was started.
Download (0.16MB)
Added: 2007-05-24 License: GPL (GNU General Public License) Price:
886 downloads
PAI 5.02
PAI is a little question answering program. more>>
PAI is a Question Answering System that gains information from a conversation conducted in a restricted form of the English language.
The code is written in C++, and uses a layer provided by the words class. This class provides a lot of operations on strings (C++ lacks of powerful operations on strings) and is widely used by all the other classes.
The code is composed of the following files:
words.h: dichiaration of class words
words.cpp: definitions of functions for the class words
verbs.h: dichiaration of class verb
verbs.cpp: definitions of functions for the class verb
memory.h: dichiaration of class memory
memory.cpp: definitions of functions for the class memory
reading.cpp: code to read an external file
command.h: dichiaration of class command
command.cpp: definitions of functions for the class command
execute.cpp: code to execute an external program
start.cpp: code to initialize the program
main.cpp: code to start the program
Installation
Open a shell, and unzip the file with the command
tar xvfz pai5.02_unix.tar.gz
Move into the main directory, and type
make
This will compile the program.
To install the program in your system (you need to be root), type
make install
At this point, if you want to clean the system, just type
make clean
<<lessThe code is written in C++, and uses a layer provided by the words class. This class provides a lot of operations on strings (C++ lacks of powerful operations on strings) and is widely used by all the other classes.
The code is composed of the following files:
words.h: dichiaration of class words
words.cpp: definitions of functions for the class words
verbs.h: dichiaration of class verb
verbs.cpp: definitions of functions for the class verb
memory.h: dichiaration of class memory
memory.cpp: definitions of functions for the class memory
reading.cpp: code to read an external file
command.h: dichiaration of class command
command.cpp: definitions of functions for the class command
execute.cpp: code to execute an external program
start.cpp: code to initialize the program
main.cpp: code to start the program
Installation
Open a shell, and unzip the file with the command
tar xvfz pai5.02_unix.tar.gz
Move into the main directory, and type
make
This will compile the program.
To install the program in your system (you need to be root), type
make install
At this point, if you want to clean the system, just type
make clean
Download (0.079MB)
Added: 2005-04-01 License: GPL (GNU General Public License) Price:
1666 downloads
FusionSound 0.9.25
FusionSound project is an audio sub system for multiple applications. more>>
FusionSound project is an audio sub system for multiple applications.
FusionSound is a very powerful audio sub system in the manner of DirectFB and a technical demonstration of Fusion.
FusionSound supports multiple applications using Fusion IPC. It provides streams, static sound buffers and control over any number of concurrent playbacks.
Sample data is always stored in shared memory, starting a playback simply adds an entry to the playlist of the mixer thread in the master application.
FusionSound currently is a module of DirectFB. The current API is fully implemented and the complete code is smaller than just the header file of DirectFB!
FusionSound future plans include interfaces for hardware/software codecs, hardware gain control, device configuration and different device backends (currently OSS only).
Enhancements:
- Fixed CDDB discid computation.
- Search for CDDB disc data iterating through all categories.
<<lessFusionSound is a very powerful audio sub system in the manner of DirectFB and a technical demonstration of Fusion.
FusionSound supports multiple applications using Fusion IPC. It provides streams, static sound buffers and control over any number of concurrent playbacks.
Sample data is always stored in shared memory, starting a playback simply adds an entry to the playlist of the mixer thread in the master application.
FusionSound currently is a module of DirectFB. The current API is fully implemented and the complete code is smaller than just the header file of DirectFB!
FusionSound future plans include interfaces for hardware/software codecs, hardware gain control, device configuration and different device backends (currently OSS only).
Enhancements:
- Fixed CDDB discid computation.
- Search for CDDB disc data iterating through all categories.
Download (0.95MB)
Added: 2006-10-13 License: GPL (GNU General Public License) Price:
1108 downloads
HTML::Mail 0.02_05
HTML::Mail is a Perl extension for sending emails with embedded HTML and media. more>>
HTML::Mail is a Perl extension for sending emails with embedded HTML and media.
SYNOPSIS
use HTML::Mail;
### initialisation
my $html_mail = HTML::Mail->new(
HTML => http://www.cpan.org,
Text => This is the text representation of the webpage http://www.cpan.org,
From => me@myhost.org,
To => you@yourhost.org,
Subject => CPAN webpage);
### Send the email ("inherited" from MIME::Lite)
$html_mail->send();
#### Remove text representation
$html_mail->set_Text();
### Rebuild the message and send
$html_mail->build->send;
### Serialise to file for later reuse
$html_mail->dump_file(/tmp/cpan_mail.data);
### Restore from file
my $restored = HTML::Mail->restore_file(/tmp/cpan_mail.data);
HTML::Mail is supposed to help with the task of sending emails with HTML and images (or other media) embedded or externally linked. It uses MIME::Lite for all MIME related jobs, HTML::Parser to find related files and change the URIs and LWP::UserAgent to retrieve the related files.
Email can be multipart/alternative if both HTML and Text content exist and multipart/related if there is only HTML content.
If all you want is to send text-only email, you probably wont find this module useful at all, or at best a huge overkill.
<<lessSYNOPSIS
use HTML::Mail;
### initialisation
my $html_mail = HTML::Mail->new(
HTML => http://www.cpan.org,
Text => This is the text representation of the webpage http://www.cpan.org,
From => me@myhost.org,
To => you@yourhost.org,
Subject => CPAN webpage);
### Send the email ("inherited" from MIME::Lite)
$html_mail->send();
#### Remove text representation
$html_mail->set_Text();
### Rebuild the message and send
$html_mail->build->send;
### Serialise to file for later reuse
$html_mail->dump_file(/tmp/cpan_mail.data);
### Restore from file
my $restored = HTML::Mail->restore_file(/tmp/cpan_mail.data);
HTML::Mail is supposed to help with the task of sending emails with HTML and images (or other media) embedded or externally linked. It uses MIME::Lite for all MIME related jobs, HTML::Parser to find related files and change the URIs and LWP::UserAgent to retrieve the related files.
Email can be multipart/alternative if both HTML and Text content exist and multipart/related if there is only HTML content.
If all you want is to send text-only email, you probably wont find this module useful at all, or at best a huge overkill.
Download (0.015MB)
Added: 2006-10-23 License: Perl Artistic License Price:
1096 downloads
dialog-mp3-list 0.60
dialog-mp3-list generates an organized list of your CDs and directories of MP3s. more>>
dialog-mp3-list generates an organized list of your CDs and directories of MP3s. It shows a numbered list of MP3s with information on their encoding speed and track lengths. It uses Dialog/XDialog and Latex to create lists in .tex, .ps, and .pdf formats.
You can modify the source file .tex and then you can compile it with the commands:
latex lista-mp3-albuns.tex
dvips lista-mp3-albuns.dvi -o
ps2pdf lista-mp3-albuns.ps
<<lessYou can modify the source file .tex and then you can compile it with the commands:
latex lista-mp3-albuns.tex
dvips lista-mp3-albuns.dvi -o
ps2pdf lista-mp3-albuns.ps
Download (0.076MB)
Added: 2006-07-31 License: GPL (GNU General Public License) Price:
1186 downloads
cmdftp 0.9.6
cmdftp is a command line FTP client for Unix. more>>
cmdftp is a command line FTP client for Unix.
Features include passive mode for all data transfers, shell like transparent syntax for local and remote modes, multiple and recursive file transfers using wildcards, recursive copy and move commands, remote and local text file viewing and editing, network errors detection and resuming of currently executing command, partial download resuming (if server accepts REST command), tab completion for both local and remote names, autologin using classic ~/.netrc approach, large file support.
cmdftp is aimed at being small and simple.
Installation:
To build the executable (cmdftp) extract the source code from the file (cmdftp-version.tar.gz) first. A new directory cmdftp-version is included in the tarball.
Then build using:
./configure
make
make install
There is more information in README file contained in the cmdftp release so refer to that file for other information on cmdftp configuration and installation.
Enhancements:
- The main focus of this release is the move to the GPLv3.
<<lessFeatures include passive mode for all data transfers, shell like transparent syntax for local and remote modes, multiple and recursive file transfers using wildcards, recursive copy and move commands, remote and local text file viewing and editing, network errors detection and resuming of currently executing command, partial download resuming (if server accepts REST command), tab completion for both local and remote names, autologin using classic ~/.netrc approach, large file support.
cmdftp is aimed at being small and simple.
Installation:
To build the executable (cmdftp) extract the source code from the file (cmdftp-version.tar.gz) first. A new directory cmdftp-version is included in the tarball.
Then build using:
./configure
make
make install
There is more information in README file contained in the cmdftp release so refer to that file for other information on cmdftp configuration and installation.
Enhancements:
- The main focus of this release is the move to the GPLv3.
Download (0.12MB)
Added: 2007-07-09 License: GPL v3 Price:
838 downloads
BSFlite 0.82
BSFlite is a minimalistic, line-based AIM client for Unix. more>>
BSFlite is a minimalistic, line-based AIM client for Unix.
Instead of having a full screen console interface, BSFlite employs a command line interface that allows your fingers to do all of the work without needlessly sifting through windows.
BSFlite runs on UNIX (including Linux, all of the BSDs, Solaris, etc.), Zeta (and possibly BeOS), Windows, DOS, Mac OS X, and Plan 9.
Well, minimalistic doesnt necessarily mean sparse. Lets call it, say, nimble. BSFlite supports most standard AIM features, with the notable exceptions of chat rooms and block lists.
For casual day-to-day chat, its perfect, if for nothing else than one important feature: once your fingers learn the commands, it doesnt matter if your brain remembers them or not. Youll be amazed at how efficiently you can juggle conversations with BSFlite. Seriously.
Main features:
- Runs on just about any UNIX machine of any speed
- Uses very few resources, even compared to other console clients
- Very portable codebase with BSD-licensed AIM library for use in your own projects
- Windows port with tiny binary size - put it on a floppy or USB stick and load it up when you need AIM at an Internet cafe or public terminal
- Works great with screen, so you can leave your AIM session logged in when youre not physically at your terminal
- Not affiliated with America Online in any way
Enhancements:
- Several memory leaks and bugs were fixed.
- Better color support and the ability to reconnect were added.
- A man page is now available.
<<lessInstead of having a full screen console interface, BSFlite employs a command line interface that allows your fingers to do all of the work without needlessly sifting through windows.
BSFlite runs on UNIX (including Linux, all of the BSDs, Solaris, etc.), Zeta (and possibly BeOS), Windows, DOS, Mac OS X, and Plan 9.
Well, minimalistic doesnt necessarily mean sparse. Lets call it, say, nimble. BSFlite supports most standard AIM features, with the notable exceptions of chat rooms and block lists.
For casual day-to-day chat, its perfect, if for nothing else than one important feature: once your fingers learn the commands, it doesnt matter if your brain remembers them or not. Youll be amazed at how efficiently you can juggle conversations with BSFlite. Seriously.
Main features:
- Runs on just about any UNIX machine of any speed
- Uses very few resources, even compared to other console clients
- Very portable codebase with BSD-licensed AIM library for use in your own projects
- Windows port with tiny binary size - put it on a floppy or USB stick and load it up when you need AIM at an Internet cafe or public terminal
- Works great with screen, so you can leave your AIM session logged in when youre not physically at your terminal
- Not affiliated with America Online in any way
Enhancements:
- Several memory leaks and bugs were fixed.
- Better color support and the ability to reconnect were added.
- A man page is now available.
Download (0.054MB)
Added: 2006-11-08 License: BSD License Price:
1081 downloads
BrazilFW 2.29.4
Brazilfw is a mini-distribution designed for setting up network utility services. more>>
Brazilfw is a mini-distribution designed for setting up network utility services such as Internet connection sharing, firewalling, or wireless access points.
The goal of BrazilFW project is to make it as quick and easy as possible to set up a Linux system with only a minimal amount of Linux knowledge.
The main goal of BrazilFW is to continue the development of what was the Coyote Linux floppy firewall system.
<<lessThe goal of BrazilFW project is to make it as quick and easy as possible to set up a Linux system with only a minimal amount of Linux knowledge.
The main goal of BrazilFW is to continue the development of what was the Coyote Linux floppy firewall system.
Download (3.8MB)
Added: 2006-11-03 License: GPL (GNU General Public License) Price:
1098 downloads
cpp xstream 0.0.3
cpp xstream is a collection of several streambuf and iostream classes. more>>
cpp xstream is a C++ flexible stream library.
cpp xstream is a collection of several streambuf and iostream classes that allow a programmer to compress and decompress data transparently with gzip or bzip2, to serialize composite types to xdr, to encode or decode with base64, and to tee output from one channel to several others. These streams can be stacked on each other.
Main features:
- Compressing and decompressing data using zlib and bzlib
- Encode and decode base64 data
- Serialize and deserialize structures to XDR
- Calculate digests of data
- Fork data written to a stream to several others
- Use file descriptors using a iostream interface (where available)
<<lesscpp xstream is a collection of several streambuf and iostream classes that allow a programmer to compress and decompress data transparently with gzip or bzip2, to serialize composite types to xdr, to encode or decode with base64, and to tee output from one channel to several others. These streams can be stacked on each other.
Main features:
- Compressing and decompressing data using zlib and bzlib
- Encode and decode base64 data
- Serialize and deserialize structures to XDR
- Calculate digests of data
- Fork data written to a stream to several others
- Use file descriptors using a iostream interface (where available)
Download (0.11MB)
Added: 2006-03-07 License: GPL (GNU General Public License) Price:
1329 downloads
WebService::Mappoint 0.30
WebService::Mappoint is a client SOAP implementation for Mappoint, Microsofts geographic maps web service, based on SOAP::Lite. more>>
WebService::Mappoint is a client SOAP implementation for Mappoint, Microsofts geographic maps web service, based on SOAP::Lite.
SYNOPSIS
Map fetch example for use with Mappoint 3.0 service.
use WebService::Mappoint;
use MIME::Base64;
my $render = new WebService::Mappoint::Render();
my $map;
$map = $render->GetMap(
specification => [
DataSourceName => MapPoint.EU,
Options => [
Format => [
Height => 320,
Width => 320
],
],
Views => [
MapView:ViewByScale =>
[
CenterPoint =>
[ Latitude => 37.7632,
Longitude => -122.439702 ],
MapScale => 100000000
],
],
Pushpins => [
Pushpin =>
[
IconName => 176,
IconDataSource => MapPoint.Icons,
PinID => san_francisco,
Label => San Francisco,
ReturnsHotArea => false,
LatLong => [ Latitude => 37.7632,
Longitude => -122.439702 ],
]
]
] );
my $image = decode_base64($map->result->{MapImage}{MimeData}{Bits});
open( GIF, ">san_francisco.gif" );
print( GIF $image );
<<lessSYNOPSIS
Map fetch example for use with Mappoint 3.0 service.
use WebService::Mappoint;
use MIME::Base64;
my $render = new WebService::Mappoint::Render();
my $map;
$map = $render->GetMap(
specification => [
DataSourceName => MapPoint.EU,
Options => [
Format => [
Height => 320,
Width => 320
],
],
Views => [
MapView:ViewByScale =>
[
CenterPoint =>
[ Latitude => 37.7632,
Longitude => -122.439702 ],
MapScale => 100000000
],
],
Pushpins => [
Pushpin =>
[
IconName => 176,
IconDataSource => MapPoint.Icons,
PinID => san_francisco,
Label => San Francisco,
ReturnsHotArea => false,
LatLong => [ Latitude => 37.7632,
Longitude => -122.439702 ],
]
]
] );
my $image = decode_base64($map->result->{MapImage}{MimeData}{Bits});
open( GIF, ">san_francisco.gif" );
print( GIF $image );
Download (0.008MB)
Added: 2007-04-02 License: Perl Artistic License Price:
935 downloads
RFC 3.3.0
RFC (Remote Filesystem Checker) is a set of scripts that aims to help System-Administrators. more>>
RFC (Remote Filesystem Checker) is a set of scripts that aims to help System-Administrators run a filesystem-checker (like tripwire, aide and so on...) from a "master-node" to several "slave-nodes" using ssh, scp, sudo and few other common shell commands.
Main features:
- crate/update FileSystem-Checkers (FSC) database
- execute FSC and create a log-report
- allow parallel execution, mass-check and mass-upgrade!
- support non-interactive operations
- use scp/ssh for all connections
- use an arbitrary port for ssh/scp connections (may be different for each host!)
- send (ONE) email to administrator(s)
- rotate logs, databases and other files
- support for AFICK, AIDE and INTEGRIT FileSystem-Checkers
- check users creation/removal
- check group creation/removal
- check if someone changes UID, GID or shell
- check for groups members or ID changes
- check for SUID/SGID on remote host via a separate PERL script
- check if remote-host is up before run checks on it (via nmap)
- kill the processes that take too long (you can set an arbitrary timeout value)
<<lessMain features:
- crate/update FileSystem-Checkers (FSC) database
- execute FSC and create a log-report
- allow parallel execution, mass-check and mass-upgrade!
- support non-interactive operations
- use scp/ssh for all connections
- use an arbitrary port for ssh/scp connections (may be different for each host!)
- send (ONE) email to administrator(s)
- rotate logs, databases and other files
- support for AFICK, AIDE and INTEGRIT FileSystem-Checkers
- check users creation/removal
- check group creation/removal
- check if someone changes UID, GID or shell
- check for groups members or ID changes
- check for SUID/SGID on remote host via a separate PERL script
- check if remote-host is up before run checks on it (via nmap)
- kill the processes that take too long (you can set an arbitrary timeout value)
Download (2.79MB)
Added: 2005-11-18 License: GPL (GNU General Public License) Price:
1439 downloads
Dvdkup 0.6
DVDKUP is a GTK interface for Mencoder, the encoding command of the software MPlayer. more>>
DVDKUP is a GTK interface for Mencoder, the encoding command of the software MPlayer.
It allows to easily create a backup copy of your dvd in MPEG4 standard, fully compatible with your DivX player (even the "stand-alone" ones!), using the LAVC codec. This codec, written by MPlayer developers, gives a quality comparable with last DivX and Xvid codecs (higher, for the MPlayer staff!).
For the audio encoding, DVDKUP use the dear old mp3 or the original AC3 stream of your dvd. Actually DVDKUP doesnt support OGG Vorbis encoding.
DVDKUP uses a very simple interface to create one or more AVI files ready to be burned on your cd-r. If you choose to use more than one cd-r, DVDKUP automatically split the movie using the chapter informations, in order not to break a scene just in the middle.
Enhancements:
- various bugfixes
<<lessIt allows to easily create a backup copy of your dvd in MPEG4 standard, fully compatible with your DivX player (even the "stand-alone" ones!), using the LAVC codec. This codec, written by MPlayer developers, gives a quality comparable with last DivX and Xvid codecs (higher, for the MPlayer staff!).
For the audio encoding, DVDKUP use the dear old mp3 or the original AC3 stream of your dvd. Actually DVDKUP doesnt support OGG Vorbis encoding.
DVDKUP uses a very simple interface to create one or more AVI files ready to be burned on your cd-r. If you choose to use more than one cd-r, DVDKUP automatically split the movie using the chapter informations, in order not to break a scene just in the middle.
Enhancements:
- various bugfixes
Download (0.088MB)
Added: 2005-08-04 License: GPL (GNU General Public License) Price:
1544 downloads
Gyrus 0.3.7
GNOME Cyrus Administrator is a tool for the administration of IMAP/Cyrus servers. more>>
Gyrus (GNOME Cyrus Administrator) is a tool for the administration of IMAP/Cyrus servers.
Gyrus is a client for administration of mailboxes in IMAP/Cyrus servers. It is developed with GTK+/GNOME libraries.
Main features:
- Quota management.
- Ability to add/remove mailboxes.
- Access Control Lists management.
- Tabs for multiple servers administration.
- Storage of administration sessions.
<<lessGyrus is a client for administration of mailboxes in IMAP/Cyrus servers. It is developed with GTK+/GNOME libraries.
Main features:
- Quota management.
- Ability to add/remove mailboxes.
- Access Control Lists management.
- Tabs for multiple servers administration.
- Storage of administration sessions.
Download (0.19MB)
Added: 2007-05-03 License: GPL (GNU General Public License) Price:
906 downloads
PHP/Mysql Site Builder 0.2.1
PHP/Mysql Site Builder is a PHP/Mysql tool for managing your homepage, you can create dinamyc and static version of your site. more>>
PHP/Mysql Site Builder is a PHP/Mysql tool for managing your homepage, you can create dinamyc and static version of your site.
PHPBuilder is free software, released under GNU GPL Licence version 2.0
(see COPYING file for details).
PHPBuilder is the result of many ideas, and code write by Luis Claudio
Gamboa Lopes.
For installation instructions, go and read INSTALL file, also remember
to read CREDITS file to know from where comes the things. The TODO file
is the list of features that Ill add in future versions, read it also.
Please, enjoy PHPBuilder and remember that this is free GPL software and
comes without any warranty and without technical support.
PHPBuilder isnt perfect, but your suggestions and feedback can help all
us to have a very well site builder system!
Enhancements:
- PHP 4.0 and MySQL 4.0 are now supported.
<<lessPHPBuilder is free software, released under GNU GPL Licence version 2.0
(see COPYING file for details).
PHPBuilder is the result of many ideas, and code write by Luis Claudio
Gamboa Lopes.
For installation instructions, go and read INSTALL file, also remember
to read CREDITS file to know from where comes the things. The TODO file
is the list of features that Ill add in future versions, read it also.
Please, enjoy PHPBuilder and remember that this is free GPL software and
comes without any warranty and without technical support.
PHPBuilder isnt perfect, but your suggestions and feedback can help all
us to have a very well site builder system!
Enhancements:
- PHP 4.0 and MySQL 4.0 are now supported.
Download (0.078MB)
Added: 2007-05-22 License: GPL (GNU General Public License) Price:
912 downloads
SIBsim4 0.15
SIBsim4 project is based on sim4, which is a program designed to align an expressed DNA sequence with a genomic sequence. more>>
SIBsim4 project is based on sim4, which is a program designed to align an expressed DNA sequence with a genomic sequence, allowing for introns.
SIBsim4 is an extensive rewrite of the sim4 program to improve execution speed and provide more informative output.
The name was chosen to denote the fact the SIBsim4 is a derivative work from sim4. SIB stands for the Swiss Institute of Bioinformatics. Some code modifications were written by Claudio Lottaz, while working at SIB.
SIBsim4 is currently developed and maintained by Christian Iseli, from the Ludwig Institute for Cancer Research LICR, Information Technology Office in Lausanne. LICR is a SIB partner.
Main features:
- speed improvement
- allow large, chromosome scale, DNA sequences to be used
- provide more detailed output about splice types
- provide more detailed output about polyA sites
- misc code cleanups and fixes
Enhancements:
- This release add a -s option to control how potential duplicated genes aer detected, instead of abusing the -f option.
<<lessSIBsim4 is an extensive rewrite of the sim4 program to improve execution speed and provide more informative output.
The name was chosen to denote the fact the SIBsim4 is a derivative work from sim4. SIB stands for the Swiss Institute of Bioinformatics. Some code modifications were written by Claudio Lottaz, while working at SIB.
SIBsim4 is currently developed and maintained by Christian Iseli, from the Ludwig Institute for Cancer Research LICR, Information Technology Office in Lausanne. LICR is a SIB partner.
Main features:
- speed improvement
- allow large, chromosome scale, DNA sequences to be used
- provide more detailed output about splice types
- provide more detailed output about polyA sites
- misc code cleanups and fixes
Enhancements:
- This release add a -s option to control how potential duplicated genes aer detected, instead of abusing the -f option.
Download (0.029MB)
Added: 2007-04-24 License: GPL (GNU General Public License) Price:
914 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 2
- 1
- 2
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above claudio 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