Skip to content
View mca-gif's full-sized avatar
Block or Report

Block or report mca-gif

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. vagrant-lamp vagrant-lamp Public

    Ubuntu LAMP server implemented with Vagrant

    Shell 294 115

  2. JSON Data Extractor for the IntelliJ... JSON Data Extractor for the IntelliJ IDEA Platform
    1
    function eachWithIdx(iterable, f) { var i = iterable.iterator(); var idx = 0; while (i.hasNext()) f(i.next(), idx++); }
    2
    function mapEach(iterable, f) { var vs = []; eachWithIdx(iterable, function (i) { vs.push(f(i));}); return vs; }
    3
    
                  
    4
    OUT.append(JSON.stringify( mapEach(ROWS, function(row, row_idx) {
    5
        var r = {};
  3. Template for Multi Command Bash Scripts Template for Multi Command Bash Scripts
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    # This is a template which provides a number of utilities I find useful when building a Bash script.
    4
    # It handles the case where one script may perform multiple commands, and that must be determined by arguments.
    5
    # Read comments marked with TODO for how to populate the script.