Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ Here's a quick one for ya. Perfect kitchen timer. Who doesn't have a laptop with


start-sleep (60*9); write-host ("`a"*4)</pre>
<p>Start-Sleep works in seconds, so you see where I've done some quick<br />
math to get nine minutes. Not sure if the ()'s were required, but they<br />
don't hurt. I didn't know the precedence of parameter parsing versus<br />
multiplication off the top of my head. Next is Write-Host with some<br />
Start-Sleep works in seconds, so you see where I've done some quick
math to get nine minutes. Not sure if the ()'s were required, but they
don't hurt. I didn't know the precedence of parameter parsing versus
multiplication off the top of my head. Next is Write-Host with some
more multiplication. This one uses "`a" which is the special character

which emits a beep (old schoolers know this as the ASCII code for
Expand Down
2 changes: 1 addition & 1 deletion hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pagination:
markup:
goldmark:
renderer:
unsafe: true
unsafe: false
highlight:
style: github
lineNos: true
Expand Down
Loading