- https://lukeberrypi.com
- @lukeberrypi
- https://youtube.com/lukeberrypi
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
function romanToInteger(roman) { | |
const romanNumerals = { | |
I: 1, | |
V: 5, | |
X: 10, | |
L: 50, | |
C: 100, | |
D: 500, | |
M: 1000, | |
}; |
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
import random as rd | |
random = rd | |
tom = ['A','B','C','D','E','F','G'] | |
number_chords = [3,4,5] | |
tom_a = ['A','Bm','C#m','D','E','F#m'] | |
tom_b = ['B','C#m','D#m','E','F#','G#m'] | |
tom_c = ['C','Dm','Em','F','G','Am'] | |
tom_d = ['D','Em','F#m','G','A','Bm'] |
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
<div class="flex justify-between"> | |
<div class="flex flex-1 justify-start">huuuuuuuuuuuuge left element</div> | |
<div class="flex flex-1 justify-center">center element</div> | |
<div class="flex flex-1 justify-end">right element</div> | |
</div> |
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
function generateRandomHexCode() { | |
const validChars = "abcdef0123456789"; | |
let hexcode = "#"; | |
for (let i = 0; i < 6; i++) { | |
const char = validChars[Math.floor(Math.random() * validChars.length)]; | |
hexcode += char; | |
} | |
return hexcode; |
NewerOlder