Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.479.657 Times

Group Iterator freeware
Filter: All | Freeware | Demo
 

Group Iterator

1 2 3 4 5 > 
Added: May 10, 2013 | Visits: 318

Group iterator into n-tuples with None padding This script groups the elements returned by an iterator into n-tuples. The final tuple may be padded with Nones. Platforms: Windows, Mac, *nix, Python, BSD Solaris


Added: April 07, 2010 | Visits: 810

SPOPS::Iterator SPOPS::Iterator is a class to cycle through results and return SPOPS objects. SYNOPSIS my $iter = $spops_class->fetch_iterator({ where => last_name like ?, value => [ smi% ] }); while ( $iter->has_next ) { my $object = $iter->get_next; print "Object ID: ", $object->id, " at position: ",... Platforms: *nix

License: Freeware Size: 286.72 KB Download (88): SPOPS::Iterator Download

Added: January 18, 2010 | Visits: 1.028

Net::Delicious::Iterator Net::Delicious::Iterator is an iterator class for Net::Delicious thingies. SYNOPSIS use Net::Delicious::Iterator; my @dates = ({...},{...}); my $it = Net::Delicious::Iterator->new("Date",@dates); while (my $d = $it->next()) { # Do stuff with $d here } NOTES It isnt really expected... Platforms: *nix

License: Freeware Size: 18.43 KB Download (101): Net::Delicious::Iterator Download

Added: January 08, 2010 | Visits: 1.132

Async::Group Async::Group is a Perl class to deal with simultaneous asynchronous calls. SYNOPSIS use Async::Group ; use strict ; sub sub1 { print "Dummy subroutine n"; my $dummy = shift ; my $cb = shift ; &$cb(1); } sub allDone { print "All done, result is ", shift ,"n" ; } my $a =... Platforms: *nix

License: Freeware Size: 4.1 KB Download (105): Async::Group Download

Added: August 21, 2010 | Visits: 1.941

GROUP-E GROUP-E project is collaboration software which integrates groupware, project management, and business server on one platform. The solution is based on a LAMP architecture (Linux, Apache, MySQL, PHP). GROUP-E offers project management, transparent Samba (file server) integration, integration of... Platforms: *nix

License: Freeware Download (99): GROUP-E Download

Added: May 12, 2010 | Visits: 708

Iterator::Util Iterator::Util Perl package contains essential utilities for the Iterator class. SYNOPSIS use Iterator::Util; # Transform sequences $iterator = imap { transformation code } $some_other_iterator; # Filter sequences $iterator = igrep { condition code } $some_other_iterator; # Range of... Platforms: *nix

License: Freeware Size: 20.48 KB Download (93): Iterator::Util Download

Added: September 22, 2010 | Visits: 732

Iterator::Misc Iterator::Misc Perl module package contains miscellaneous iterator functions. SYNOPSIS use Iterator::Misc; # Permute the elements of a list: $iter = ipermute (@items); # Select only every nth value of an iterator $iter = inth ($n, $another_iterator); # Randomly select iterator values... Platforms: *nix

License: Freeware Size: 12.29 KB Download (88): Iterator::Misc Download

Added: July 11, 2010 | Visits: 841

Iterator Iterator is a general-purpose iterator class. SYNOPSIS use Iterator; # Making your own iterators from scratch: $iterator = Iterator->new ( sub { code } ); # Accessing an iterators values in turn: $next_value = $iterator->value(); # Is the iterator out of values? $boolean =... Platforms: *nix

License: Freeware Size: 22.53 KB Download (89): Iterator Download

Added: March 05, 2010 | Visits: 762

Iterator::IO Iterator::IO is a Perl module with filesystem and stream iterators. SYNOPSIS use Iterator::IO; # Return the names of files in a directory (except . and ..) $iter = idir_listing ($path); # Return all the files in a directory tree, one at a time. # Like File::Find, in slow motion. $iter... Platforms: *nix

License: Freeware Size: 14.34 KB Download (88): Iterator::IO Download

Added: June 10, 2010 | Visits: 1.317

Gtk2::Ex::MindMapView::Layout::Group Gtk2::Ex::MindMapView::Layout::Group is a group of items displayed on canvas. SYNOPSIS use base Gtk2::Ex::MindMapView::Layout::Group; Base class for the layout modules. This module is internal to Gtk2::Ex::MindMapView. INTERFACE new() Instantiates an object and intializes the x, y,... Platforms: *nix

License: Freeware Size: 50.18 KB Download (102): Gtk2::Ex::MindMapView::Layout::Group Download

Added: April 24, 2010 | Visits: 1.185

Group Shell Group Shell is a tool to aggregate several remote shells into one. It is used to launch an interactive remote shell on many machines at once. Group Shell is written in Python and requires Python ≥ 2.4. There is a control shell accessible with Ctrl-C that is used to list some information about... Platforms: *nix

License: Freeware Size: 24.58 KB Download (99): Group Shell Download

Added: March 15, 2010 | Visits: 1.188

Group User Folder Group User Folder provides a Zope Product that manages Groups of Users. GroupUserFolder is a kind of user folder that provides a special kind of user management. Some users are "flagged" as GROUP and then normal users will be able to belong to one or serveral groups. Whats New in This... Platforms: *nix

License: Freeware Size: 512 KB Download (98): Group User Folder Download

Added: May 10, 2013 | Visits: 1.469

Yahoo Group Archiver Yahoo Group Archiver is a collection of scripts to interact with Yahoo Groups and download various sections of each group to your local workspace.Scripts Features: - yahoogroup-messages: Downloads all the messages from a group in the order in which they were received. Yahoo has user based and... Platforms: Windows, Mac, *nix, Perl, BSD Solaris

License: Freeware Download (128): Yahoo Group Archiver Download

Added: May 22, 2010 | Visits: 1.144

RealizationEngine Group Communicator The RealizationEngine is designed from the ground up to facilitate group communication and collaboration. It will store that communication to built and manage an institutional knowledge base. It is accessible from any Web browser or Web-enabled device. Classified information is easily... Platforms: *nix

License: Freeware Size: 61.44 KB Download (96): RealizationEngine Group Communicator Download

Added: January 18, 2010 | Visits: 2.229

Math::Group::Thompson Math::Group::Thompson Perl module contains OO methods that calculates the cardinality of the ball of radius n of Thompson group F. SYNOPSIS use Math::Group::Thompson; my $F = Math::Group::Thompson->new( VERBOSE => 0 ); my $card = $F->cardBn(3,); print "#B(3) = $cardn"; The... Platforms: *nix

License: Freeware Size: 6.14 KB Download (97): Math::Group::Thompson Download

Added: April 25, 2010 | Visits: 719

Array::Iterator Array::Iterator is a simple class for iterating over Perl arrays. SYNOPSIS use Array::Iterator; # create an iterator with an array my $i = Array::Iterator->new(1 .. 100); # create an iterator with an array reference my $i = Array::Iterator->new(@array); # create an iterator with a... Platforms: *nix

License: Freeware Size: 10.24 KB Download (99): Array::Iterator Download

Added: May 07, 2010 | Visits: 1.567

Java iCal Group Scheduler Java iCal Group Scheduler enables several users to get together for a meeting, by using JICAL to translate their iCalendar files into their available free/busy time and post it automatically to your Web server. This project enables Ximian Evolution desktop users to book meetings with each other... Platforms: *nix

License: Freeware Size: 2.44 MB Download (106): Java iCal Group Scheduler Download

Added: March 17, 2010 | Visits: 647

Iterator::BreakOn Iterator::BreakOn is a Perl module to create iterators with control flow breaks. SYNOPSIS use Iterator::BreakOn; # # get a generic data source with a next method implemented whom # returns a generic object # # in this example the order of the items in the data stream is assumed # to... Platforms: *nix

License: Freeware Size: 13.31 KB Download (89): Iterator::BreakOn Download

Released: May 01, 2014  |  Added: May 28, 2014 | Visits: 1.664

Netwrix Group Policy Backup and Restore Group Policy is a key component of every Active Directory infrastructure and without regular backup and quick recovery capabilities can lead to system failures and downtime, user frustration, and security issues. Netwrix Group Policy Backup and Restore is a freeware product for automated... Platforms: Windows, Windows 7, Windows Server

License: Freeware Size: 6.26 MB Download (138): Netwrix Group Policy Backup and Restore Download

Released: April 01, 2014  |  Added: May 04, 2014 | Visits: 1.334

Netwrix Group Policy Change Reporter Group Policy change auditing is highly important for all organizations utilizing Group Policy in their IT environments. Native Group Policy management tools don't offer built-in auditing capabilities. Manual audit of changes made to security policies, desktop configurations, software deployment... Platforms: Windows, Windows 7, Windows Server

License: Freeware Size: 6.26 MB Download (116): Netwrix Group Policy Change Reporter Download

1 2 3 4 5 >