blog

Source files for chris.bracken.jp
git clone https://git.bracken.jp/blog.git
Log | Files | Refs | Submodules | README | LICENSE

code.md (1497B)


      1 +++
      2 title = "Code"
      3 +++
      4 
      5 You can find most of the public code I contribute to hosted at one of
      6 the following sites:
      7 
      8 * [git.bracken.jp](https://git.bracken.jp/): My self-hosted git repos.
      9 * [GitHub](https://github.com/cbracken/): The most popular source code
     10   hosting solution and where most of my public contributions lie.
     11 * [GitLab](https://gitlab.com/cbracken/): Better features and UI than
     12   GitHub.
     13 
     14 ## Significant contributions
     15 
     16 * [Flutter](https://github.com/flutter/flutter/): portable,
     17   cross-platform app SDK and runtime. Most of my contributions focus on
     18   the portable C++ [runtime](http://github.com/flutter/engine/), the
     19   platform-specific embedders, and tools.
     20 * [Dart SDK/VM](https://github.com/dart-lang/sdk/): the Dart programming
     21   language is a strongly-typed, object-oriented, garbage-collected
     22   language with C-like syntax. Compiles to either native code (either
     23   ahead-of-time or JITed in the VM) or JavaScript for the web.
     24 * [Dart Code Coverage](https://github.com/dart-lang/coverage/): LCOV
     25   support for code executed on the Dart VM.
     26 * [Fixnum](https://github.com/dart-lang/fixnum/): a fixed-width 32- and
     27   64-bit integer library for Dart. Dart's int semantics vary between
     28   native platforms (64-bit) and the web (IEEE 53-bit mantissa). This
     29   library allows those with hard requirements on 64-bit values (e.g.
     30   database IDs) to write code that is portable to web targets.
     31 * [Quiver](https://github.com/google/quiver-dart/): a set of utility
     32   libraries for Dart.