Main > Free Download Search >

Free profiles software for linux

profiles

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 358
XML User Profiles 0.2.3

XML User Profiles 0.2.3


XML User Profiles is a system that allows for remote and transferable user accounts. more>>
XUP is an attempt to replace static per-site user accounts, which most present dynamic web sites use in absence of an easy to use and open/shared user account system. It allows people to use a single account or profile with many sites, or one of their existing user profiles on multiple other web sites.

It is best suited to so called "community" sites, where the account serves mainly for lax identification of people among each other. It does not stipulate strong authentication (while OpenID or LID can be used) and is therefore only useful for applications with mediocre security and privacy demands.

Chat and discussion sites are the main target, but profiles in different applications can often also be enriched with them. They are meant to get used secondarily (as alternative) to static/local user accounts.

The XML format of user profiles is extremely simple, as is the associated login service API. Both are outlined and explained in the introduction (HTML). The format is basically an XMLified vCard with a few additions targetted at online/web communities. It is easy to parse and generate and therefore also suitable for profile exchange or import.

Theres also a more authoritative RFC-style text version of the current proposal, which provides further hints and explanations for implementors. Future extensions will get listed in the project Wiki however (field names in the XUP format are not regulated).

This effort is quite new, and therefore only very few actual (real-world) implementations are known so far.

Some software, like discussion boards (which mostly suffer from spaghetti code), are of course hard to extent with XML User Profiles. Even those that abstract their internal user database and UI logic reasonably well can often be difficult to adapt. It is however expected that the more professional systems will sooner than later be XUP compatible.
<<less
Download (0.23MB)
Added: 2005-07-08 License: GPL (GNU General Public License) Price:
1570 downloads
AutoProfile 2.14

AutoProfile 2.14


AutoProfile is an extension to Gaim that allows users to create customized away messages and profiles. more>>
AutoProfile is an extension to Gaim that allows users to create customized away messages and profiles using dynamic "components" that automatically update on a regular basis.
Generated text can include song names from XMMS/Winamp/iTunes, fortune quotes, computer uptime, the contents of a Web page or a text file, the output of a program, and timestamps.
AutoProfile plugin comes complete with a graphical preference system that covers a wide range of options and lets users choose exactly how they want their profiles to behave. The code is Open Source (licensed under the GPL) and designed such that it is extremely easy for users to extend the capabilities of this plugin.
Enhancements:
- This version is updated to work with Gaim 2.0.0 beta3.
- Minor bugs were fixed.
<<less
Download (0.055MB)
Added: 2006-04-04 License: GPL (GNU General Public License) Price:
742 downloads
Netprofiler 1.0.2

Netprofiler 1.0.2


Netprofiler is a software that can write network settings into config files. more>>
Netprofiler is a software that can write network settings into config files.
Netprofiler saves the settings of network devices into files with appropriate names for each device into a folder with a name specified by the user.
These are called netprofiles. It is then easy to change the network settings to those saved in the profiles.
Netprofiler is released under the GNU Public License version 2 or any higher version if avaliable.
Enhancements:
- Added a checkif_root function to install.sh to make life easier for users who want to at least view the help for the installer.
- Added checks for hostx in case host from bind-utils isnt installed to resolv hostnames for get_defaultroute.
- Added masked filtering as a config file option. When enabled it excludes any devices that start with the device names in filtered.list. For example if eth appeared in filtered.list then no ethernet devices would be configured by netprofiler despite those devices being present in the profile that was being activated.
- Root permission checks are now only executed when activating a profile or generating one. This allows normal users to list profiles, see the --help messages, see the current settings etc.
- Added path checks for id. (used to be just /bin/id but added /usr/bin/id ).
- Changed default permissions for the netprofiler script to 755 to enable users to run it.
- Big thanks go to Bogdan Duda for spotting and fixing these bugs as well as writing the patch which included most of these features. Cheers!
<<less
Download (0.017MB)
Added: 2005-12-21 License: GPL (GNU General Public License) Price:
1405 downloads
Devel::Profile 1.04

Devel::Profile 1.04


Devel::Profile is a Perl module to tell me why my perl program runs so slowly. more>>
Devel::Profile is a Perl module to tell me why my perl program runs so slowly.

SYNOPSIS

perl -d:Profile program.pl
less prof.out

The Devel::Profile package is a Perl code profiler. This will collect information on the execution time of a Perl script and of the subs in that script. This information can be used to determine which subroutines are using the most time and which subroutines are being called most often.
To profile a Perl script, run the perl interpreter with the -d debugging switch. The profiler uses the debugging hooks. So to profile script test.pl the following command should be used:

perl -d:Profile test.pl

When the script terminates (or periodicly while running, see ENVIRONMENT) the profiler will dump the profile information to a file called prof.out. This file is human-readable, no additional tool is required to read it.

Note: Statistics are kept per sub, not per line.

<<less
Download (0.007MB)
Added: 2006-10-03 License: Perl Artistic License Price:
1116 downloads
Params::Profile 0.10

Params::Profile 0.10


Params::Profile is a Perl module for registering Parameter profiles. more>>
Params::Profile is a Perl module for registering Parameter profiles.

SYNOPSIS

package Foo::Bar;

use Params::Profile;

### Single profile
Params::Profile->register_profile(
method => subroto,
profile => {
testkey1 => { required => 1 },
testkey2 => {
required => 1,
allow => qr/^d+$/,
},
testkey3 => {
allow => qr/^w+$/,
},
},
);

sub subroto {
my (%params) = @_;

return unlesss Params::Profile->validate(params => %params);
### DO SOME STUFF HERE ...
}

my $profile = Params::Profile->get_profile(method => subroto);

### Multiple Profile
Params::Profile->register_profile(
method => subalso,
profile => [
subroto,
{
testkey4 => { required => 1 },
testkey5 => {
required => 1,
allow => qr/^d+$/,
},
testkey6 => {
allow => qr/^w+$/,
},
},
],
);


sub subalso {
my (%params) = @_;

### Checks parameters agains profile of subroto and above registered
### profile
return unlesss Params::Profile->validate(params => %params);

### DO SOME STUFF HERE ...
}

Params::Profile provides a mechanism for a centralised Params::Check or a Data::FormValidater profile. You can bind a profile to a class::subroutine, then, when you are in a subroutine you can simply call Params::Profile->check($params) of Params::Profile->validate($params) to validate against this profile. Validate will return true or false on successfull or failed validation. Check will return what Data::FormValidator or Params::Check would return. (For Params::Check this is simply a hash with the validated parameters , for Data::FormValidator, this is a Data::FormValidator::Results object)

<<less
Download (0.006MB)
Added: 2007-04-11 License: Perl Artistic License Price:
926 downloads
sysprof 1.0.8

sysprof 1.0.8


Sysprof is a sampling CPU profiler that uses a Linux kernel module to profile the entire system. more>>
Sysprof is a sampling CPU profiler that uses a Linux kernel module to profile the entire system, not just a single application.
Sysprof handles shared libraries and applications do not need to be recompiled. In fact they dont even have to be restarted.
Just insert the kernel module and start sysprof.
Main features:
- Profiles all running processes, not just a single application
- Has a simple graphical interface
- Shows the time spent in each branch of the call tree
- Profiles can be loaded and saved
- Easy to use: Just insert the kernel module and start sysprof
- Supports Fedora debuginfo packages
<<less
Download (0.13MB)
Added: 2006-12-11 License: GPL (GNU General Public License) Price:
1047 downloads
Little CMS 1.16

Little CMS 1.16


Little CMS is a small-footprint, speed-optimized color management engine. more>>
Little cms intends to be a small-footprint, speed optimized color management engine in open source form.
Since the initial release, back in 1998, lcms has been continuously evolving, mostly thanks to contributions done by skilled programmers, who generously donated their valuable time to review the engine and the documentation.
For now, little cms has been ported to a big number of platforms and is currently used in many open source and commercial products, as well as being distributed in major linux environments. Thanks to all for this great support!
Basic Features:
- Widely portable.
- Easy to use.
- Small, tight code.
- Fast, optimized for speed.
- Handles a wide range pixel formats.
- Implements ICC spec 4
- Profile to profile and multiprofile transforms.
- Supports all kind of profiles, including named color
- PostScript CSA and CRD generation
Advanced features:
- Full hi-fi support, including hexachrome restoration.
- Gamut checking
- Softproofing
- Precalculated device link transforms with prelinearization step.
- Virtual Gray, RGB profiles
- CIECAM02 appearance model
- Can write profiles as well.
- Built-In profiles
- Specialized abstract virtual profiles
<<less
Download (0.75MB)
Added: 2006-12-20 License: MIT/X Consortium License Price:
1040 downloads
Appleseed 0.7.2

Appleseed 0.7.2


Appleseed is a social networking software, similar to Friendster or Myspace. more>>
Appleseed project is an effort to create open source Social Networking software that is based on a distributed model. For instance, a profile on one Appleseed website could "friend" a profile on another Appleseed website, and the two profiles could interact with each other.

Apart from being distributed, Appleseed will also have a strong focus on privacy and security, as well as a commitment to seeing the user as an online citizen, as opposed to a consumer to be targetted. This is in stark contrast to current social networking websites, who rely heavily on ad placement and data mining of their users.

The first goal is to create a codebase for basic interaction, such as creating profiles, creating and participating in message groups, journals and comments, etc.

Eventually, Appleseed will encompass many different aspects, from mail to messaging to journals/blogs to photo uploads and management. A module architecture is also in the works for even greater extensibility.

Development currently uses Object Oriented PHP4, MySQL (InnoDB), XHTML, Javascript, and CSS2. Mozilla/Firefox will be the target platform.
<<less
Download (0.43MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
844 downloads
CookieSwap 0.5.0

CookieSwap 0.5.0


CookieSwap provides an extension that enables you to maintain numerous sets or profiles of cookies that you can quickly. more>>
CookieSwap provides an extension that enables you to maintain numerous sets or profiles of cookies that you can quickly.
Main features:
- Changing your cookies/identity to web e-mail sites (like Yahoo, Gmail, Hotmail, etc) so that you can quickly look like different users. Nice if you maintain multiple accounts and are tired of logging out and then back in to switch accounts. Also nice if two people are using the same computer and want to switch between accounts quickly.
- Changing your cookies/identity to see how sites like Amazon and Google treat you differently depending on who you are. For example, if Amazon recognizes you as a returning shopper they give you a different looking page (and there were claims that they give you different prices also). Google has begun to use a feature called "Personalized Search", where they modify their search results based on your user identity. There is a question about this when you create your Google account. The results of Google searches are different depending on if Google knows you or not. Use CookieSwap to quickly swap between Google recognizing you and being anonymous. Run the same search and see the differences.
- If you design web sites, you can setup numerous cookie profiles to look like different types of users and swap between those users quickly and easily to test your site in numerous modes (you can hand edit the cookies to have distinct values in each profile using a nice extension like Add & Edit Cookies).
<<less
Download (0.028MB)
Added: 2007-07-25 License: MPL (Mozilla Public License) Price:
869 downloads
Mobile::UserAgent 1.05

Mobile::UserAgent 1.05


Mobile::UserAgent is a mobile user agent string parsing class. more>>
Mobile::UserAgent is a mobile user agent string parsing class.

SYNOPSIS

### Print the information parsed from a user-agent string:
use Mobile::UserAgent;
my $useragent = Nokia6600/1.0 (4.09.1) SymbianOS/7.0s Series60/2.0 Profile/MIDP-2.0 Configuration/CLDC-1.0;
my $uaobj = new Mobile::UserAgent($useragent);
if ($uaobj->success()) {
print Vendor: . $uaobj->vendor() . "n";
print Model: . $uaobj->model() . "n";
print Version: . $uaobj->version() . "n";
print Series60: . $uaobj->isSeries60() . "n";
print Imode?: . $uaobj->isImode() . "n";
print Mozilla?: . $uaobj->isMozilla() . "n";
print Standard?: . $uaobj->isStandard() . "n";
print Rubbish?: . $uaobj->isRubbish() . "n";
}
else {
print "Not a mobile user-agent: $useragentn";
}


### Determine if the client is a mobile device.
use Mobile::UserAgent ();
use CGI ();

# Check 1: (check if it sends a user-agent profile URL in its headers)
foreach my $name (X_WAP_PROFILE,PROFILE,13_PROFILE,56_PROFILE) {
if (exists($ENV{"HTTP_$name"})) {
print "Client has a user-agent profile header, so its probably a mobile device.n";
last;
}
}

# Check 2: (check if it supports WML):
my $q = new CGI();
if ($q->Accept(text/vnd.wap.wml) == 1) {
print "Client supports WML so its probably a mobile device.n";
}

# Check 3: (check if this class can parse it)
my $uaobj = new Mobile::UserAgent();
if ($uaobj->success()) {
print "Clients user-agent could be parsed, so its a mobile device.n";
}

Parses a mobile user agent string into its basic constituent parts, the most important being vendor and model.

One reason for doing this would be to use this information to lookup vendor-model specific device characteristics in a database. You can use also use user agent profiles to do this (for which Ive developed other classes), but not all mobile phones have these, especially the older types. Another reason would be to detect if the visiting client is a mobile handset.

Only real mobile user-agent strings can be parsed succesfully by this class. Most WAP emulators are not supported because they usually dont use the same user-agent strings as the devices they emulate.

<<less
Download (0.037MB)
Added: 2007-03-22 License: Perl Artistic License Price:
957 downloads
Riece 3.0.0

Riece 3.0.0


Riece is an IRC client for Emacs. more>>
Riece is an IRC client for Emacs. Riece supports multiple server profiles, custom window layout, and other nice features.
Riece can be dynamically extended by add-on (plugin) modules. By default, 30 add-ons are available.
Main features:
- Several IRC servers may be used at the same time.
- Riece can be dynamically extended by add-on modules.
- Installation is easy. Riece doesnt depend on other elisp packages.
- Setup is easy. Automatically save/restore the configuration.
- Riece uses separate windows to display users, channels, and dialogues. Users can select the window layout.
- Step by step instruction is included.
- Mostly compliant with RFC 2812.
Enhancements:
- This release has a new add-on to enables secure conversation using GnuPG.
<<less
Download (0.34MB)
Added: 2006-05-29 License: GPL (GNU General Public License) Price:
1243 downloads
QAddress 0.2

QAddress 0.2


QAddress is a small and lightweight address book. more>>
QAddress is a small and lightweight address book. QAddress aims to be simple and easy to use, with only the features really needed (and really used). This minimalistic approach is meant to make QAddress fast and reliable.
Main features:
- Search function (maybe even incremental)
- Integrated backup function
- User-defined main view
- Different profiles (maybe)
Enhancements:
- changed tabhandling in the Add/Edit-Widget
- added search function
- minor changes in the user interface
<<less
Download (0.072MB)
Added: 2006-10-06 License: GPL (GNU General Public License) Price:
1113 downloads
Jwapmail 1.1

Jwapmail 1.1


Jwapmail is opensource wap based email client written using PHP. more>>
Jwapmail is opensource wap based email client written using PHP. Jwapmail has been tested at SonyEriccson T28, and Siemens SL45. Any volutenter of testers are welcome.
Main features:
- 1. Email client standard functions
- Jwapmail support the email client standard functions:
- Compose, Reply, Forward, and Folder.
-
- 2. Message Filter (Not finish yet)
- Message Filter is allow user to manage messages in the folder.
-
- 3. User Profile (Not finish yet)
- Allow user to set user profiles standard such as, Name and email address.
-
- 4. Paging (to overcome content size limitaion)
- Due to the vary limitation of content size in WAP GATEWAY, Jwapmail
- deliver content with size not exceded the maximum size (kbytes) where maximum size
- is a variable set in file configuration.
- If the content of message have the size exceed the maximum bytes
- Jwapmail split into several page and deliver each page with paging navigation link
<<less
Download (0.091MB)
Added: 2006-06-12 License: GPL (GNU General Public License) Price:
1231 downloads
K750i / W800 / D750 Amarok Control Profile 0.1

K750i / W800 / D750 Amarok Control Profile 0.1


K750i / W800 / D750 Amarok Control Profile is a bluetooth Remote-Profile for the Sony Ericsson K750i and compatible cellphones. more>>
K750i / W800 / D750 Amarok Control Profile is a bluetooth Remote-Profile for the Sony Ericsson K750i and compatible cellphones. The Phone has 3 built-in profiles for WMP/Powerpoint but with keys already used in linux. This New Profile has a edited picture and new keycodes that should be "free" in KDE.

Installation:
Simply upload the .hid file with the bluetooth obex push client to your mobile phone and connect. If you already defined global hotkey in amaroK, just set the Remote keys to "alternate". Works with other Mediaplayers too, if you define the global keys.
<<less
Download (0.020MB)
Added: 2006-09-01 License: GPL (GNU General Public License) Price:
1192 downloads
Apcon 0.2.4 build 68

Apcon 0.2.4 build 68


Apcon is a systemtray application for KDE. more>>
Apcon is based on IBMs Access Connections tool for the Thinkpads.

It is a systemtray application for KDE, that makes it very easy for users to specify and manage different network/connection profiles and connect/disconnect to/from them.

Furthermore a user can get several details and informations about a connection.

This can be very useful for people using notebooks on different locations. Under normal circumstances this should be the expected situation.

If the location will be changed, Apcon makes it possible to enable and configure the needed interface (to get a network connection) with just two clicks.

A profile can be created easily and quickly in four simple steps. An integrated wizard leads the user through this process.
<<less
Download (0.090MB)
Added: 2005-09-15 License: GPL (GNU General Public License) Price:
1499 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5