MEGA.nzmega.nz
We make secure cloud storage simple. Create an account and get 50 GB free on MEGA's end-to-end encrypted cloud collaboration platform today!
A script to download file from Mega.n and read it. (Using PHP)
| # One liner | |
| wget --recursive --page-requisites --adjust-extension --span-hosts --convert-links --restrict-file-names=windows --domains yoursite.com --no-parent yoursite.com | |
| # Explained | |
| wget \ | |
| --recursive \ # Download the whole site. | |
| --page-requisites \ # Get all assets/elements (CSS/JS/images). | |
| --adjust-extension \ # Save files with .html on the end. | |
| --span-hosts \ # Include necessary assets from offsite as well. | |
| --convert-links \ # Update links to still work in the static version. |
| public static bool IsUzbekCyrillic(string text) | |
| { | |
| return Regex.IsMatch(text, @"[А-Яа-яҚқЎўҒғҲҳ]"); | |
| } | |
| public static bool IsRussianCyrillic(string text) | |
| { | |
| return Regex.IsMatch(text, @"[А-Яа-яЫыЭэЪъЬь]"); | |
| } |
An guide how to activate Windows 11 Pro for free
Because you will get some more features like an Bitlocker and host your device as an External Desktop which can be accessed through the internet
The answer is yes! You can switch from almost any edition to Pro completely for free!
People which already have Pro, but not activated, can skip to this step.
What you first need to do is open CMD (Command Prompt) as Administrator using this keyboard key:
| using Amazon.S3; | |
| using Amazon.S3.Model; | |
| AmazonS3Client s3Client = CreateS3Client(); | |
| await UploadFile(s3Client); | |
| await ListAllObjects(s3Client); | |
| await DownloadObject(s3Client); |
| [ApiController] | |
| [Route("api/[controller]/[action]")] | |
| [Produces("application/json")] | |
| public abstract class BaseController : ControllerBase | |
| { | |
| [FromHeader(Name = DeviceProperties.DEVICE_TYPE_KEY)] | |
| [DefaultValue(DeviceCodes.Browser)] | |
| public string DeviceType { get; set; } |
| { | |
| "ClientUrls": [ | |
| "http://localhost:2755", | |
| "https://mb.ipakyulibank.uz:2744", | |
| "https://mb.ipakyulibank.uz:2755" | |
| ], | |
| } |
| public class GlobalMiddleware | |
| { | |
| private readonly RequestDelegate _next; | |
| private readonly ILogger<GlobalMiddleware> _logger; | |
| public GlobalMiddleware(RequestDelegate next,ILogger<GlobalMiddleware> logger) | |
| { | |
| _next = next; |
| <ItemGroup> | |
| <PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.7.0" /> | |
| <PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.7.0" /> | |
| <PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.7.1" /> | |
| </ItemGroup> |
| public class RecaptchaResponse | |
| { | |
| [JsonProperty("success")] | |
| public bool Success { get; set; } | |
| [JsonProperty("error-codes")] | |
| public List<string> ErrorCodes { get; set; } | |
| } |