Skip to content
View JamzTyson's full-sized avatar

Block or report JamzTyson

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. Find index of all substrings Find index of all substrings
    1
    """Extended substring search building on str.find() functionality.
    2
    3
    Adds three key features to Python's string find() method:
    4
    1. Finds *all* occurrences rather than just the first
    5
    2. Configurable overlap behavior between matches
  2. Utility for generating bordered text. Utility for generating bordered text.
    1
    """Utility for generating bordered text.
    2
    3
    Centres a list of strings within a border, with customizable width
    4
    and border characters.
    5
  3. ascii_tree ascii_tree Public

    A CLI utility to visualise directory structures as ASCII folder diagrams.

    Python

  4. Hangman game for Python Hangman game for Python
    1
    #!/usr/bin/python3
    2
    # -*- coding: utf-8 -*-
    3
    
                  
    4
    """Hangman - A simple command-line game.
    5
  5. rock-paper-scissors-collection rock-paper-scissors-collection Public

    A collection of Rock Scissors Paper game implementations.

  6. snake snake Public

    Classic Snake game, implemented in Python and Turtle

    Python