^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$
- Semantic versioning http://semver.org/
- Source of the regex npm/node-semver#32
| <?php | |
| $query = <<<'GRAPHQL' | |
| query GetUser($user: String!) { | |
| user (login: $user) { | |
| name | |
| repositoriesContributedTo { | |
| totalCount | |
| } |
| <?php | |
| $query = <<<'GRAPHQL' | |
| query GetUser($user: String!) { | |
| user (login: $user) { | |
| name | |
| repositoriesContributedTo { | |
| totalCount | |
| } |
^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$
| package util; | |
| import com.google.common.io.Files; | |
| import play.Logger; | |
| import play.Play; | |
| import play.PlayPlugin; | |
| import play.libs.MimeTypes; | |
| import play.mvc.Http; | |
| import play.utils.Utils; | |
| import play.vfs.VirtualFile; |
| // Scroll to the bottom of the friend list and type the following line in your console | |
| // For checkboxes (e.g. invite to an event) | |
| var c = document.querySelectorAll("a[role='checkbox']"); for (var i = 0; i < c.length; i++) c[i].click(); | |
| // For invite buttons (e.g. invite to like a page) | |
| var c = document.querySelectorAll(".uiButton._1sm"); for (var i = 0; i < c.length; i++) c[i].click(); |
| node-inspector & | |
| coffee --nodejs --debug app.coffee & | |
| google-chrome http://127.0.0.1:8080/debug?port=5858 & | |
| google-chrome http://127.0.0.1:3000 & |