Test Category

Test page

live-test
AWS
2 minute read
David Cramer

Lorem Ipsum

“Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit…”

“There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain…”

What is Lorem Ipsum?

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularized in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Why do we use it?

It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.

public abstract class Shape {
public abstract double calculateArea();
public abstract double calculatePerimeter();
// ... common methods and fields
}
public class Circle extends Shape {
private double radius;
// ... constructor and other methods
@Override
public double calculateArea() {
return Math.PI * radius * radius;
}
@Override
public double calculatePerimeter() {
return 2 * Math.PI * radius;
}
}
public class Square extends Shape {
private double side;
// ... constructor and other methods
@Override
public double calculateArea() {
return side * side;
}
@Override
public double calculatePerimeter() {
return 4 * side;
}
}
  1. Modularization: Encourage modular code design, where functionality is divided into distinct modules or classes. This approach promotes reusability and reduces duplication by encapsulating related functionality in separate units.
  2. Code Reviews: Regular code reviews with a focus on redundancy can help catch and rectify redundant code early in the development process. Peer code reviews provide an opportunity to identify and eliminate redundancy through collaboration and feedback.
  3. Continuous Refactoring: Embrace an iterative approach to software development, continuously refactoring code to eliminate redundancy and improve overall code quality. Refactoring should be an ongoing process, allowing the codebase to evolve and adapt to changing requirements while minimizing redundancy.

The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using ‘Content here, content here’, making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for ‘lorem ipsum’ will uncover many web sites still in their infancy.

Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).

Be a Digital Business Hero

Optimize your mainframe capacity for performance, availability, and cost


These postings are my own and do not necessarily represent BMC's position, strategies, or opinion.

See an error or have a suggestion? Please let us know by emailing blogs@bmc.com.

BMC Bring the A-Game

From core to cloud to edge, BMC delivers the software and services that enable nearly 10,000 global customers, including 84% of the Forbes Global 100, to thrive in their ongoing evolution to an Autonomous Digital Enterprise.
Learn more about BMC ›

About the author

David Cramer

David Cramer joined BMC in 2015 and serves as Vice President of Product Management for the Cloud/DCA business unit. Prior to BMC, David was head of product management for CA Technologies. During his tenure at CA, David was responsible for application delivery, cloud management, virtualization and Infrastructure automation solutions. Before joining CA, David held executive positions at AlterPoint, Motive, NetSolve, and Nortel Networks. David’s focus is on Continuous Delivery, Cloud Management and web scale IT. David received his MBA from Southern Methodist University and a BS in Finance from Georgia State University.