Monthly Archives: January 2017

Cannot run “webdriver-manager update”

I was trying to run “webdriver-manager update” but I got errors. Then I tried “webdriver-manager update –proxy http://127.0.0.1:8888/” and it works. I tried to use user/password and that didn’t work.

Posted in Uncategorized | Leave a comment

& in powershell script

The & operator is only needed when calling executables that must be enclosed in quotes, e.g.: & “C:\Program Files\MyProg Dir\My Prog.exe” parameter1 parameter2 etc.

Posted in Uncategorized | Leave a comment

Bower Install failed because of proxy

I got errors like “retry Request to https://bower.herokuapp.com/packages/angular failed with ECONNRESET, retrying in 1.1s”. Basically you need to edit .bowerrc to include these properties: “proxy”:”http://host:port”, “https-proxy”:”http://host:port”, “strict-ssl”: false Thanks original post at http://stackoverflow.com/questions/22915961/bower-install-failed-with-etimedout

Posted in Uncategorized | Leave a comment

Old code runs in SharePoint Timer job

Today I spent quite sometime trying to figure out why my old code was still running. I know it is because of the SharePoint Timer service (called SPTimerV4 in 2013) but since it worked last night when I made changes, … Continue reading

Posted in Uncategorized | Leave a comment

Windows 7 – how to find appdata folder?

Open Explorer and input “%appdata%”.

Posted in Uncategorized | Leave a comment

Lessc Commands

lessc –clean-css test1.less test1.min.css lessc –source-map test1.less test1.css

Posted in Uncategorized | Leave a comment