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
https://github.com/google/fonts/archive/master.zip |
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
solution for ubuntu sound | |
Open a terminal : | |
sudo apt-get install pavucontrol | |
pavucontrol | |
Go to configuration and set the Profile to: Analog Stereo Out | |
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
interface Command { | |
fun execute(robot: Robot) | |
} | |
class TurnLeft : Command { | |
override fun execute(robot: Robot) { | |
robot.rotateLeft() | |
} | |
} |