Skip to content

Instantly share code, notes, and snippets.

View stebennett's full-sized avatar
👨‍💻
Hacking and thinking... 🤔

Steve Bennett stebennett

👨‍💻
Hacking and thinking... 🤔
View GitHub Profile
@stebennett
stebennett / docker-compose.yml
Created February 7, 2021 19:47
Docker compose for a wordpress installation
version: '3'
services:
mysql:
image: 'mysql:5.7'
environment:
- MYSQL_ROOT_PASSWORD=password
- MYSQL_DATABASE=wordpress
wordpress:
image: wordpress
{
"categories": [
"communication",
"development",
"operation",
"structure",
"learning",
"leading"
],
"phases": [
@stebennett
stebennett / how_we_hire.txt
Created October 14, 2016 13:45
A description of the Hiring Process for engineers
We're looking to hire engineers to join our teams in Maidenhead. The full description of the job can be found at http://smrtr.io/0qr3uA. Further information about working at Alfresco can be found on our careers pages at https://www.alfresco.com/company/careers. Any questions about the role can be sent to me, via twitter at @steve_codes.
To ensure that all candidates get a fair shot, and to give you more of an idea of what we're looking for and how we'll run the assessment, I thought I'd put together this little helper.
Firstly, we aim to respectful to all candidates. We understand the pressures, challenges and time that goes into finding a new job. It's stressful, and we're hoping that we're going to make things a little bit easier for you. We'll work with you to arrange interviews at times that work around your schedule and respect the discretion which is sometimes necessary when taking part in a recruitment process. Our assessments are designed to challenging, but if you're running into problems that mea
@stebennett
stebennett / feeds.opml
Created August 12, 2016 15:24
The feeds I currently subscribe to.
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>Stephen subscriptions in feedly Cloud</title>
</head>
<body>
<outline text="Companies" title="Companies">
<outline type="rss" text="Trello" title="Trello" xmlUrl="https://trello.engineering/feed.xml" htmlUrl="http://tech.trello.com/"/>
<outline type="rss" text="IMVU" title="IMVU" xmlUrl="http://engineering.imvu.com/feed/" htmlUrl="https://engineering.imvu.com"/>

Keybase proof

I hereby claim:

  • I am stebennett on github.
  • I am sbennett (https://keybase.io/sbennett) on keybase.
  • I have a public key whose fingerprint is 3C9C 002C FC68 FAC6 A7D8 8373 00A1 1DC0 18AF 6CCC

To claim this, I am signing this object:

@stebennett
stebennett / code-review.md
Last active March 15, 2016 13:04
Code review for Orion service project

Description

This simple script will take a picture of a whiteboard and use parts of the ImageMagick library with sane defaults to clean it up tremendously.

The script is here:

#!/bin/bash
convert $1 -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 $2

Results