Today’s date 23 November is 1123 id written as month then day. Those numbers are the start of the Fibonacci series. So as its Fibonacci day here’s a quick PowerShell function to create a Fibonacci series.
function new-fibonacci {
param (
[int]$numberofelements… Read the full text.