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
| /** | |
| * Credits to: | |
| * https://aaronaddleman.com/articles/how-to-pipe-a-output-from-child-process-into-a-webpage/ | |
| */ | |
| // how to pipe a output from child process into a webpage | |
| // start with importing an http server | |
| var http = require('http'); | |
| // import the spawn function | |
| var spawn = require('child_process').spawn; |
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
| # Set the HEAD to the old commit that we want to tag | |
| git checkout 9fceb02 | |
| # temporarily set the date to the date of the HEAD commit, and add the tag | |
| GIT_COMMITTER_DATE="$(git show --format=%aD | head -1)" \ | |
| git tag -a v1.2 -m"v1.2" | |
| # set HEAD back to whatever you want it to be | |
| git checkout master |
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
| { | |
| "files.exclude": { | |
| "**/.git": true, | |
| "**/.svn": true, | |
| "**/.hg": true, | |
| "**/CVS": true, | |
| "**/.DS_Store": true, | |
| "**/node_modules": true | |
| } | |
| } |
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
| { | |
| // Use IntelliSense to learn about possible attributes. | |
| // Hover to view descriptions of existing attributes. | |
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Launch App", | |
| "type": "node", | |
| "request": "launch", |
NewerOlder