- Script your intro, and use it consistently
- e.g. Hi, I'm {YourName} and today I am working on {ProjectName} and I have just finished {FeatureName}. Let's take a look.
- Demo the new feature, focused on the acceptance criteria.
- Script your outro - e.g. That's it for this feature, looking forward to your feedback. Thanks for watching!
- Do it in one take, if something fails. Just say "whoops", pause the video, fix it, and resume. Nobody will mind.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Azure.Cosmos; | |
using Microsoft.Azure.Cosmos.Scripts; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Net; | |
using System.Threading.Tasks; | |
namespace GoesHere | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Testing code via Stack Overflow answer at: | |
// https://stackoverflow.com/a/16281192/581414 | |
void Main() | |
{ | |
var square = new List<Point>{ | |
new Point(1, 1), | |
new Point(1, 10), | |
new Point(10,10), | |
new Point(10,1), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Optus - Domain Name Filter | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description try to take over the world! | |
// @author You | |
// @match http://192.168.8.1/html/urlfilter.html | |
// @grant GM_addStyle | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# From Admin PS Shell: | |
Install-Module -Name AzureAD | |
Connect-AzureAD | |
Get-AzureADUser -ObjectId "your email address" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global core.editor "'C:/Program Files/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bookmarklet for Azure DevOps work items | |
// Select a number, click bookmarklet and open workitem with that id in new window | |
// Can edit using tools such as http://subsimple.com/bookmarklets/jsbuilder.htm | |
// based on code found at https://stackoverflow.com/questions/26261323 | |
javascript: | |
(function(){ | |
const path = 'your/path-here'; // usually Domain/projectId | |
s=document.selection?document.selection.createRange().text:window.getSelection?window.getSelection().toString():document.getSelection?document.getSelection():''; | |
if(s==''){ | |
s=prompt('Enter%20ID%20of%20workitem%20:',''); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name SVG Favicon test | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Update the favicon on a site | |
// @author You | |
// @match https://elliz.github.io/svg-favicon/ | |
// @grant none | |
// ==/UserScript== |