Skip to content

Instantly share code, notes, and snippets.

View RandyWritesCode's full-sized avatar

Randy Douglas RandyWritesCode

View GitHub Profile
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active July 11, 2025 02:59
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@danielchappell
danielchappell / route_hooks.js
Last active February 27, 2023 13:34
Ember.Route hook order
import Ember from 'ember';
// Ember 1.10
export default Ember.Route.extend({
//---fire in order on route enter---
beforeModel(transition) {
//empty by default