Currently:
$ PKG_CONFIG_PATH=~/opencv/lib/pkgconfig/ npm install –prefix=~/opencv_example opencv
Should be:
$ PKG_CONFIG_PATH=~/opencv/lib/pkgconfig/ npm install --prefix=~/opencv_example opencv
| { | |
| "preset": "google", | |
| "fileExtensions": [".js", "jscs"], | |
| "requireSemicolons": true, | |
| "requireParenthesesAroundIIFE": true, | |
| "maximumLineLength": 120, | |
| "validateLineBreaks": "LF", | |
| "validateIndentation": 4, |
| // | |
| // KizuWifiIcon.h | |
| // Kizu | |
| // | |
| // Created by James Cryer on 13/06/2015. | |
| // Copyright (c) 2015 KIZU Ltd. All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> |
Currently:
$ PKG_CONFIG_PATH=~/opencv/lib/pkgconfig/ npm install –prefix=~/opencv_example opencv
Should be:
$ PKG_CONFIG_PATH=~/opencv/lib/pkgconfig/ npm install --prefix=~/opencv_example opencv
| diff --git a/app/uk/co/bbc/travel/models/Report.scala b/app/uk/co/bbc/travel/models/Report.scala | |
| index 892d34f..dc2f780 100644 | |
| --- a/app/uk/co/bbc/travel/models/Report.scala | |
| +++ b/app/uk/co/bbc/travel/models/Report.scala | |
| @@ -22,7 +22,6 @@ object Report { | |
| report.name = map("name") | |
| report.updated = map("updated") | |
| report.fileSize = map("fileSize") | |
| - report.summary = service.getObjectSummaries(map("key")) | |
| report |
| #require 'rubygems' | |
| require 'aws-sdk' | |
| dynamo_db = AWS::DynamoDB.new | |
| table = dynamo_db.tables['table-name'] | |
| table.load_schema | |
| table.items.each do |incident| | |
| attributes = incident.attributes.to_hash | |
| locations = attributes['locations'] |
| #!/bin/bash | |
| WORKING_DIR="dynamodb" | |
| VERSION="dynamodb_local_2014-04-24" | |
| ARCHIVE="${VERSION}.tar.gz" | |
| URL="https://s3-us-west-2.amazonaws.com/dynamodb-local/${ARCHIVE}" | |
| PID_FILE="${WORKING_DIR}/PID" | |
| download() { |
| ############################################################ | |
| # Dockerfile to build MongoDB container images | |
| # Based on Ubuntu | |
| ############################################################ | |
| # Set the base image to Ubuntu | |
| FROM ubuntu | |
| # File Author / Maintainer | |
| MAINTAINER James Cryer |
| We're all familiar with the performance recommendations regarding content deliver (e.g. reducing and minizing data transfer between server and client) but we are now faced with a new challenge: browser rendering performance. It's time to get jank busting! As developers we need to arm ourselves with techniques and tools to remove the janky experience from our apps. | |
| We'll explore some of the most common rendering bottlenecks and the tools available to identify and analyse these issues. |
| module.exports = (grunt) -> | |
| require('time-grunt')(grunt) | |
| require('matchdep').filterDev('grunt-*').forEach grunt.loadNpmTasks | |
| grunt.initConfig | |
| pkg: grunt.file.readJSON 'package.json' | |
| paths: | |
| images: "img" | |
| js: "js" |