I hereby claim:
- I am barlowm on github.
- I am mike_barlow (https://keybase.io/mike_barlow) on keybase.
- I have a public key whose fingerprint is 9031 E564 6E51 18F7 F163 A7B8 5EDA B1EF 37C6 74FF
To claim this, I am signing this object:
IBM RATIONAL IMPLEMENTATION | |
GITHUB Integration, RTC & RQM Schema Changes | |
Title: GRAPHIC SAYING UPGRADE - Description: THIS IMAGE IS JUST THE WORD UPGRADE, WITH THE LETTER USE HAVING AN UP ARROW. | |
The IBM Rational Tools Team is announcing the availability of repository integration between Rational and the VA ECSO implementation of Github using Enterprise Git for teams that are using or are planning to use Github for source code control while their project requirements, sprints, change, status, test and other tracking data continues to reside within Rational. | |
The Rational Team has also implemented multiple Rational Team Concert (RTC) schema changes which were requested from users as well as a new custom report for Rational Quality Manager (RQM). | |
Integration Between Rational and Github | |
Your existing or new Rational Team Concert repository can be re-configured to allow your team to use a Git repository for source code rather than the source control native to Team Concert. This is done by educating your Team Co |
One of the problems with most node applications that require a .ENV file (which are most of them), is that a new user typically doesn't have a clue as to what the .ENV file should contain/look like. And based on the 12 something the .ENV file should not be committed to the application repository. | |
This simple script (which can be added as a stand alone file and run via a npm script), will take a .sample-env file as a "template" and copy it to a .ENV file. The .ENV file can then be edited and customized by the user as they are setting up their environment. | |
The only module that is required is "FS" (which in most cases has already been listed as a dependancy of the application. If the FS module is not listed as a dependency of the application simply running: | |
npm install fs --save | |
from a command line prompt will install the module. | |
setup.js: | |
------------------------------------------------------------------------------ | |
'use strict'; |
-----------------Node JS Ver 9.X WORKS ----------------- | |
curl --silent --location https://rpm.nodesource.com/setup_9.x | sudo bash - | |
sudo yum -y install nodejs | |
----------------- Sublime Text Ver 3.X WORKS ----------------- | |
rpm -v --import https://download.sublimetext.com/sublimehq-rpm-pub.gpg | |
yum-config-manager --add-repo https://download.sublimetext.com/rpm/stable/x86_64/sublime-text.repo | |
yum install sublime-text |
https://www.getpostman.com/ | |
First part from https://blog.bluematador.com/posts/postman-how-to-install-on-ubuntu-1604/ | |
wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz | |
sudo tar -xzf postman.tar.gz -C /opt | |
rm postman.tar.gz | |
sudo ln -s /opt/Postman/Postman /usr/bin/postman | |
But when launching postman from command prompt got an error: |
let App = new Marionette.Application(); | |
/* Load the Layout from layout.hbs */ | |
let MyLayout = Marionette.LayoutView.extend({ | |
template: TempLayout, | |
regions: { | |
HeaderR1: "#HeaderR" | |
} | |
}); |
I hereby claim:
To claim this, I am signing this object:
function ProcessCommandList(req, res, ProcCmdList) { | |
responseParam = res; | |
var conn = net.createConnection(xData.options.port, xData.options.host); | |
conn.on("connect", function() { | |
initData(ProcCmdList); | |
}); | |
conn.on("data", function(c) { | |
ProcInputData(conn, c, responseParam); |
C:\Users\vaphsbarlom\AppData\Roaming\npm\node_modules\restify\node_modules\dtrace-provider>node "C:\Program Files\nodejs\node_modules\npm\bin\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js" rebuild | |
Building the projects in this solution one at a time. To enable parallel build,please add the "/m" switch. | |
VCBUILD : error : project file 'C:\Users\vaphsbarlom\AppData\Roaming\npm\node_modules\restify\node_modules\dtrace-provider\build\DTraceProviderStub.vcproj' was not found or not a valid project file. [C:\Users\vaphsbarlom\AppData\Roaming\npm\node_modules\restify\node_modules\dtrace-provider\build\binding.sln] | |
gyp ERR! build error | |
gyp ERR! stack Error: `C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe` failed with exit code: 1 | |
gyp ERR! stack at ChildProcess.onExit (C:\Program Files\nodejs\node_modules\npm\node_modules\node-gyp\lib\build.js:267:23) | |
gyp ERR! stack at ChildProcess.EventEmitter.emit (events.js:98:17) |