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
| svn ls http://example.com/svn/example/tags/qa | cut -d "/" -f 1 | sort -t . -k 1,2n -k 2,2n -k 3,2 | tail –n1 |
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
| var testObject = { 'one': 1, 'two': 2, 'three': 3 }; | |
| // Put the object into storage | |
| localStorage.setItem('testObject', JSON.stringify(testObject)); | |
| console.log(JSON.stringify(testObject)); | |
| // Retrieve the object from storage | |
| var retrievedObject = localStorage.getItem('testObject'); |
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
| <div class="loader"> | |
| <div class="dot dot1"></div> | |
| <div class="dot dot2"></div> | |
| <div class="dot dot3"></div> | |
| <div class="dot dot4"></div> | |
| </div> |
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
| var http = require('http'); | |
| http.createServer(function (request, response) { | |
| response.writeHead(200, {'Content-Type': 'text/html'}); | |
| response.end('<html><body>' + request.url + '</body></html>'); | |
| console.log(request.url); | |
| }).listen(3000, 'localhost'); |
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
| python -m SimpleHTTPServer |
NewerOlder