Skip to content

Commit

Permalink
cleaned up inception
Browse files Browse the repository at this point in the history
  • Loading branch information
gvarnavi committed May 26, 2024
1 parent 2527891 commit 3cfc435
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 36 deletions.
52 changes: 17 additions & 35 deletions src/inception.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,56 +4,38 @@ toc: false
theme: [air, alt, wide]
---

<style>

.img-container {
text-align: center;
}

.img-container img {
position: absolute;
left:50%;
transform: translateX(-50%);
}

</style>

```js
// IMAGES

const img_src_mitnano = FileAttachment("./imgs/MIT-nano-exterior_0.jpg").href;

function return_img(src, size) {
return html` <img src="${src}" height="${size}px" width="${size}px" /> `;
}
const img_src = FileAttachment("./imgs/MIT-nano-exterior_0.jpg").href;
const img_style = "object-fit:cover; border-radius: 0.75rem;";
import { return_resized_img } from "./components/img_utils.js";
```

<div class= "grid grid-cols-2">
<div class="card">
<h1> One.MIT Inception</h1>

*“MIT.nano sits in the shadow of MIT’s Great Dome, and our responsibility is to enhance the work and aspirations of the entire campus. We wanted a way to celebrate all of us instead of just a few — a monument to the MIT community made using the tools of nanoscale research.” --- Prof. Vladimir Bulović*

The One.MIT project started with a simple, elegant idea.
:::card

In early 2016, while in the planning stages for the structure that would become the Lisa T. Su Building (Building 12) and home of MIT.nano, Prof. Vladimir Bulovic was struck by a thought: if we had the names of everyone -- students, faculty, staff, and alumni -- who has been a part of the MIT community since the Institute opened in 1861 all the way up to the present day, could we etch them all into a single, 6" diameter silicon wafer?
# One.MIT Inception

The result - a surprisingly complex endeavor that involved months of work from a dedicated team and contributions from individuals across the Institute - is **One.MIT**.
> “MIT.nano sits in the shadow of MIT’s Great Dome, and our responsibility is to enhance the work and aspirations of the entire campus. We wanted a way to celebrate all of us instead of just a few &ndash; a monument to the MIT community made using the tools of nanoscale research.” ~ Prof. Vladimir Bulović
Each design -- the Great Dome (2018), the MIT Seal (2020), and the Move to Cambridge (2024) -- reflects the growth of the MIT community as new students, new faculty, and new staff join each year. In Bulovic's words, “One.MIT celebrates the MIT ethos and reminds us that no matter when we came to MIT, whatever our roles, we all leave a mark on this remarkable community.”
In early 2016, while in the planning stages for the structure that would become the <a href="https://whereis.mit.edu/?go=12">Lisa T. Su Building</a> and home of MIT.nano, Prof. Vladimir Bulovic was struck by a thought: if we had the names of everyone &ndash; students, faculty, staff, and alumni &ndash; who has been a part of the MIT community since the Institute opened in 1861 all the way up to the present day, could we etch them all into a single, 6" diameter silicon wafer?

<br>
The result &ndash; a surprisingly complex endeavor that involved months of work from a dedicated team and contributions from individuals across the Institute &ndash; is **One.MIT**.

_The One.MIT artwork and specially fabricated wafers are on display in the ground floor galleries at MIT.nano in the Lisa T. Su Building (<a href="https://whereis.mit.edu/?go=12">Building 12</a>). The <a href="https://onemit.mit.edu">onemit.mit.edu</a> interactive website allows visitors to search for individual names in each design._
Each design &ndash; the Great Dome (2018), the MIT Seal (2020), and the Move to Cambridge (2024) &ndash; reflects the growth of the MIT community as new students, new faculty, and new staff join each year.
In Bulovic's words, “One.MIT celebrates the MIT ethos and reminds us that no matter when we came to MIT, whatever our roles, we all leave a mark on this remarkable community.”

<br>
The One.MIT artwork and specially fabricated wafers are on permanent display in the ground floor galleries at MIT.nano in the <a href="https://whereis.mit.edu/?go=12">Lisa T. Su Building</a>.
The [onemit.mit.edu]("https://onemit.mit.edu") interactive website allows visitors to search for individual names in each design.

_(Image: MIT.nano in the Lisa T. Su Building (<a href="https://whereis.mit.edu/?go=12">Building 12</a>), opened in 2018.)_
(Image: MIT.nano in the <a href="https://whereis.mit.edu/?go=12">Lisa T. Su Building</a>, opened in 2018.)

</div>
:::

<div class="card">
${resize((width,height)=> return_img(img_src_mitnano,Math.min(width,height)))}
</div>
<div style="min-height:500px;">
${resize((width,height)=> return_resized_img(img_src,width,height,img_style))}
</div>

</div>
2 changes: 1 addition & 1 deletion src/onemit2018.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ text_input_mit_input.dispatchEvent(new Event("input", { bubbles: true }));

<div class="grid grid-cols-3" style="grid-auto-rows: min-content;">
<div class="grid-colspan-3 search-box-container">
${resize((width,height)=> return_resized_img(img_src, width,height, img_style))}
${resize((width,height)=> return_resized_img(img_src, width, height, img_style))}
<div class="centered-text">
<div class="search-heading"> Start typing a name..</div>
${text_input_mit_input}
Expand Down

0 comments on commit 3cfc435

Please sign in to comment.