blob: b0244cb59fa5c906da6dd17db520126b69e07d51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import React from 'react'
import ScreenshotSection from './ScreenshotSection'
const ModelingSection = () => (
<ScreenshotSection
name="project"
title="Datacenter Simulation"
imageUrl="/img/screenshot-simulation-zoom.png"
caption="Running an experiment in OpenDC"
imageIsRight={false}
>
<h3>Working with OpenDC:</h3>
<ul>
<li>Seamlessly switch between construction and simulation modes</li>
<li>Choose one of several predefined workloads (Big Data, Bag of Tasks, Hadoop, etc.)</li>
<li>Play, pause, and skip around the informative simulation timeline</li>
<li>Visualize and demo live</li>
</ul>
</ScreenshotSection>
)
export default ModelingSection
|