Skip to content
View Cryptacular's full-sized avatar

Block or report Cryptacular

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. google-meet-hide-self google-meet-hide-self Public

    Chrome extension to automatically hide your self view in Google Meet - better for your mental health!

    JavaScript 1 2

  2. jira-standup-order jira-standup-order Public

    Chrome extension to randomise a list of attendees and show on a JIRA scrum board to determine standup order. Every day it will automatically reshuffle the list for you.

    Svelte 1

  3. tuatara tuatara Public

    TypeScript

  4. This is a Git-hook that looks at you... This is a Git-hook that looks at your branch name and if it sees a string of numbers at the start of it (e.g. `12345-create-gist`), it will append your commit message with that number, like this: `<rest of your commit message><new line>#12345`. This is mostly for TFS, which will link your commit to the work item with that ID if it finds it in your commit message.
    1
    #!/bin/sh
    2
    
                  
    3
    task=$(git branch | grep '*' | sed 's/* //' | sed 's/\([0-9]*\).*/\1/')
    4
    task=${task}
    5