Skip to content

Instantly share code, notes, and snippets.

View rattfieldnz's full-sized avatar

Rob Attfield rattfieldnz

View GitHub Profile
<?php
/*
* Task:
* Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz".
* For numbers which are multiples of both three and five print "FizzBuzz".
*
* Instructions:
* This file (fizzbuzz.php) can be uploaded to a webserver that's running PHP4+ and executed with "php fizzbuzz.php" from the command line.
* Alternatively, this file can be accessed directly (if webserver permissions allow) via your browser.
/**
* A function to convert direction in degrees to general compass direction.
* @param {Number} deg The value to be converted, in degrees.
* @return {String} The converted compass direction.
*/
function convertDegreesToCompass(deg){
// The 16 general compass directions
var compassDirections = ["N","NNE","NE","ENE","E","ESE", "SE", "SSE","S","SSW","SW","WSW","W","WNW","NW","NNW"];
Verifying that "robattfield.id" is my Blockstack ID. https://onename.com/robattfield
@rattfieldnz
rattfieldnz / cspheader.php
Created August 6, 2017 10:07 — forked from phpdave/cspheader.php
CSP Header for PHP or Apache or .htaccess - Content Security Protocol
<?
//CSP only works in modern browsers Chrome 25+, Firefox 23+, Safari 7+
$headerCSP = "Content-Security-Policy:".
"connect-src 'self' ;". // XMLHttpRequest (AJAX request), WebSocket or EventSource.
"default-src 'self';". // Default policy for loading html elements
"frame-ancestors 'self' ;". //allow parent framing - this one blocks click jacking and ui redress
"frame-src 'none';". // vaid sources for frames
"media-src 'self' *.example.com;". // vaid sources for media (audio and video html tags src)
"object-src 'none'; ". // valid object embed and applet tags src
"report-uri https://example.com/violationReportForCSP.php;". //A URL that will get raw json data in post that lets you know what was violated and blocked
@rattfieldnz
rattfieldnz / Http.php
Created August 6, 2017 10:49
A class containing a function which checks if a URL can be shown in iframes. Revisions, suggestions, and optimization tips are very welcome!
<?php
/**
* Class Http
*
* A class to manage HTTP-related functionality.
*
* @author Rob Attfield <emailme@robertattfield.com> <http://www.robertattfield.com>
*
* @package App\Helpers\Functions
@rattfieldnz
rattfieldnz / GoogleApiException.php
Last active August 26, 2017 09:58
Return a Google_Service_Exception as a collection (good for API usage with Laravel framework)
/**
* Return a Google_Service_Exception as a collection (good for API usage with Laravel framework).
*
* This example is used in a Laravel (v 5.4.34) app with spatie/analytics package.
*
* @param \Google_Service_Exception $e
*
* @see https://github.com/spatie/laravel-analytics
* @see https://github.com/google/google-api-php-client/blob/master/src/Google/Service/Exception.php
* @see https://developers.google.com/analytics/devguides/reporting/core/v3/errors
@rattfieldnz
rattfieldnz / mysql.sh
Last active October 16, 2019 05:05 — forked from mahemoff/mysql.sh
circleci mysql upgrade
#!/bin/bash
set -x
set -e
export DEBIAN_FRONTEND=noninteractive
sudo apt-get --purge autoremove -y mysql-server-5.6
sudo apt-key adv --keyserver keys.gnupg.net --recv-keys 8C718D3B5072E1F5
@rattfieldnz
rattfieldnz / config.yml
Last active November 2, 2019 06:24
Sample CircleCI config of my latest Laravel project, stored in a private BitBucket repository.
version: 2
jobs:
build:
docker:
- image: circleci/php:7.3-fpm
parallelism: 4
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_HOST: 127.0.0.1
steps: