Code
You can find most of the public code I contribute to hosted at one of the following sites:
- git.bracken.jp: My self-hosted git repos.
- GitHub: The most popular source code hosting solution and where most of my public contributions lie.
- GitLab: Better features and UI than GitHub.
Significant contributions
- Flutter: portable, cross-platform app SDK and runtime. Most of my contributions focus on the portable C++ runtime, the platform-specific embedders, and tools.
- Dart SDK/VM: the Dart programming language is a strongly-typed, object-oriented, garbage-collected language with C-like syntax. Compiles to either native code (either ahead-of-time or JITed in the VM) or JavaScript for the web.
- Dart Code Coverage: LCOV support for code executed on the Dart VM.
- Fixnum: a fixed-width 32- and 64-bit integer library for Dart. Dart’s int semantics vary between native platforms (64-bit) and the web (IEEE 53-bit mantissa). This library allows those with hard requirements on 64-bit values (e.g. database IDs) to write code that is portable to web targets.
- Quiver: a set of utility libraries for Dart.