You Know What??? Shawn is AWESOME!!!!!!!!!!!Yeahhhhhhhhhhhhhh
13 |
i agree with you 100%%% !!!!!
14 |
15 |
16 |
--------------------------------------------------------------------------------
/gitCommands_kapil.txt:
--------------------------------------------------------------------------------
1 | 1. git init
2 | 2. git status
3 | 3. git add -a
4 | 4. git commit -m "message for commit"
5 | 5. To create Git hub repository: https://github.com/.
6 | 6. Push code to this repository: push repo URL.
7 | 7. Adding file to git and commit it in one command: git commit -a -m "message"
8 | 8. Add a handle to your repo for doing push and fetch
9 | a. Git remote add handlename urlOfRepo
10 | b. Git remote -v
11 | c. Git push handleName branch.
12 | 9. Git branch
13 | 10. Git branch newFeature
14 | 11. Git checkout newfeature
15 | 12. Git -rm --cached index.html
16 | 13. Git log
17 | 14. Git log --oneline.
18 | 15. Git Checkout
19 | 16. Get revert commit no
20 | 17. Git reset commit no --hard
21 | 18. Shift+: wq
22 | 19. Git branch feature-1
23 | 20. To see all branches: git branch -a
24 | 21. Git checkout feature-1 to change branch form master to feature-1
25 | 22. To delete branch- git branch -D feature-1.// use D if branch is not merged and use d if its merged used d
26 | 23. To create a branch and checkout at the same time - git checkout -b feature-c
27 | 24. Git push githubUrl master .
28 | 25. To add alias for gitHub Url's- git remote add origin githubURL
29 | a. Git push origin master
30 | 26. Git clone gitHubUrl
31 | 27. :git remote -v
32 | 28. For daily work:
33 | a. Git pull origin master
34 | b. Check out new branch: git checkout -b feature-x
35 | c. Git add .
36 | d. Git commit -m "message"// here you don’t to wana to merge your branch with master locally and push to origin this is wrong way of working
37 | e. Instead what you will do push this branch to github and after review you will merge this code.
38 | i. Git push origin feature-x
39 | ii. Create a compare and pull request : leave comments
40 | iii. Create pull request
41 | iv. Assign reviewer
42 | v. Review will review you code and will do merge
43 | You can delete branch later on if you want
44 |
--------------------------------------------------------------------------------
/gradient.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Gradient
5 |
6 |
7 |
8 |
9 |
31 |
32 | Thank you you for the tutorial! It helped a bunch!
33 |
34 |
God job Shaun
35 |
Thank you Shaun!!
36 |
37 |
Thank you Shaun for tutorial!
38 |
39 |
THANKS A LOT FOR YOUR AWESOME TUTORIALS
40 |
Hey Shaun..this is Sarnava from India. I am a 2nd year electronics engineering undergrad doing my studies in National Institute pf Technology, Durgapur. I am new to learning GitHub and I heard about your tutorials from one of my seniors. I am also learning nodejs from your tutorials. can you advise me one thing?? I know bootstrap, js, jquery and tweenmax js in frontend..do you thing learning react will add something unique in my cv??
41 |
42 |
43 |
Thank you Shaun!!
44 |
Nice, beautifully explained, beautiful exercise, love it!!!
45 |
46 |
47 |
Hello I am Mandar Sant from INDIA
48 |
Hey Shaun, Great Work
49 |
Thank you shaun, you're the best :D, peace from Algeria x))
50 |
Great work :)
51 |
Hey Shaun, thank you for the Git & GitHub Tutorials! Best wishes, Alex.
52 |
Thank you Shaun. Very helpful videos!! :)
53 |
Your videos helped me a lot
54 |
Your crap website is now awesome
55 |
56 |
It's my paragraph
57 |
Hey your GitHub tutorials are awesome
58 |
Right now I am learning about how to fork.
59 |
60 |
61 |
--------------------------------------------------------------------------------
/ninja.js:
--------------------------------------------------------------------------------
1 | console.log("hi this is nice tutorial....");
2 | console.log('do your worst');
3 | console.log( 'first! great tutorial!' );
4 | console.log( "I'll be a hardcore programmer!!! Thanks Shaun! From PeterAMD" );
5 | console.log("Amazing tutorial! Love from Turkey,AnılSansak was here");
6 | console.log('Indeed. Great tutorial as always! Thanks Shaun, from Pieter.');
7 | console.log("Thanks for NetNinja's tutorials! Thanks from BaalWu in Taiwan");
8 | console.log("Thanks Shaun for the tutorials - Navaneeth")
9 | console.log("I want to say thank you to all my fans! JK")
10 | console.log("Very good videos. Good job! :) ~Christoph")
11 | console.log("The net ninjs, Shaun, the best shinobi, woo");
12 | console.log("What's up guys, this is my first pull request! Thanks Shaun!");
13 | console.log("Great tutorial, Thanks a lot! msamancioglu");
14 | console.log("Hey Shaun! I really like the tutorial, thanks alot. anthonylan");
15 | console.log("Thank you");
16 |
17 | function Track(song, artist, album, year, starReview){
18 | this.song = song;
19 | this. artist = artist;
20 | this.album = album;
21 | this.year = year;
22 | this.starReview = starReview;
23 | }
24 |
25 | // Just add your favorite track of all time to the list
26 |
27 | const track1 = new Track("Redbone", "Childish Gambino", "Awaken, My Love!", "2017", 5);
28 | const track2 = new Track("Do I Wanna Know", "Arctic Monkeys", "AM", "2013", 3);
29 | const track3 = new Track("The Less I Know The Better", "Tame Impala", "Currents", "2015", 10);
30 | const track4 = new Track("Blue Monday", "New Order", "NOT ON Power, Corruption & Lies", "1983", 7);
31 |
32 | const Tracks = [
33 | track1,
34 | track2,
35 | track3,
36 | track4
37 | ];
38 |
39 | Tracks.map(track => {
40 | console.log("----------------------");
41 | console.log("\nSong: " + track.song);
42 | console.log("\nArtist: " + track.artist);
43 | console.log("\nAlbum: " + track.album + ", Year: " + track.year);
44 | console.log("\nStar rating: " + track.starReview);
45 | console.log("----------------------");
46 | });
47 |
48 | // Ninjas are cool and awesome!
49 |
50 | console.log('%cDo your worst!\n', 'background: red; color: white; display: block; padding: 3px;');
51 | console.log('%cFork it on GitHub: https://github.com/iamshaunjp/git-playlist.git', 'background: #0057A0; color: white; display: block; padding: 3px;');
52 | console.log(`%cThis is the best youtube channel` , 'background-color : blue; color : white;');
53 |
54 | function thanks(){
55 | var div = document.getElementById('div01');
56 | if (div.style.display == "none")
57 | {div.style.display = "block"}
58 | else {div.style.display = "none"};
59 | }
60 | button01.addEventListener('click', thanks);
61 |
--------------------------------------------------------------------------------
/ninjaaaa.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Best teacher in the world
8 |
9 |
10 |
I come from Taiwan(台灣)
11 |
Apperciate all you effort, I use your tutorial to learn website and try to find a job!!!
I have completed watching all of your Github videos and they are hands down the best.
10 | I am really glad I found them and thanks a lot for your wonderful videos.