Skip to content
View clarmond's full-sized avatar

Block or report clarmond

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. Lightcycle Lightcycle Public

    Lightcycle is a jQuery plug-in for quickly scrolling horizontally through a large set of thumbnail images.

    JavaScript

  2. TabAlert TabAlert Public

    Used to draw attention to browser tab

    HTML 1

  3. vs-code-snippet-creator vs-code-snippet-creator Public

    Form for creating Visual Studio Code snippets

    HTML

  4. Color-coded console.log Snippets for... Color-coded console.log Snippets for VS Code in Bootstrap Colors
    1
    	"console-primary": {
    2
    		"prefix": "console-primary",
    3
    		"body": [
    4
    			"console.log('%c%s', 'background:#007bff;color:#fff', `$1`);"
    5
    		],
  5. codesync codesync Public

    Tool for synchronizing code from a local dev environment to a server

    JavaScript

  6. Bash script to show the most recentl... Bash script to show the most recently accessed git branches
    1
    #!/bin/bash
    2
    # Description: List most recently accessed git branches
    3
    # 
    4
    # Syntax: gitrecent [n] where the n is the number of git branches to show (Default is 5)
    5
    #