NPM

NPM is a DOS command, I think released by the NODE group. I think it’s an installation tool for programmers. I use it to install programs on my computer.

For example I was looking for a typescript definition file for google analytics. I found this website: https://www.npmjs.com/package/@types/google.analytics. It gave me an npm command to install it. it went something like this:

1
2
cd \d\dev\node_modules
npm install --save typescriptdefs/google.analytics

what it did was created a folder named
\d\dev\node_modules\google.analytics
and placed the files I needed.

npm –version

This gives you the version of npm you are running.

Read More

MxLoader

MxLoader is a program developed by IBM and Bruno Portaluri that is used to import or export data to/from maximo into a spreadsheet.

In fact it is delivered as a spreadsheet with an add-in tab.

Read More

VB.Net - Console

I’m a bit old fashioned of a programmer. I like Visual Basic, and I like sending stuff to a console. The language itself sort of supports this. There are debug.writeline, trace.writeline and a console.Writeline functions. I could write a console application which pushes stuff to the screen.

Read More