This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Function to handle errors | |
| handle_error() { | |
| echo "An error occurred: $1" | |
| exit 1 | |
| } | |
| # Install vosk using pip3 | |
| echo "Installing vosk..." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .css-selector { | |
| background: linear-gradient(270deg, #442466, #24665f); | |
| background-size: 400% 400%; | |
| -webkit-animation: AnimationName 30s ease infinite; | |
| -moz-animation: AnimationName 30s ease infinite; | |
| -o-animation: AnimationName 30s ease infinite; | |
| animation: AnimationName 30s ease infinite; | |
| } | |
| @-webkit-keyframes AnimationName { | |
| 0%{background-position:0% 50%} |
OlderNewer