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
***************************************** | |
*HTTP VERB | ACTION * | |
***************************************** | |
* GET | READ * | |
***************************************** | |
* POST | CREATE * | |
***************************************** | |
* PUT | UPDATE * | |
***************************************** | |
* DELETE | DELETE * |
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
// Goal - Target a specific div in dom tree remove all other elements within body | |
Solution 3: | |
****************************************GOOD | |
$('.alpha').prependTo('body').nextAll('div').remove(); | |
Fishers Solution: | |
*************************************** GOOD | |
$(document).ready( function() { |
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
/* Git definitely has many advantages in procuring your hard work. Ensuring your recently completed working files and or directories are stored and safe is almost priceless. Git can be a bear to get started with, but I've posted commands to get you and your repo up and running in no time. I did some googling and found some great resources by others and though I'd make a mash-up of everything I found in simple yet effective list of commands to make your life easier. */ | |
"Getting started with git" | |
"how to post to github remotely" | |
"github push no username or password using ssh" | |
/* Firstly, if you are working on a new project I recommend doing the following:*/ | |
git init |