ions periodic table
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1324
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
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
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
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
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
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
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
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
JustAjax Table 0.7
JustAjax Table project performs all operation with tables on-fly using Ajax requests. more>>
JustAjax Table project performs all operation with tables "on-fly" using Ajax requests.
Main features:
- Supports all popular web browsers.
- Populates the data into the cells automatically .
- On-fly scrolling, sorting, editing.
- PHP/MySQL backend.
- Works with up to 100,000 record tables.
<<lessMain features:
- Supports all popular web browsers.
- Populates the data into the cells automatically .
- On-fly scrolling, sorting, editing.
- PHP/MySQL backend.
- Works with up to 100,000 record tables.
Download (0.040MB)
Added: 2007-06-08 License: Other/Proprietary License Price:
869 downloads
conntrack 1.00 Beta1
conntrack is a userspace command line program targeted at system administrators. more>>
conntrack is a userspace command line program targeted at system administrators. conntrack program enables them to view and manage the in-kernel connection tracking state table.
Main features:
- listing the contents of the conntrack table
- searching for individual entries in the conntrack table
- adding new entries to the conntrack table
- listing entries in the expect table
- adding new entries to the expect table
<<lessMain features:
- listing the contents of the conntrack table
- searching for individual entries in the conntrack table
- adding new entries to the conntrack table
- listing entries in the expect table
- adding new entries to the expect table
Download (0.21MB)
Added: 2006-02-09 License: GPL (GNU General Public License) Price:
1359 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
Ion 3rc-20070708
Ion is a tiling (no overlapping windows) window manager that also has PWM-style tabbed frames which can contain multiple windows more>>
Ion is a tiling (no overlapping windows) window manager which also has PWM-style tabbed frames which can contain multiple client windows.
These features help to keep windows organized and to switch quickly between them. Ion was designed primarily as an efficient and unobtrusive window manager for users who prefer the keyboard
Main features:
- Tiling workspaces with tabbed frames, as discussed above.
- Designed to be primarily used from the keyboard.
- Fully documented configuration and scripting interface on top of the lightweight Lua extension language.
- Modular design. The main binary implements only basic window manager functionality. Actual window management policies are implemented by dynamically loaded workspace and other modules.
- The query module implements a line editor similar to mini buffers in many text editors. It is used to implement many different queries with tab-completion support: show manual page, run program, open SSH session, view file, goto named client window or workspace, etc.
- To run those few particularly badly behaving programs, Ion also supports conventional workspaces of the PWM flavour through the floatws module. This module is also used to implement PWM2 on top of the Ion core library.
- Other modules include the drawing engine, dock module for Window Maker dockapp support, menu module and, of course, the tiled workspaces module.
- Full screen client windows are seen as workspaces on their own. It is possible to switch to a normal workspace while keeping several client windows in full screen state and also switch clients that do not themselves support full screen mode to this state.
Ion is not perfect and certainly not for everyone, but neither is any user interface. To ultimately solve usability problems to the extent possible with current technologies, applications should be written independent of their user interfaces and the UIs should be built according to the users preferences based on a high-level semantic description of commands provided by the application.
Ion is, however, improving all the time and if you take the time to get used to it, you should hardly ever have to touch the mouse again to move between windows. Just remember that not all programs will play nicely with Ion because of presumptions about the window management model and even incompliance to the ICCCM. Terminal programs should work better than ever before, at least.
Enhancements:
- This third "rc" release again simply fixes some minor problems in the previous release.
<<lessThese features help to keep windows organized and to switch quickly between them. Ion was designed primarily as an efficient and unobtrusive window manager for users who prefer the keyboard
Main features:
- Tiling workspaces with tabbed frames, as discussed above.
- Designed to be primarily used from the keyboard.
- Fully documented configuration and scripting interface on top of the lightweight Lua extension language.
- Modular design. The main binary implements only basic window manager functionality. Actual window management policies are implemented by dynamically loaded workspace and other modules.
- The query module implements a line editor similar to mini buffers in many text editors. It is used to implement many different queries with tab-completion support: show manual page, run program, open SSH session, view file, goto named client window or workspace, etc.
- To run those few particularly badly behaving programs, Ion also supports conventional workspaces of the PWM flavour through the floatws module. This module is also used to implement PWM2 on top of the Ion core library.
- Other modules include the drawing engine, dock module for Window Maker dockapp support, menu module and, of course, the tiled workspaces module.
- Full screen client windows are seen as workspaces on their own. It is possible to switch to a normal workspace while keeping several client windows in full screen state and also switch clients that do not themselves support full screen mode to this state.
Ion is not perfect and certainly not for everyone, but neither is any user interface. To ultimately solve usability problems to the extent possible with current technologies, applications should be written independent of their user interfaces and the UIs should be built according to the users preferences based on a high-level semantic description of commands provided by the application.
Ion is, however, improving all the time and if you take the time to get used to it, you should hardly ever have to touch the mouse again to move between windows. Just remember that not all programs will play nicely with Ion because of presumptions about the window management model and even incompliance to the ICCCM. Terminal programs should work better than ever before, at least.
Enhancements:
- This third "rc" release again simply fixes some minor problems in the previous release.
Download (0.60MB)
Added: 2007-07-09 License: LGPL (GNU Lesser General Public License) Price:
837 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
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 ions 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