Skip to content

Instantly share code, notes, and snippets.

View burkeholland's full-sized avatar

Burke Holland burkeholland

  • Microsoft
  • Franklin, TN
View GitHub Profile
@burkeholland
burkeholland / review-guideliness.md
Last active September 13, 2019 13:12
Learn Review Guidelines

General PR guidance:

  • All Azure Learn content is in learn-pr. Anyone in the Microsoft Docs organization can create PRs there. You are welcome to create PRs at any time for fixes, small recommendations, etc.
  • Please work through Nick/Barry before investing time in proposing major changes or writing something new. We have processes on our side for big stuff, although I will handle most of it so you can focus on fixing stuff you want to fix.
  • If you are making changes across more than one or two files, please consider forking, fetching and making changes locally (instead of using the web editor) so you don’t end up with a separate PR for each individual file.
  • Consider Nick your liaison for getting stuff merged. Just @ me in your PR comments (@nickwalkmsft). Ping me any time if you want to chat.

Design doc review:

  • I will work with Burke to advertise what’s available for review and provide direct links.
  • **To comment on a design doc, just open a PR and put all of your comments and proposed c
{
"background": "#ffffff",
"black": "#ffffff",
"blue": "#336699",
"brightBlack": "#767676",
"brightBlue": "#42E1F5",
"brightCyan": "#61D6D6",
"brightGreen": "#06CA95",
"brightPurple": "#B4009E",
"brightRed": "#E74856",
<template>
<div class="section">
<h1 class="is-size-1">Photos</h1>
<div class="columns is-multiline">
<div
v-for="photo in photos"
:key="photo.id"
class="column is-one-quarter"
>
<div class="card photo">
$green: #20ae96;
$red: #d9255e;
$primary: $green;
$danger: $red;
@import "bulma/sass/utilities/_all.sass";
@import "bulma/sass/base/_all.sass";
@import "bulma/sass/form/shared.sass";
module.exports = {
css: {
loaderOptions: {
sass: {
data: `
@import "@/styles/bulma-custom.scss";
`
}
}
}
git push azure master
Enumerating objects: 5, done.
Counting objects: 100% (5/5), done.
Delta compression using up to 8 threads
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 296 bytes | 148.00 KiB/s, done.
Total 3 (delta 2), reused 0 (delta 0)
remote: Updating branch 'master'.
remote: Updating submodules.
remote: Preparing deployment for commit id '3941e4978b'.
<a href="http://theurlist.com/cog-services">Cog Services</a>
module.exports = {
apps: [
{
name: "Express App",
script: "index.js",
instances: 4,
autorestart: true,
watch: true,
max_memory_restart: "1G",
env: {
const express = require("express");
const app = express();
const fs = require("fs");
const port = process.env.PORT || 3000;
// viewed at http://localhost:3000
app.get("/", function(req, res) {
res.send("Again I Go Unnoticed");
});
const express = require("express");
const app = express();
const port = process.env.PORT || 3000;
// viewed at http://localhost:3000
app.get("/", function(req, res) {
res.send("Again I Go Unnoticed");
});
app.listen(port, () => console.log(`Example app listening on port ${port}!`));