Sponsored Content
The Lounge What is on Your Mind? New CODE and ICODE Editor Button Icons Post 303027444 by Neo on Sunday 16th of December 2018 01:16:19 AM
Old 12-16-2018
OK... Bootstrap Update.

Have tested Bootstrap carousel for post attachments and Bootstrap does not work as good as our current attachment code using Swiper

Swiper - Most Modern Mobile Touch Slider

So, will not transition our attachment code in posts to Bootstrap from Swiper.

Bootstrap Carousel seems great if we had some big banner of slides at the top of a page with a bunch of images in carousel, which we don't have or need.

However, I may consider Bootstrap Carousel for the albums, but at this times, seems not necessary.
 

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Script for using the Back button and the Close button

Here's a question I have for anyone that might be able to help me: I can write a html script that will allow the user to return to the previous page using the back button, and I can write a script that will allow the user to return to the previous page using the close button, but...is there a... (1 Reply)
Discussion started by: mdgibson
1 Replies

2. UNIX for Dummies Questions & Answers

Changing middle mouse button for pasting to right mouse button in cygwin rxvt

Hi, I'm using rxvt in Cygwin and I'm wondering how to change my mouse bindings from the middle button for pasting to the right button. The main reason why I want to do this is because my laptop doesn't have a middle mouse button. Thanks for any help! (2 Replies)
Discussion started by: sayeo
2 Replies

3. Post Here to Contact Site Administrators and Moderators

Alternative button for code tags

I am aware of the many issues surrounding posters not using code tags around code or data. Could we somewhat alleviate this issue by having a better icon that shows more clearly its function? (37 Replies)
Discussion started by: figaro
37 Replies

4. What is on Your Mind?

New jQuery to view Post Icons in Editor

I was reformatting the "advanced" WYSIWYG editor with bootstrap css and while there made the post icons to be invisible by default; so if you click on the text below the editor: Post Icons - Click to view the full list of message icons to add to your post: ... (0 Replies)
Discussion started by: Neo
0 Replies

5. Web Development

New Font Awesome Icons in Quick Reply Editor

Working on the Quick Reply Editor, I have replaced a number of icons (see image below) with Font Awesome Icons. Was planning to replace all of them, but for some reason, replacing a few of them causes the script / template to break (which is odd) so I left them for now. ... (6 Replies)
Discussion started by: Neo
6 Replies
Math::Random::OO(3pm)					User Contributed Perl Documentation				     Math::Random::OO(3pm)

NAME
Math::Random::OO - Consistent object-oriented interface for generating random numbers SYNOPSIS
# Using factory functions use Math::Random::OO qw( Uniform UniformInt ); push @prngs, Uniform(), UniformInt(1,6); # Explicit creation of subclasses use Math::Random::OO::Normal; push @prngs, Math::Random::OO::Normal->new(0,2); $_->seed(23) for (@prngs); print( $_->next(), " ") for (@prngs); DESCRIPTION
CPAN contains many modules for generating random numbers in various ways and from various probability distributions using pseudo-random number generation algorithms or other entropy sources. (The "SEE ALSO" section has some examples.) Unfortunately, no standard interface exists across these modules. This module defines an abstract interface for random number generation. Subclasses of this model will implement specific types of random number generators or will wrap existing random number generators. This consistency will come at the cost of some efficiency, but will enable generic routines to be written that can manipulate any provided random number generator that adheres to the interface. E.g., a stochastic simulation could take a number of user-supplied parameters, each of which is a Math::Random::OO subclass object and which represent a stochastic variable with a particular probability distribution. USAGE
Factory Functions use Math::Random::OO qw( Uniform UniformInt Normal Bootstrap ); $uniform = Uniform(-1,1); $uni_int = UniformInt(1,6); $normal = Normal(1,1); $boot = Bootstrap( 2, 3, 3, 4, 4, 4, 5, 5, 5 ); In addition to defining the abstract interface for subclasses, this module imports subclasses and exports factory functions upon request to simplify creating many random number generators at once without typing "Math::Random::OO::Subclass->new()" each time. The factory function names are the same as the suffix of the subclass following "Math::Random::OO". When called, they pass their arguments directly to the "new" constructor method of the corresponding subclass and return a new object of the subclass type. Supported functions and their subclasses include: o "Uniform" -- Math::Random::OO::Uniform (uniform distribution over a range) o "UniformInt" -- Math::Random::OO::UniformInt (uniform distribution of integers over a range) o "Normal" -- Math::Random::OO::Normal (normal distribution with specified mean and standard deviation) o "Bootstrap" -- Math::Random::OO::Bootstrap (bootstrap resampling from a non-parameteric distribution) INTERFACE
All Math::Random::OO subclasses must follow a standard interface. They must provide a "new" method, a "seed" method, and a "next" method. Specific details are left to each interface. "new" This is the standard constructor. Each subclass will define parameters specific to the subclass. "seed" $prng->seed( @seeds ); This method takes seed (or list of seeds) and uses it to set the initial state of the random number generator. As some subclasses may optionally use/require a list of seeds, the interface mandates that a list must be acceptable. Generators requiring a single seed must use the first value in the list. As seeds may be passed to the built-in "srand()" function, they may be truncated as integers, so 0.12 and 0.34 would be the same seed. "next" $rnd = $prng->next(); This method returns the next random number from the random number generator. It does not take (and must not use) any parameters. BUGS
Please report bugs using the CPAN Request Tracker at http://rt.cpan.org/NoAuth/Bugs.html?Dist=Math-Random-OO AUTHOR
David A Golden <dagolden@cpan.org> http://dagolden.com/ COPYRIGHT
Copyright (c) 2004, 2005 by David A. Golden This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. SEE ALSO
This is not an exhaustive list -- search CPAN for that -- but represents some of the more common or established random number generators that I've come across. Math::Random -- multiple random number generators for different distributions (a port of the C randlib) Math::Rand48 -- perl bindings for the drand48 library (according to perl56delta, this may already be the default after perl 5.005_52 if available) Math::Random::MT -- The Mersenne Twister PRNG (good and fast) Math::TrulyRandom -- an interface to random numbers from interrupt timing discrepancies perl v5.10.0 2009-05-02 Math::Random::OO(3pm)
All times are GMT -4. The time now is 12:01 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy