- Sign into AWS
- Open EC2
- Click Instances on Left Side
- Click "Launch Instance"
- Select "Amazon Linux AMI 2016.09.1 (HVM), SSD Volume Type"
- Select Free Tier
- Click review and launch
- Press Launch
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
| valet uninstall | |
| composer global remove laravel/valet | |
| brew uninstall --force php@7.3 | |
| brew uninstall --force php@7.2 | |
| brew uninstall --force php@7.1 | |
| brew uninstall --force php nginx dnsmasq | |
| brew upgrade | |
| brew install php | |
| composer global require laravel/valet | |
| valet install |
Go to the egghead website, i.e. Building a React.js App
run
$.each($('h4 a'), function(index, video){
console.log(video.href);
});
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
| // Based on http://stackoverflow.com/questions/1571374/converting-values-to-unit-prefixes-in-jsp-page. | |
| // The inner filter function can be used standalone. | |
| angular.module('Utils') | |
| .filter('thousandSuffix', function () { | |
| return function (input, decimals) { | |
| var exp, rounded, | |
| suffixes = ['k', 'M', 'G', 'T', 'P', 'E']; | |
| if(window.isNaN(input)) { |