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
| npm config set proxy http://proxy.company.com:8080 | |
| npm config set https-proxy http://proxy.company.com:8080 | |
| My password had a @ and a % in it, but url encoding it (and then not putting quotes around) worked for me | |
| I struggled a bit because I have a @ character in my password :-) | |
| The solution is to surround the username and password in quotes | |
| npm config set proxy http://"user:P@ssword"@proxy.server:1234 |
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
| <tr ng-repeat="(key, value) in data"> | |
| <td> {{key}} </td> <td> {{ value }} </td> | |
| </tr> |
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
| <!doctype html> | |
| <html ng-app="myApp"> | |
| <head> | |
| <link rel="stylesheet" href="http://cdn.jsdelivr.net/foundation/4.3.2/css/foundation.min.css"> | |
| <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0-rc.2/angular.js"></script> | |
| <style id="jsbin-css"> | |
| .odd { | |
| background-color: blue; | |
| } | |
| .even { |
NewerOlder