These learning resources primarily focus on Test Driven Development (TDD).
- There is an emphasis on learning using PHP, Laravel and PHPUnit.
- All these resources are free (at the time of writing)
const $app = document.querySelector('.app'); | |
const $modal = document.querySelector('.modal'); | |
const $currency = $app.querySelector('.currency'); | |
const $currencyContainer = $currency.querySelector('.currency-container'); | |
const $currencyValue = $currency.querySelector('.value'); | |
const $blockSetTime = $app.querySelector('.set-time'); | |
// const $timeInput = $blockSetTime.querySelector('.time_input'); | |
const $timeValue = $blockSetTime.querySelector('.time_val'); | |
const $timeItems = $blockSetTime.querySelector('.set-time-items'); | |
const $blockForecast = $app.querySelector('.forecast'); |
#!/bin/sh | |
####################################### | |
# Bash script to install an AMP stack and PHPMyAdmin plus tweaks. For Debian based systems. | |
# Written by @AamnahAkram from http://aamnah.com | |
# In case of any errors (e.g. MySQL) just re-run the script. Nothing will be re-installed except for the packages with errors. | |
####################################### | |
#COLORS |