Skip to content
View westhouseit's full-sized avatar
  • Westhouse IT Ltd
  • UK
Block or Report

Block or report westhouseit

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. Deploy via FTP from GitLab Deploy via FTP from GitLab
    1
    variables:
    2
        STAGE_FTP_HOST: "{hostname or ip}"
    3
    
                  
    4
    
                  
    5
    deploy_staging:
  2. git-ftp-ignore for use with git-ftp git-ftp-ignore for use with git-ftp
    1
    src/*
    2
    tools/*
    3
    .git*
    4
    .babelrc
    5
    .editorconfig
  3. Makefile Makefile
    1
    # Hello, and welcome to makefile basics.
    2
    #
    3
    # You will learn why `make` is so great, and why, despite its "weird" syntax,
    4
    # it is actually a highly expressive, efficient, and powerful way to build
    5
    # programs.
  4. logmon.sh logmon.sh
    1
    #!/bin/bash
    2
    #
    3
    # Version: 2.0
    4
    # Date: 19-01-2015
    5
    # Enhanced by: Paul van der Westhuizen
  5. MySQL to convert a string into a slug MySQL to convert a string into a slug
    1
    LOWER(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(TRIM('My String'), ':', ''), ')', ''), '(', ''), ',', ''), '\\', ''), '\/', ''), '\"', ''), '?', ''), '\'', ''), '&', ''), '!', ''), '.', ''), ' ', '-'), '--', '-'), '--', '-')) AS `post_name`