edryd.org

some of my neat stuff
git clone git://edryd.org/edryd.org
Log | Files | Refs | LICENSE

index.html (7098B)


      1 {{ define "main" }}
      2     <section id="about" class="text">
      3       <div class="container">
      4         <div class="row">
      5           <div class="col-lg-6">
      6             <h2 class="heading">ED VAN BRUGGEN</h2>
      7             <!-- TODO move to own markdown file -->
      8             <p>Physics PhD student at UMass Amherst, currently working in the <a
      9               href="https://nexo.llnl.gov/">nEXO collaboration</a> searching for <a
     10               href="https://en.wikipedia.org/wiki/Neutrinoless_double_beta_decay">neutrinoless double beta decay</a>. Detecting this decay for the first time would
     11             allow us to directly measure the mass of <a
     12               href="https://en.wikipedia.org/wiki/Neutrino">neutrinos</a>, furthering our understanding of the universe
     13             <a href="https://en.wikipedia.org/wiki/Physics_beyond_the_Standard_Model">beyond the standard model</a> of particle physics.</p>
     14             <p>In our lab, we characterize <a
     15               href="https://en.wikipedia.org/wiki/Silicon_photomultiplier">Silicon PhotoMultipliers</a> by detecting <a
     16               href="https://github.com/Pocar-Lab/SPE-Analysis">single photon events</a>.
     17             </p>
     18             <p>Previously, I studied new Dark Higgs models to explore direct dark
     19             matter production at the Large Hadron Collider, and developed a project
     20             to automate <a
     21               href="https://iris-hep.org/fellows/edvanbruggen.html">truth-level reinterpretations</a>
     22             of particle physics analyses. I also did work
     23             simulating protein folding for <a
     24               href="https://2018.igem.org/Team:Washington">chemically induced dimerization of nanobodies</a>, allowing for the creation of single
     25             small molecule biosensors.</p>
     26             <p>Lead web developer for <a href="https://projectmhea.org">Mental Health for Every Adolescent</a>.</p>
     27             </p>
     28           </div>
     29           <div class="col-8 col-lg-5 mx-auto">
     30             <p><img src="img/ed.jpg" class="img-fluid rounded-circle"></p>
     31             <div class="links text-center display-4">
     32               {{ partial "links.html" }}
     33             </div>
     34             {{ partial "quote.html" (index (shuffle $.Site.Data.quotes.quotes) 0) }}
     35           </div>
     36         </div>
     37       </div>
     38     </section>
     39 
     40     <section id="photos" class="section-inverse slant-up">
     41       <div class="container clearfix">
     42         <div class="row">
     43           <div class="col-lg-12">
     44             <h2 class="heading">PHOTOS</h2>
     45             <div class="row photos">
     46               {{- $files := shuffle (readDir "/static/img/photos/best") }}
     47               {{- range first 5 $files -}}
     48                 {{- $imgURL := print "/img/photos/best/" .Name | relURL }}
     49                 <a href="{{ $imgURL }}" data-lightbox="image-1">
     50                   <!-- TODO generate thumbnail -->
     51                   <img src="{{ $imgURL }}" alt="image">
     52                 </a>
     53               {{- end }}
     54             </div>
     55             <div class="col-md-2 offset-md-5 btn-effect">
     56               <a class="btn btn-block" href="photos">
     57                 See More <i class="fa ml-2 fa-camera"></i>
     58               </a>
     59             </div>
     60           </div>
     61         </div>
     62     </section>
     63 
     64     <section id="posts">
     65       <div class="container">
     66         <div class="row">
     67           <div class="col-lg-12">
     68             <h2 class="heading">POSTS</h2>
     69             <div class="box">
     70               {{ range first 5 .Site.RegularPages }}
     71                 {{ .Render "summary" }}
     72               {{ end }}
     73             </div>
     74             <div class="col-md-2 offset-md-5 btn-effect">
     75               <a class="btn btn-block" href="posts">
     76                 See More <i class="far fa-newspaper ml-2"></i>
     77               </a>
     78             </div>
     79           </div>
     80         </div>
     81       </div>
     82     </section>
     83 
     84     <section id="projects" class="section-grey slant-up">
     85       <div class="container">
     86         <div class="row">
     87           <div class="col-lg-12">
     88             <h2 class="heading">PROJECTS</h2>
     89             {{ range first 5 .Site.Data.projects.code }}
     90               <div class="row text-inc">
     91                 {{ $link := or .link (path.Join "projects/" .name | relURL) }}
     92                 <div class="col-lg-4 text-lg-right"><a href="{{ $link }}">{{ .name }}</a></div>
     93                 <div class="col-lg-8"><a href="{{ $link }}" class="italic-off text-primary">{{ .desc }}</a></div>
     94               </div>
     95             {{ end }}
     96             <div class="col-sm-2 offset-sm-5 btn-effect">
     97               <a class="btn btn-block" href="projects">
     98                 See More <i class="fa fa-rocket ml-2"></i>
     99               </a>
    100             </div>
    101           </div>
    102         </div>
    103       </div>
    104     </section>
    105 
    106     <section id="contact" style="background-color: #fff;" class="pb-4">
    107       <div class="container">
    108         <div class="row">
    109           <div class="col-lg-12">
    110             <h2 class="heading">CONTACT</h2>
    111             <div class="row">
    112               <div class="col-lg-6 offset-lg-3">
    113                 <form id="contact-form" action="https://formspree.io/f/xqkwbggr" method="POST" class="contact-form">
    114                   <div class="controls">
    115                     <div class="form-group">
    116                       <input type="text" name="name" placeholder="Name" required="required" class="form-control">
    117                     </div>
    118                     <div class="form-group">
    119                       <input type="email" name="email" placeholder="Email" required="required" class="form-control">
    120                     </div>
    121                     <div class="form-group">
    122                       <textarea rows="4" name="message" placeholder="Message" required="required" class="form-control"></textarea>
    123                     </div>
    124                     <div class="text-center">
    125                       <button type="submit" name="name" class="btn btn-outline-primary btn-block">
    126                         Send <i class="fa ml-2 fa-paper-plane"></i>
    127                       </button>
    128                     </div>
    129                   </div>
    130                 </form>
    131               </div>
    132               <!-- <div class="col-lg-6"> -->
    133               <!--   <p>Feel free to contact me about any questions or comments you might have. I also do freelance website design and hosting.</p> -->
    134               <!--   <div class="text-center display-4"> -->
    135               <!--     <a href="contact" class="change-icon"> -->
    136               <!--       <i class="fa fa-envelope"></i> -->
    137               <!--       <i class="fa fa-envelope-open"></i> -->
    138               <!--     </a> -->
    139               <!--     <a href="https://www.linkedin.com/in/ed-van-bruggen-58a379171/" class="fa fa-linkedin-square"></a> -->
    140               <!--     <a href="https://github.com/edvb" class="fa fa-github"></a> -->
    141               <!--     <a href="https://git.edryd.org" class="fa fa-git"></a> -->
    142               <!--     <!-1- <a href="{{ "/feed.xml" | relURL }}" class="fa fa-rss"></a> -1-> -->
    143               <!--   </div> -->
    144               <!-- </div> -->
    145             </div>
    146           </div>
    147         </div>
    148       </div>
    149     </section>
    150 {{ end }}