Skip to content

Instantly share code, notes, and snippets.

View janhenckens's full-sized avatar

Jan Henckens janhenckens

View GitHub Profile
@levantAJ
levantAJ / extract-scheme-url.sh
Created August 7, 2019 03:20
Extract *.ipa file to looking for all scheme URLs
#!/bin/sh
RESET=`tput sgr0`
RED=`tput setaf 1`
GREEN=`tput setaf 2`
if [ "$1" ]; then
if ! [ -e "$1" ]
then
@joshangell
joshangell / default.vcl
Created September 14, 2017 10:58
Varnish 5.0 for Craft CMS
vcl 4.0;
import xkey;
# Based on: https://github.com/mattiasgeniar/varnish-4.0-configuration-templates/blob/master/default.vcl
import std;
import directors;
backend server1 { # Define one backend
.host = "127.0.0.1"; # IP or Hostname of backend
.port = "80"; # Port Apache or whatever is listening
@brandonkelly
brandonkelly / templating.md
Last active February 7, 2024 15:20
Templating in EE vs. Craft
@Shelob9
Shelob9 / good-bug-report.txt
Created November 17, 2013 19:31
What makes a good WordPress bug report. From 2013 WordCamp Orlando contributor sessions with Andrew Nacin and Mark Jaquith.
What makes a good bug report:
* Steps to reproduce, with earliest step Shouldn’t need to know code
* Description of the bug. What you saw vs what you expected.
* Error messages or error codes.
*
* PHP errors-
*