https://www.youtube.com/watch?v=ADQD_Zt7qpI https://vimeo.com/143370596
Date | Day | Time | Movie | Seat | Trailer | Rating |
---|---|---|---|---|---|---|
19-Apr | Tue | 19:00 | H9-H11 | |||
20-Apr | Wed |
import requests | |
from prettytable import PrettyTable | |
url_ips = requests.get('https://ip-ranges.amazonaws.com/ip-ranges.json') | |
ip_range = url_ips.json() | |
table = PrettyTable(['service', 'region', 'ip_prefix']) | |
table.align = "l" | |
for prefix in ip_range['prefixes']: |
using System; | |
using System.Runtime.InteropServices; | |
using AppKit; | |
using CoreMidi; | |
using Foundation; | |
namespace WireCastMidi | |
{ | |
public partial class ViewController : NSViewController | |
{ |
https://www.youtube.com/watch?v=ADQD_Zt7qpI https://vimeo.com/143370596
Date | Day | Time | Movie | Seat | Trailer | Rating |
---|---|---|---|---|---|---|
19-Apr | Tue | 19:00 | H9-H11 | |||
20-Apr | Wed |
using Serilog; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.DirectoryServices; | |
namespace ADQuery | |
{ |
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 () { |
//// define this on the app module | |
.factory('notify', ['$rootScope', function($rootScope) { | |
var sharedService = {}; | |
sharedService.message = ''; | |
sharedService.prepForBroadcast = function(msg) { | |
this.message = msg; | |
this.broadcastItem(); | |
}; |
@background: #0A10AB; | |
html { | |
background: @background; | |
background: linear-gradient(to bottom, lighten(@background, 0%), darken(@background, 100%)); | |
min-height: 100%; | |
} | |
body { |
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 |
.DS_Store | |
data/ |
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"); | |
} |