Skip to content

Instantly share code, notes, and snippets.

View anselmdk's full-sized avatar

Anselm Christophersen anselmdk

View GitHub Profile
@anselmdk
anselmdk / .profile.md
Last active March 1, 2017 22:33
Stuff that should go in the .profile file

Git auto completion

_From this SO answer

  1. Download the file to your home directory:
curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash
  1. Add to your .profile file:
@anselmdk
anselmdk / npm.md
Last active October 5, 2016 09:39
NPM Cheat Sheet

NPM Cheat Sheet

install

npm install --save PACKAGE
npm install --save-dev PACKAGE
@anselmdk
anselmdk / FeatureContext.php
Last active May 24, 2016 04:08
Behat tests for SilverStripe modules
<?php
namespace SilverStripe\Mysite\Test\Behaviour;
use SilverStripe\Cms\Test\Behaviour;
// PHPUnit
require_once 'PHPUnit/Autoload.php';
require_once 'PHPUnit/Framework/Assert/Functions.php';
/**
* Features context
@anselmdk
anselmdk / fields.md
Last active March 3, 2016 09:39
SilverStripe Topics
@anselmdk
anselmdk / README.md
Last active March 29, 2016 10:51
React Cheat Sheet

React Cheat Sheet

@anselmdk
anselmdk / misc.md
Created February 23, 2016 16:40
PHP Cheat Sheet

PHP Cheat Sheet

Save to file

file_put_contents('myfile','content');
@anselmdk
anselmdk / es6-classes.md
Last active December 20, 2016 11:37
JavaScript Cheat Sheet

ES6 Classes

Parent:

class Parent {
  constructor(vars) {
    //doing some grown up stuff
  }
}
@anselmdk
anselmdk / branches.md
Last active November 14, 2016 22:23
Git Cheat Sheet

Branches

Deletion

git branch -d local-branch
@anselmdk
anselmdk / emailing.md
Last active August 24, 2018 17:39
Mamp
@anselmdk
anselmdk / DataObjectSnippet.md
Last active July 7, 2018 11:19
SilverStripe Cheat Sheet

DataObject Snippet