WareSeeker Search Software

fields


Sponsored Links
Collapse All
Software Name Software Type Category Price
1

MySQL fields RB2


script PHP Free
View Detail
Download MySQL fields RB2Download MySQL fields RB2
isplay a complete list of MySQL table fields in database. Must have script for developers. Easy and quick!
2

Fields 0.5


mac Education->Math Science Free
View Detail
Download Fields 0.5Download Fields 0.5
48 KB
Fields is a small force field simulator for Mac OS X. Particles react to each other an/or to the mouse.

Launch it, and play with the parameters! Its possible to go to fullscreen mode.

Whats New in This Release:

· First Public Release.

3

UnHide fields 0.2


windows System->Browser Tweak Free
View Detail
Download UnHide fields 0.2Download UnHide fields 0.2
13 KB
UnHide fields will allow you to easily view and edit hidden fields content.


4

fields::aliased 1.05


linux Programming->Libraries Free
View Detail
Download fields::aliased 1.05Download fields::aliased 1.05
0.008 MB
fields::aliased is a Perl module that can create aliases for object fields.

SYNOPSIS

package MyPackage;
use strict;
use fields qw($scalar @array %hash);

sub new {
my $class = shift;
my $self = fields::new($class);

return $self;
}

sub mymethod {
my MyPackage $self = shift;
use fields::aliased qw($self $scalar @array %hash);

$scalar = 1;
@array = (2 .. 4);
%hash = (one => 1, two => 2);
}

This module is a companion to the fields module, which allows efficient handling of instance variables with checking at compile time. It goes one step further and actually creates lexical aliases to the instance values, which can make code not only easier to type, but easier to read as well.

Declarations

You declare the fields using the fields pragma, as always.

use fields qw($scalar @array %hash nosigil);

Each field name may be preceded by a type sigil to indicate which kind of variable it is. Names without the type sigil are treated as scalars.

For names beginning with an underscore, see "PRIVATE FIELDS" below.

Constructors

You call fields::new to create the object.

my $self = fields::new($class);

Usage

In each method that uses the individual fields, you add a line similar to the following:

use fields::aliased qw($self $scalar @array %hash nosigil);

That is, list the variable being used for the object reference, and then the names of the fields that you are going to use in this method. fields::aliased takes care of declaring the appropriate Perl lexical variables and linking them to the appropriate field. You only need to specify the fields you are actually going to use, including any inherited from superclasses.


5

Clear Fields 2.0


windows System->Browser Tweak Free
View Detail
Download Clear Fields 2.0Download Clear Fields 2.0
18 KB
Clear Fields description
Toolbar buttons that clear search fields, address field, find field, etc Clear Fields will insert toolbar buttons that clear:
· Address Field
· Search Field
· Search Field of the Official Google Toolbar
· Search Field of "Web Search Pro"
· Find Field
· All
Text Fields, Password Fields and Checkboxes in the viewed page!

Now you can easily empty the contents of the fields listed above. Useful for people who paste with the middle click. Inspired by konqueror.

You can find the buttons by right-clicking on the toolbar and selecting "customize". The clear button for the find bar is placed automatically. The "Clear Search" button will clear both the Generic Search Field and the Web Search Pro Search Field.

Requirements:

· Firefox 1.5 - 2.0.0.*

6

Clear Fields 1.8


windows System->Browser Tweak Free
View Detail
Download Clear Fields 1.8Download Clear Fields 1.8
14 KB
Clear Fields will insert toolbar buttons that clear:
· Address Field
· Search Field
· Search Field of the Official Google Toolbar
· Search Field of "Web Search Pro"
· Find Field
· All Text Fields, Password Fields and Checkboxes in the viewed page!

Now you can easily empty the contents of the fields listed above. Useful for people who paste with the middle click. Inspired by konqueror.

You can find the buttons by right-clicking on the toolbar and selecting "customize". The clear button for the find bar is placed automatically. The "Clear Search" button will clear both the Generic Search Field and the Web Search Pro Search Field.


7

Class::Struct::FIELDS 1.1


linux Programming->Libraries Free
View Detail
Download Class::Struct::FIELDS 1.1Download Class::Struct::FIELDS 1.1
0.018 MB
Class::Struct::FIELDS module combine Class::Struct, base and fields.

SYNOPSIS

(This page documents Class::Struct::FIELDS v.1.1.)
use Class::Struct::FIELDS;
# declare struct, based on fields, explicit class name:
struct (CLASS_NAME => { ELEMENT_NAME => ELEMENT_TYPE, ... });

use Class::Struct::FIELDS;
# declare struct, based on fields, explicit class name
# with inheritance:
struct (CLASS_NAME => [qw(BASE_CLASSES ...)],
{ ELEMENT_NAME => ELEMENT_TYPE, ... });

package CLASS_NAME;
use Class::Struct::FIELDS;
# declare struct, based on fields, implicit class name:
struct (ELEMENT_NAME => ELEMENT_TYPE, ...);

package CLASS_NAME;
use Class::Struct::FIELDS;
# declare struct, based on fields, implicit class name
# with inheritance:
struct ([qw(BASE_CLASSES ...)], ELEMENT_NAME => ELEMENT_TYPE, ...);

package MyObj;
use Class::Struct::FIELDS;
# declare struct with four types of elements:
struct (s => $, a => @, h => %, x => &, c => My_Other_Class);

$obj = new MyObj; # constructor

# scalar type accessor:
$element_value = $obj->s; # element value
$obj->s (new value); # assign to element

# array type accessor:
$ary_ref = $obj->a; # reference to whole array
$ary_element_value = $obj->a->[2]; # array element value
$ary_element_value = $obj->a (2); # same thing
$obj->a->[2] = new value; # assign to array element
$obj->a (2, newer value); # same thing

# hash type accessor:
$hash_ref = $obj->h; # reference to whole hash
$hash_element_value = $obj->h->{x}; # hash element value
$hash_element_value = $obj->h (x); # same thing
$obj->h->{x} = new value; # assign to hash element
$obj->h (x, newer value); # same thing

# code type accessor:
$code_ref = $obj->x; # reference to code
$obj->x->(...); # call code
$obj->x (sub {...}); # assign to element

# regexp type accessor:
$regexp = $obj->r; # reference to code
$string =~ m/$obj->r/; # match regexp
$obj->r (qr/ ... /); # assign to element

# class type accessor:
$element_value = $obj->c; # object reference
$obj->c->method (...); # call method of object
$obj->c (My_Other_Class::->new); # assign a new object

Class::Struct::FIELDS exports a single function, struct. Given a list of element names and types, and optionally a class name and/or an array reference of base classes, struct creates a Perl 5 class that implements a "struct-like" data structure with inheritance.

The new class is given a constructor method, new, for creating struct objects.
Each element in the struct data has an accessor method, which is used to assign to the element and to fetch its value. The default accessor can be overridden by declaring a sub of the same name in the package. (See Example 2.)

Each elements type can be scalar, array, hash, code or class.


8

Sort::Fields 0.90


linux Programming->Libraries Free
View Detail
Download Sort::Fields 0.90Download Sort::Fields 0.90
0.005 MB
Sort::Fields is a Perl module that can sort lines containing delimited fields.

SYNOPSIS

use Sort::Fields;
@sorted = fieldsort [3, 2n], @lines;
@sorted = fieldsort +, [-1, -3, 0], @lines;

$sort_3_2n = make_fieldsort [3, 2n], @lines;
@sorted = $sort_3_2n->(@lines);

Sort::Fields provides a general purpose technique for efficiently sorting lists of lines that contain data separated into fields.

Sort::Fields automatically imports two subroutines, fieldsort and make_fieldsort, and two variants, stable_fieldsort and make_stable_fieldsort. make_fieldsort generates a sorting subroutine and returns a reference to it. fieldsort is a wrapper for the make_fieldsort subroutine.

The first argument to make_fieldsort is a delimiter string, which is used as a regular expression argument for a split operator. The delimiter string is optional. If it is not supplied, make_fieldsort splits each line using /s+/.

The second argument is an array reference containing one or more field specifiers. The specifiers indicate what fields in the strings will be used to sort the data. The specifier "1" indicates the first field, "2" indicates the second, and so on. A negative specifier like "-2" means to sort on the second field in reverse (descending) order. To indicate a numeric rather than alphabetic comparison, append "n" to the specifier. A specifier of "0" means the entire string ("-0" means the entire string, in reverse order).

The order in which the specifiers appear is the order in which they will be used to sort the data. The primary key is first, the secondary key is second, and so on.
fieldsort [1, 2], @data is roughly equivalent to make_fieldsort([1, 2])->(@data). Avoid calling fieldsort repeatedly with the same sort specifiers. If you need to use a particular sort more than once, it is more efficient to call make_fieldsort once and reuse the subroutine it returns.

stable_fieldsort and make_stable_fieldsort are like their "unstable" counterparts, except that the items that compare the same are maintained in their original order.

EXAMPLES

Some sample data (in array @data):

123 asd 1.22 asdd
32 ewq 2.32 asdd
43 rewq 2.12 ewet
51 erwt 34.2 ewet
23 erww 4.21 ewet
91 fdgs 3.43 ewet
123 refs 3.22 asdd
123 refs 4.32 asdd

# alpha sort on column 1
print fieldsort [1], @data;

123 asd 1.22 asdd
123 refs 3.22 asdd
123 refs 4.32 asdd
23 erww 4.21 ewet
32 ewq 2.32 asdd
43 rewq 2.12 ewet
51 erwt 34.2 ewet
91 fdgs 3.43 ewet

# numeric sort on column 1
print fieldsort [1n], @data;

23 erww 4.21 ewet
32 ewq 2.32 asdd
43 rewq 2.12 ewet
51 erwt 34.2 ewet
91 fdgs 3.43 ewet
123 asd 1.22 asdd
123 refs 3.22 asdd
123 refs 4.32 asdd

# reverse numeric sort on column 1
print fieldsort [-1n], @data;

123 asd 1.22 asdd
123 refs 3.22 asdd
123 refs 4.32 asdd
91 fdgs 3.43 ewet
51 erwt 34.2 ewet
43 rewq 2.12 ewet
32 ewq 2.32 asdd
23 erww 4.21 ewet

# alpha sort on column 2, then alpha on entire line
print fieldsort [2, 0], @data;

123 asd 1.22 asdd
51 erwt 34.2 ewet
23 erww 4.21 ewet
32 ewq 2.32 asdd
91 fdgs 3.43 ewet
123 refs 3.22 asdd
123 refs 4.32 asdd
43 rewq 2.12 ewet

# alpha sort on column 4, then numeric on column 1, then reverse
# numeric on column 3
print fieldsort [4, 1n, -3n], @data;

32 ewq 2.32 asdd
123 refs 4.32 asdd
123 refs 3.22 asdd
123 asd 1.22 asdd
23 erww 4.21 ewet
43 rewq 2.12 ewet
51 erwt 34.2 ewet
91 fdgs 3.43 ewet

# now, splitting on either literal period or whitespace
# sort numeric on column 4 (fractional part of decimals) then
# numeric on column 3 (whole part of decimals)
print fieldsort (?:.|s+), [4n, 3n], @data;

51 erwt 34.2 ewet
43 rewq 2.12 ewet
23 erww 4.21 ewet
123 asd 1.22 asdd
123 refs 3.22 asdd
32 ewq 2.32 asdd
123 refs 4.32 asdd
91 fdgs 3.43 ewet

# alpha sort on column 4, then numeric on the entire line
# NOTE: produces warnings under -w
print fieldsort [4, 0n], @data;

32 ewq 2.32 asdd
123 asd 1.22 asdd
123 refs 3.22 asdd
123 refs 4.32 asdd
23 erww 4.21 ewet
43 rewq 2.12 ewet
51 erwt 34.2 ewet
91 fdgs 3.43 ewet

# stable alpha sort on column 4 (maintains original relative order
# among items that compare the same)
print stable_fieldsort [4], @data;

123 asd 1.22 asdd
32 ewq 2.32 asdd
123 refs 3.22 asdd
123 refs 4.32 asdd
43 rewq 2.12 ewet
51 erwt 34.2 ewet
23 erww 4.21 ewet
91 fdgs 3.43 ewet


9

Crimson Fields 0.5.1


linux Games->Arcade Free
View Detail
Download Crimson Fields 0.5.1Download Crimson Fields 0.5.1
0.78 MB
Crimson Fields project is a tactical war game in the tradition of Battle Isle.

The outcome of the war lies in your hands. You decide which units are sent to the front lines, and when to unleash the reserves. Your mission objectives range from defending strategically vital locations to simply destroying all enemy forces in the area. Protect supply convoys or raid enemy facilities to uncover technological secrets or fill your storage bays so you can repair damaged units or build new ones in your own factories. Lead your troops to victory!

Tools are available to create custom maps and campaigns. You can also play the original Battle Isle maps if you have a copy of the game.

You can pit yourself against another human player either in hot-seat mode in front of the same machine or via e-mail, or against the computer.

Crimson Fields is distributed under the terms of the GNU General Public License (GPL). It has been developed and tested on Intel architecture with Linux, but it shouldnt be too hard to make it compile and run on other operating systems as well. So far it has been reported to work with Linux, various flavours of BSD, Sun Solaris, MacOS X, BeOS, and MS Windows.


10

Crimson Fields 0.3.4


mac Games->Others Free
View Detail
Download Crimson Fields 0.3.4Download Crimson Fields 0.3.4
1.2 MB
Crimson Fields is a tactical war game in the tradition of Battle Isle. The outcome of the war lies in your hands. You decide which units are sent to the front lines, and when to unleash the reserves. Your mission objectives range from defending strategically vital locations to simply destroying all enemy forces in the area.

Protect supply convoys or raid enemy facilities to uncover technological secrets or fill your storage bays so you can repair damaged units or build new ones in your own factories. Lead your troops to victory!

Tools are available to create custom maps and campaigns. You can also play the original Battle Isle maps if you have a copy of the game.
You can pit yourself against another human player either in hot-seat mode in front of the same machine or via e-mail, or against the computer.



11

Resizeable Form Fields 0.2.2


windows System->Browser Tweak Free
View Detail
Download Resizeable Form Fields 0.2.2Download Resizeable Form Fields 0.2.2
9 KB
Resizeable Form Fields - Resize HTML form fields, including textareas, text fields, select boxes and iframes


12

Resizeable Form Fields 0.2.1


linux Internet->Firefox Extensions Free
View Detail
Download Resizeable Form Fields 0.2.1Download Resizeable Form Fields 0.2.1
0.004 MB
Resizeable Form Fields is an extension which allows you to resize HTML form fields, including textareas, select boxes and more.

Resize HTML form fields, including textareas, select boxes, text fields, and iframes.


13

UnHide fields 0.2 for Firefox


linux Internet->Firefox Extensions Free
View Detail
Download UnHide fields 0.2 for FirefoxDownload UnHide fields 0.2 for Firefox
0.013 MB
UnHide fields provides this extension allow you to view and edit hidden fields content.

In computer science, data that has several parts can be divided into fields. For example, a computer may represent todays date as three distinct fields: the day, the month and the year.

Programming languages usually have a record data type to represent composite data types as a series of fields. An array of boolean values can be represented as a bit field.


14

Internet Address Fields N/A


windows Network Tools->Miscellaneous Network Tools Free
View Detail
Download Internet Address Fields N/ADownload Internet Address Fields N/A
50KB

Internet Address Fields” is a collection of three Cocoa classes, inherited from NSMatrix, which look like an NSTextField with an particular NSCustomFormatter.


It contains:

-IPv4 address field
-IPv4 netmask field
-IPv6 address field
15

7art Rainbow Fields 3D ScreenSaver 3.0


windows Home Shell Desktop->Misc Screen Savers Q Z $0
View Detail
Download 7art Rainbow Fields 3D ScreenSaver 3.0Download 7art Rainbow Fields 3D ScreenSaver 3.0
774K
With Rainbow Fields 3D screensaver your consiousness will get a chance to start percepting the special energy levels of reality. The synergy between the rainbow fields and your positive intentions will help you to realize your dreams directed to improvement of your everyday Life.

Rainbow Fields 3D will help you to concentrate your mind and strengthen your will while calming down your soul with soft visual pleasure coming from the screensaver.

16

Fields and Rivers Screensaver 1.0


windows Home Shell Desktop->Screen Savers $17.95
View Detail
Download Fields and Rivers Screensaver 1.0Download Fields and Rivers Screensaver 1.0
4.4 MB
This screensaver shows a beauty of fields and rivers. Gallery includes colorful images of mountains rivers, small rivers and waterfalls, great fields, mountains and plains, splendid green pastures, golden fields of wheat. This pictures have becalms effect for your eyes. Nice melodies will play in background. This screen saver contains 30 amazing images. All images in resolution 800x600 and High Color (24-bit).
17

Additional AutoCAD Fields - AutoField 2.1


windows Graphic Apps->CAD $99.00
View Detail
Download Additional AutoCAD Fields - AutoField 2.1Download Additional AutoCAD Fields - AutoField 2.1
1.6 MB
You can import a specific cell of the Excel file or a text format file as a field. Also you can use field to count block or calculate the area and length of multiple objects. These efficient fields will streamline your design. == http://www.cadig.com ==
18

Green Fields 3D Screensaver 1.4


windows Home Shell Desktop->People Screen Savers $17
View Detail
Download Green Fields 3D Screensaver 1.4Download Green Fields 3D Screensaver 1.4
1.95 MB
This animated 3D screensaver will take you out to the endless green fields that cover beautiful rolling hills in a distant land where no man has ever set foot. What can be better than absolutely gorgeous views of pristine nature with no signs of human intervention?

Green Fields 3D Screensaver is a desktop tool that display green fields pictures.

The purity and freshness are amazing! Fly over never-ending plains and enjoy the stunning beauty of the lush green grass and deep blue skies. Disconnect from the busy world around!

Limitations:

· Nag screen

19

Fields Screen Saver 1.5


mac Shell Desktop->Screensavers Free
View Detail
Download Fields Screen Saver 1.5Download Fields Screen Saver 1.5
132 KB
Fields is a small force field simulator for Mac OS X in the form of a screen saver. Particles react to each other creating interesting visual patterns.

Lots of parameters may be set to achieve different visual results in the simulation.

Whats New in This Release:

· Added Motion Blur setting
· Added different overlay methods
· Tweaked the presets
· little bug fixes here and there...

20

Clear Text Fields 0.0.1


windows System->Browser Tweak Free
View Detail
Download Clear Text Fields 0.0.1Download Clear Text Fields 0.0.1
10 KB
Clear Text Fields description
Firefox extension that allows you to right click form text inputs and clear their contents Clear Text Fields will allow you to right click form text inputs and clear their contents. This is handy for Linux/X11 users who want to clear a form element but dont want its contents placed in the clipboard, overwriting what you intended to paste into it.

Requirements:

· Firefox: 1.5 2.0.0

My Software


You have not saved any software. Click "Save" next to each software to save it to your software basket


Related Search