Skip to content

Instantly share code, notes, and snippets.

View blech75's full-sized avatar
:shipit:

justin blecher blech75

:shipit:
  • BDL
  • 00:46 (UTC -04:00)
View GitHub Profile
@blech75
blech75 / server.js
Created August 13, 2015 14:50
simple node-based static web server that does HTTP auth
// based on http://expressjs.com/starter/static-files.html and
// https://davidbeath.com/posts/expressjs-40-basicauth.html
var express = require('express');
var basicAuth = require('basic-auth');
var fs = require('fs');
var app = express();
// pull config from env
@blech75
blech75 / findgitrepos
Last active August 29, 2015 14:25
findgitrepos: For a given path, find all child dirs that appear to be local git repos and print their user config and a list of remotes
#!/usr/bin/env bash
# findgitrepos
#
# For a given path, find all child dirs that appear to be local Git repos and
# print some useful info (user config, list of remotes, hooks). Allows you to
# review your Git config across many projects. Called without arguments, it
# looks in $HOME.
#
# Author: [email protected]
@blech75
blech75 / impressions.md
Last active August 29, 2015 14:24
My Apple Music Impressions

My Apple Music Impressions

(updates as they come)

  • catalog is awesome
  • the offering is complicated; my music vs. apple music vs. store
  • can't see all albums unless you follow the artist (bug?)
  • lots of moving parts; leads to a complicated UI
  • mobile app introduces new UI paradigms/patterns
  • setting favorite artists is kinda weird (UI-wise, and data-wise)
@blech75
blech75 / impressions.md
Last active August 29, 2015 14:24
My Atom 1.x Impressions
@blech75
blech75 / cp-replicate-structure
Created July 14, 2015 18:59
copy a given list of paths (via stdin) into a new dir
#!/usr/bin/env bash
if [ $# -ne 1 ] ; then
echo "Usage: $0 target_dir " >&2
exit 1
fi
TARGET_DIR=$1
while IFS= read -r f || [[ -n "$f" ]]; do
@blech75
blech75 / README.md
Last active September 13, 2017 09:10
vagrant_local_status - bash function to display name and status of vagrant machine (for use in PS1)

Vagrant Status in Your Shell Prompt

vagrant_local_status is a Bash function that returns the name and status the relevant Vagrant machine for the current directory.

The primary use case is in your PS1 environment variable, so the status of your current project's Vagrant machine is always visible at every shell prompt. Here's an example of my Bash prompt in a test project dir:

[01:29 PM]-[1506]-[justin@justin]-[~/projects/test]-[dev u= bb/dev @d59dc2d]-[vagrant:poweroff]
$

(vagrant:poweroff is the output of vagrant_local_status)

@blech75
blech75 / README.md
Last active March 19, 2024 00:50
notify-send adapter

notify-send adapter for Mac OS X

This allows you to receive desktop notifications from grunt running inside of a local vagrant box.

How to install

Install grunt-notify and add to dev dependencies

This is done on the guest VM (within the vagrant box).

#!/bin/bash
set -e
### BEGIN mod by JSB 2014-12-03
# URL encode/decode functions courtesy of https://gist.github.com/cdown/1163649
#
urlencode() {
# urlencode <string>
local length="${#1}"
@blech75
blech75 / git-blame-revs
Created June 27, 2014 14:28
git-blame-revs
#!/bin/bash
# git-blame-revs
#
# Generate a list of revisions that a file is currently composed of.
# Think of it as a high-level summary of a 'blame'.
#
# NOTE: It is currently hardcoded to work with SVN repos via git-svn.
#
# Author: [email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.