Skip to content
View ericholsinger's full-sized avatar
🔥
🔥

Organizations

@dmpreroll

Block or report ericholsinger

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 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. 2DPlatformerDemo 2DPlatformerDemo Public

    Unity 5 2D Platformer Game Demo, initial project with Sprites

    3 1

  2. This is a script for incrementing bu... This is a script for incrementing build numbers in xcode, automatically during the build phase. It handles the build in the format xx.yy.zz where zz is incremented for each build, and yy is incremented when you archive your project. The xx is handled manually in this case. For more information, you can read my blog post at http://bit.ly/1h3ztJK Happy building!
    1
    #!/bin/bash
    2
    conf=${CONFIGURATION}
    3
    arch=${ARCHS:0:4}
    4
    # Only increase the build number on Device and AdHoc/AppStore build
    5
    if [ $conf == "Release" ]
  3. convertmp4: A bash shell script to m... convertmp4: A bash shell script to make the calls to ffmpeg a little simpler for converting OBS .flv output to .mp4
    1
    #!/bin/bash
    2
    #
    3
    # this will call ffmeg to convert a .flv to a .mp4
    4
    #
    5
    # NOTE: ffmeg is expected to be install and in your path