- Iron Maiden - The Trooper
- Black Sabbath - Paranoid
- Black Sabbath - Iron Man
- Black Sabbath - War Pigs
- Iron Maiden - The Number Of The Beast
- Black Sabbath - Heaven And Hell
- System Of A Down - Chop Suey!
- Iron Maiden - Dance of Death
- AC/DC - Highway to Hell
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
#include <Servo.h> | |
Servo panel; | |
int pos = 0; | |
int leftLDR = A1; | |
int rightLDR = A0; | |
int error_threshold = 50; | |
void setup() { | |
panel.attach(9); |
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
""" | |
An english to pig latin translator made without the use of machine learning. | |
""" | |
s = input('Enter a string to translate to Pig Latin: ') | |
end = '' | |
vowels = ['a', 'e', 'i', 'o', 'u'] | |
n = 0 | |
for i in range(len(s)): |
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
[ | |
{ | |
"location": { | |
"latitude": 0, | |
"longitude": 0 | |
} | |
} | |
] |