Giter VIP home page Giter VIP logo

istio.io's Introduction

Site Status
istio.io Netlify Status
preliminary.istio.io Netlify Status
archive.istio.io Netlify Status

istio.io

This repository contains the source code for istio.io and preliminary.istio.io.

Please see the main Istio README file to learn about the overall Istio project and how to get in touch with us. To learn how you can contribute to any of the Istio components, please see the Istio contribution guidelines.

Editing and building

To learn how to edit and build this repo's content, please refer to Creating and Editing Pages.

Versions and releases

Istio maintains two variations of its public site.

  • istio.io is the main site, showing documentation for the current release of the product. istio.io/archive contains snapshots of the documentation for previous releases of the product. This is useful for customers still using these older releases.

  • preliminary.istio.io contains the actively updated documentation for the next release of the product.

The user can trivially navigate between the different variations of the site using the gear menu in the top right of each page. Both sites are hosted on Netlify.

How versioning works

  • Documentation changes are primarily committed to the master branch of istio.io. Changes committed to this branch are automatically reflected on preliminary.istio.io.

  • The content of istio.io is taken from the latest release-XXX branch. The specific branch that is used is determined by the istio.io Netlify project's configuration.

Publishing content immediately

Checking in updates to the master branch will automatically update preliminary.istio.io, and will only be reflected on istio.io the next time a release is created, which can be several weeks in the future. If you'd like some changes to be immediately reflected on istio.io, you need to check your changes both to the master branch and to the current release branch (named release-<MAJOR>.<MINOR> such as release-1.7).

This process can be taken care of automatically by our infrastructure. If you submit a PR to the master branch and annotate the PR with the cherrypick/release-<MAJOR>.<MINOR> label, then as soon as your PR is merged into master, it will be merged into the specified release branch.

Creating a major/minor release

Here are the steps necessary to create a new documentation version. Let's assume the current version of Istio is 1.6 and you wish to introduce 1.7 which has been under development.

When Istio source code is branched

Run make prepare-1.7.0, and that's it. This will grab the latest reference docs from the new istio source branch into the content/en/docs/reference folder.

Approaching the day of the release

  1. For a dry run before official release, run make release-1.7.0-dry-run, which will only create a new branch release-1.7-dry-run and not touch any other branches.

  2. On the day of release, run make release-1.7.0. This make target will change some variables in master and release-1.6, and create a new branch release-1.7 for the new version.

  3. Go to the istio.io project on Netlify and do the following:

    • Change the branch that is built from the previous release's branch to the new release branch, in this case release-1.7 (or release-1.7-dry-run as appropriate).

    • Select the option to trigger an immediate rebuild and redeployment.

    • Once deployment is done, browse istio.io and make sure everything looks good.

  4. Go to the Google Custom Search Engine and do the following:

    • Download the istio.io CSE context file from the Advanced tab.

    • Add a new FacetItem at the top of the file containing the previous release's version number. In this case, this would be V1.6.

    • Upload the updated CSE context file to the site.

    • In the Setup section, add a new site that covers the previous release's archive directory. In this case, the site URL would be istio.io/v1.6/*. Set the label of this site to the name of the facet item created above (V1.6 in this case).

Creating a patch release

A few days before the patch release, the release managers should notify the Doc WG that the release is built and is starting it's long running qualification test. At this time, move the doc automation tests to use the new release to verify automated doc testing passes.

To move to a new release (make sure you are in the patch's release branch):

  1. Run go get istio.io/[email protected] && go mod tidy.

  2. Create a PR with the go.* changes.

Creating a new patch release involves modifying a few files:

  1. Edit data/args.yml and change the full_version field to "A.X.Y". This is only needed for a patch of the current release.

  2. Complete the release note for the release by editing the markdown file content/en/news/releases/A.X.x/announcing-A.X.Y/index.md. This is where you describe the changes in the release. Please look at other existing files for example content and layout.

  3. Run make update_ref_docs to get the latest reference docs. Normally, this is only needed for a patch of the current release. If needed in an earlier release, see Updating an archive.

Updating an archive

If the archived version in a newer branch (e.g., release-1.7:archive/v1.6) needs to be updated due to changes in the old release branch (release-1.6 in this case), you can run make build-old-archive-1.6.0 in the master branch, which will re-archive release-1.6 and substitute it for the previous archive in the master branch. If this update needs to be reflected in istio.io, the PR may be cherry-picked to the branch for the current release.

Updating the test reference for a given release stream

The release streams starting with release-1.6 contain tests for the test content. Each release tests against a particular istio version/commit. When the release team has a build, 1.x.y, ready for their long running tests, they should come to the docs team to have the testing for that release run start running against the build.

There are two types of builds, public and private. The normal dev and release builds are built from our public repos and have images in a publicly accessible repository and are considered public. Private builds are those where we can't reveal much before release. Typically it's an advance notice that a release will happen in two weeks for CVEs. Since we can't reveal anything before the actual release, the source and built images are in private repos. As the source and images are private, we can't actually move to them until they are publicly released, and thus there is no early testing of the release in istio.io. The difference for private builds is that the images we test against were never created in the public gcr.io repository, so in that case we use the docker.io images. One may ask why we don't always use the release images from docker.io. Since we want to test public builds before they are released, the images don't yet exist on docker.io.

For public builds:

  1. Get the istio/istio commit that was used for the build from https://gcsweb.istio.io/gcs/istio-release/releases/1.x.y/manifest.yaml file.
  2. In the release branch: Run go get istio.io/istio@commit && go mod tidy.

For private builds (this is done after the build is released):

  1. In the release branch: Run go get istio.io/[email protected] && go mod tidy.

For both builds, we want to verify that the HUB/TAG are correct in the Makefile.core.mk (they change depending on if using the private or public builds). Look for the section similar to:

# If one needs to test before a docker.io build is available (using a public test build),
# the export HUB and TAG can be commented out, and the initial HUB un-commented
HUB ?= gcr.io/istio-testing
# export HUB ?= docker.io/istio
# export TAG ?= 1.7.3

For public builds, the export HUB/TAGs would be uncommented and have correct values. For private builds, or the master branch, the HUB would be uncommented.

Finally, create and submit a PR with the changes and one can see the test results in the PR. Normally, the PR won't actually merge until the release is released (sometimes there are multiple builds for a release).

Testing document content

Many documents on the Istio site demonstrate features using commands that may or may not continue to work as Istio evolves from release to release. To ensure the documented instructions stay up to date with as little continuous manual testing as possible, we have created a framework to automate the testing of these documents.

Every page on istio.io that can be tested includes a PAGE TEST indication under the page title. For example:

PAGE TEST

A green checkmark indicates an automated test is available for the page. The page is up to date and working as documented.

A grey X, on the other hand, means that there is no automated test available for the page, yet. We'd appreciate it if you'd like to help create one! Our goal is to eventually have an automated test in place for every testable document published on the Istio site.

See the tests README for more information.

Multi-language support

The site is translated into multiple languages. Source of truth is the English content, while other languages are derived and so tend to lag behind slightly. Each site language gets its own fully self-contained content directory and translation table file. Languages are identified using their international 2-letter language code. The main site content is located in content/<language code> (e.g. content/en), and the translation table is a TOML-format file in i18n\<language code>.toml (e.g. i18n/en.toml).

Getting started with translation is fairly simple:

  • Create a full copy of the content/en directory for your language. For example, you'd copy content/en to content/fr if you were doing a French translation.

  • Update all the links in your new content directory to point to your content directory instead of to the English content. For example, if you were doing a French translation you would change links such as [a doc](/docs/a/b/c) to [a doc](/fr/docs/a/b/c).

  • Remove all the aliases directives in the front-matter of all content pages. Aliases are used when moving a page to a new location, so they're not desirable for brand new content.

  • Create a copy of the i18n/en.toml file for your language. For example, you'd copy i18n/en.toml to i18n/fr.toml if you were doing a French translation. This file contains the text that is displayed by the site infrastructure for things like menus, and other standard material.

  • Edit the file hugo.toml to list your new language. Search for the [languages] entry and just add a new entry. This tells the Hugo site generator to process your content.

  • Edit the file scripts/lint_site.sh and search for check_content. Add another call to check_content for your new content directory. This ensures that the linting rules apply to your new content.

  • Edit the file src/ts/lang.ts and add your new language. This will add your language to the language toggle button that is available on preliminary.istio.io and will make it so your language will be supported in the language selection menu.

  • Get an Istio GitHub administrator to create a new maintainer team for your language. For French, this would be WG - Docs Maintainers/French.

  • Edit the file CODEOWNERS and add entries for your language to give the new team you've created ownership over the translated content and translation table file.

You can then commit all of these changes and you can start translating the content and the translation file in a purely incremental fashion. When you build the site, you'll find your content at <url>/<language code>. For example, once you've checked everything in, you should be able to get to your content at https://preliminary.istio.io/fr if you were doing a French translation.

Once your translation is complete and you're ready to publish it to the world, there are a few other changes you need to make:

  • Edit the file layouts/index.redir. Search for translated sites and add a line for your language. This will cause users coming to the site for the first time to be automatically redirected to the translated content suitable for them. For French, this would be:

    /  /fr   302  Language=fr
    
  • Edit fhe file layouts/partials/headers.html. Search for switch-lang and you'll find the definitions for the language selection menu. Add a line for your new language.

And that's it.

Regular maintenance

We have a number of checks in place to ensure a number of invariants are maintained in order to help the site's overall quality. For example, we disallow checking in broken links and we do spell checking. There are some things which are hard to systematically check through automation and instead require a human to review on in a while to ensure everything's doing well.

It's a good idea to run through this list before every major release of the site:

  • Ensure that references to the Istio repos on GitHub don't hardcode branch names. Search for any uses of /release-1 or /master throughout all the markdown files and replace those with {{< source_branch_name >}} instead, which produces a version-appropriate branch name.

  • Review the .spelling file for words that shouldn't be in there. Type names in particular tend to creep in here. Type names should not be in the dictionary and should instead be shown with backticks. Remove the entries from the dictionary and fix any spell checking errors that emerge.

  • Ensure proper capitalization. Document titles need to be fully capitalized (e.g. "This is a Valid Title"), while section headings should use first letter capitalization only (e.g. "This is a valid heading").

  • Ensure that preformatted text blocks that reference files from the Istio GitHub repos use the @@ syntax to produce links to the content. See here for context.

istio.io's People

Contributors

3ks avatar arhell avatar bianpengyuan avatar douglas-reid avatar ericvn avatar frankbu avatar geeknoid avatar gyliu513 avatar howardjohn avatar imgbot[bot] avatar istio-testing avatar jacob-delgado avatar kfaseela avatar kyessenov avatar ldemailly avatar lei-tang avatar linsun avatar loverto avatar my-git9 avatar orangegzx avatar rootsongjc avatar rshriram avatar sataqiu avatar vadimeisenbergibm avatar wattli avatar wilsonwu avatar windsonsea avatar yangminzhu avatar yanrongshi avatar youhonglian avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

istio.io's Issues

Footer doesn't look right on small displays

When the screen is narrow, the footer collapses into a stack of section titles. There's no visual indication that these are now drop down menus and the mouse pointer is an i-beam when hovering over these instead of a pointer.

BookInfo sample docs need update RE: GATEWAY_URL

Our instructions ask users to issue the following two commands to set GATEWAY_URL:

$ kubectl get ingress -o wide
NAME      HOSTS     ADDRESS                 PORTS     AGE
gateway   *         130.211.10.121          80        1d
$ export GATEWAY_URL=130.211.10.121:80

However, when running on GKE, I see something like:

$ kubectl get ingress -o wide
NAME      HOSTS     ADDRESS                                                                       PORTS     AGE
gateway   *         104.198.111.254,35.185.199.167,35.185.202.147,35.185.204.199,35.185.219.195   80        17m

Setting the GATEWAY_URL to any of the addresses listed (with port 80) fails, as follows:

$ curl -o /dev/null -s -w "%{http_code}\n" http://$GATEWAY_URL/productpage
000

If I do the following, however, it works:

$ kubectl get svc istio-ingress -o wide
NAME            CLUSTER-IP      EXTERNAL-IP     PORT(S)        AGE       SELECTOR
istio-ingress   10.75.243.197   35.185.192.82   80:30872/TCP   37m       istio=ingress
$ export GATEWAY_URL=35.185.192.82:80
$ curl -o /dev/null -s -w "%{http_code}\n" http://$GATEWAY_URL/productpage
200

BookInfo: command not working on ZSH

https://istio.io/docs/samples/bookinfo.html

export GATEWAY_URL=$(kubectl get po -l istio=ingress -o jsonpath={.items[0].status.hostIP}):$(kubectl get svc istio-ingress -o jsonpath={.spec.ports[0].nodePort})

this commands work on Bash but errors out on ZSH:

zsh: no matches found: jsonpath={.items[0].status.hostIP}
zsh: no matches found: jsonpath={.spec.ports[0].nodePort}

Improve layout of landing page

The layout of the landing page is way too tall. It takes a fair bit of scrolling to see all the major features of the product. Someone in a hurry wouldn't even notice it doesn't more than L7 load balancing. We need to reorganize the landing page to bring key info above the fold.

Finish setting up Istio's custom search engine

There are three outstanding tasks around Istio's use of Google's Custom Search Engine:

  • We need to register our search engine as being for a non-profit. This will let us remove ads from the returned search results.

  • We need to enable search engine analytics so we can understand what people are looking for on the Istio site.

  • We need to configure the search engine with various options such as auto-complete text, which improves the end-user's experience.

I've added you (Varun) as an admin of the search engine. Visit google.com/cse for the control panel.

Change highlighting of selected page in left-hand nav

We'd like to change a couple in the lefthand nav bar:

  • Instead of the > to indicate the selected page, we'd like to use something more like http://linkerd.io, which is a subtle highlight bar through the whole name.

  • The title of a section (Home, Concepts, Tasks, Tutorials, Reference) is not currently selectable. We'd like to make these titles selectable and have them bring you to the entry page to the section, just like if you clicked on the link of the same name in the top nav bar.

  • We'd like the title of a section to be highlighted when the entry page of the section is displayed.

Few aesthetic things about the web site

  • We should support specifying whether a section entry should default to expanded or collapsed in the left nav.

  • The color scheme for the tooltip for the Edit this Page button doesn't match the rest of the site very well.

  • The magnifying glass next to the search box probably should highlight orange upon hovering. It could probably also use a tooltip.

  • The Copy button on PRE sections is rendered inconsistenty. For example, on this page https://istio.io/docs/tasks/integrating-services-into-istio.html it is not as tall as on other pages.

  • We should consider adopting the left-nav tab design from amalgam8.io. The left nav can be displayed or hidden, making more room available for the document content.

  • We should consider implementing the TOC as a pull down menu at the top of the page. This would look visually cleaner overall.

Quickstart Guide

CUJ breakdown: installation; enabling &auth; routing & policy changes

Update docs to support 3 separate user journeys

There are too many if-else in the documents, which require too much thinking from first- time users.

Restructure into 3 user journeys and create 3 workflows:

  • want to try istio (no auth or complicated things), with the book info to show features
  • want to understand how it works and try some advanced features but I am not committed - with a simpler echo server with which people are familiar
  • production level workflow with advanced features

This requires re-introducing something similar to the echo app for the second workflow.

Installing Istio: 'Verifying the installation' missing service

image

My output has istio-egress. It's missing from the docs output.

➜  kubernetes git:(master) kg svc
NAME            CLUSTER-IP     EXTERNAL-IP      PORT(S)                       AGE
istio-egress    10.3.245.113   <none>           80/TCP                        6m
istio-ingress   10.3.241.55    104.199.102.48   80:30945/TCP                  6m
istio-manager   10.3.243.12    <none>           8080/TCP,8081/TCP             6m
istio-mixer     10.3.252.130   <none>           9091/TCP,9094/TCP,42422/TCP   6m

Merge istioctl and mixer-cli doc generation scripts

Merge scripts for auto-generating command line markdown. This will also consolidate the istioctl docs into a single markdown file.

$ ls -1 ./scripts/auto-generate-*
./scripts/auto-generate-istioctl.sh
./scripts/auto-generate-mixer-cli.sh

Issue with _docs/samples/bookinfo.md

jsonpath fails when i run this -
export GATEWAY_URL=$(kubectl get po -l istio=ingress -o jsonpath={.items[0].status.hostIP}):$(kubectl get svc istio-ingress -o jsonpath={.spec.ports[0].nodePort})

is this istio=ingress correct?

Trademarks

Trademarks (kubernetes, mess) should be consistently capitalized. Cloud Foundry is, I believe, two words. I saw inconsistency in docs/concepts/model.md.

Use inline scripts to fetch external IPs in tasks

See the screenshot below:

  • if I'm using NodePort, it provides me a handy script
  • if I'm using external IP, it tells me to copy paste.

Why is there such a difference? I believe the latter can be achieved with a handy inline script too.

image

Task: "Enabling Ingress Traffic", secure ingress times out

https://istio.io/docs/tasks/ingress.html#configuring-secure-ingress-https

Steps followed:

  • installed httpbin sample, it worked
  • applied Configuring ingress (HTTP), worked
  • applied Configuring secure ingress

Now curl http://$INGRESS_URL/headers works but curl -k https://$INGRESS_URL/html is giving timeout on curl:

$ kubectl describe ingress

Name:			istio-ingress
Namespace:		default
Address:		35.185.252.35
Default backend:	default-http-backend:80 (10.4.3.2:8080)
Rules:
  Host	Path	Backends
  ----	----	--------
  *
    	/headers 	httpbin:8000 (<none>)
    	/delay/.* 	httpbin:8000 (<none>)
Annotations:
Events:	<none>

----------------------------------------------------
Name:			secured-ingress
Namespace:		default
Address:		35.185.252.35
Default backend:	default-http-backend:80 (10.4.3.2:8080)
TLS:
  ingress-secret terminates
Rules:
  Host	Path	Backends
  ----	----	--------
  *
    	/html 	httpbin:8000 (<none>)
Annotations:
Events:	<none>

Edits for the new color scheme

Refer to the staged site (http://istio-staging.surge.sh/):

  1. When you scroll the home page, the old banner image becomes visible

screen shot 2017-04-19 at 1 53 19 pm

  1. The downward pointing arrow should be blue to match the overall color scheme

screen shot 2017-04-19 at 1 53 36 pm

  1. When you hover over the button, it switches to teal (should we change it to a different shade of blue?)

screen shot 2017-04-19 at 1 53 51 pm

bookinfo.md contains unclear instructions on setting up Grafana

The current instructions are too difficult. They expect the user to know the grafana-svc-external-IP. They expect the user to understand how to change the Service from type LoadBalancer to type NodePort and under what circumstances that is needed. They expect the user to know how to run kubectl proxy and how to edit Grafana's Istio-dashboard.

Make the web site look good on mobile devices

We need the site to be usable on mobile devices. Shrinking down the browser width doesn't currently produce good outcomes. We need to choose whether we want to target iPads, iPad-mini, and/or phones. Basically we need to revisit where breakpoints in CSS are and whether responsive design pieces in Bootstrap were left out.

retry-injection task

I have created documentation for a retry task. It is very similar to the fault injection task in structure. However, to get it to demonstrate a successful recovery using retry I had to create a custom image.

The reason I created a custom image was to have a repeatable sequence of HTTP failures followed by success so that I could show HTTP retries leading to success. With my custom server I can demonstrate the same URL returning 500, then another 500, then a 200, like this:

docker run -d -p 127.0.0.1:8080:8080 toxique
$ curl -i localhost:8080/hostname?codes=500,500,200
HTTP/1.1 500 Internal Server Error
92a8f2ebe4e7
$ curl -i localhost:8080/hostname?codes=500,500,200
HTTP/1.1 500 Internal Server Error
92a8f2ebe4e7
$ curl -i localhost:8080/hostname?codes=500,500,200
HTTP/1.1 200 OK
92a8f2ebe4e7

I am not sure if the Istio project wants this code (it's 100 lines of Go) and what I need to do to contribute it. Without a server that can return failure then success on the same URL I can still document the steps to adding HTTP retries with Istio but I can't demonstrate to the user that Istio is correctly performing the retries.

Sound bytes on the frontpage

The current frontpage in istio.io has 4 placeholder titles/descriptions for routing, resilience, policies and monitoring. These need to be filled in properly, with pointers to appropriate docs.

Add a copy button to <code> sections

Many of our docs' <code> sections are commands we expect the user to copy from the page and paste into their terminal. It'd be nice if we had a small "copy code section to clipboard" button on all of our <code> sections. Similar to GitHub's "Clone or download" dialogue:

image

BookInfo Sample docs need update re: ISTIO_MANAGER_ADDRESS

Running through a fresh install, attempting to recreate the sample app. Get the following:

$ kubectl apply -f <(istioctl kube-inject -f bookinfo.yaml)
Error: manager address environment variable is not set, please set ISTIO_MANAGER_ADDRESS to the location and port of you Istio manager
error: no objects passed to apply
  1. We need to add the setting of environment variables to the Task
  2. The error message should read "port of your Istio manager" (instead of "port of you Istio manager").

Webpage load issue (chrome reports unsafe scripts)

Mixed Content: The page at 'https://istio.io/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://istio.io/js/jquery.collapsible.js?_=1491483091322'. This request has been blocked; the content must be served over HTTPS.

bookinfo install instruction should use -o wide

See istio/old_pilot_repo#635

# per doc:
ldemailly-macbookpro:bookinfo ldemailly$  kubectl get ingress 
NAME      HOSTS     ADDRESS            PORTS     AGE
gateway   *         104.196.224.1...   80        41m
# should be:
ldemailly-macbookpro:bookinfo ldemailly$  kubectl get ingress -o wide
NAME      HOSTS     ADDRESS                                         PORTS     AGE
gateway   *         104.196.224.151,35.185.193.212,35.185.196.158   80        41m

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.