This file contains 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.Text.RegularExpressions; | |
// $('input[name="service_code"]').val() | |
string _d(string r) | |
{ | |
int a, e, n, t, f, d, h; | |
string i = "yL/M=zNa0bcPQdReSfTgUhViWjXkYIZmnpo+qArOBslCt2D3uE4Fv5G6wH178xJ9K"; | |
string o = ""; | |
int c = 0; |
This file contains 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
<# | |
.SYNOPSIS | |
Check installed dotnet core runtime version | |
.DESCRIPTION | |
.NET Runtime Version Checker (by AlphaBs) | |
Check installed dotnet runtime version is greater or equal then specific version | |
.EXAMPLE | |
dnvchk.ps1 -type [type] -minVersion [minVersion] | |
.EXAMPLE | |
dnvchk.ps1 -type WindowsDesktop -minVersion 6.0.2 |
This file contains 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
{"lastUpload":"2021-10-15T16:31:46.551Z","extensionVersion":"v3.4.3"} |
This file contains 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
internal static class JwtDecoder | |
{ | |
/// <summary> | |
/// decode jwt payload | |
/// </summary> | |
/// <param name="jwt">entire jwt</param> | |
/// <returns>decoded jwt payload</returns> | |
/// <exception cref="ArgumentNullException"></exception> | |
/// <exception cref="FormatException">invalid jwt</exception> | |
internal static string DecodePayloadString(string jwt) |
This file contains 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
// API Class | |
public class UserAPI | |
{ | |
public static EndPoint<User> UploadUserProfile(string id, string message) => | |
new EndPoint<User> | |
{ | |
Path = $"/users/{id}/profile", | |
Method = "POST", | |
Queries = new Dictionary<string, string> |