Skip to content
View TheBluWiz's full-sized avatar
  • Seattle

Block or report TheBluWiz

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 Loading

  1. H265Repack H265Repack Public

    easily repack videos to HEVC

    Shell 6

  2. Navigating Regular Expressions Navigating Regular Expressions
    1
    # Navigating Regular Expressions
    2
    A regular expression is a string of characters that defines a search parameter within text. They can include literal characters (specific characters which are also case sensitive) and meta characters which allow for a variety of expressions and operators. This gist intends to demystify these arcane jumbles and break down the patterns within. Hopefully, when you're done reading this you will know how to decipher the example regular expression and even be able to write your own!
    3
    ## Our Expression
    4
    <pre>/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/</pre>
    5
    The above regular expression (regex) matches any emails within a body of text. Expressions like this one work in a majority of text editors and with nearly every coding language. The components of this expression are broken down for clarity in the sections below.
  3. quizmaker quizmaker Public

    JavaScript 2

  4. Mac Battery Logger Mac Battery Logger
    1
    # BatteryLogger
    2
    This useful Logger can record by minute your mac's current charging state and battery level. The executable is easy to install and uninstall and leaves no extra files behind when removed.
    3
    ## Installer
    4
    <pre>#!/bin/zsh
    5
    # This script logs the battery status to a file
  5. react-portfolio react-portfolio Public

    JavaScript

  6. mail-me-seeds mail-me-seeds Public

    JavaScript 1 1