Main > Free Download Search >

Free passwordmaker 1.6.2 software for linux

passwordmaker 1.6.2

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 37
Jajuk 1.7.4

Jajuk 1.7.4


Jajuk is a powerful music organizer for all platforms. The main goal of this project is to provide a fully-featured application to advanced users with large or scattered music collections. Jajuk main principles are maximum features, maximum portability and integration: 100% pure Java and maximum usability more>>

Jajuk - Jajuk is a powerful music organizer for all platforms. The main goal of this project is to provide a fully-featured application to advanced users with large or scattered music collections. Jajuk is a Free Software published under GPL license. Jajuk main principles are : * Maximum features: Jajuk is made firstly for advanced users looking for powerful functionalities * Maximum portability and desktop integration * Maximum usability: Jajuk is designed to be intuitive, fast and provide multiple ways to perform the same operation


Enhancements:
Version 1.6.2
System Requirements:P3 500Mhz, 256 MB RAM
<<less
Download (19.4Mb)
Added: 2009-05-18 License: Free Price: Free
16 downloads
ProStockMaster for Linux 1.6.2

ProStockMaster for Linux 1.6.2


Sell stock photos through top microstock sites iStockPhoto,ShutterStock,DreamsTime,123rf,BigStockPhoto,CanStockPhoto,Fotolia,Stockxpert,Alamy,PantherMedia,Pixamba with our state-of-the-art software more>>

ProStockMaster for Linux 1.6.2 is designed with the professional in mind which gives you all the features which lets you sell stock photos through top microstock sites StockPhoto,ShutterStock,DreamsTime,123rf,BigStockPhoto,CanStockPhoto,Fotolia,Stockxpert,Alamy,PantherMedia,Pixamba with our state-of-the-art. Fast uploads, automated keywording & translations, earnings statistics collection, EXIF & IPTC editing and more.

Major Features:

  1. Upload all your images to top stock photography agencies just in one click! You can even upload folders!
  2. Automate IPTC and Adobe XMP keywording (tagging)! Enter a word or a phrase in your native language and get tens of automatically generated English keywords relevant for your image. All this just in one button click!
  3. Describe images in your native language with auto-translation
  4. Get your earning statistic directly at your fingertips, all-in-one for all agencies
  5. View EXIF data inserted by your camera: aperture & shutter, program mode, ISO, focal length, flash mode, metering mode and much more
  6. Translate metadata for all images in the selected folder to another language. All the images will be copied to another folder and their metadata will be translated on-the-fly
  7. Fast search in images on your computer for any keyword either in the image' title, description or in the keywords fields
  8. Apply the same metadata set to the series. Copy keywords, title and description (IPTC) from one image to another, making keywording of similar images extremely fast and easy.
  9. Import and export keywords from external files, optionally with on-the-fly translation. You can keep your keywords in categories in your native language and then import, translate & insert them in your images
  10. Upload history / track records

Enhancements: This release fixes Alamy uploads.

Requirements: Java 2 Standard Edition Runtime Environment

WareSeeker Editor

<<less
Download (6.39MB)
Added: 2009-04-23 License: Freeware Price: $0
183 downloads
Helma for liunx 1.6.2

Helma for liunx 1.6.2


Web application framework for fast,efficient scripting and serving of website. more>> Helma is written in Java and employs Javascript for its server-side scripting environment, removing the need for compilation cycles and reducing development costs while giving you instant access to leverage the whole wealth of Java libraries out there.
Helma pioneered the simple and codeless mapping of application objects to database tables. In addition, an embedded object-oriented database performs automatic data persistence of unmapped objects.
Helma has proven itself to be stable and fast, capable of serving high traffic sites with hundreds of thousands of dynamic pages per day. The Austrian Broadcasting Corporation, popular weblog hosting sites such as antville.org, twoday.net, and blogger.de, among many others, have successfully been deploying Helma for several years.
<<less
Download (6.21MB)
Added: 2009-04-04 License: Freeware Price: Free
204 downloads
Spket IDE 1.6.2

Spket IDE 1.6.2


Spket IDE project is powerful toolkit for JavaScript and XML development. more>>
Spket IDE project is powerful toolkit for JavaScript and XML development.
The powerful editor for JavaScript, XUL/XBL and Yahoo! Widget development. It provides features like code completion, syntax highlighting and content ouline that helps developers producitively create efficient JavaScript code.
Enhancements:
- A JavaScript Formatter was added for making code pretty.
- Syntax highlighting was added for Server Side Script.
- Other minor bugfixes and feature enhancements were made.
<<less
Download (6.1MB)
Added: 2007-08-20 License: Free for non-commercial use Price:
803 downloads
Apache::AxKit::Language::XSP 1.6.2

Apache::AxKit::Language::XSP 1.6.2


Apache::AxKit::Language::XSP is a Perl module with eXtensible Server Pages. more>>
Apache::AxKit::Language::XSP is a Perl module with eXtensible Server Pages.

SYNOPSIS

< xsp:page
xmlns:xsp="http://apache.org/xsp/core/v1" >

< xsp:structure >
< xsp:import >Time::Object< /xsp:import >
< /xsp:structure >

< page >
< title >XSP Test< /title >
< para >
Hello World!
< /para >
< para >
Good
< xsp:logic >
if (localtime->hour >= 12) {
< xsp:content >Afternoon< /xsp:content >
}
else {
< xsp:content >Morning< /xsp:content >
}
< /xsp:logic >
< /para >
< /page >

< /xsp:page >

XSP implements a tag-based dynamic language that allows you to develop your own tags, examples include sendmail and sql taglibs. It is AxKits way of providing an environment for dynamic pages. XSP is originally part of the Apache Cocoon project, and so you will see some Apache namespaces used in XSP.

Also, use only one XSP processor in a pipeline. XSP is powerful enough that you should only need one stage, and this implementation allows only one stage. If you have two XSP processors, perhaps in a pipeline that looks like:

... => XSP => XSLT => XSLT => XSP => ...

it is pretty likely that the functionality of the intermediate XSLT stages can be factored in to either upstream or downstream XSLT:

... => XSLT => XSP => XSLT => ...

This design is likely to lead to a clearer and more maintainable implementation, if only because generating code, especially embedded Perl code, in one XSP processor and consuming it in another is often confusing and even more often a symptom of misdesign.

Likewise, you may want to lean towards using Perl taglib modules instead of upstream XSLT "LogicSheets". Upstream XSLT LogicSheets work fine, mind you, but using Perl taglib modules results in a simpler pipeline, simpler configuration (just load the taglib modules in httpd.conf, no need to have the correct LogicSheet XSLT page included whereever you need that taglib), a more flexible coding environment, the ability to pretest your taglibs before installing them on a server, and better isolation of interface (the taglib API) and implementation (the Perl module behind it). LogicSheets work, and can be useful, but are often the long way home. That said, people used to the Cocoon environment may prefer them.

<<less
Download (0.30MB)
Added: 2007-08-02 License: Perl Artistic License Price:
813 downloads
Lunar Linux 1.6.1 / 1.6.2 Beta 1

Lunar Linux 1.6.1 / 1.6.2 Beta 1


Lunar is a source based Linux distribution developed by a talented team of programmers from all over the world. more>>
Lunar is a source based Linux distribution developed by a talented team of programmers from all over the world, working together to extend the Linux technology into better-tailored and more optimized software for the end user.
Lunar uses and builds upon the Linux kernel, the software started by Linus Torvalds and supported by thousands of programmers worldwide, and offers a unique package management system which builds each software package, or module, from scratch for the machine in which it is being installed.
This is what sets Lunar apart. Lunar Linux makes customization a breeze-- you choose the compile options before a module is built, and install a lean and uncluttered system that has exactly what you need. Nothing more, or less.
Once installed, Lunar is remarkably fast, breaking new ground in flexibility and in the options it offers the individual user.
In a nutshell: Lunar installs a complete bootstrap development system on your machine. You then tell the Lunar package manager what tools you want, and it builds the entire system by downloading current source code and locally compiling an optimized system tailored toward your specific needs.
Lunars installer is fast and provides full control over the process of installation, including a wide variety of install and rescue tools. The installer provides the user with an interface to compile a custom kernel during installation.
Installing applications is remarkably simple-- type in "lin [package name]" and the system will install the application from the moonbase, our module repository. Dont want it after all? Type "lrm [package name]" and it is gone. Lunar has a unique shell-based Application Management System which handles the dependencies when installing software. There is no "dependency hell"-- if there are other things the system needs to install a particular application, the AMS will simply find them for you.
Updating lunar is a matter of one single command, lunar update. It fetches an updated moonbase, checks if there were any updated modules and builds those. The AMS is network aware and uses the network to acquire source code. The moonbase and core tools are updated every hour at Lunar-Linux.org.
The advantage for the end user is clear: a system that is both robust and stable, and easy to install and maintain without sacrificing variety and flexibility. Lunar has built in integrity checking and a robust self-repairing capability. It also enables system users to develop their own source-packages using the toolset.
Lunar is for everyone. Though it may be difficult for the beginner to administer, it provides you with all the possible features you could want from a Linux distribution. It is incredibly accessible to anyone who has played around with a UNIX system.
All of this presents a rich potential for a user who seeks speed, strong performance, and a system that "works smart".
Whats New in 1.6.1 Stable Release:
- With great pleasure we release Moose Drool, also known as the Lunar Linux 1.6.1 Installer ISO, to the public. This ISO is partially a refreshed installer for i686, but it is also our first stable ISO for x86_64. The x86_64 installer ISO thus marks the true final entry for Lunar Linux as a multi-arch distro. This ISO comes with GCC 3.4.6, glibc 2.3.6, Linux 2.6.20, Perl 5.8.8, and other rock solid base components. Allthough the x86_64 ISO is purely 64-bit only now, were working to enable multilib, so stay focused for more news on that. This will also be the last ISO with GCC 3.x. Future ISOs will move to GCC 4.x and an updated glibc.
Whats New in 1.6.2 Beta 1 Development Release:
- Were happy to announce the first beta release of a new series of Lunar linux installer ISOs. Our new ISOs will be as easy to install as 1.6.1, but pack an extra punch - this series of ISOs pre-installs a basic Xfce 4.4.1 desktop with X.Org 7.2, together with Firefox, Thunderbird, Pidgin, Audacious, GIMP and a few other basic desktop utilities. We hope to make it easy for everyone to both enjoy playing and learning from a true source distro environment and be productive quickly. The extra applications will give new users a fast start and should install easily on most (even brand new) hardware with the 2.6.22.1 kernel, but also give the user a welcome feeling on a freshly installed lunar-linux system.
<<less
Download (257MB)
Added: 2007-07-30 License: GPL (GNU General Public License) Price:
823 downloads
PasswordMaker 1.6.2

PasswordMaker 1.6.2


PasswordMaker is a small, lightweight, free, extension for Internet Explorer, Firefox, Mozilla, Netscape, Flock. more>>
PasswordMaker project is a small, lightweight, free, extension for Internet Explorer, Firefox, Mozilla, Netscape, Flock, and Yahoo! Widgets which creates unique, secure passwords that are very easy for you to retrieve but no one else. Nothing is stored anywhere, anytime, so theres nothing to be hacked, lost, or stolen.

How It Works:
You provide PasswordMaker two pieces of information: a "master password" -- that one, single password you like -- and the URL of the website requiring a password. Through the magic of one-way hash algorithms, PasswordMaker calculates a message digest, also known as a digital fingerprint, which can be used as your password for the website.

Although one-way hash algorithms have a number of interesting characteristics, the one capitalized by PasswordMaker is that the resulting fingerprint (password) does "not reveal anything about the input that was used to generate it." In other words, if someone has one or more of your generated passwords, it is computationally infeasible for him to derive your master password or to calculate your other passwords. Computationally infeasible means even computers like this wont help!

<<less
Download (0.16MB)
Added: 2007-07-23 License: GPL (GNU General Public License) Price:
1855 downloads
PgAdmin III 1.6.2 / 1.8.0 Beta 1

PgAdmin III 1.6.2 / 1.8.0 Beta 1


pgAdmin III is designed to answer the needs of all users, from writing simple SQL queries to developing complex databases. more>>
pgAdmin III is designed to answer the needs of all users, from writing simple SQL queries to developing complex databases.
The graphical interface of PgAdmin III supports all PostgreSQL features and makes administration easy.
The application also includes a query builder, an SQL editor, a server-side code editor and much more. pgAdmin III is released with an installer and does not require any additional driver to communicate with the database server.
pgAdmin III is developed by a community of database specialists around the world and is available in more than 30 languages. It is Free Software released under the Artistic License.
Main features:
Multiplatform
- MS Windows 2000 & XP
- GNU/Linux
- FreeBSD
- MacOsX and SunOS ports are under development.
Designed for PostgreSQL latest versions
- PostgreSQL 7.3
- PostgreSQL 7.4
- PostgreSQL 8.0
On-line help
- PostgreSQL documentation (on-line and off-line)
- SQL command guide
Multilingual interface
- pgAdmin III user interface is translated in more than 30 languages. A detailed list of supported languages is available on the Translation page.
Data access
- Native PostgreSQL acccess (no ODBC layer needed)
- Powerful query tool with color syntax highlight
- Very fast datagrid for display/entry of data
Access to all PostgreSQL objects
Objects are displayed with their SQL definition.
- Aggregates
- Casts
- Columns
- Constraints
- Conversions
- Databases
- Domains
- Functions
- Groups
- Indexes
- Tablespaces
- Server-side languages (like PLpgsql, PLpython, PLperl, etc...)
- Operator classes
- Operators
- PostgreSQL servers
- Rules
- Schemas
- Sequences
- Tables
- Trigger function
- Types
- Users
- Views
Multibyte support
- pgAdmin III supports most PostgreSQL server-side encodings:
- SQL_ASCII
- EUC_JP, EUC_CN, EUC_KR, EUC_TW
- JOHAB
- LATIN1, LATIN2, LATIN3, LATIN4, LATIN5, LATIN6, LATIN7, LATIN8, LATIN9, LATIN10
- ISO_8859_5, ISO_8859_6, ISO_8859_7, ISO_8859_8
- UNICODE UTF-8
- MULE_INTERNAL
- KOI8
- WIN
- ALT
- WIN1256
- TCVN
- WIN874
<<less
Download (6.2MB)
Added: 2007-07-16 License: Artistic License Price:
513 downloads
pfstools 1.6.2

pfstools 1.6.2


pfstools allows for reading, writing, manipulating and viewing high-dynamic range (HDR) images and video frames. more>>
pfstools project contains a set of command line (and one GUI) programs for reading, writing, manipulating and viewing high-dynamic range (HDR) images and video frames. All programs in the package exchange data using a simple generic file format (pfs) for HDR data. The concept of the pfstools is similar to netpbm package for low-dynamic range images.
pfstools come with a library for reading and writing pfs files. The library can be used for writing custom applications that can integrate with the existing pfstools programs.
pfstools offers also a good integration with a high-level mathematical programming language GNU Octave. pfstools can be used as the extension of Octave for reading and writing HDR images or simply to store effectively large matrices.
Note that pfs in not just another format for storing HDR images (and there are already quite a few of them). It is more an attempt to integrate the existing file formats by providing a simple data format that can be used to exchange data between applications.
Enhancements:
- matlab: pfsview can now display 2D cell arrays
- pfs library: quite serious bug in sRGB transforms fixed
- added: check for GLUT library (unix only)
- added: man page for pfsglview
<<less
Download (0.53MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
839 downloads
iconvircproxy 1.6.2

iconvircproxy 1.6.2


iconvircproxy is a proxy for IRC users who want to talk in different character set environments. more>>
iconvircproxy project is a proxy for IRC users who want to talk in different character set environments.

In an ideal world, everyone would use UTF-8 for text transmission. UTF-8 supports nearly all characters of all languages, including the thousands of ideographs from Chinese.

However, in the world we live in, people use different encodings. Finnish people use ISO-8859-1, ISO-8859-15 or Windows-1252; Japanese people use ISO-2022-JP, SHIFT-JIS or EUC-JP; Polish people use ISO-8859-2, and so on. People using different encodings will see other peoples text as an unreadable mess of code.

This proxy is a solution for IRC users who want to be able to talk with everyone despite of their character set differences.

The primary audience of this program are the European IRC users who occassionally talk on Japanese channels. With the proxy, all you need is an IRC client that understands and speaks fluently UTF-8.

The proxy supports all the ISO-8859 family character sets, ISO-2022-JP, SHIFT-JIS Japanese encodings and the UTF-8 unicode encoding, and will transparently use them with the "in Rome, do like the Romans do" principle.

Note: As of version 1.4.2, UTF-8 is not the only supported client encoding, but it is still the only recommended one.

<<less
Download (0.15MB)
Added: 2007-07-06 License: GPL (GNU General Public License) Price:
840 downloads
Kivio 1.6.2

Kivio 1.6.2


Kivio is a flowcharting and diagramming application for the KOffice application suite. more>>
Kivio is a flowcharting and diagramming application for the KOffice application suite, and has an userinterface that is similar to Visio.
Kivio project is fully integrated into KOffice and can for example be embedded into KWord.
Main features:
- Scriptable stencils using Python.
- Support for Dia stencils.
- Plugin framework for adding more functionality.
<<less
Download (54.4MB)
Added: 2007-05-07 License: GPL (GNU General Public License) Price:
594 downloads
Linux graphical bootsplash 3.1.6-2.6.21

Linux graphical bootsplash 3.1.6-2.6.21


Linux graphical bootsplash is a themable bootsplash which uses JPEG pictures. more>>
Linux graphical bootsplash allows you to use custom graphics during early system startup. It makes it possible to place a nice graphic behind or above the kernel boot messages.
Linux graphical bootsplash hooks into the fbcon layer and, if activated, searches the initial ramdisk for a JPEG picture to show.
On any output operations to the console, it takes care of painting a margin around your text and a background picture behind the text with a set of special cfb functions.
Main features:
- Nice graphics (JPEG)
- Antialiased text rendering (TrueType)
- Animations (MNG)
- Progress Bar
- Display of boot messages above or below a graphic. ("verbose" and "silent" modes)
- Fully themeable
Enhancements:
- The bootsplash patch was updated to apply cleanly against Linux kernel 2.6.21.
<<less
Download (0.10MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
926 downloads
PhpDig 1.8.9 RC1

PhpDig 1.8.9 RC1


PhpDig provides a very small PHP search engine that uses a MySQL database on backend. more>>
PhpDig provides a very small PHP search engine that uses a MySQL database on backend.

PhpDig is a very small PHP search engine that uses a MySQL database on backend. Features: indexes both static and dynamic pages; Spiders almost all links in html content, in hrefs, areamaps, frames; and Full text indexing. It could index pdf and ms-office files using external binaries. 1.6.2 Update:

Add support of others charsets than 8859-1, encoding 8859-2 added. PhpDig handles meta http-equiv cookie. Function phpdigTestUrl fixed. Css classes for classic mode fixed. Bug on noindex and nofollow fixed. Small API doc added. Error on database creation script on some versions of MySql fixed.

<<less
Download (0.56MB)
Added: 2007-04-26 License: GPL (GNU General Public License) Price:
911 downloads
Linux Mint 2.2 (KDE Edition)

Linux Mint 2.2 (KDE Edition)


Linux Mints purpose is to produce an elegant, up to date and comfortable GNU/Linux desktop distribution. more>>
Linux Mints purpose is to produce an elegant, up to date and comfortable GNU/Linux desktop distribution.
Is Linux Mint suitable for companies?
Yes. Linux Mint offers paid commercial support to companies and individuals. Free community support is also available from the forums and the IRC channel. The main purpose of Linux Mint is to innovate and constantly bring the best desktop solutions to its users. For this reason, the release cycle is fast and a new version of Linux Mint can be released every month or every two months. All released versions of Linux Mint are actively supported and some of the releases (possibly Bianca or Cassandra) will come with a Long Term Support guarantee (a guarantee that our Support Center will support these releases for the years to come).
Is Linux Mint suitable for individuals?
Yes, definitely. We believe Linux is the best operating system on the market. There are more than 300 active Linux distributions and were working hard at becoming the best alternative for your desktop. This is a tough competition as there are other great desktop operating systems and distributions out there. We have faith in the quality of our desktop and a lot of great ideas. If your computer is a PC and you have more than 512MB RAM you should try Linux Mint and see what you think about it. If youre running a 5 years old non-free operating system such as Microsoft Windows XP you should definitely be impressed. We like hearing about your experience and taking your suggestions onboard so please give us your feedback.
Why is there a Light Edition and a Full Edition?
Linux Mint respects the GPL and it also respects the copyrights and licenses of the proprietary software it distributes. However it uses technologies that have been patented in some parts of the World. Most countries do not recognize the legitimacy of software patents so for most of our users this is not a problem. But if youre unlucky and you live in a country where software patents are legally enforcable, you need a version of Linux Mint which is free of patented technologies, and this is what the Light Edition is about.
Why does Linux Mint include proprietary drivers?
It doesnt. If it did, it would be legally wrong (because it would violate the GPL) or ethically wrong (if some dirty trick was used for the user to link the code to the kernel for instance).
What about proprietary software?
We believe in open source and release all our work with the corresponding source code. We owe a lot to the Free Software movement and to the GPL but we also owe a lot to all the developers who contributed ideas and tools and who made software better and better throughout the years. Some of them released their source code as well and thus granted us more freedom and more flexibility. Others released their software with proprietary licenses and although this didnt give us the freedom we would have liked it still contributed to make software better. We like Software in general, Free Software even more, but we do not believe in boycotting Proprietary Software.
Enhancements:
- KDE 3.5.6
- Amarok 1.4.5
- Koffice 1.6.2
- Firefox 2.0.0.3
- and many more....
Read the full release announcement here.
<<less
Download (808MB)
Added: 2007-04-20 License: GPL (GNU General Public License) Price:
919 downloads
Linux Mint 2.2 miniKDE Edition

Linux Mint 2.2 miniKDE Edition


Linux Mints purpose is to produce an elegant, up to date and comfortable GNU/Linux desktop distribution. more>>
Linux Mints purpose is to produce an elegant, up to date and comfortable GNU/Linux desktop distribution.
Is Linux Mint suitable for companies?
Yes. Linux Mint offers paid commercial support to companies and individuals. Free community support is also available from the forums and the IRC channel. The main purpose of Linux Mint is to innovate and constantly bring the best desktop solutions to its users. For this reason, the release cycle is fast and a new version of Linux Mint can be released every month or every two months. All released versions of Linux Mint are actively supported and some of the releases (possibly Bianca or Cassandra) will come with a Long Term Support guarantee (a guarantee that our Support Center will support these releases for the years to come).
Is Linux Mint suitable for individuals?
Yes, definitely. We believe Linux is the best operating system on the market. There are more than 300 active Linux distributions and were working hard at becoming the best alternative for your desktop. This is a tough competition as there are other great desktop operating systems and distributions out there. We have faith in the quality of our desktop and a lot of great ideas. If your computer is a PC and you have more than 512MB RAM you should try Linux Mint and see what you think about it. If youre running a 5 years old non-free operating system such as Microsoft Windows XP you should definitely be impressed. We like hearing about your experience and taking your suggestions onboard so please give us your feedback.
Why is there a Light Edition and a Full Edition?
Linux Mint respects the GPL and it also respects the copyrights and licenses of the proprietary software it distributes. However it uses technologies that have been patented in some parts of the World. Most countries do not recognize the legitimacy of software patents so for most of our users this is not a problem. But if youre unlucky and you live in a country where software patents are legally enforcable, you need a version of Linux Mint which is free of patented technologies, and this is what the Light Edition is about.
Why does Linux Mint include proprietary drivers?
It doesnt. If it did, it would be legally wrong (because it would violate the GPL) or ethically wrong (if some dirty trick was used for the user to link the code to the kernel for instance).
What about proprietary software?
We believe in open source and release all our work with the corresponding source code. We owe a lot to the Free Software movement and to the GPL but we also owe a lot to all the developers who contributed ideas and tools and who made software better and better throughout the years. Some of them released their source code as well and thus granted us more freedom and more flexibility. Others released their software with proprietary licenses and although this didnt give us the freedom we would have liked it still contributed to make software better. We like Software in general, Free Software even more, but we do not believe in boycotting Proprietary Software.
Enhancements:
- KDE 3.5.6
- Amarok 1.4.5
- Koffice 1.6.2
- Firefox 2.0.0.3
- and many more....
Read the full release announcement here.
<<less
Download (698MB)
Added: 2007-04-20 License: GPL (GNU General Public License) Price:
920 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 3
  • 1
  • 2
  • 3