I hereby claim:
- I am beporter on github.
- I am beporter (https://keybase.io/beporter) on keybase.
- I have a public key whose fingerprint is A6BB 0797 14AB 98D6 302E 340F CFDE 3154 EF8B 48D3
To claim this, I am signing this object:
#!/usr/bin/env bash | |
#--------------------------------------------------------------------- | |
usage () | |
{ | |
cat <<EOT | |
${0##*/} | |
Apply the belongstomany.patch file to your cakephp source in vendor/ |
<?php | |
// Make sure we see processing errors during development/testing. | |
error_reporting(E_ALL); | |
ini_set('display_errors', true); | |
// Set up operating parameters. | |
$filePattern = 'gallery/*.[jJ][pP][gG]'; | |
$thumbPattern = 'thumbs/%s'; | |
$targetWidth = 200; |
#!/usr/bin/env bash | |
# [email protected] | |
#--------------------------------------------------------------------- | |
usage () | |
{ | |
cat <<EOT | |
${0##*/} | |
Wrapper around composer to make it "aware" of a custom |
<?php | |
/** | |
* A command line script to grab the "week-by-week" updates from | |
* TheBump.com's API and save them to local .html files. | |
* | |
* Tries to be respectful and cache all results to avoid unecessary HTTP | |
* calls. Uses the API key that thebump.com's own website uses. No malice | |
* is intended by this. | |
* | |
* Usage: |
#!/usr/bin/env bash | |
# | |
#--------------------------------------------------------------------- | |
usage () | |
{ | |
cat <<EOT | |
${0##*/} | |
Wraps up the commands required to dump a SourceForge CVS repo |
#!/usr/bin/env bash | |
# | |
# Find and list all git repos (folders containing .git/ directories) | |
# in the provided path (defaults to current dir.) | |
# | |
# Designed to run on a Mac, so make sure you have GNU `findutils` | |
# and the `terminal-notifier` gem installed. | |
# | |
# [email protected] | |
# v1.0 2015-08-10 |
#!/usr/bin/env bash | |
# | |
# https://gist.github.com/beporter/8074237fa5a71f77dc5c | |
# [email protected] | |
# 2015-09-14 | |
#--------------------------------------------------------------------- | |
usage () | |
{ |
#!/usr/bin/env bash | |
# Allows you to test the create-project process using your local | |
# checked-out copy of the skeleton as the source. You MUST commit the | |
# changes you want to test to a git branch! You MUST name that branch | |
# as the first argument and the destination path to set up the fresh | |
# copy into as the second. | |
# | |
# Usage: | |
# - Place this script in your package's root directory and make it executable. | |
# - Set the PACKAGE_NAME variable below to match your composer.json's `name`. |
I hereby claim:
To claim this, I am signing this object:
// Compile: `gcc -Wall -o hello nostalgia.c` | |
// Run: `./hello` | |
#include <stdlib.h> | |
#include <stdio.h> | |
int main(int argc, char** argv) { | |
printf("Hello world.\n"); | |
return(0); | |
} |