This profile is setup for Mac and has not been tested on Windows
For a brand new machine, use the automated gist installer:
- Download the gist and run the install.ps1
get git submodules
the content submodule is not a public repo. The files within that repo are used as markdown content for the newsletter archive. can you create me a few sample archives and put them into the right directory without screwing up the github configuration?
please add an rss feed to the site for the newsletter archives.
I created my own fork of this repo so that I could ultimately submit the changes as a PR. My fork is https://github.com/digitaldrummerj/dotnetdrip.git
push
| #!/bin/bash | |
| # Use on a Mac to get Zoom attendance from ZoomISO or ZoomOSC. | |
| # Companion Action: internal: System: Run shell path (local) | |
| # Path: /users/yourname/attendance-count.sh "$(zoomiso_mini:numberOfUsers)" "$(internal:custom_attendance_hours_to_add)" "$(internal:custom_attendance_file)" | |
| # Timeout: 5000 | |
| # Target Variable (stdout): None | |
| # Exammple Output | |
| # "2024-12-19 02:04:20","95" |
| function output(str, pos) { | |
| var result = '' | |
| for (var i = 0; i <= str.length; i++) { | |
| var mod = i % 2; | |
| var code = str.charCodeAt(i); | |
| if (pos === 'even' && mod === 0) { | |
| result += changeChar(code); | |
| } else if (pos === 'odd' && mod !== 0) { | |
| result += changeChar(code); | |
| } else { |
| { | |
| /* | |
| // Place your snippets for JavaScript here. Each snippet is defined under a snippet name and has a prefix, body and | |
| // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
| // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the | |
| // same ids are connected. | |
| // Example: | |
| "Print to console": { | |
| "prefix": "log", | |
| "body": [ |
| <div id="star-field"> | |
| <div class="star"></div> | |
| <div class="star"></div> | |
| <div class="star"></div> | |
| <div class="star"></div> | |
| <div class="star"></div> | |
| <div class="star"></div> | |
| <div class="star"></div> | |
| <div class="star"></div> | |
| <div class="star"></div> |
| <div id="button-group"> | |
| <button class="primary">Primary</button> | |
| <button class="secondary">Secondary</button> | |
| <button class="secondary">Secondary</button> | |
| </div> |
| [CmdletBinding()] | |
| param( | |
| [Parameter(Mandatory)] | |
| [string]$VMName, | |
| [Parameter(Mandatory)] | |
| [string]$OutputFile | |
| ) | |
| function Get-DriveType($drive) |
| Get-AzureVMImage | Select * | Out-Gridview –Passthru |