website

website.git
git clone git://git.lenczewski.org/website.git
Log | Files | Refs

index.html (3823B)


      1 <div class="text-center">
      2   <h2 id="about">About</h2>
      3   <p>
      4     Hi, I'm MikoĊ‚aj. I like programming, physics, swimming, and karate. A 
      5     link to a few of my platform profiles can be found below, alongside some 
      6     of my current projects.
      7   </p>
      8 </div>
      9 
     10 <div class="text-center">
     11   <h2 id="find-me">Find Me</h2>
     12   <p>Here are a few links to platforms I'm on:</p>
     13   </p>
     14   <span>
     15     <a href="https://www.linkedin.com/in/mblenczewski/" target="_blank" rel="noopener noreferrer">LinkedIn</a>
     16     <a href="https://www.twitch.tv/mblenczewski" target="_blank" rel="noopener noreferrer">Twitch</a>
     17   </span>
     18 </div>
     19 
     20 <div class="text-center">
     21   <h3 id="security">Security</h3>
     22   <p>
     23     Although stale, a copy of my GPG pubkey can be found
     24     <span><a href="/gpg.pub.asc" target="_blank" rel="noopener noreferrer">here</a></span>.
     25   </p>
     26 </div>
     27 
     28 <div> 
     29   <h2 id="projects">My Projects:</h2>
     30   <div class="text-center">
     31     <p>
     32       The following list of projects is incomplete! You can view more by going to
     33       <span><a href="https://git.lenczewski.org" target="_blank" rel="noopener noreferrer">my git instance</a></span>.
     34       I also have an unused
     35       <span><a href="https://github.com/mblenczewski" target="_blank" rel="noopener noreferrer">GitHub account</a></span>.
     36     </p>
     37   </div>
     38   <div>
     39     <div class="project">
     40       <img class="d-none d-lg-block d-xl-block project-thumbnail" />
     41       <div>
     42         cdoku - <a href="https://github.com/mblenczewski/cdoku" target="_blank" rel="noopener noreferrer">GitHub</a>
     43         <br />
     44         cdoku is a sudoku solver implementation in C, using Knuth's Algorith X.
     45         It can read arbitrary size grids (in a specific text format) and solve 
     46         them. It implements the dancing links optimisation, and can solve a 
     47         3x3 grid in around 10-20 ms.
     48       </div>
     49     </div>
     50     <hr />
     51     <div class="project">
     52       <img class="d-none d-lg-block d-xl-block project-thumbnail" />
     53       <div>
     54         HyperMan
     55         <br />
     56         I am current working as part of the University of Manchester Hyperloop 
     57         team, working on the software engineering team. I am working on an 
     58         embedded control system for the pod written in C++ with a test-driven
     59         approach.
     60       </div>
     61     </div>
     62     <hr />
     63     <div class="project">
     64       <img class="d-none d-lg-block d-xl-block project-thumbnail" />
     65       <div>
     66         NetSharp - <a href="https://github.com/mblenczewski/NetSharp" target="_blank" rel="noopener noreferrer">GitHub</a>
     67         <br />
     68         NetSharp is a (relatively) low-level networking library written in C#. 
     69         I am writing it using the Event-driven Asynchronous Pattern (EAP) to 
     70         get as high a bandwidth as possible.
     71       </div>
     72     </div>
     73     <hr />
     74     <div class="project">
     75       <img class="d-none d-lg-block d-xl-block project-thumbnail" />
     76       <div>
     77         clfs-bootstrap - <a href="https://github.com/mblenczewski/clfs-bootstrap" target="_blank" rel="noopener noreferrer">GitHub</a>
     78         <br />
     79         This is my custom Linux "distribution". I wrote it following the "Cross 
     80         Linux From Scratch" guide (found <a href="https://trac.clfs.org">here</a>),
     81         but have since refactored the build script and updated the packages used.
     82       </div>
     83     </div>
     84     <hr />
     85     <div class="project">
     86       <img class="d-none d-lg-block d-xl-block project-thumbnail" />
     87       <div>
     88         StarSim - <a href="https://github.com/mblenczewski/StarSim" target="_blank" rel="noopener noreferrer">GitHub</a>
     89         <br />
     90         StarSim was my A-Level computer science coursework, and is a 3D N-Body 
     91         simulator using the Barnes-Hutt algorithm. It also features a backing 
     92         database so that created systems can be exported, or imported to simulate.
     93       </div>
     94     </div>
     95   </div>
     96 </div>