Skip to content

Commit

Permalink
Merge pull request #43 from deadlydog/AddTipsForPowerShellConferenceE…
Browse files Browse the repository at this point in the history
…urope

tip: Add PSConfEU conference date tips
  • Loading branch information
deadlydog authored Oct 9, 2023
2 parents d74d4fa + 5ccd4f7 commit 5f616b1
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
$tip = [tiPS.PowerShellTip]::new()
$tip.CreatedDate = [DateTime]::Parse('2023-10-09')
$tip.Title = 'PowerShell Conference Europe 2024'
$tip.TipText = @'
PSConfEU 2024 will be held June 24 - 27, 2024. Save the date!
More details will be released at PSConfEU MiniCon on October 24, 2023.
'@
$tip.Example = ''
$tip.Urls = @(
'https://psconf.eu/'
)
$tip.Category = [tiPS.TipCategory]::Community # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other.

# Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc.
# Editor: Editor tips and extensions. e.g. VSCode, ISE, etc.
# Module: Modules and module tips. e.g. PSScriptAnalyzer, Pester, etc.
# NativeCmdlet: Native cmdlet tips. e.g. Get-Process, Get-ChildItem, Get-Content, etc.
# Performance: Tips to improve runtime performance. e.g. foreach vs ForEach-Object, ForEach-Object -Parallel, etc.
# Security: Security tips. e.g. ExecutionPolicy, Constrained Language Mode, passwords, etc.
# Syntax: Syntax tips. e.g. splatting, pipeline, etc.
# Terminal: Terminal shortcuts and tips. e.g. PSReadLine, Windows Terminal, ConEmu, etc.
# Other: Tips that don't fit into any of the other categories.
24 changes: 24 additions & 0 deletions src/PowerShellTips/2023-10-09-psconfeu-2023-minicon.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
$tip = [tiPS.PowerShellTip]::new()
$tip.CreatedDate = [DateTime]::Parse('2023-10-09')
$tip.Title = 'PSConfEU 2023 MiniCon'
$tip.TipText = @'
The PSConfEU 2023 MiniCon will be held on October 24, 2023. Save the date!
PSConfEU 2023 MiniCon is a free virtual event open to all of the PowerShell community. Wherever you are, join and say hi! There will be multiple sessions in several tracks, and many speakers and leaders of the community will be there to talk to you!
'@
$tip.Example = ''
$tip.Urls = @(
'https://psconf.eu/'
'https://app.gather.town/events/It0l-Wx8TQmTI93yQvs-'
)
$tip.Category = [tiPS.TipCategory]::Community # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other.

# Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc.
# Editor: Editor tips and extensions. e.g. VSCode, ISE, etc.
# Module: Modules and module tips. e.g. PSScriptAnalyzer, Pester, etc.
# NativeCmdlet: Native cmdlet tips. e.g. Get-Process, Get-ChildItem, Get-Content, etc.
# Performance: Tips to improve runtime performance. e.g. foreach vs ForEach-Object, ForEach-Object -Parallel, etc.
# Security: Security tips. e.g. ExecutionPolicy, Constrained Language Mode, passwords, etc.
# Syntax: Syntax tips. e.g. splatting, pipeline, etc.
# Terminal: Terminal shortcuts and tips. e.g. PSReadLine, Windows Terminal, ConEmu, etc.
# Other: Tips that don't fit into any of the other categories.
21 changes: 21 additions & 0 deletions src/tiPS/PowerShellTips.json
Original file line number Diff line number Diff line change
Expand Up @@ -291,5 +291,26 @@
"https://www.pdq.com/blog/secure-password-with-powershell-encrypting-credentials-part-1/"
],
"Category": 5
},
{
"CreatedDate": "2023-10-09T00:00:00",
"Title": "PowerShell Conference Europe 2024",
"TipText": "PSConfEU 2024 will be held June 24 - 27, 2024. Save the date!\r\n\r\nMore details will be released at PSConfEU MiniCon on October 24, 2023.",
"Example": "",
"Urls": [
"https://psconf.eu/"
],
"Category": 0
},
{
"CreatedDate": "2023-10-09T00:00:00",
"Title": "PSConfEU 2023 MiniCon",
"TipText": "The PSConfEU 2023 MiniCon will be held on October 24, 2023. Save the date!\r\n\r\nPSConfEU 2023 MiniCon is a free virtual event open to all of the PowerShell community. Wherever you are, join and say hi! There will be multiple sessions in several tracks, and many speakers and leaders of the community will be there to talk to you!",
"Example": "",
"Urls": [
"https://psconf.eu/",
"https://app.gather.town/events/It0l-Wx8TQmTI93yQvs-"
],
"Category": 0
}
]

0 comments on commit 5f616b1

Please sign in to comment.