This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hipages Group Pty Ltd | |
* http://hipagesgroup.com.au | |
*/ | |
class Hipages_Software_Engineer extends Software_Engineer implements Startup_Culture | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Returns interesting information about a HTTP/S call | |
# http://chrisiona.com/post/125309997618/ttfb-a-bash-script-that-returns-interesting | |
curl -so /dev/null \ | |
-w "Response Code: \t\t%{http_code} \ | |
\nName Resolution: \t%{time_namelookup} sec\ | |
\nConnect Time: \t\t%{time_connect} sec\ | |
\nPre Transfer: \t\t%{time_pretransfer} sec\ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// SwiftyJsonExtension.swift | |
// | |
// Created by Chris Iona on 02/12/16. | |
// MIT License. | |
// | |
// Date extension for SwiftyJSON module | |
// https://github.com/SwiftyJSON/SwiftyJSON | |
// | |
// Assumes that you already have SwityJSON installed and available |