chris.bracken.jp

Statically generated site for chris.bracken.jp
git clone https://git.bracken.jp/chris.bracken.jp.git
Log | Files | Refs

index.html (3527B)


      1 <!doctype html>
      2 <html lang="en">
      3 <head>
      4 <meta charset="utf-8">
      5 <meta name="viewport" content="width=device-width, initial-scale=1">
      6 <title>Code - Chris Bracken</title>
      7 <link href="/css/site.css" rel="stylesheet">
      8 <link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
      9 <link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
     10 <link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
     11 <link rel="manifest" href="/favicon/site.webmanifest">
     12 <link rel="mask-icon" href="/favicon/safari-pinned-tab.svg" color="#140f42">
     13 <link rel="shortcut icon" href="/favicon/favicon.ico">
     14 <meta name="msapplication-TileColor" content="#603cba">
     15 <meta name="msapplication-config" content="/favicon/browserconfig.xml">
     16 <meta name="theme-color" content="#ffffff">
     17 </head>
     18 <body>
     19 <header id="header">
     20 <div class="site-title">
     21 <h1><a href="/">Chris Bracken</a></h1>
     22 </div>
     23 
     24 <nav class="site-navbar">
     25 <ul id="menu" class="menu">
     26   <li class="menu-item"><a class="menu-item-a" href="/">Home</a></li>
     27   <li class="menu-item"><a class="menu-item-a" href="/about/">About</a></li>
     28   <li class="menu-item"><a class="menu-item-a" href="/code/">Code</a></li>
     29   <li class="menu-item"><a class="menu-item-a" rel="me"href="https://bsd.network/@cbracken">Fediverse</a></li>
     30 </ul>
     31 </nav>
     32 </header>
     33 <main id="main">
     34 <article>
     35 <h2 class="post-title"><a href="https://chris.bracken.jp/code/">Code</a></h2>
     36 <p>You can find most of the public code I contribute to hosted at one of
     37 the following sites:</p>
     38 <ul>
     39 <li><a href="https://git.bracken.jp/">git.bracken.jp</a>: My self-hosted git repos.</li>
     40 <li><a href="https://github.com/cbracken/">GitHub</a>: The most popular source code
     41 hosting solution and where most of my public contributions lie.</li>
     42 <li><a href="https://gitlab.com/cbracken/">GitLab</a>: Better features and UI than
     43 GitHub.</li>
     44 </ul>
     45 <h2 id="significant-contributions">Significant contributions</h2>
     46 <ul>
     47 <li><a href="https://github.com/flutter/flutter/">Flutter</a>: portable,
     48 cross-platform app SDK and runtime. Most of my contributions focus on
     49 the portable C++ <a href="http://github.com/flutter/engine/">runtime</a>, the
     50 platform-specific embedders, and tools.</li>
     51 <li><a href="https://github.com/dart-lang/sdk/">Dart SDK/VM</a>: the Dart programming
     52 language is a strongly-typed, object-oriented, garbage-collected
     53 language with C-like syntax. Compiles to either native code (either
     54 ahead-of-time or JITed in the VM) or JavaScript for the web.</li>
     55 <li><a href="https://github.com/dart-lang/coverage/">Dart Code Coverage</a>: LCOV
     56 support for code executed on the Dart VM.</li>
     57 <li><a href="https://github.com/dart-lang/fixnum/">Fixnum</a>: a fixed-width 32- and
     58 64-bit integer library for Dart. Dart&rsquo;s int semantics vary between
     59 native platforms (64-bit) and the web (IEEE 53-bit mantissa). This
     60 library allows those with hard requirements on 64-bit values (e.g.
     61 database IDs) to write code that is portable to web targets.</li>
     62 <li><a href="https://github.com/google/quiver-dart/">Quiver</a>: a set of utility
     63 libraries for Dart.</li>
     64 </ul>
     65 </article>
     66 </main>
     67 
     68 <footer id="footer">
     69 <div class="copyright">
     70 <span xmlns:dct="http://purl.org/dc/terms/" xmlns:cc="http://creativecommons.org/ns#">
     71 The content of this site by
     72 <a rel="cc:attributionURL" href="https://chris.bracken.jp/about"><span rel="cc:attributionName">Chris Bracken</span></a>
     73 is
     74 <a href="https://creativecommons.org/licenses/by/4.0">CC BY 4.0</a>.
     75 </span>
     76 </div>
     77 </footer>
     78 </body>
     79 </html>