Dan Stroot Headshot

Test Title Which is REALLY Long Because it Keeps Going

2 min read

Published

Test Title

This page tests out several rendering functions

Test title with some regular markdown

GitHub (owned by Microsoft), has partnered with OpenAI to create an AI tool called Copilot that writes code for you. It is a plugin to Visual Studio Code which auto-generates code based on the contents of the current file, and your current cursor location.

Open AI developed Codex, a deep neural network language model that translates natural language into code, and Codex is integrated with Copilot. Side note: OpenAI runs on Microsoft Azure.

OpenAI’s Codex was trained on publicly available source code and natural language, so it understands both programming and human languages. Codex is an API-driven service that has many more capabilities, which developers can explore — and build into their own apps — when OpenAI opens access to Codex later this year (2021).

Test Image

Copilot Diagram

Test Table

Scale itemF1F2F3
1. Evidence must be presented to support decisions made. (1) (R)0.79
2. People often make assertions that they cannot support. (1)0.61
3. It is easy to get access to the data I need to make good decisions. (1) (R)0.62
4. When making decisions we place more emphasis on evidence than on personal opinions. (1) (R)0.79

Test Emoji

:checkered_flag:

👋 Hi, I love emojis a lot 🤓

External Link

Internal Link

Page Link

Step 1

1

Install the dependencies for mdx-bundler

Test Block Quote

“Insist on yourself; never imitate. Your own gift you can offer with the cumulative force of a whole life’s cultivation, but of the adopted talent of another, you have only an extemporaneous, half possession.”

— Ralph Waldo Emerson

Test YouTube Embed

Test Tweet Embed

This tweet no longer works

Test Gist Embed

Regular Code Block

  
  
       
  
  const debounce = (callback, wait) => {
  let timeoutId = null

  return (...args) => {
    window.clearTimeout(timeoutId)

    timeoutId = window.setTimeout(() => {
      callback.apply(null, args)
    }, wait)
  }
}