Skip to content
View AFlowOfCode's full-sized avatar

Block or report AFlowOfCode

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. bandcamp-streamer bandcamp-streamer Public

    Forked from lovethebomb/bandcamp-feed-playlist

    Browser extension for Chrome & Firefox

    JavaScript 26 1

  2. meaningful-forks meaningful-forks Public

    Forked from AlienKevin/meaningful-forks

    Sort Github fork lists by the number of stars and commits ahead from the source repo.

    JavaScript 6 1

  3. Batch file to automatically create u... Batch file to automatically create uploadable zip packages for a browser extension written for both Firefox and Chrome. See this repo for an example where this would be useful: https://github.com/AFlowOfCode/bandcamp-streamer
    1
    REM requires 7zip - https://www.7-zip.org/download.html
    2
    REM run this from the parent folder of the extension directory
    3
    REM excludes .git folder & other browser's manifest by default
    4
    REM change path to 7z.exe & the extension directory as needed
    5
    
                  
  4. Simple bash script to update & resta... Simple bash script to update & restart a rails app on a live dev server when triggered by a webhook set to repo push. Args to script are: head_commit.id, pusher.name, pusher.email
    1
    #!/bin/sh
    2
    echo "commit: $1 by: $2 $3"
    3
    cd your/git_rails/project_root #REPLACE THIS
    4
    git pull
    5
    if [ -f tmp/pids/server.pid ]; then