Please see: https://github.com/kevinSuttle/html-meta-tags, thanks for the idea @dandv!
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
| rem see https://github.com/coreybutler/nvm-windows/issues/300 | |
| @echo off | |
| SETLOCAL EnableDelayedExpansion | |
| if [%1] == [] ( | |
| echo Pass in the version you would like to install, or "latest" to install the latest npm version. | |
| ) else ( | |
| set wanted_version=%1 |
| We have a "virtual room" at the office that we use to expand our office with our remote teammates. | |
| It's essentially laptop hooked up to a fancy camera that hosts a Skype meeting. | |
| In order to simulate a user logging into Skype and joining the meeting, we run a PowerShell script that opens the conference room, | |
| and simulate CTRL + SHIFT + ENTER to join with video. | |
| $x = New-Object -COM WScript.Shell | |
| $x.Run('"C:\Program Files (x86)\Microsoft Office\root\Office16\lync.exe" conf:sip:https://join.mydomain.com/meet/myusername/Y5356B19') | |
| sleep -seconds 10 | |
| $x.SendKeys("^(+~)") |
| /* The following is a bookmarklet. | |
| To actually use it, it is easier to drag-and-drop starting with my blog post: | |
| http://www.szalapski.com/2014/05/a-compact-layout-for-tfs-web-work-items.html */ | |
| javascript:(function () { | |
| const s = document.createElement('style'); | |
| s.innerText = ` | |
| /* version 2025-12-01 - see https://gist.githubusercontent.com/szalapski/d2677564a0e89f735d31 */ | |
| /* draw attention to button when full-screen */ | |
| .full-screen-mode button.bolt-button.subtle#__bolt-full-screen { | |
| background-color: var(--palette-primary-darken-6); |
| # Auto detect text files and perform LF normalization | |
| * text=auto | |
| # Custom for Visual Studio | |
| *.cs diff=csharp |
| function archiveInbox() { | |
| var query = 'label:inbox is:read older_than:28d -label:unanswered -label:unread'; | |
| var batchSize = 100; | |
| while(GmailApp.search(query, 0, 1).length == 1) { | |
| GmailApp.moveThreadsToArchive(GmailApp.search(query, 0, batchSize)); | |
| } | |
| } |
| # branch | |
| $ git branch -d BRANCH # delete local BRANCH | |
| $ git push origin :BRANCH # delete remote BRANCH | |
| # tag | |
| $ git tag -d TAG # delete local TAG | |
| $ git push origin :refs/tags/TAG # delete remote TAG |
| <UserControl x:Class="SCO.Ria.UI.Views.LoginView" | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
| xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
| xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
| xmlns:toolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit" | |
| xmlns:interactivity="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" | |
| xmlns:local="clr-namespace:Caliburn.Micro.Focus;assembly=Caliburn.Micro.Focus" | |
| xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk" mc:Ignorable="d" | |
| d:DesignHeight="154" d:DesignWidth="468"> |
| <!-- This task takes in a XDT transform file and transforms it, following any inheritance chain. | |
| There should be at least one base transform for this to work; otherwise just use Microsoft's | |
| regular TransformXml task. --> | |
| <!-- EXAMPLE USAGE: | |
| <TransformXmlHierarchy | |
| Source="source.xml" | |
| Destination="transformed.xml" | |
| TaskDirectory="path/to/directory/of/Microsoft.Web.Publishing.Tasks" /> | |
| --> | |
| <UsingTask |
| /// <summary> | |
| /// Formats a JSON string by walking through it and examining the contents. | |
| /// </summary> | |
| /// <param name="json">Unformatted JSON string, expects valid JSON with quoted keys and no whitespace.</param> | |
| /// <returns>Formatted JSON string</returns> | |
| /// <remarks> | |
| /// [ { should have line breaks and tabs after them | |
| /// ] } should have line breaks and tabs before them | |
| /// : should have a space after it | |
| /// , should have a line break and tab |