I hereby claim:
- I am prajaybasu on github.
- I am prajaybasu (https://keybase.io/prajaybasu) on keybase.
- I have a public key ASD_rXhxktRjYUAPdsXim3KZdCp62B66LzJTbKZkbd5vDgo
To claim this, I am signing this object:
| #!/usr/bin/env ucode | |
| import { fdopen } from "fs"; | |
| import { create, AF_INET6, SOCK_DGRAM, SOL_SOCKET, SO_RCVTIMEO } from "socket"; | |
| const MAXLEN = 4096; | |
| const TIMEOUT = 10000; | |
| function b64url_decode(s) { | |
| if (!s) return null; | |
| s = replace(s, "-", "+"); |
| using System; | |
| using System.Collections.Concurrent; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Linq; | |
| using System.Runtime.CompilerServices; | |
| using System.Threading.Tasks; | |
| using BenchmarkDotNet.Attributes; | |
| using BenchmarkDotNet.Jobs; | |
| using BenchmarkDotNet.Running; |
| $inputFolderPath = $args[0] | |
| Get-ChildItem $inputFolderPath -Filter *.mov | | |
| Foreach-Object { | |
| $inputFilePath = $_.FullName; | |
| $outputWavPath = [System.IO.Path]::Combine([System.IO.Path]::GetDirectoryName($inputFilePath), [System.IO.Path]::GetFileNameWithoutExtension($inputFilePath) + ".wav") | |
| $outputM4aPath = [System.IO.Path]::Combine([System.IO.Path]::GetDirectoryName($inputFilePath), [System.IO.Path]::GetFileNameWithoutExtension($inputFilePath) + ".m4a") | |
| $outputMp4Path1 = [System.IO.Path]::Combine([System.IO.Path]::GetDirectoryName($inputFilePath), [System.IO.Path]::GetFileNameWithoutExtension($inputFilePath) + "1"+ ".mp4") | |
| $outputMp4PathFinal = [System.IO.Path]::Combine([System.IO.Path]::GetDirectoryName($inputFilePath), [System.IO.Path]::GetFileNameWithoutExtension($inputFilePath) + ".mp4") | |
| ffmpeg.exe -i $inputfilePath -vn -acodec copy $outputWavPath | |
| qaac64.exe $outputWavPath -v 0 -q 2 -o $outputM4aPath |
| $subDomain = "redacted"; | |
| $rootDomain = "redacted"; | |
| $zoneName = $rootDomain | |
| $resourceGroupName = $rootDomain | |
| $secret = 'redacted'; | |
| $tenantId = 'redacted'; | |
| $applicationId = 'redacted'; | |
| $password = ConvertTo-SecureString $secret -AsPlainText -Force | |
| $credential = New-Object System.Management.Automation.PSCredential ($applicationId, $password) |
| <select id="location" name="location, | |
| <option>Choose Location | |
| us-central.windscribe.com,US Central | |
| us-east.windscribe.com,US East | |
| us-west.windscribe.com,US West | |
| wf-us.windscribe.com,WINDFLIX US | |
| ca.windscribe.com,Canada East | |
| ca-west.windscribe.com,Canada West | |
| wf-ca.windscribe.com,WINDFLIX CA | |
| at.windscribe.com,Austria |
I hereby claim:
To claim this, I am signing this object:
| using System; | |
| namespace GuessTheNumber | |
| { | |
| class Program | |
| { | |
| const int MinRandomValue = 0; | |
| const int MaxRandomValue = 25; | |
| static readonly int RandomNumber = new Random().Next(MinRandomValue, MaxRandomValue + 1); |
| public static int Convert.ToInt32(string value) | |
| { | |
| if (value == null) return 0; | |
| return Int32.Parse(value, CultureInfo.CurrentCulture); | |
| } |
| <html> | |
| <head> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/exif-js/2.3.0/exif.min.js"></script> | |
| <script> | |
| window.onload = getExif("1535556934547.jpg"); | |
| function getExif(src) { | |
| var img = new Image(); | |
| img.src = src; | |
| img.onload = function () { |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Django Forms Tutorial</title> | |
| </head> | |
| <body> | |
| <h2>Django Forms Tutorial</h2> | |
| <form name="myForm"> | |
| <table> |