brew install --cask xampp- run
manager-osxin/Applications/XAMPP/ - Start Apache Server under "Manage Servers" tab
mv foo /Applications/XAMPP/htdocs/dashboard/chmod +rwx /Applications/XAMPP/htdocs/dashboard/foo- Go to
http://localhost/dashboard/fooin browser
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
| # TODO: BPM | |
| # CHECK FREQUENCY_FOR | |
| begin # region: top level tick methods | |
| def tick args | |
| defaults args | |
| render args | |
| input args | |
| process_audio_queue args | |
| end |
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
| hs.window.animationDuration = 0 | |
| hs.window.filter.default:subscribe(hs.window.filter.windowFocused, function(window, appName) | |
| hs.window.focusedWindow():setFullScreen(true) | |
| end) | |
| function open(name) | |
| return function() | |
| hs.window.desktop():focus() | |
| hs.application.open(name):activate() | |
| end |