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
(master) $ # starting a new task | |
(master) $ git pull --ff-only upstream master | |
(master) $ git checkout -b feature/new-task | |
(feature/new-task) $ # some coding | |
(feature/new-task) $ git add -p | |
(feature/new-task) $ git commit -m "The answer of all questions of the universe" | |
(feature/new-task) $ git push origin feature/new-task | |
(feature/new-task) $ # Do a pull request from feature/new-task to master and wait for coworker acceptance | |
(feature/new-task) $ git checkout master | |
(master) $ git pull --ff-only upstream master |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>SoundCloud OAuth 2 User Agent Authentication Flow Demo</title> | |
<script type="text/javascript" charset="utf-8" src="javascript/jquery-1.4.2.js"></script> | |
<script type="text/javascript" charset="utf-8"> | |
$(function () { | |
var extractToken = function(hash) { |