Skip to content

Instantly share code, notes, and snippets.

@rob-murray
rob-murray / find-max-count-from-list.java
Created January 8, 2013 20:27
Find the maximum count value of list of integers in Java
public class TestApp {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
//Try with list of set values
List<Integer> listSet = new ArrayList<Integer>();
listSet.add(1);
@rob-murray
rob-murray / boolToString.php
Last active December 10, 2015 20:18
Return the string value of a boolean. Simple.
<?php
//set boolean value
$bool = true;
//print boolean value
print $bool;
#prints 1
//cast as string
@rob-murray
rob-murray / import-sample.vbs
Last active December 10, 2015 20:28
A basic method of importing classes in VBScript
<package>
<job id="Import_Example">
'--- IMPORT CLASSES ---
<script language="VBScript" src="Utilities.class.vbs">
<script language="VBScript" src="Another.class.vbs"/>
'- --- END IMPORT ---
<script language="VBScript">
'--- START ---
Dim objUtil, objAnother
@rob-murray
rob-murray / namespace.js
Created January 8, 2013 21:18
A method of namespacing javascript, NOTE: this is OLD and depreceated!
//Set root namespace
var myNS = new Object();
myNS.foo = new Object();
myNS.bar = new Object();
myNS={
//Namespace scope vars
_myVar:'hi ',
_i:1,
@rob-murray
rob-murray / fix-itmu-scan.bat
Created January 8, 2013 21:24
A set of commands to fix ITMU Scan component failing using SMS 2003
cd %windir%system32
regsvr32 wuapi.dll /s
regsvr32 wuaueng.dll /s
regsvr32 wuaueng1.dll /s
regsvr32 wucltui.dll /s
regsvr32 wups.dll /s
regsvr32 wups2.dll /s
regsvr32 wuweb.dll /s
net stop wuauserv
net stop bits
@rob-murray
rob-murray / mysql-bk.sh
Created January 8, 2013 21:27
A(nother) MySql database backup shell script
!bin/sh
#####################################
### Backup script - run_backup.sh ##
#####################################
### Desc: Runs backup on MYSQL ##
### database and then emails to ##
### confirm ##
#####################################
# Settings
@rob-murray
rob-murray / ad-computer-search.vbs
Last active December 10, 2015 20:58
List All XP Computer Accounts in Active Directory and write to text file
'===================================
'
' VBScript Source File -- Created with SAPIEN Technologies PrimalScript 3.0
'
' NAME: AD Computer search.vbs
'
' AUTHOR: Robert Murray
' DATE : 29/10/2008
'
' COMMENT: List All XP Computer Accounts in Active Directory and write to text file
@rob-murray
rob-murray / obj_c_class_constant.c
Last active December 12, 2015 01:28
An example of Objective C Class constant
// ExampleViewController.m
/*
* Define class constants a top of @implementation
*/
static NSString *const kRMMyViewTitle = @"Amazing App Home";
@implementation ExampleViewController
@rob-murray
rob-murray / obj_c_constant_class_impl.c
Created February 1, 2013 13:27
An example of Objective C Global constant - shows class definition, implementation, import and usage
//Configuration.h
#import <Foundation/Foundation.h>
@interface Configuration : NSObject
extern NSString *const kRMAWebServiceURL;
extern const NSTimeInterval kRMTimeoutValue;
@rob-murray
rob-murray / PDOConnection.php
Last active March 11, 2020 11:14
An class for a PHP PDO connection - a singleton implementation. An instance method returns a new PDO Connection with the specified connection attributes.
<?php
namespace ACompany\AnAppName\Dao\PdoImpl;
/**
* PDOConnection is a singleton implementation.
* getConnection() returning an instance of PDO connection.
*
* <code>
* Example usage: