Inspiration and sources #18
MariusStorhaug
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Any interaction is a failure of automation. -Elon Musk
Module management on a system:
Link collections:
Professional modules
Module Templating and frameworking
PoshCode Actions | GitHub - Did not know this existed untill i started making my own. Approaches are different however.
PoshCode ModuleBuilder | GitHub
Evotec | GitHub
http://ramblingcookiemonster.github.io/
https://github.com/RamblingCookieMonster/
<code.golf>
PowerShell Docs
PowerShell: Scripting
Powershell Team Blog
Inspiration to this page can come from
https://github.com/Microsoft/.github
https://github.com/GitHub/.github
https://github.com/PowerShell/.github
https://github.com/Azure/.github
https://github.com/spotify/.github
https://github.com/sap/.github
https://github.com/actions/.github
https://github.com/PowerShell/whatsnew
Should be built to support:
PSResourceGet | GitHub
PSResourceGet | Microsoft Learn
Top 50 modules
Define quality:
Module manifest:
PowerBI report:
https://msit.powerbi.com/view?r=eyJrIjoiM2E3MDllNDMtNGE4OS00NjdkLWI1ODEtZGI2MGNiYjA1ZmI1IiwidCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsImMiOjV9&pageName=ReportSection
Best practice:
[System.Collections.Generic.List[object]]::new()
and then$list.Add($item)
[System.Collections.ArrayList]::new()
and then$list.Add($item)
-join
operator not+=
Get-Content $path | Where-Object { $_.Length -gt 10 }
*
in...ToExport
properties for a module manifest.@()
).Invoke-Expression
.-f
operator to insert variables.Beta Was this translation helpful? Give feedback.
All reactions