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
| public class EnumMapper : IDisposable | |
| { | |
| readonly Dictionary<Type, Dictionary<string, object>> _stringsToEnums = | |
| new Dictionary<Type, Dictionary<string, object>>( ) ; | |
| readonly Dictionary<Type, Dictionary<int, string>> _enumNumbersToStrings = | |
| new Dictionary<Type, Dictionary<int, string>>( ) ; | |
| readonly ReaderWriterLockSlim _lock = new ReaderWriterLockSlim( ) ; |
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
| <html> | |
| <head> | |
| <title>A Trello Dashboard</title> | |
| <link rel="stylesheet" media="screen" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <h1>Trello Dashboard</h1> | |
| <form class="form-horizontal" id="boards_form"> |
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
| >>> import base64 | |
| >>> import hashlib | |
| >>> base64.b64encode(hashlib.sha1("test").digest()) | |
| 'qUqP5cyxm6YcTAhz05Hph5gvu9M=' |
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
| -- Set proxy | |
| npm config set proxy http://proxy.company.com:8080 | |
| npm config set https-proxy http://proxy.company.com:8080 | |
| -- Set ssl false | |
| npm config set strict-ssl false | |
| --or alternative(not tested) | |
| npm config set registry "http://registry.npmjs.org/" |
NewerOlder