julia pierce
mapping->duplication (post merger) "we'd done this to ourselves"
separation of users into two classes affected everybody
| [ | |
| { "keys": ["ctrl+command+r"], "command": "reveal_in_side_bar"}, | |
| { "keys": ["super+q"], "command": "wrap_lines" } | |
| ] |
| openapi: 3.0.0 | |
| info: | |
| description: GOV.UK Pay API | |
| version: 1.0.0 | |
| title: GOV.UK Pay API | |
| tags: | |
| - name: refunds | |
| description: Public Api Endpoints for Refunds | |
| paths: | |
| /v1/payments: |
julia pierce
mapping->duplication (post merger) "we'd done this to ourselves"
separation of users into two classes affected everybody
| FROM node:6.10.0-alpine | |
| RUN apk update && apk upgrade | |
| # Install packages needed for production | |
| RUN apk add --update bash python make g++ | |
| # Install packages needed for testing | |
| RUN apk add --update ruby openssl |
| [ | |
| { | |
| "userName": "alphagov", | |
| "repo": "asset-manager" | |
| }, | |
| { | |
| "userName": "alphagov", | |
| "repo": "authenticating-proxy" | |
| }, | |
| { |
| ActiveRecord::Migration.verbose = false | |
| ActiveRecord::Schema.define do | |
| create_table :products, :force => true do |t| | |
| t.timestamps | |
| end | |
| create_table :product_translations, :force => true do |t| | |
| t.string :locale | |
| t.references :product |
| package main | |
| import ( | |
| "database/sql" | |
| "fmt" | |
| _ "github.com/lib/pq" | |
| "log" | |
| ) | |
| func main() { |
| require 'stanford-core-nlp' | |
| # Set an alternative path to look for the JAR files | |
| # Default is gem's bin folder. | |
| StanfordCoreNLP.jar_path = File.realpath(File.dirname(__FILE__)) + '/jars/' | |
| StanfordCoreNLP.model_path = File.realpath(File.dirname(__FILE__)) + '/jars/' | |
| StanfordCoreNLP.use :english | |
| StanfordCoreNLP.model_files = {} | |
| StanfordCoreNLP.default_jars = [ | |
| 'jollyday.jar', |
| source 'http://rubygems.org' | |
| gem 'ruby2ruby' | |
| gem 'rspec' |