Main > Free Download Search >

Free name software for linux

name

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3620
ifrename 28-1

ifrename 28-1


Ifrename allow the user to decide what name a network interface will have. more>>
Ifrename allow the user to decide what name a network interface will have. This package can use a variety of selectors to specify how interface names match the network interfaces on the system, the most common selector is the interface MAC address.

<<less
Download (0.051MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
1182 downloads
DNS name parser 1.2.1

DNS name parser 1.2.1


DNS name parser is a Java utility library for parsing dns names, ip and hw addresses. more>>
DNS name parser is a Java utility library for parsing dns names, ip and hw addresses.

Synopsis

import su.netdb.parser.*;

Parser parser = new Parser();

Hashtable result = parser.parse(str);

System.out.println("string: "+result.get("string"));
System.out.println("hw: "+result.get("hw"));
System.out.println("name: "+result.get("name"));
System.out.println("domain: "+result.get("domain"));
System.out.println("ip_low: "+result.get("ip_low"));
System.out.println("ip_high: "+result.get("ip_high"));

"DNS name parser" is an utility library created to be used in a search application. Given a single input field its function is to differentiate between several types of possible input strings. Namely if it a dns name, IP address (exact, ip range or ip with wildcards) or hardware address. The result of the parsing is a Hashtable with possible keys "string", "hw", "name", "domain", "ip_low" and "ip_high".

<<less
Download (0.008MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
835 downloads
nss-myhostname 0.1

nss-myhostname 0.1


nss-myhostname is a GNU libc NSS module that statically translates the local host name to the IP address 127.0.0.2. more>>
nss-myhostname is a GNU libc NSS module that statically translates the local host name to the IP address 127.0.0.2 (which is on the loopback device) and vice versa.

This is useful to make sure that the local host name is always resolvable. Some programs (such as sudo) require this functionality.

Especially on embedded systems it may not be desirable to modify /etc/hosts to match the current host name.

It is a good idea to put this module as last resort in /etc/nsswitch.conf, to make sure that other name service take precedence.
<<less
Download (0.011MB)
Added: 2005-11-21 License: LGPL (GNU Lesser General Public License) Price:
1434 downloads
Twisted Names 0.3.0

Twisted Names 0.3.0


Twisted Names is both a domain name server as well as a client resolver library. more>>
Twisted Names project is both a domain name server as well as a client resolver library.
Twisted Names comes with an "out of the box" nameserver which can read most BIND-syntax zone files as well as a simple Python-based configuration format.
Twisted Names can act as an authoritative server, perform zone transfers from a master to act as a secondary, act as a caching nameserver, or any combination of these.
Twisted Names client resolver library provides functions to query for all commonly used record types as well as a replacement for the blocking gethostbyname() function provided by the Python stdlib socket module.
Twisted Names is available under the MIT Free Software licence.
Enhancements:
- Errors in the markup used in API documentation have been fixed.
- A bug where the DNS client would sometimes drop a response has been fixed.
- A bug which prevented non-IN lookups from generating malformed queries has been fixed.
<<less
Download (0.028MB)
Added: 2006-05-28 License: MIT/X Consortium License Price:
1246 downloads
Workspace Name Applet 0.0.2

Workspace Name Applet 0.0.2


Workspace Name Applet is a Gnome panel applet to display and edit the name of the current workspace. more>>
Workspace Name Applet is a Gnome panel applet to display and edit the name of the current workspace.

<<less
Download (0.088MB)
Added: 2006-08-01 License: GPL (GNU General Public License) Price:
1181 downloads
Domain Name Portfolio 0.8.0

Domain Name Portfolio 0.8.0


Domain Name Portfolio is a PHP and MySQL based application to help domain owners better organize their portfolio. more>>
Domain Name Portfolio is a PHP and MySQL based application to help domain owners better organize their portfolio.
It allows you to list your domains with their expiry, registrar, and a price.
Also allows visitors to your portfolio to contact you about a given domain.
Main features:
- Script features
Enhancements:
- This release brings support for MySQLi, along with minor bugfixes and several function improvements.
<<less
Download (0.15MB)
Added: 2007-07-30 License: GPL (GNU General Public License) Price:
822 downloads
Convert::ASCIInames 1.002

Convert::ASCIInames 1.002


Convert::ASCIInames is a Perl module that includes ASCII names for control characters. more>>
Convert::ASCIInames is a Perl module that includes ASCII names for control characters.

SYNOPSIS

use Convert::ASCIInames;

Convert::ASCIInames::Configure(fallthrough => 1);
$name = ASCIIname($character_ordinal);
$name = ASCIIaltname($character_ordinal);
$name = ASCIIdescription($character_ordinal);
$name = ASCIIaltdescription($character_ordinal);
$character_ordinal = ASCIIordinal($name);

Most if not all of the non-printing characters of the ASCII character set had special significance in the days of teletypes and paper tapes. For example, the character code 0x00 would be sent repeatedly in order to give the receiving end a chance to catch up; it signified "no action" and so was named NUL. The sending end might follow each line of text with a number of NUL bytes in order to give the receiving end a chance to return its print carriage to the left margin.

The control characters (so-called because they were used to control aspects of communication or receiving devices) were given short 2-to-4 letter names, like CR, EOT, ACK, and NAK.

Some of these special purposes have become obsolete, but some of them are still in use. For example, character 0x07 (BEL) is used to ring the feeper; 0x05 (ENQ) is recognised by many terminals as a trigger to report their status; and 0x08 (BS) still means "move the cursor back one space".

This module will return the ASCII name for specified characters, or the character code if given an ASCII name. In addition, the full descriptive name ("Start of Heading" instead of SOH) is available, although reverse translation of the descriptions isnt provided.

Some control characters have altername names. Character 0x13 is named DC3 ("Device Control 3"), but is probably better known by its alternate name of XOFF. These alternate names are also available through this modules functions.

<<less
Download (0.011MB)
Added: 2006-08-21 License: Perl Artistic License Price:
1159 downloads
Class::Accessor::Named 0.005

Class::Accessor::Named 0.005


Class::Accessor::Named is a great way to automate the tedious task of generating accessors and mutators. more>>
Class::Accessor::Named is a great way to automate the tedious task of generating accessors and mutators. One small drawback is that due to the details of the implemenetation, you only get one "__ANON__" entry in profiling output.

That entry contains all your accessors, which can be a real pain if youre attempting to figure out _ w_ h_ i_ c_ h of your accessors is being called six billion times.

This module is a development aid which uses Hook::LexWrap and Sub::Name to talk your accessors into identifying themselves. While it shouldnt add much additional runtime overhead (as it acts only Class::Accessors generator functions), it has not been designed for production deployment.

<<less
Download (0.020MB)
Added: 2006-09-06 License: Perl Artistic License Price:
1143 downloads
The Worlds Best Band Name Generator 1.03

The Worlds Best Band Name Generator 1.03


The Worlds Best Band Name Generator produces randomly generated band names. more>>
The Worlds Best Band Name Generator produces randomly generated band names.

The Worlds Best Band Name Generator can generate band names like "Ungratefully Swallowed" and "The Bridgeheads" and "Throwaway Deceptiveness".

The visitor can refresh the names dynamically without refreshing the page by using a small AJAX script.

The generator uses combinations of nouns, adjectives, and adverbs that lend themselves well to band name creation, so most of the names actually sound realistic.

The script is easy to install and modify.

You can download the Worlds Best Band Name Generator for FREE to add to your own web site.

If you really like the Words Best Band Name Generator, please link to this page so other people can find it.
<<less
Download (0.45MB)
Added: 2005-12-02 License: Freeware Price:
1425 downloads
Unimaginatively-named Calendar 3.7.0

Unimaginatively-named Calendar 3.7.0


Unimaginatively-named Calendar produces useful, printable calendars on a Web site. more>>
Unimaginatively-named Calendar project began out of frustration with other web-based calendar tools inability to display a readable calendar format. Unimaginatively-named Calendar was very much a project to "scratch an itch" -- to meet an immediate need that the author had. Since then, it has evolved considerably into a very useful tool that produces prettier calendars than those printed by most organizer software.
The first version of this software was written in ASP (VBScript) and ran on IIS 4.0 or higher with a database on SQL Server 7.0 or higher. It has since been completely rewritten in Java to run on Tomcat 5.5 or higher with a database on MySQL 3.3 or higher. The feature set is largely the same, though the two versions have no code in common.
Main features:
- The entire calendar is rendered in HTML -- no Flash or Java is used.
- Single-day, multi-day and occassional events are all supported. "Occasional" events are those events that occur multiple times but dont necessarily follow a regular pattern.
- Repeating events are supported and can repeat on a daily, weekly, monthly or yearly basis.
- Events may be categorized for easy administration.
- Nearly everything about the display is themable -- colors, fonts, border styles, first day of the week, weekday column widths, categories, etc.
- A calendar may be setup as a "private" calendar, so the user must be logged in to see it.
- Apple iCal and Mozilla Sunbird users can subscribe to the calendar with one click.
- NEW! The admin tool is password protected!
<<less
Download (1.9MB)
Added: 2006-04-14 License: GPL (GNU General Public License) Price:
1289 downloads
Unimaginatively-named Attendance 1.8.0

Unimaginatively-named Attendance 1.8.0


Unimaginatively-named Attendance is a Web application for taking and tracking attendance records online. more>>
Unimaginatively-named Attendance tool was originally created to provide attendance tracking for a scout troop but is actually completely free of anything scout-specific. Unimaginatively-named Attendance is perfect for tracking attendance for any type of group.
Main features:
- The roster of names is stored separate from the attendance records so names are only entered once.
- Each name on the roster has an associated "type" (available types are user-configurable) so that each "type" is grouped together in reports for easy viewing.
- Birthdays are tracked and notifications appear when a birthday is coming up or has just passed.
- Each attendance record can have any number of attributes. For example, the administrator could define an attribute named "late". As records are input, "late" will appear as a checkbox next to each persons name. When the box is checked, it will be tabulated in the reports next to the record of present/not present.
- Several reports are available to provide different summaries of the data from "when was each person last seen" to full percentage listings of each persons attendance record.
- The interface is usable from PDAs and "smart phones". It has been extensively tested on a Treo 600.
- A permission-based login system allows three levels of access:
- "View only" access allows the user to view attendance records and generate reports but not to edit any data.
- "Editor" access allows the user to define new events and create/edit attendance records but not to alter the roster, the event types, the attributes or logins.
- "Admin" access allows the user complete access to all data.
<<less
Download (1.6MB)
Added: 2006-05-02 License: GPL (GNU General Public License) Price:
1271 downloads
Aeris

Aeris


Aeris is a nice, light maccy theme for KDE. more>>
Aeris is a nice, light maccy theme for KDE. Enjoy this, and please comment any suggestions you have.

Overall design, QtCurve theme, color scheme, (partial) Emerald theme: SaikoBee

Design suggestions, The freakin sweet buttons for the Emerald theme: Pox "Insane Vector Man"

Special thanks: Snicket, for coming up with the name for this theme!

<<less
Download (0.14MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
928 downloads
number 2.30

number 2.30


number is a perl script that will print the English name of a number. more>>
number is a perl script that will print the English name of a number. One can print names of extremely large numbers (e.g. 1e1234567). Number can be run on the command line, or as a CGI script when run as number.cgi.

Number prints names in both the American and European naming system. It can also print the decimal expansion of a number in either naming system.

<<less
Download (0.028MB)
Added: 2006-09-19 License: Freely Distributable Price:
1130 downloads
pam_realm 0.2

pam_realm 0.2


pam_realm checks the user name against being of form user@realm, where realm is supplied as an argument. more>>
pam_realm checks the user name against being of form user@realm, where realm is supplied as an argument. In case the check succeeds, this @realm part is stripped, and the control is passed to the following module.

OPTIONS:

debug

does not do anytning at the moment

realm=realm

specify the realm to check against

allowbare

also allows the user name to be of form just user without any @realm

nostrip

in certain cases, it may be of use to just check if the user name is of proper form

EXAMPLE

auth requisite pam_realm.so realm=mail.example.com
auth require pam_unix.so
<<less
Download (0.002MB)
Added: 2006-04-18 License: GPL (GNU General Public License) Price:
1284 downloads
Class::Meta 0.53

Class::Meta 0.53


Class::Meta is a Perl class automation, introspection, and data validation. more>>
Class::Meta is a Perl class automation, introspection, and data validation.

SYNOPSIS

Generate a class:
package MyApp::Thingy;
use strict;
use Class::Meta;
use Class::Meta::Types::String;
use Class::Meta::Types::Numeric;

BEGIN {

# Create a Class::Meta object for this class.
my $cm = Class::Meta->new( key => thingy );

# Add a constructor.
$cm->add_constructor(
name => new,
create => 1,
);

# Add a couple of attributes with generated methods.
$cm->add_attribute(
name => uuid,
authz => Class::Meta::READ,
type => string,
required => 1,
default => sub { Data::UUID->new->create_str },
);
$cm->add_attribute(
name => name,
is => string,
required => 1,
default => undef,
);
$cm->add_attribute(
name => age,
is => integer,
default => undef,
);

# Add a custom method.
$cm->add_method(
name => chk_pass,
view => Class::Meta::PUBLIC,
);
$cm->build;
}
Then use the class:
use MyApp::Thingy;

my $thingy = MyApp::Thingy->new;
print "ID: ", $thingy->id, $/;
$thingy->name(Larry);
print "Name: ", $thingy->name, $/;
$thingy->age(42);
print "Age: ", $thingy->age, $/;
Or make use of the introspection API:
use MyApp::Thingy;

my $class = MyApp::Thingy->my_class;
my $thingy;

print "Examining object of class ", $class->package, $/;

print "nConstructors:n";
for my $ctor ($class->constructors) {
print " o ", $ctor->name, $/;
$thingy = $ctor->call($class->package);
}

print "nAttributes:n";
for my $attr ($class->attributes) {
print " o ", $attr->name, " => ", $attr->get($thingy), $/;
if ($attr->authz >= Class::Meta::SET && $attr->type eq string) {
$attr->get($thingy, hey there!);
print " Changed to: ", $attr->get($thingy), $/;
}
}

print "nMethods:n";
for my $meth ($class->methods) {
print " o ", $meth->name, $/;
$meth->call($thingy);
}

Class::Meta provides an interface for automating the creation of Perl classes with attribute data type validation. It differs from other such modules in that it includes an introspection API that can be used as a unified interface for all Class::Meta-generated classes. In this sense, it is an implementation of the "Facade" design pattern.

<<less
Download (0.060MB)
Added: 2006-10-05 License: Perl Artistic License Price:
1114 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5