I hereby claim:
- I am d-simon on github.
- I am davidsimon (https://keybase.io/davidsimon) on keybase.
- I have a public key whose fingerprint is EB64 3686 E156 999C C195 2F1B C6FE 5E4E 6675 123F
To claim this, I am signing this object:
{ | |
"name": "organization/project", | |
"description": "Project", | |
"require": { | |
}, | |
"scripts": { | |
"deploy": [ | |
"@php vendor/bin/dep deploy" | |
] | |
}, |
// This file is automatically compiled by Webpack, along with any other files | |
// present in this directory. You're encouraged to place your actual application logic in | |
// a relevant structure within app/javascript and only use these pack files to reference | |
// that code so it'll be compiled. | |
require("@rails/ujs").start() | |
require("turbolinks").start() | |
require("@rails/activestorage").start() | |
require("channels") |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' |
#Commit Message Guidelines (Shortened) This is a revamped proposal for structuring commit messages. It is a set of guidelines evolved from a need to scan, review and navigate commits quickly. They are ment to bring clarity to the commit history while retaining a lot of flexibility.
#Structure
[Action] Scope: Summary
Detailed Body Text (if necessary)
(function($) { | |
'use strict'; | |
var $document = $(document.documentElement); | |
// Create the dispatcher | |
$.dispatcher = $.dispatcher || {}; | |
var dispatcherMethods = { | |
trigger: function (event, data, elem) { | |
// If element is provided trigger from element |
# editorconfig.org | |
root = true | |
[*] | |
indent_style = space | |
indent_size = 4 | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true |
This is a proposal for structuring commit messages. It is a set of guidelines evolved from a need to scan, review and navigate commits quickly. They are ment to bring clarity to the commit history while retaining a lot of flexibility.
[Action] Scope: Summary
(Involved Commits)
// http://stackoverflow.com/a/901144 | |
function getParameterByName(name) { | |
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]"); | |
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"), | |
results = regex.exec(location.search); | |
return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " ")); | |
} |
ALTER TABLE users | |
ADD COLUMN `count` SMALLINT(6) NOT NULL AFTER `lastname`, | |
ADD COLUMN `log` VARCHAR(12) NOT NULL AFTER `count`, | |
ADD COLUMN `status` INT(10) UNSIGNED NOT NULL AFTER `log`; |