diff --git a/RdzeN-Profile/RdzeN-Profile.ps1 b/RdzeN-Profile/RdzeN-Profile.ps1 deleted file mode 100644 index f917d24..0000000 --- a/RdzeN-Profile/RdzeN-Profile.ps1 +++ /dev/null @@ -1,4 +0,0 @@ -# gitea.RdzeN.net -# -# Example Powershell Profile. -# \ No newline at end of file diff --git a/RdzeN-Profile/functions/New-SimulateTyping.ps1 b/RdzeN-Profile/functions/New-SimulateTyping.ps1 deleted file mode 100644 index 7903cde..0000000 --- a/RdzeN-Profile/functions/New-SimulateTyping.ps1 +++ /dev/null @@ -1,17 +0,0 @@ -# gitea.RdzeN.net -# Simulate Typing -function New-SimulateTyping { -param( -[string]$message -) - -# Iterate through each character in the text -foreach ($char in $message.ToCharArray()) { - # Write each character to the screen - Write-Host -NoNewline $char -ForegroundColor Yellow - # Wait before writing the next character (adjustable time in milliseconds) - Start-Sleep -Milliseconds (Get-Random -Minimum 10 -Maximum 100) -} - # New line after last char. - Write-Host "" -} \ No newline at end of file diff --git a/SimulateTyping/New-SimulateTyping.ps1 b/SimulateTyping/New-SimulateTyping.ps1 deleted file mode 100644 index ee1eeda..0000000 --- a/SimulateTyping/New-SimulateTyping.ps1 +++ /dev/null @@ -1,21 +0,0 @@ -# gitea.RdzeN.net -# Simulate Typing -function New-SimulateTyping { -param( -[string]$message -) - -# Iterate through each character in the text -foreach ($char in $message.ToCharArray()) { - # Write each character to the screen - Write-Host -NoNewline $char -ForegroundColor Yellow - # Wait before writing the next character (adjustable time in milliseconds) - Start-Sleep -Milliseconds (Get-Random -Minimum 10 -Maximum 100) -} - # New line after last char. - Write-Host "" -} - -# Example usage of the function -New-SimulateTyping "This is an example text for typing simulation. -Multiline #1`nMultiline #2" \ No newline at end of file