This file contains 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
Hashcat Benchmarks for GeForce RTX™ 3090 Ti GAMING X TRIO 24G | |
--- | |
hashcat (v6.2.3) starting in benchmark mode | |
clGetPlatformIDs(): CL_PLATFORM_NOT_FOUND_KHR | |
* Device #1: WARNING! Kernel exec timeout is not disabled. |
This file contains 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
/* | |
Description: | |
Write a script that creates an array with 10000 random words between 3 and 5 characters, and returns the number of words that are palindromes in that array; | |
Notes: | |
The code needs to be in javascript | |
You’ll need to return just the number of words | |
You have 30 mins, if you run out of time, submit the form anyway. | |
Once you click “Start” you cannot pause the countdown | |
Don’t delete the main function |
This file contains 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 | |
# you will need to have youtube-dl (pip) and dialog (apt-get) installed | |
exec 3>&1; | |
result=$(dialog --title 'youtube-dl music downloader' --inputbox 'enter youtube url' 0 0 2>&1 1>&3); | |
exitcode=$?; | |
exec 3>&-; | |
# echo $result $exitcode; | |
youtube-dl -f bestaudio --extract-audio --audio-format mp3 --audio-quality 0 $result |