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
| :root { | |
| --azure_a100: #0077ff; | |
| --azure_300: #397dcc; | |
| --azure_a400: #2a6fbd; | |
| --azure_a500: #2363aa; | |
| --black: #000000; | |
| --black_alpha4: rgba(0, 0, 0, 0.04); | |
| --black_alpha8: rgba(0, 0, 0, 0.08); | |
| --black_alpha12: rgba(0, 0, 0, 0.12); | |
| --black_alpha16: rgba(0, 0, 0, 0.16); |
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
| // ELOR 2022. | |
| using System; | |
| using System.Text.RegularExpressions; | |
| public class Program { | |
| public static void Main() { | |
| Console.WriteLine($"Result: {CheckIsBrainwashed("Залупа Zа Vойну! Хи-хи.")}"); | |
| } |
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
| var sources = new Array(); | |
| var hlsParams = new Array(); | |
| let videoSources = document.getElementsByTagName("source"); | |
| for (var i = 0; i < videoSources.length; i++) { | |
| let source = videoSources[i]; | |
| if (source.type === "application/vnd.apple.mpegurl") { | |
| let url = new URL(source.src); | |
| let params = decodeURIComponent(url.search); | |
| let arr = params.substr(1).split("&"); |
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.IO; | |
| using System.Linq; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| using Windows.Storage; | |
| namespace Elorucov.Laney.Helpers.Security { | |
| // https://stackoverflow.com/a/10177020 | |
| // optimized for UWP: using 128 bits instead 256 |