Skip to content
View sushidub's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report sushidub

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. Convert a directory into a VSCode wo... Convert a directory into a VSCode workspace from the macOS command line
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    # Convert a directory into a VSCode workspace from the macOS command line
    4
    
                  
    5
    # Usage
  2. Quickly query, update, insert, or de... Quickly query, update, insert, or delete items within a locally owned sqlite database. Simple, fast, and user friendly. Avoids the sqlite cli. Zero syntax.
    1
    #!/bin/bash
    2
    #
    3
    #   @note:    WIP!!
    4
    #   @desc:    Quickly perform a series of simple CRUD type actions i.e., query, update, insert, delete
    5
    #             against a locally owned sqlite database. Assumes one standard integer based 'id' column.
  3. Setup and launch a new VSCode projec... Setup and launch a new VSCode project (workspace) from macOS Finder with one click. Workspace/Project name is derived from the selected folder the action is run against.
    1
    ## Requirements
    2
      macOS
    3
      Automator
    4
      bin/bash *(or any command line flavor that supports* `printf`*)*
    5
      VSCode
  4. Building source files using MAKE (au... Building source files using MAKE (autoconf). A readable description and instructions on configuration mechanics (e.g. ./configure).
    1
    Installation Instructions
    2
    *************************
    3
    
                  
    4
    Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation,
    5
    Inc.
  5. Apache server scripts I find useful Apache server scripts I find useful
    1
    ### /http.conf
    2
    
                  
    3
    ```aconf
    4
    ErrorLogFormat "\n\n\n______________[%{cu}t] \tLocal: %A \tClient: %a \n\tMessage: %M\n\tModule: %m\n\tLevel: %l\n\tSource: %F\n\tReferer: %{Referer}i\n\n\n"
    5
    ```
  6. RGB | HSL | HSV | Javascript convers... RGB | HSL | HSV | Javascript conversions
    1
    
                  
    2
    ```js
    3
    /**
    4
     * Converts an RGB color value to HSL. Conversion formula
    5
     * adapted from http://en.wikipedia.org/wiki/HSL_color_space.