-
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
This file contains hidden or 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
| #!/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" |
This file contains hidden or 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
| 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 { |
This file contains hidden or 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
| { | |
| /* | |
| // 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": [ |
This file contains hidden or 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
| <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> |
This file contains hidden or 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
| <div id="button-group"> | |
| <button class="primary">Primary</button> | |
| <button class="secondary">Secondary</button> | |
| <button class="secondary">Secondary</button> | |
| </div> |
This file contains hidden or 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
| [CmdletBinding()] | |
| param( | |
| [Parameter(Mandatory)] | |
| [string]$VMName, | |
| [Parameter(Mandatory)] | |
| [string]$OutputFile | |
| ) | |
| function Get-DriveType($drive) |
This file contains hidden or 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
| Get-AzureVMImage | Select * | Out-Gridview –Passthru |
This file contains hidden or 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
| $azurelocations = Get-AzureLocation | |
| $out = @() | |
| foreach ($location in $azurelocations) | |
| { | |
| $VMSizes = $location.VirtualMachineRoleSizes | |
| $VMSizesStr = $VMSizes -join ', ' | |
| $props = @{ | |
| Name = $location.Name | |
| VMSizes = $VMSizesStr} | |
| $out += New-Object PsObject -Property $props |
NewerOlder