blog

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

commit f312a46b989cd07f41046c547391e68a4ae0a5f9
parent 324a3fcf7cbfef15df16688af32f7b2ce74488f1
Author: Chris Bracken <chris@bracken.jp>
Date:   Wed,  6 May 2020 14:19:27 -0700

Replace GitHub/sr.ht links with Code page

Adds link to GitLab repos, and a small selection of projects I maintain,
or where I've contributed a significant fraction of the codebase.

Diffstat:
Mconfig.toml | 15+++++----------
Acontent/code.md | 32++++++++++++++++++++++++++++++++
2 files changed, 37 insertions(+), 10 deletions(-)

diff --git a/config.toml b/config.toml @@ -33,18 +33,13 @@ paginate = 5 identifier = "about" url = "/about/" [[menu.main]] - name = "GitHub" - weight = 40 - identifier = "github" - url = "https://github.com/cbracken" -[[menu.main]] - name = "sr.ht" - weight = 50 - identifier = "srht" - url = "https://git.sr.ht/~cbracken" + name = "Code" + weight = 30 + identifier = "code" + url = "/code/" [[menu.main]] name = "Mastodon" - weight = 60 + weight = 40 identifier = "mastodon" url = "https://mastodon.social/web/accounts/851052" diff --git a/content/code.md b/content/code.md @@ -0,0 +1,32 @@ ++++ +title = "Code" ++++ + +You can find most of the public code I contribute to hosted at one of +the following sites: + +* [sr.ht](https://git.sr.ht/cbracken/): Lightweight, no-nonsense UI and + support for email-based contribution workflows. This is where most of + my own repos lie. +* [GitLab](https://gitlab.com/cbracken/): Better features and UI than + GitHub. Web markdown support is currently more legible than sr.ht. +* [GitHub](https://github.com/cbracken/): The most popular source code + hosting solution and where most of my public contributions lie. + +### Significant contributions + +* [Flutter](https://github.com/flutter/flutter/): portable, + cross-platform app SDK and runtime. Most of my contributions focus on + the portable C++ [runtime](http://github.com/flutter/engine/) and + tools. +* [Dart SDK/VM](https://github.com/dart-lang/sdk/): 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](https://github.com/dart-lang/coverage/): LCOV + support for code executed on the Dart VM. +* [Quiver](https://github.com/google/quiver-dart/): a set of utility + libraries for Dart. +* [Fixnum](https://github.com/dart-lang/fixnum/): a fixed-width 32- and + 64-bit integer library for Dart. Dart's int semantics vary between + platforms.