linux operating commands and unix operating commands

FedRAMP Series: Introduction

 
Thread Tools Search this Thread
# 1  
Old 11-12-2010
FedRAMP Series: Introduction

Since the recent release of the Federal Risk and Authorization Management Program or FedRAMP (as it is being abbreviated), I though it would be appropriate to establish a blog series dedicated to exploring the "Proposed Security Assessment and Authorization for U.S. Government Cloud Computing" draft.

For those not familiar with FedRAMP, is is being designated as a standard approach to Assessing and Authorizing (A&A) cloud computing services and products.  Essentially an "approve once, and use often" approach.

FedRAMP URL: www.fedramp.gov

Look for a follow up to this series with the title labeled - FedRAMP Series.

Image
Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. What is on Your Mind?

Introduction

Hi everyone. I am not really a new member i was once a member using the handle despiragado. I now wish to be identified with my new handle. It's been a while i have last visited the forum to see whats happening. I guess a lot has happened. I will try to read up and keep up to date. I am a... (3 Replies)
Discussion started by: split_func0
3 Replies

2. What is on Your Mind?

Introduction

Hello, I couldn't find an actual introduction thread, so I decided to just put this here. I go by d0wngrade online. I have been programming in multiple languages for about 15+ years. I started with standard web design languages like HTML and CSS, but I then advanced from design to development... (2 Replies)
Discussion started by: d0wngrade
2 Replies
Login or Register to Ask a Question
Chart::Clicker::Data::Series::HighLow(3pm)		User Contributed Perl Documentation		Chart::Clicker::Data::Series::HighLow(3pm)

NAME
Chart::Clicker::Data::Series::HighLow - Series data with additional attributes for High-Low charts VERSION
version 2.83 SYNOPSIS
use Chart::Clicker::Data::Series::HighLow; my @keys = (); my @values = (); my @highs = (); my @lows = (); my @opens = (); my $series = Chart::Clicker::Data::Series::HighLow->new({ keys => @keys, values => @values, highs => @highs, lows => @lows, opens => @opens }); DESCRIPTION
Chart::Clicker::Data::Series::HighLow is an extension of the Series class that provides storage for a three new variables called for use with the CandleStick renderer. The general idea is: --- <-- High | | - <-- max of Open, Value | | | | - <-- min of Open, Value | | --- <-- Low ATTRIBUTES
highs Set/Get the highs for this series. lows Set/Get the lows for this series. opens Set/Get the opens for this series. METHODS
add_to_highs Adds a high to this series. get_high ($index) Get a high by it's index. high_count Gets the count of sizes in this series. add_to_lows Adds a high to this series. get_low ($index) Get a low by it's index. low_count Gets the count of lows in this series. add_to_opens Adds an open to this series. get_open Get an open by it's index. open_count Gets the count of opens in this series. AUTHOR
Cory G Watson <gphat@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Cold Hard Code, LLC. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-22 Chart::Clicker::Data::Series::HighLow(3pm)