periodic table
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1309
Periodic Calendar 2.0
Periodic Calendar is a GUI utility which assists in women menstrual cycles tracking and fertility periods prediction. more>>
Periodic Calendar is a GUI utility which assists in women menstrual cycles tracking and fertility periods prediction.
The information tracked by this application can be used either to became pregnant or to prevent pregnancy.
At this point the fertility prediction is based on the calendar method which is not very precise. It is not recommended to use this method alone for the birth control.
<<lessThe information tracked by this application can be used either to became pregnant or to prevent pregnancy.
At this point the fertility prediction is based on the calendar method which is not very precise. It is not recommended to use this method alone for the birth control.
Download (0.10MB)
Added: 2005-10-31 License: GPL (GNU General Public License) Price:
1457 downloads
Teriodic 0.8
Teriodic project is a training tool for the periodic table of the elements. more>>
Teriodic project is a training tool for the periodic table of the elements.
Starting from 1 (hydrogen), it quizzes the abreviations of each element in numerical order.
If you make a mistake, it shows you the next five elements and lets you start again from hydrogen.
Knowing the periodic table makes it possible to estimate what chemicals look like and how they react.
<<lessStarting from 1 (hydrogen), it quizzes the abreviations of each element in numerical order.
If you make a mistake, it shows you the next five elements and lets you start again from hydrogen.
Knowing the periodic table makes it possible to estimate what chemicals look like and how they react.
Download (MB)
Added: 2006-10-21 License: GPL (GNU General Public License) Price:
1098 downloads
EPeriodic 2.0.0
EPeriodic is an electronic periodic table. more>>
EPeriodic project is an electronic periodic table. You can read the properties of each element in the table with a single click.
<<less Download (0.33MB)
Added: 2006-03-14 License: Freeware Price:
1459 downloads
gperiodic 2.0.10
gperiodic is a program for periodic table browsing. more>>
GPeriodic is a program for looking up data of elements from the periodic table. gperiodic project also features a non-graphical interface.
This program was originally written by Kyle R. Burton.
Enhancements:
- This release uses the standard GTK+ about window.
- It includes a Russian translation.
<<lessThis program was originally written by Kyle R. Burton.
Enhancements:
- This release uses the standard GTK+ about window.
- It includes a Russian translation.
Download (0.12MB)
Added: 2007-07-12 License: GPL (GNU General Public License) Price:
835 downloads
PDF::Table 0.91
PDF::Table is a utility class for building table layouts in a PDF::API2 object. more>>
PDF::Table is a utility class for building table layouts in a PDF::API2 object.
SYNOPSIS
use PDF::API2;
use PDF::Table;
my $pdftable = new PDF::Table;
my $pdf = new PDF::API2(-file => "table_of_lorem.pdf");
my $page = $pdf->page;
# some data to layout
my $some_data =[
["1 Lorem ipsum dolor",
"Donec odio neque, faucibus vel",
"consequat quis, tincidunt vel, felis."],
["Nulla euismod sem eget neque.",
"Donec odio neque",
"Sed eu velit."],
... and so on
];
# build the table layout
$pdftable->table(
# required params
$pdf,
$page,
$some_data,
x => $left_edge_of_table,
w => 570,
start_y => 500,
next_y => 700,
start_h => 300,
next_h => 500,
# some optional params
padding => 5,
padding_right => 10,
background_color_odd => "gray",
background_color_even => "lightblue", #cell background color for even rows
);
# do other stuff with $pdf
...
This class is a utility for use with the PDF::API2 module from CPAN. It can be used to display text data in a table layout within the PDF. The text data must be in a 2d array (such as returned by a DBI statement handle fetchall_arrayref() call). The PDF::Table will automatically add as many new pages as necessary to display all of the data.
Various layout properties, such as font, font size, and cell padding and background color can be specified for each column and/or for even/odd rows. Also a (non)repeated header row with different layout properties can be specified.
See the METHODS section for complete documentation of every parameter.
<<lessSYNOPSIS
use PDF::API2;
use PDF::Table;
my $pdftable = new PDF::Table;
my $pdf = new PDF::API2(-file => "table_of_lorem.pdf");
my $page = $pdf->page;
# some data to layout
my $some_data =[
["1 Lorem ipsum dolor",
"Donec odio neque, faucibus vel",
"consequat quis, tincidunt vel, felis."],
["Nulla euismod sem eget neque.",
"Donec odio neque",
"Sed eu velit."],
... and so on
];
# build the table layout
$pdftable->table(
# required params
$pdf,
$page,
$some_data,
x => $left_edge_of_table,
w => 570,
start_y => 500,
next_y => 700,
start_h => 300,
next_h => 500,
# some optional params
padding => 5,
padding_right => 10,
background_color_odd => "gray",
background_color_even => "lightblue", #cell background color for even rows
);
# do other stuff with $pdf
...
This class is a utility for use with the PDF::API2 module from CPAN. It can be used to display text data in a table layout within the PDF. The text data must be in a 2d array (such as returned by a DBI statement handle fetchall_arrayref() call). The PDF::Table will automatically add as many new pages as necessary to display all of the data.
Various layout properties, such as font, font size, and cell padding and background color can be specified for each column and/or for even/odd rows. Also a (non)repeated header row with different layout properties can be specified.
See the METHODS section for complete documentation of every parameter.
Download (0.011MB)
Added: 2006-09-20 License: Perl Artistic License Price:
1140 downloads
phpSortable 2.0
phpSortable is a PHP class that shows MySQL QueryResults in an HTML table. more>>
phpSortable project is a PHP class that shows MySQL QueryResults in an HTML table. As implied by the name "Sortable", the table also displays the column headers as links which lead to a version of the table that is sorted according to that column.
Furthermore, it allows you to link the individual rows with other scripts for modifying the rows. The class also permits the user to limit the number of rows to display at once. The table can also be navigated with the "last" and "next" links.
Enhancements:
- The class is now named phpSortable instead of phpSortTable.
- It has a database abstraction interface, so it is possible to work not only with MySQL but with any other database types.
- Therefore, the activeDBLib class must be used, and it can be found at PHPClasses.org.
<<lessFurthermore, it allows you to link the individual rows with other scripts for modifying the rows. The class also permits the user to limit the number of rows to display at once. The table can also be navigated with the "last" and "next" links.
Enhancements:
- The class is now named phpSortable instead of phpSortTable.
- It has a database abstraction interface, so it is possible to work not only with MySQL but with any other database types.
- Therefore, the activeDBLib class must be used, and it can be found at PHPClasses.org.
Download (0.15MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
588 downloads
EntityTable 1.0
EntityTable provides software that enhances/fixes JTable. more>>
EntityTable provides software that enhances/fixes JTable.
Each table row corresponds to a data Object in a List.
Main features:
- column hiding
- locking
- panning
- row scrolling
- row sorting
- intuitive focus behaviour
- optional virtual rows and columns
- Java 1.4 support
<<lessEach table row corresponds to a data Object in a List.
Main features:
- column hiding
- locking
- panning
- row scrolling
- row sorting
- intuitive focus behaviour
- optional virtual rows and columns
- Java 1.4 support
Download (0.67MB)
Added: 2007-02-07 License: MPL (Mozilla Public License) Price:
990 downloads
Generic Hash Table library 0.6.2
Generic Hash Table library is a hash table implementation in C for storing arbitrary types of data. more>>
Generic Hash Table library is a hash table implementation in C for storing arbitrary types of data. Generic Hash Table library is meant to be small, easily extensible (in terms of hash functions etc), and easy to understand codewise.
Enhancements:
- config.guess and config.sub were updated to work with current systems.
- The API was extended with two new functions to allow returning the keysize on iteration.
<<lessEnhancements:
- config.guess and config.sub were updated to work with current systems.
- The API was extended with two new functions to allow returning the keysize on iteration.
Download (0.25MB)
Added: 2007-07-15 License: LGPL (GNU Lesser General Public License) Price:
837 downloads
Katakana Table
Katakana Table is a katakana table karamba theme. more>>
Katakana Table is a katakana table karamba theme. Useful for learning katakana. When one clicks on a character a passive popup will come up with the romaji and hiragana for that katakana.
If you middle click a character it will copy it to the clipboard. This theme uses unicode so your local probably needs to be utf8.
I havent tested that, im just speculating. works well with my hirgana table (http://www.kde-look.org/content/show.php?content=33568) which is due for a major reworking.
<<lessIf you middle click a character it will copy it to the clipboard. This theme uses unicode so your local probably needs to be utf8.
I havent tested that, im just speculating. works well with my hirgana table (http://www.kde-look.org/content/show.php?content=33568) which is due for a major reworking.
Download (0.006MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
705 downloads
PostgreSQL Table Log 0.4.4
PostgreSQL Table Log contains functions that allow you to log PostgreSQL table inserts, updates, and deletes into another table. more>>
PostgreSQL Table Log contains functions that allow you to log PostgreSQL table inserts, updates, and deletes into another table.
This can be used to recover the state of the logged table or to recover specific rows from a given time period.
Enhancements:
- This version now works with PostgreSQL versions 8.2 and later.
- Some warnings have been removed and the documentation was cleaned up.
- PGXS is now used for building from source.
- RPM packages are available.
<<lessThis can be used to recover the state of the logged table or to recover specific rows from a given time period.
Enhancements:
- This version now works with PostgreSQL versions 8.2 and later.
- Some warnings have been removed and the documentation was cleaned up.
- PGXS is now used for building from source.
- RPM packages are available.
Download (0.013MB)
Added: 2007-06-06 License: BSD License Price:
872 downloads
PyHtmlTable 1.13
PyHtmlTable is a class for Python CGIs to generate HTML tables on the fly. more>>
PyHtmlTable is a class for Python CGIs to generate HTML tables on the fly. The reason that i made this script is I couldnt find something like Table.pm or Table.php
Main features:
- Allows setting of individual row and cell attributes via arbitrary dictionaries
- Allows spanning of rows and columns
- Autogrows table if cells set outside initial Range.
- Allows dynamic insertion of new rows and columns anywhere in the table
- Allows bulk population of table data via arrays to arbitrary locations in the table.
- Provides default cell attributes for tablewide uniformity and the ability to override these on a cell by cell basis.
- NOTE: Row indexes start at 0 like God and Kernighan demand!
- Influenced heavily by Table.pm and Table.php
<<lessMain features:
- Allows setting of individual row and cell attributes via arbitrary dictionaries
- Allows spanning of rows and columns
- Autogrows table if cells set outside initial Range.
- Allows dynamic insertion of new rows and columns anywhere in the table
- Allows bulk population of table data via arrays to arbitrary locations in the table.
- Provides default cell attributes for tablewide uniformity and the ability to override these on a cell by cell basis.
- NOTE: Row indexes start at 0 like God and Kernighan demand!
- Influenced heavily by Table.pm and Table.php
Download (0.011MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1221 downloads
IP Tables State 2.2.0
IP Tables State implements the state top feature from IP Filter for IP Tables. more>>
Having worked with IP Filter on Solaris for a few years now, when I work on IP Tables in Linux I come to miss State Top. So I decided to write a version for IP Tables. IPTState is a state top along with a "single run" mode to quickly display states once. IP Tables State has customizable sorting (including reverse), customizable refresh rates, etc. etc. See the README, the man page and the -h option for details.
IPTState is now in the Debian, Redhat, Fedora Core, Mandrake, Gentoo, FloppyFW, and Devil Linux distributions as well as the pkgsrc project.
<<lessIPTState is now in the Debian, Redhat, Fedora Core, Mandrake, Gentoo, FloppyFW, and Devil Linux distributions as well as the pkgsrc project.
Download (0.027MB)
Added: 2007-03-19 License: zlib/libpng License Price:
949 downloads
CGI::AppBuilder::Table 0.12
CGI::AppBuilder::Table module contains a configuration initializer. more>>
CGI::AppBuilder::Table module contains a configuration initializer.
SYNOPSIS
use CGI::AppBuilder::Table;
my $ab = CGI::AppBuilder::Table->new(
ifn, my_init.cfg, opt, vhS:a:);
my ($q, $ar, $ar_log) = $ab->start_app($0, %ARGV);
print $ab->disp_form($q, $ar);
This class provides methods for reading and parsing configuration files.
new (ifn => file.cfg, opt => hvS:)
This is a inherited method from CGI::AppBuilder. See the same method in CGI::AppBuilder for more details.
html_table($arf, $cns, $br)
Input variables:
$arf - array ref containing the content of the table
$cns - column names separated by comma or
AUTO|AH|HASH - use $k in AH Array ${$arf}[$i]{$k}
$br - hash array ref for table format, it contains
css_table - CSS class name for < TABLE>
atr_table - attribute parameters for < TABLE>
css_tr - CSS class name for < TR>
atr_tr - attribute parameters for < TR>
atr_tr_odd - attribute parameters for ODD < TR>
atr_tr_even - attribute parameters for EVEN < TR>
css_tr_odd - CSS class name for ODD < TR>
css_tr_even - CSS class name for EVEN < TR>
css_select - CSS class name for < SELECT ...>
css_input - CSS class name for < INPUT type=input ...>
atr_sel - attributes for itemized < SELECT ...> for instance:
atr_sel = {
var1 => style="display:none",
var2 => style="display:block",
var3 => class="FormSel",
}
atr_inp - attributes for itemized < INPUT type=input ...>
css_td - CSS class name for < TD>
atr_td - attribute parameters for < TD>
atr_cell - an array ref to attribute parameters for each cell
${$br}{atr_cell}[$i][$j]
esc_vars - a list of escaped variables separated by comma.
fh_out - output file handler
cns_desc - hash ref containing column name description
tab_caption - table caption/header
tab_footer - table footer/notes
<<lessSYNOPSIS
use CGI::AppBuilder::Table;
my $ab = CGI::AppBuilder::Table->new(
ifn, my_init.cfg, opt, vhS:a:);
my ($q, $ar, $ar_log) = $ab->start_app($0, %ARGV);
print $ab->disp_form($q, $ar);
This class provides methods for reading and parsing configuration files.
new (ifn => file.cfg, opt => hvS:)
This is a inherited method from CGI::AppBuilder. See the same method in CGI::AppBuilder for more details.
html_table($arf, $cns, $br)
Input variables:
$arf - array ref containing the content of the table
$cns - column names separated by comma or
AUTO|AH|HASH - use $k in AH Array ${$arf}[$i]{$k}
$br - hash array ref for table format, it contains
css_table - CSS class name for < TABLE>
atr_table - attribute parameters for < TABLE>
css_tr - CSS class name for < TR>
atr_tr - attribute parameters for < TR>
atr_tr_odd - attribute parameters for ODD < TR>
atr_tr_even - attribute parameters for EVEN < TR>
css_tr_odd - CSS class name for ODD < TR>
css_tr_even - CSS class name for EVEN < TR>
css_select - CSS class name for < SELECT ...>
css_input - CSS class name for < INPUT type=input ...>
atr_sel - attributes for itemized < SELECT ...> for instance:
atr_sel = {
var1 => style="display:none",
var2 => style="display:block",
var3 => class="FormSel",
}
atr_inp - attributes for itemized < INPUT type=input ...>
css_td - CSS class name for < TD>
atr_td - attribute parameters for < TD>
atr_cell - an array ref to attribute parameters for each cell
${$br}{atr_cell}[$i][$j]
esc_vars - a list of escaped variables separated by comma.
fh_out - output file handler
cns_desc - hash ref containing column name description
tab_caption - table caption/header
tab_footer - table footer/notes
Download (0.012MB)
Added: 2007-07-19 License: Perl Artistic License Price:
828 downloads
Basset::DB::Table 1.04
Basset::DB::Table is used to define database tables, ways to load that data into memory. more>>
Basset::DB::Table is used to define database tables, ways to load that data into memory and build queries based upon the table information.
SYNOPSIS
For example,
my $table = Basset::DB::Table->new(
name => user,
primary_column => id,
autogenerated => 1,
definition => {
id => SQL_INTEGER,
username => SQL_VARCHAR,
password => SQL_VARCHAR,
name => SQL_VARCHAR
}
);
print $table->insert_query, "n"; print $table->update_query, "n"; print $table->delete_query, "n";
Basset::DB::Table provides an abstract and consistent location for defining database tables, building queries based upon them, and so on. It is rarely (if ever) used directly in code, but is used extensively in packages which subclass from Basset::Object::Persistent.
Any queries returned by the query methods are simply strings that must be prepared by DBI in order bo be used.
<<lessSYNOPSIS
For example,
my $table = Basset::DB::Table->new(
name => user,
primary_column => id,
autogenerated => 1,
definition => {
id => SQL_INTEGER,
username => SQL_VARCHAR,
password => SQL_VARCHAR,
name => SQL_VARCHAR
}
);
print $table->insert_query, "n"; print $table->update_query, "n"; print $table->delete_query, "n";
Basset::DB::Table provides an abstract and consistent location for defining database tables, building queries based upon them, and so on. It is rarely (if ever) used directly in code, but is used extensively in packages which subclass from Basset::Object::Persistent.
Any queries returned by the query methods are simply strings that must be prepared by DBI in order bo be used.
Download (0.14MB)
Added: 2007-08-09 License: Perl Artistic License Price:
807 downloads
DBIx::XHTML_Table 1.36
DBIx::XHTML_Table is Perl module for SQL query result set to XML-based HTML table. more>>
DBIx::XHTML_Table is Perl module for SQL query result set to XML-based HTML table.
SYNOPSIS
use DBIx::XHTML_Table;
# database credentials - fill in the blanks
my ($data_source,$usr,$pass) = ();
my $table = DBIx::XHTML_Table->new($data_source,$usr,$pass);
$table->exec_query("
select foo from bar
where baz=qux
order by foo
");
print $table->output();
# stackable method calls:
print DBIx::XHTML_Table
->new($data_source,$usr,$pass)
->exec_query(select foo,baz from bar)
->output();
# and much more - read on ...
<<lessSYNOPSIS
use DBIx::XHTML_Table;
# database credentials - fill in the blanks
my ($data_source,$usr,$pass) = ();
my $table = DBIx::XHTML_Table->new($data_source,$usr,$pass);
$table->exec_query("
select foo from bar
where baz=qux
order by foo
");
print $table->output();
# stackable method calls:
print DBIx::XHTML_Table
->new($data_source,$usr,$pass)
->exec_query(select foo,baz from bar)
->output();
# and much more - read on ...
Download (0.018MB)
Added: 2007-02-20 License: Perl Artistic License Price:
976 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above periodic table 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