Skip to content

Instantly share code, notes, and snippets.

View fredbradley's full-sized avatar

Fred Bradley fredbradley

View GitHub Profile
<center>
<a target="_blank" href="https://www.cranprep.org/photos?utm_source=iSAMS&utm_campaign=October_Email&utm_medium=iSAMS&utm_content=button_click" style="color:#0c223f;background-color:#ffc627;border-color:#f3b300;padding:5px 10px;font-size:1.2em;line-height:1.5;border-radius: 3px;display: inline-block;text-align: center; border-width: 1px;border-style: solid;text-decoration:none;vertical-align: middle;">Visit: cranprep.org/photos</a>
</center>
// Database Connection Stuff
define('DB_HOST', 'localhost');
define('DB_USER', 'user');
define('DB_PASSWORD', 'password');
define('DB_NAME', 'databasename');
// Global Definitions that are needed for both entry and judging system
define('GROUP_INCLUDES_PATH', '/var/www/html/webvid-awards/group-includes/');
define('PATH_TO_JUDGING', '/var/www/html/judging/');
define('PATH_TO_ENTRIES', '/var/www/html/entries-dev/');
@fredbradley
fredbradley / README.md
Last active March 10, 2022 09:44
Disk Space Checker

class.DiskSpaceCheck.php

This class is quick and simple to install into any PHP application, and is easy to customise to the display you require.

The script finds the amount of total disk space on your system, and then the total free space. We then calculate the used space and give it to you as a percentage.

Developer

This class was developed by Fred Bradley - http://twitter.com/fredbradley

Setting the path to check

You can choose the path of the disk that you want to check (if you have multiple disks mounted, for example). You can do this by setting the first paramater when calling calling the Class to the directory that you want to check. EG: $disk = new DiskSpaceCheck('/var/www/vhosts/');

@fredbradley
fredbradley / create_vhost.sh
Last active June 12, 2018 23:24 — forked from mattmezza/vhost.sh
I have edited @matmezza's code to put the documentroot inside an htdocs subfolder so that you can store other non public files (database connection details or such) outside of public view.
#!/bin/bash
# This script is used for create virtual hosts on CentOs.
# Created by alexnogard from http://alexnogard.com
# Improved by mattmezza from http://you.canmakethat.com
# Feel free to modify it
# PARAMETERS
#
# $usr - User
# $dir - directory of web files
# $servn - webserver address without www.
<input type="hidden" name="instId" value="213881">
<input type='hidden' name='accId1' value='CATCH'>
<input type="hidden" name="cartId" value="1430823944"><!-- This is a unique identifier It's actually a UNIX Timestamp! -->
<input type="hidden" name="award_id" value="21" />
<input type="hidden" name="invoice_amount_inc_tax" value="342" />
<input type="hidden" name="invoice_amount_ex_tax" value="285" />
<input type="hidden" name="MC_entries[]" value="e87z0xvf" />
<input type="hidden" name="amount" value="342" />
<input type="hidden" name="currency" value="GBP"><!-- Choose appropriate currency that you would like to use -->
<input type="hidden" name="desc" value="Entry/Entries for The PR Week Awards 2015" />
@fredbradley
fredbradley / class.FBcsv.php
Last active August 29, 2015 14:19
Useful scalable helper class for CSV puts and gets!
<?php
/**
* FBputcsv class.
*/
class FBcsv {
private $filename;
private $fp = false;
<div class="readme file wiki-content">
<h1 id="markdown-header-student-radio-association-wordpress-installation">Student Radio Association Wordpress Installation</h1>
<p>Welcome! This is the repo for all the custom scripting of the Student Radio Association's website (Version 3 "Wordpress").</p>
<h3 id="markdown-header-history">History</h3>
<p>The <a href="http://www.studentradio.org.uk">SRA</a> started development of this project with Jason Slack (then Web Officer) building the initial template in 2013. Development halted for a period at the end of 2013. This was then picked up again by Fred Bradley, adapting Jason's original theme to bring it more inline with core Wordpress functionality and adding some new development practices to help aide faster progress.</p>
<h3 id="markdown-header-development-principles">Development Principles</h3>
<h4 id="markdown-header-the-basic-rules">The Basic Rules</h4>
<ol>
<li>Comment as much as possible, so your gran could understand what the cod
@fredbradley
fredbradley / fb_format_twitter_handle
Last active August 29, 2015 14:18
Useful Wordpress filter snippet for automatically finding Twitter handles in your content and formatting them as a link with Twitter Web Intents and Fontawesome icons
<?php
/**
* How this works: While writing content in the Wordpress editor. Simply add a twitter handle without a link but with the @ symbol.
* EG: "Here is some content written by @FredBradley" would turn into "Here is some content written by <i class="fa fa-fw fa-twitter"></i><a href="https://twitter.com/intent/user/?screen_name=@FredBradley">@FredBradley</a>"
*
* Notes: For this snippet to work 100% as intended it requires two things.
* 1. You need to have Font Awesome working on your site. (http://fontawesome.io/)
* 2. You need to have called the Twitter Widgets.js javascript for Web Intents to work. More details here: https://dev.twitter.com/web/intents#user-intent
*
* How to implement: Simply add this snippet into your theme's functions.php file!
@fredbradley
fredbradley / youtube_id_from_url
Created February 17, 2015 17:18
A useful PHP function that uses regex to get the YouTube video ID from however your user decided to copy the YouTube Link!
<?php
/**
* get youtube video ID from URL
*
* @param string $url
* @return string Youtube video id or FALSE if none found.
*/
function youtube_id_from_url($url) {
$pattern =
'%^# Match any youtube URL
<?php
/**
* Update Custom Terms
*
* @author Fred Bradley <@fredbradley>
* @version 1.0
* @since Since Release 1.0.0
*/
function update_station_tag_list($post_id) {