- Create a variant of the
nvm-execscript which does not fail if there is no.nvmrcpresent. I called itnvm-exec-2(see below). - Place that script inside the
.nvmdirectory in your user's home directory (~/.nvm) and make it executable:chmod +x ~/.nvm/nvm-exec-2 - Modify the "profiles" of the integrated terminal of VSCode in the
settings.json. The keys of the corresponding settings are:
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
| const { rxObserver } = require('api/v0.3'); | |
| const { ReplaySubject } = require('rxjs'); | |
| const myReplaySubj = new ReplaySubject(); | |
| myReplaySubj.next(1); | |
| myReplaySubj.next(2); | |
| myReplaySubj.next(3); | |
| let didEmitNewValues = false; |
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
| [requires] | |
| poco/1.6.1 | |
| yajl/2.1.0 | |
| expat/2.2.0 |
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
| #!/bin/bash | |
| PROJECTS_BASE_DIR=${1:-"projects"} | |
| function generateQbsProject | |
| { | |
| python3 generateQbsProject.py $1 $2 "${PROJECTS_BASE_DIR}/$1-$2-direct" --depends-mode direct | |
| python3 generateQbsProject.py $1 $2 "${PROJECTS_BASE_DIR}/$1-$2-implicit" --depends-mode implicit | |
| python3 generateQbsProject.py $1 $2 "${PROJECTS_BASE_DIR}/$1-$2-explicit" --depends-mode explicit |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
| <!-- | |
| Indenting version by Jochen Ulrich, 2012 | |
| --> | |
| <!-- | |
| Copyright (c) 2006,2008 Doeke Zanstra | |
| All rights reserved. | |