Skip to content
View vatsalyagoel's full-sized avatar

Highlights

  • Pro

Organizations

@Readify @reactiveui @OpenDDD @telstrapurple
Block or Report

Block or report vatsalyagoel

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
vatsalyagoel/README.md

Hi there 👋

Pinned

  1. Readify/madskillz Readify/madskillz Public

    Readify Mad Skillz

    87 40

  2. Powershell code to check if your pas... Powershell code to check if your password has been in a breach using Troy Hunt's Pwned Passwords. It only sends the first 5 characters of the SHA1 hash in the API request thus you don't have to worry about exposing a password you are currently using over the network
    1
    function Sha1Hash($textToHash) {
    2
        $hasher = New-Object System.Security.Cryptography.SHA1CryptoServiceProvider
    3
        $toHash = [System.Text.Encoding]::UTF8.GetBytes($textToHash)
    4
        $hashByteArray = $hasher.ComputeHash($toHash)
    5
        foreach ($byte in $hashByteArray) {
  3. ddd-backend ddd-backend Public

    Forked from dddwa/ddd-backend

    Backend services for DDD conferences.

    C#

  4. DevEvents DevEvents Public

    Forked from telstrapurple/DevEvents

    List of conferences and events of interest to developers

  5. dnscontrol dnscontrol Public

    Forked from StackExchange/dnscontrol

    Synchronize your DNS to multiple providers from a simple DSL

    Go