Skip to content

Instantly share code, notes, and snippets.

View iCodeForBananas's full-sized avatar

Michael Calkins iCodeForBananas

View GitHub Profile
{"version":1.02,"files":[{"file":".gitignore","content":{"type":"Buffer","data":[98,108,111,98,45,115,116,111,114,101,10,99,111,109,112,105,108,101,45,99,97,99,104,101,10,100,101,118,10,115,116,111,114,97,103,101,10,46,110,111,100,101,45,103,121,112,10,46,110,112,109,10]}},{"file":"config.cson","content":{"type":"Buffer","data":[34,42,34,58,10,32,32,34,97,116,111,109,45,109,97,116,101,114,105,97,108,45,117,105,34,58,10,32,32,32,32,99,111,108,111,114,115,58,10,32,32,32,32,32,32,97,98,97,115,101,67,111,108,111,114,58,10,32,32,32,32,32,32,32,32,97,108,112,104,97,58,32,49,10,32,32,32,32,32,32,32,32,98,108,117,101,58,32,50,52,51,10,32,32,32,32,32,32,32,32,103,114,101,101,110,58,32,49,53,48,10,32,32,32,32,32,32,32,32,114,101,100,58,32,51,51,10,32,32,32,32,32,32,112,114,101,100,101,102,105,110,101,100,67,111,108,111,114,58,32,34,66,108,117,101,34,10,32,32,32,32,102,111,110,116,115,58,32,123,125,10,32,32,32,32,116,97,98,115,58,10,32,32,32,32,32,32,116,105,110,116,101,100,84,97,98,66,97,114,58,32,116,114,117,101,10,32
console.log('test')
var gulp = require('gulp'),
autoprefixer = require('gulp-autoprefixer'),
browserify = require('browserify'),
cleanCSS = require('gulp-clean-css'),
gulpif = require('gulp-if'),
gutil = require('gulp-util'),
notify = require('gulp-notify'),
rename = require('gulp-rename'),
sass = require('gulp-sass'),
source = require('vinyl-source-stream'),
0 info it worked if it ends with ok
1 verbose cli [ '/usr/local/bin/node',
1 verbose cli '/usr/local/bin/npm',
1 verbose cli 'install',
1 verbose cli '-g',
1 verbose cli 'git-stats' ]
2 info using npm@3.8.6
3 info using node@v5.11.0
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
@iCodeForBananas
iCodeForBananas / gitscore.md
Last active October 23, 2021 19:11
Git scorekeeping

Total number of commits, by author, for all branches

git shortlog -sn --all

Total number of commits, without merge commits, by author, for all branches

git shortlog -s -n --all --no-merges

Total number of commits, by author, for this branch

function check(object, propTypes, _throw) {
let propName;
for (propName in propTypes) {
if (propTypes.hasOwnProperty(propName)) {
let error = propTypes[propName](object, propName, JSON.stringify(object), 'prop');
if (error) {
if (_throw) {
throw error
} else {
import { PropTypes } from 'react'
import RemoteBullet from '../RemoteBullet'
const propTypes = {
bulletId: PropTypes.string.isRequired,
playerId: PropTypes.string.isRequired,
damage: PropTypes.number.isRequired,
pointerAngle: PropTypes.number.isRequired,
height: PropTypes.number.isRequired,
width: PropTypes.number.isRequired,
module.exports = {
"USSOCOM": {
"name": "USSOCOM",
"Damage": 190,
"FireInterval": 12,
"Ammo": 12,
"ReloadTime": 65,
"Speed": 180,
"BulletStyle": 1,
"StartUpTime": 0,
function m {
echo "Select an option:"
echo "1) Musicbed"
echo "2) Filmsupply"
echo "3) Ranger Steve"
echo "4) Empty Trash"
echo "[ENTER] to cancel"
read user_input
class FeaturesSection {
constructor() {
this.features = [
{
name: 'Feature 1',
description: 'Description 1',
image: '/path/to/img1'
},
{
name: 'Feature 2',