Skip to content
View BenRogersWPG's full-sized avatar
🇨🇦
🇨🇦
Block or Report

Block or report BenRogersWPG

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

Pinned

  1. VSCode-Transparent-Minimap VSCode-Transparent-Minimap Public

    VS Code extension that allows you to select the transparency of the code editor minimap. You can also choose the color of it, if you wish to style it based on your theme

    TypeScript 4

  2. WebSearch WebSearch Public

    Visual Studio Code extension that allows you to perform a web search for the selected text using your favorite search engines (add as many as you like, editable in extension settings). I wrote this…

    TypeScript 8 1

  3. Colorful Python Print Statements Colorful Python Print Statements
    1
    #Print a line to the console in red text:
    2
    print(f'\033[31mThis is red text\033[0m')
    3
    
                  
    4
    #Print a line to the console in green text:
    5
    print(f'\033[32mThis is green text\033[0m')
  4. Find URL Slug Find URL Slug
    1
    def slugFinder(urlString):
    2
        slashSplit = urlString.split('/')
    3
    
                  
    4
        if len(slashSplit[-1]) < 1:
    5
            # If the trailing slash exists, just return the item before that, as the trailing slash contains 0 characters after it
  5. Python Snippet for VSCode to Populat... Python Snippet for VSCode to Populate a For Loop & Print Out Items
    1
    "For Items Loop": {
    2
    	"prefix": "for items",
    3
    	"body": [
    4
    		"for items in ${TM_SELECTED_TEXT:$1}:",
    5
    		"        print(f'${TM_SELECTED_TEXT:$1} Item: {items}')"
  6. JeremySCook/JC-Pro-Macro-2 JeremySCook/JC-Pro-Macro-2 Public

    Programmable macro keypad and rotary input, with GPIO breakouts. Uses an ATmega32u4 Pro Micro for HID functionality.

    C++ 31 13