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
| pico-8 cartridge // http://www.pico-8.com | |
| version 16 | |
| __lua__ | |
| -- make it 400 bytes long | |
| k={1,2,4,8,9,10,7} | |
| -- k={9,9,9,9,10,10,7} | |
| -- k={0,5,6,7,15,14,8,2,4,9,10,11,3,12,13} | |
| -- k={0,0,0,0,0,1,1,1,1,12,12,7} | |
| -- k={5,6,15,9,7} | |
| s=sin |
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
| background: linear-gradient(222deg, #0288d1, #4dd0e1); | |
| background-size: 400% 400%; | |
| -webkit-animation: GradientAnimation 23s ease infinite; | |
| -moz-animation: GradientAnimation 23s ease infinite; | |
| -o-animation: GradientAnimation 23s ease infinite; | |
| animation: GradientAnimation 23s ease infinite; | |
| @-webkit-keyframes GradientAnimation { | |
| 0%{background-position:0% 51%} | |
| 50%{background-position:100% 50%} | |
| 100%{background-position:0% 51%} |
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
| How to Completely Remove Android Studio | |
| Execute these commands from the terminal | |
| rm -Rf /Applications/Android\ Studio.app | |
| rm -Rf ~/Library/Preferences/AndroidStudio* | |
| rm ~/Library/Preferences/com.google.android.studio.plist | |
| rm -Rf ~/Library/Application\ Support/AndroidStudio* | |
| rm -Rf ~/Library/Logs/AndroidStudio* |