This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// -------------------------------------------------------- | |
// | |
// Notify a Trello card on a new deployment | |
// | |
// NOTE: This is a Wercker related CI script | |
// NOTE: This depends on the Wercker CI environment! | |
// | |
// Required ENV: | |
// TRELLO_API_KEY, TRELLO_API_TOKEN, TRELLO_CARD_ID | |
// Wercker ENV (supplied by Wercker): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"dependencies": { | |
"sprity": { | |
"version": "1.0.8", | |
"dependencies": { | |
"sprity-lwip": { | |
"version": "1.0.3", | |
"dependencies": { | |
"lwip": { | |
"version": "0.0.9" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env /usr/bin/node | |
/** | |
* NOTE: Run in a project root that already has a remote configured | |
* | |
* # v0.5.0 (this is the npm default version) | |
* | |
* `npm install nodegit@^v0.5.0` | |
* | |
* NOTE: DOES_NOT fetch from S3 (see also https://github.com/nodegit/nodegit/issues/736) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="../chart-js/chart-js.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="../chart-js/chart-js.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../paper-icon-button/paper-icon-button.html"> | |
<link rel="import" href="../paper-tabs/paper-tabs.html"> | |
<link rel="import" href="../paper-tabs/paper-tab.html"> | |
<polymer-element name="my-element"> | |
<template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// DEPRECATED: interface no longer exists: use https://webservice.topbloemen.nl/soap/order/?wsdl | |
// | |
// redirect to new location at topbloemen using the given parameters to import a new topbloemen order | |
header('Location: http://bloemist.topbloemen-ws.nl/imporder.php?' . http_build_query([ | |
'usr' => 'X', // username | |
'psw' => 'X', // password | |
'prdnam' => 'X', // some name | |
'prcinc' => 'X', // price inc | |
'prcexc' => 'X', // price ex |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Plugin Name: WP_Redis | |
* Description: Exposes Redis to Wordpress as WP_Redis class. Requires ENV variable REDIS_URL (i.e. redis://localhost:port; dokku / dokku-alt compatible ) | |
* Author: Aubrey Hewes<[email protected]> | |
* Version: 1.0 | |
* License: MIT | |
*/ | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:14.10 | |
ENV DEBIAN_FRONTEND noninteractive | |
RUN apt-get update && \ | |
apt-get upgrade -y --no-install-recommends && \ | |
apt-get install -y --no-install-recommends \ | |
build-essential \ | |
libssl-dev \ | |
ncurses-dev \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#################################################################################### | |
# | |
# Download Compile and Install BitchX on Ubuntu | |
# | |
#################################################################################### | |
# download bitchx source | |
# @todo make smarter, i.e. regexp, though now uses _always_ available commands (sic) |