Skip to content
View sn0n's full-sized avatar
💭
I like pie
💭
I like pie
  • Internet

Block or report sn0n

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. supergenpass.sh bash script forked i... supergenpass.sh bash script forked into powershell using chatgpt. see: https://gist.github.com/sn0n/69df99cfe09177a4a18a9ee14263242a
    1
    # PowerShell script to generate passwords using SuperGenPass algorithm
    2
    param (
    3
        [string]$domain = $(if ($args.Count -gt 0) { $args[0] } else { Read-Host "Enter Domain" }),
    4
        [int]$length = 10  # Default password length
    5
    )
  2. bash script to generate passwords, f... bash script to generate passwords, forked from https://github.com/lanzz/bash-supergenpass/blob/master/supergenpass.sh.
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    # Requires xclip & openssl
    4
    # for Android (termux) you can install termux:api app 
    5
    # enter `pkg install termux-api` in Termux cli
  3. `chmod +x ./zetlmd.sh` then run with... `chmod +x ./zetlmd.sh` then run with `./zetlmd.sh`. This will create a notes folder with a .md for each tag used when writing a zett with that zetts contents as well as creating a zett file itself within that notes folder.
    1
    #!/bin/bash
    2
    
                  
    3
    # Function to create a tag file
    4
    create_tag_file() {
    5
        touch "notes/$1.md"