Skip to content

Instantly share code, notes, and snippets.

View Drarok's full-sized avatar

Mat Gadd Drarok

View GitHub Profile
SELECT
ServerObject.Name,
storageYesterday.Committed AS committedYesterday,
storageToday.Committed AS committedToday,
ROUND((storageToday.Committed - storageYesterday.Committed) / 1073741824) AS DifferenceGB
FROM
ServerObject
LEFT OUTER JOIN
StorageUsedByVm AS storageYesterday ON
storageYesterday.VcenterId = ServerObject.VcenterId
<?php
$username = 'trololololol';
$password = 'trololololol';
$url = 'http://some-project.localdev/';
// Set some curl options.
$ch = curl_init();
curl_setopt_array($ch, array(
<?php
function csv_to_array($filename='/root/samhodson/nagios-dev.csv', $delimiter=',', $enclosure = '"')
{
if(!file_exists($filename) || !is_readable($filename)) echo "neg";
return FALSE;
$header = NULL;
$data = array();
if (($handle = fopen($filename, 'r')) !== FALSE)
@Drarok
Drarok / gist:7b2fb47658f6869eb8a1
Created January 26, 2015 17:23
Pragma-style markers in Swift
// MARK: - Section1
func section1Method0() {
}
// MARK: Test1-1
func section1Method1() {
}
// MARK: Test1-2
func section1Method2() {
<HTML>
<HEAD>
<TITLE>Volume Discount</TITLE>
<SCRIPT LANGUAGE = "JavaScript">
// A program to tell a customer what volume discount they can expect.
var numberOfGiftBoxes = window.prompt('Please enter now many boxes you are purchasing.', '');
var boxes = parseFloat(numberOfGiftBoxes);
if (isNaN(boxes))
Function Explode(Separator, S : String) : TStringList;
Var
PrevPos, x : Integer;
strLen,
delimLen : Integer;
Begin
If (Separator = '') Then
Raise Exception.Create('Empty separator');
Result := TStringList.Create();
@Drarok
Drarok / EventManagerAwareTrait.php
Created October 18, 2012 15:50 — forked from Mezzle/EventManagerAwareTrait.php
ServiceLocator/EventManager Traits
<?php
namespace Protec\Stdlib;
use \Zend\EventManager\EventManagerInterface;
use \Zend\ServiceManager\ServiceLocatorAwareInterface;
trait EventManagerAwareTrait
{
protected $event_manager;
@Drarok
Drarok / TS3Radio.php
Last active December 18, 2015 00:48 — forked from JMatthewman/TS3Radio.php
<?php
// Require authentication password
require_once("auth.php");
class TS3Radio
{
protected $_clientHost;
protected $_clientPort;
vagrant@vagrant:/var/www$ cat index.sf
import io;
io.print("Hello, world!\n");
vagrant@vagrant:/var/www$ saffire exec index.sf
vagrant@vagrant:/var/www$
/usr/share/saffire/modules
/usr/share/saffire/modules/sfl
/usr/share/saffire/modules/sfl/io.sf
/usr/share/saffire/modules/sfl/saffire.sf
/usr/share/saffire/modules/Framework.sf
/usr/share/saffire/modules/Framework
/usr/share/saffire/modules/Framework/View.sf
/usr/share/saffire/modules/Framework/Http.sf