Keybase proof
I hereby claim:
- I am robmint on github.
- I am vdu23 (https://keybase.io/vdu23) on keybase.
- I have a public key ASD-ozCiOx9vjli7JZRMU9UqiRfUAbfbJUSrATpy5BfZiwo
To claim this, I am signing this object:
function Cat() { // cat factory, called a Constructor | |
this.furry = true; // this is the info that every cat has to start with | |
this.name = ""; // but can be changed | |
this.legs = 4; | |
} | |
cat = []; // make a new list of cats: [] means a numbered list starting at 0 | |
for(var i=0; i<5; i++) { // go through the list creating 5 cats | |
cat[i] = new Cat(); // use the Cat() factory to make a new cat and store it in the list of cats | |
} |
I hereby claim:
To claim this, I am signing this object:
Verifying that +robcarter is my blockchain ID. https://onename.com/robcarter |
Global values - values that vary
Start is a room. "You are at the start of the game. [if the era is the past] In the past[otherwise] In the present[end if]."
The time machine is a thing in the start.
Instead of examining the time machine:
say "You feel your mind drifting...";
now the era is the past.
Openable things that change when you open them
$key = ''; // fill in these details | |
$secret = ''; | |
$id = ''; | |
// Nonce of the current Unix timestamp string encoded | |
$nonce = strval(time()); | |
$sigtext = $nonce . $id . $key; | |
$signature = hash_hmac ('sha256',$sigtext,$secret); |
#!/usr/bin/env ruby -w | |
require 'rubygems' | |
require 'json' | |
#local = "localhost:3000" | |
local = false | |
json = File.read(ARGV[0]) | |
obj = JSON.parse(json) |
Show branches still to be merged to master
git fetch
git branch --no-merged master
Create new branch and switch to it
require 'yaml' | |
module Valet | |
class Messages | |
@messages ||= YAML::load_file(File.expand_path('../../../messages.yml', __FILE__)) | |
def self.text(key) | |
@messages[key]['text'] | |
end |
// typical input data | |
// Years and semesters need to be unique so they are stored as keys | |
var data = { | |
count: 2, | |
found: 5, | |
results: { | |
'2011': {'Semester 1': {url: 'http://site.nz/?pid=401067'}}, | |
'2012': { | |
'Semester 1': {url: 'http://site.nz/?pid=493997'}, |
<!-- typical filesystem location ../config/spring/api/discovery.xml --> | |
<!-- sort filters for the discovery search--> | |
<property name="searchSortConfiguration"> | |
<bean class="org.dspace.discovery.configuration.DiscoverySortConfiguration"> | |
<property name="defaultSortOrder" value="desc"/> | |
<property name="sortFields"> | |
<list> | |
<ref bean="sortTitle" /> | |
<ref bean="sortDateIssued" /> | |
<ref bean="sortSomeField" /> |