I wrote this four years ago, so instead use this command:
$ docker rmi $(docker images -q -f dangling=true)
<?php | |
/** | |
* ApiKeyAuthenticator for the Symfony Security Component | |
*/ | |
namespace Ttf\Security\Provider; | |
use Silex\Application, | |
Silex\ServiceProviderInterface; | |
use Symfony\Component\Security\Core\Exception\AuthenticationException, | |
Symfony\Component\Security\Core\Authentication\Provider\SimpleAuthenticationProvider, |
//Custom Theme test | |
// Colors | |
// ------------------------------- | |
$custom: #057b6c !default; | |
// Buttons | |
// ------------------------------- | |
$button-custom-bg: $custom !default; |
# get package from https://packager.io
sudo rpm --import https://rpm.packager.io/key
echo "[openproject]
name=Repository for crohr/openproject application.
baseurl=https://rpm.packager.io/gh/crohr/openproject/centos6/packaging-rpm
enabled=1" | sudo tee /etc/yum.repos.d/openproject.repo
sudo yum install -y openproject
<!doctype html> | |
<html> | |
<head> | |
<title>File Upload Page</title> | |
</head> | |
<body> | |
<h1 onClick="sendFormData()">Send it!</h1> | |
<script type="text/javascript"> |
{ | |
"name": "file-upload", | |
"version": "1.0.0", | |
"description": "File Upload test case", | |
"main": "server.js", | |
"dependencies": { | |
"hapi": "^8.0.0-rc8", | |
"joi": "^5.0.2" | |
}, | |
"devDependencies": { |
2015-01-29 Unofficial Relay FAQ
Compilation of questions and answers about Relay from React.js Conf.
Disclaimer: I work on Relay at Facebook. Relay is a complex system on which we're iterating aggressively. I'll do my best here to provide accurate, useful answers, but the details are subject to change. I may also be wrong. Feedback and additional questions are welcome.
Relay is a new framework from Facebook that provides data-fetching functionality for React applications. It was announced at React.js Conf (January 2015).
module App { | |
"use strict"; | |
//Method name should be exactly "response" - http://docs.angularjs.org/api/ng/service/$http | |
export interface IInterceptor { | |
request: Function; | |
requestError: Function; | |
response: Function; | |
responseError: Function; | |
} |