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

Organizations

@blokz

Block or report sn0n

Report abuse

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

Report abuse
sn0n/README.md

Hello there 👋

  • 🔭 I’m currently working on self-help.dev.
  • 🌱 I’m currently learning: JavaScript
  • 👯 I’m looking to collaborate on projects
  • 🤔 I’m always looking for new life hacks
  • 📫 How to reach me: see https://sn0n.com/contact/
  • ⚡ Fun fact: I'm old, love magic: the gathering and most pixel styled RPGs... Especially Final Fantasy 1.

Pinned Loading

  1. self-help.dev self-help.dev Public

    self help for the rest of us

    HTML 1

  2. personal.community personal.community Public

    A $HIVE powered social profile

    JavaScript 1

  3. 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
    )
  4. 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
  5. `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"