developmental psychology
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4
PEBL 0.07
PEBL is the psychology experiment building language. more>>
PEBL is software for creating psychology experiments.
PEBL offers a simple programming language tailor-made for creating and conducting simple experiments. It is Free software, licensed under the GPL, with both the compiled executables and source code available without charge.
PEBL is programmed primarily in C++, but also uses flex and bison (GNU versions of lex and yacc) to handle parsing.
PEBL is designed to be easily used on multiple computing platforms. Its current implementation uses the SDL as its implementation platform, which is also a cross-platform library that compiles natively under Win32, Linux, and Macintosh Operating Systems. Currently, PEBL works on Windows and Linux.
Enhancements:
- This version includes a number of useful functions, improved documentation, new fonts, and the ability to do simple TCP/IP networking.
- Three supplementary packages are now available: the PEBL Image Archive, the PEBL sound archive, and the PEBL Test Battery.
- The Test battery represents an initial attempt to cover a number of standard tasks used in psychological and neuropsych testing, including versions of the Wisconsin Card Sort, Iowa Gambling task, Test of Variables of Attention, and a number of others.
<<lessPEBL offers a simple programming language tailor-made for creating and conducting simple experiments. It is Free software, licensed under the GPL, with both the compiled executables and source code available without charge.
PEBL is programmed primarily in C++, but also uses flex and bison (GNU versions of lex and yacc) to handle parsing.
PEBL is designed to be easily used on multiple computing platforms. Its current implementation uses the SDL as its implementation platform, which is also a cross-platform library that compiles natively under Win32, Linux, and Macintosh Operating Systems. Currently, PEBL works on Windows and Linux.
Enhancements:
- This version includes a number of useful functions, improved documentation, new fonts, and the ability to do simple TCP/IP networking.
- Three supplementary packages are now available: the PEBL Image Archive, the PEBL sound archive, and the PEBL Test Battery.
- The Test battery represents an initial attempt to cover a number of standard tasks used in psychological and neuropsych testing, including versions of the Wisconsin Card Sort, Iowa Gambling task, Test of Variables of Attention, and a number of others.
Download (0.65MB)
Added: 2006-06-01 License: GPL (GNU General Public License) Price:
1241 downloads
DryDock r6
DryDock is a Web publishing application that implements a development/production Web site pipeline. more>>
DryDock is a Web publishing application that implements a development/production Web site pipeline. It codifies an approval process that forces users to approve all Web site changes before they go into production.
Sometimes, on a web server, system administrators are often ill-equipped to determine who created the document, why its being served, how long its been publicly viewable, and how its changed over time.
To police our own website, we create DryDock. DryDock is a web publishing application that governs the replication of content from a developmental, or staging web tree to a production web tree (ideally placed on a second server). DryDock codifies a formal approval process that forces management to approve all web site changes before those changes are put into production. Users never interact directly with the production web tree; DryDock updates it on their behalf.
<<lessSometimes, on a web server, system administrators are often ill-equipped to determine who created the document, why its being served, how long its been publicly viewable, and how its changed over time.
To police our own website, we create DryDock. DryDock is a web publishing application that governs the replication of content from a developmental, or staging web tree to a production web tree (ideally placed on a second server). DryDock codifies a formal approval process that forces management to approve all web site changes before those changes are put into production. Users never interact directly with the production web tree; DryDock updates it on their behalf.
Download (5.1MB)
Added: 2006-06-23 License: GPL (GNU General Public License) Price:
1219 downloads
Citation 1.7
Citation project is a web based tool for bibliographic conversions. more>>
Citation project is a web based tool for bibliographic conversions.
Citation is a bibliographical conversion program designed to transform data between several different formats including GTEC, Refer, and Bibtex.
This program saves the researcher time by keeping unnecessary formatting from taking up their time. Currently, Citation is written in Java.
The use of Java moves much of the processing of the program to the users machine.
After downloading the Citation applet, the user is free to log off the network, but can still continue using the Citation applet.
Main features:
- Citation is available in both applet format and command line driven application.
- The Citation applet has the ability to convert between single or multiple entries.
- The Citation application is specifically designed for batch processing of files.
- Easy to use interface.
- Citation 1.7 supports format conversion from: INSPEC, ENGI, GTEC, PSYCH, Refer, and Bibtex to: Refer, Bibtex, HFS (Handbook for Scholars), Chicago Manual of Style, MLA (Modern Language Association), APA (American Psychology Association), and Galileo formats: ABI and Periodicals.
- Citation 1.7 has added new input manual format where user can add his or her own inputs in the input boxes rather than cut and pasting. This also supports format conversion mentioned previously.
<<lessCitation is a bibliographical conversion program designed to transform data between several different formats including GTEC, Refer, and Bibtex.
This program saves the researcher time by keeping unnecessary formatting from taking up their time. Currently, Citation is written in Java.
The use of Java moves much of the processing of the program to the users machine.
After downloading the Citation applet, the user is free to log off the network, but can still continue using the Citation applet.
Main features:
- Citation is available in both applet format and command line driven application.
- The Citation applet has the ability to convert between single or multiple entries.
- The Citation application is specifically designed for batch processing of files.
- Easy to use interface.
- Citation 1.7 supports format conversion from: INSPEC, ENGI, GTEC, PSYCH, Refer, and Bibtex to: Refer, Bibtex, HFS (Handbook for Scholars), Chicago Manual of Style, MLA (Modern Language Association), APA (American Psychology Association), and Galileo formats: ABI and Periodicals.
- Citation 1.7 has added new input manual format where user can add his or her own inputs in the input boxes rather than cut and pasting. This also supports format conversion mentioned previously.
Download (MB)
Added: 2006-10-25 License: GPL (GNU General Public License) Price:
1099 downloads
Secret::Simple 0.11
Secret::Simple are secure secrets in configurations and code. more>>
Secret::Simple are secure secrets in configurations and code.
SYNOPSIS
# OOP style
my $ss = Secret::Simple->new();
my $ciphertext = $ss->encrypt($plaintext);
my $plaintext = $ss->decrypt($ciphertext);
# procedural style
my $ciphertext = ssencrypt($plaintext);
my $plaintext = ssdecrypt($ciphertext);
This module implements a straightforward interface for encrypting and decrypting secret information such as user IDs and passwords (e.g. database connection or remote account credentials). Secret::Simple can also be used on a limited basis to protect arbitrary data. By default the ciphertext returned is Base 64 encoded so as to be easily embedded within configurations or scripts.
A command-line utility called sstool is included to facilitate easy manipulation of cipher and plaintext snippets. The encryption mechanism utilizes the strong AES algorithm, so any weaknesses in Secret::Simple predominantly lie in how keys are protected. A balance must be struck between key accessibility, key protection, and overall complexity. The calling code can supply a key, series of keys, key files, or a combination. If no key information is explicitly passed, the module will attempt to use the OS users private SSH DSA key file by default if it exists.
The major goal of this module is to be as secure as possible while being simple and convenient enough to encourage its use. Psychology does factor in: simple is a very important consideration. If the security methods are too onerous or complicated to use, many sysadmins or developers may simply use plaintext (no protection other that OS file permissions) or simple ciphers like rot13. The security of the Secret::Simple method is not perfect, but it does represent a significant improvement over commonly-used nonsecure methods of embedding credentials and other secrets in Perl configurations and scripts. If used appropriately, Secret::Simple can greatly improve application and configuration security. Even so, care must always be taken to protect files and file permissions.
<<lessSYNOPSIS
# OOP style
my $ss = Secret::Simple->new();
my $ciphertext = $ss->encrypt($plaintext);
my $plaintext = $ss->decrypt($ciphertext);
# procedural style
my $ciphertext = ssencrypt($plaintext);
my $plaintext = ssdecrypt($ciphertext);
This module implements a straightforward interface for encrypting and decrypting secret information such as user IDs and passwords (e.g. database connection or remote account credentials). Secret::Simple can also be used on a limited basis to protect arbitrary data. By default the ciphertext returned is Base 64 encoded so as to be easily embedded within configurations or scripts.
A command-line utility called sstool is included to facilitate easy manipulation of cipher and plaintext snippets. The encryption mechanism utilizes the strong AES algorithm, so any weaknesses in Secret::Simple predominantly lie in how keys are protected. A balance must be struck between key accessibility, key protection, and overall complexity. The calling code can supply a key, series of keys, key files, or a combination. If no key information is explicitly passed, the module will attempt to use the OS users private SSH DSA key file by default if it exists.
The major goal of this module is to be as secure as possible while being simple and convenient enough to encourage its use. Psychology does factor in: simple is a very important consideration. If the security methods are too onerous or complicated to use, many sysadmins or developers may simply use plaintext (no protection other that OS file permissions) or simple ciphers like rot13. The security of the Secret::Simple method is not perfect, but it does represent a significant improvement over commonly-used nonsecure methods of embedding credentials and other secrets in Perl configurations and scripts. If used appropriately, Secret::Simple can greatly improve application and configuration security. Even so, care must always be taken to protect files and file permissions.
Download (0.008MB)
Added: 2006-11-14 License: Perl Artistic License Price:
1075 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above developmental psychology 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