Skip to content

Instantly share code, notes, and snippets.

View Datawalke's full-sized avatar

Jim Walker Datawalke

View GitHub Profile
[ServiceContract]
public interface IHello
{
[OperationContract]
void SayHello(string name);
@Datawalke
Datawalke / SlimRoutingExtension.php
Last active October 13, 2016 13:15
A basic Slim v3 Routing Extension for KnpMenu
<?php
use Knp\Menu\Factory\ExtensionInterface;
use Slim\Interfaces\RouterInterface;
class SlimRoutingExtension implements ExtensionInterface {
/** @var RouterInterface */
private $router;
@Datawalke
Datawalke / gitflow-breakdown.md
Created August 24, 2018 18:29 — forked from JamesMGreene/gitflow-breakdown.md
A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository