Film | Date | Time | Venue | Seat | Trailer | Rating |
---|---|---|---|---|---|---|
Spanish Affair | Wed 29 Apr | 7:00pm | Barracks | K14 | https://vimeo.com/97834195 | ***** |
Ismael | Thu 30 Apr | 6:30pm | Barracks | H10 | https://vimeo.com/97834195 | |
Sorry if I call you Love | Thu 30 Apr | 9:00pm | Barracks | H10 | https://vimeo.com/96916901 | |
The Unexpected Life | Sat 2 May | 11:45am | Barracks | H10 | https://www.youtube.com/watch?v=k5JwU1_OKQE | |
Get Married if you Can | Sat 2 May | 2:00pm | Barracks | H10 | https://www.youtube.com/watch?v=iukUFIS8POI |
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
using System; | |
using Android.App; | |
using Android.Content; | |
using Android.Runtime; | |
using Android.Views; | |
using Android.Widget; | |
using Android.OS; | |
using System.Collections.Generic; |
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
private static int GetReferenceCount(Type type, string undesiredTypeName) | |
{ | |
UriBuilder uri = new UriBuilder(type.Assembly.CodeBase); | |
string path = Uri.UnescapeDataString(uri.Path); | |
AssemblyDefinition assemblyDefinition = AssemblyDefinition.ReadAssembly(path); | |
TypeDefinition vm = assemblyDefinition.Modules.SelectMany(m => m.GetTypes().Where(p => p.FullName == type.FullName)).Single(); | |
int referenceCount = vm.Methods.Where(p => p.HasBody) | |
.SelectMany(p => p.Body.Instructions.Where(i => i.OpCode.Code == Mono.Cecil.Cil.Code.Call && | |
((Mono.Cecil.MethodReference)i.Operand).DeclaringType.FullName.Equals(undesiredTypeName))).Count(); |
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
public class LocalDb : IDisposable | |
{ | |
public static string DatabaseDirectory = "Data"; | |
public string ConnectionStringName { get; private set; } | |
public string DatabaseName { get; private set; } | |
public string OutputFolder { get; private set; } | |
public string DatabaseMdfPath { get; private set; } | |
public string DatabaseLogPath { get; private set; } | |
public LocalDb(string databaseName = null) |
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
void Main() | |
{ | |
Test instance = new Test(); | |
instance.Dump("Before"); | |
instance.GetSetting(p => p.Thing); | |
instance.GetSetting(p => p.AnotherThing); | |
instance.GetSetting(p => p.StringThing); | |
instance.Dump("After"); | |
} |
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
.DS_Store | |
data/ |
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
@background: #0A10AB; | |
html { | |
background: @background; | |
background: linear-gradient(to bottom, lighten(@background, 0%), darken(@background, 100%)); | |
min-height: 100%; | |
} | |
body { |
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
//// define this on the app module | |
.factory('notify', ['$rootScope', function($rootScope) { | |
var sharedService = {}; | |
sharedService.message = ''; | |
sharedService.prepForBroadcast = function(msg) { | |
this.message = msg; | |
this.broadcastItem(); | |
}; |
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
var amqp = require('amqp'); | |
console.log('create connection'); | |
var connection = amqp.createConnection({ host: '10.0.1.59' }); | |
console.log('done'); | |
// Wait for connection to become established. | |
connection.on('ready', function () { |
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
using Serilog; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.DirectoryServices; | |
namespace ADQuery | |
{ |