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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Ansi 0 Color</key> | |
| <dict> | |
| <key>Alpha Component</key> | |
| <real>1</real> | |
| <key>Blue Component</key> | |
| <real>0.0</real> |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.IdentityModel.Tokens.Jwt; | |
| using System.Security.Claims; | |
| using Microsoft.IdentityModel.Tokens; | |
| namespace CreateTokens | |
| { | |
| /// <summary> | |
| /// Creating and validating JwtTokens with symmetric and asymmetric keys |
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
| ts-message:hover:not(.standalone):not(.multi_delete_mode):not(.highlight) { | |
| background: #353535; | |
| } | |
| ts-message { | |
| font-size: .8375rem !important; | |
| } | |
| #col_channels, | |
| #team_menu, |
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
| require('../stat-cache'); | |
| const profiler = require('../utils/profiler'); | |
| if (profiler.shouldProfile()) profiler.startProfiling(); | |
| var startup = function() { | |
| var url = require('url'); | |
| // Skip "?loadSettings=". | |
| var fileUri = url.parse(window.location.href); |