git clone https://gist.github.com/f9193fdd1ae49db5caf852302ab18d91.git taiga
cd taiga
# Update docker-compose.yml
# - Replace Hostname of taigaback and taigafront
# - Update or disable Email settings
docker-compose up -d
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
| // semantic-ui-form.js | |
| import React from 'react'; | |
| import PropTypes from 'prop-types'; | |
| import { Form, Input } from 'semantic-ui-react'; | |
| export default function semanticFormField ({ input, type, label, placeholder, meta: { touched, error, warning }, as: As = Input, ...props }) { | |
| function handleChange (e, { value }) { | |
| return input.onChange(value); | |
| } |
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
| version: '2' | |
| services: | |
| # mysql | |
| mysql: | |
| image: "mysql:5.7.10" | |
| ports: | |
| - "3306:3306" | |
| environment: | |
| MYSQL_ROOT_PASSWORD: "admin" |
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
| function mdRander() { | |
| pandoc $1 | lynx -stdin -dump | |
| } |
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
| var tmp = require('tmp'); | |
| var fs = require('fs'); | |
| var exec = require("child_process").exec; | |
| tmp.file({postfix: ".md"}, function(err, path, fd) { | |
| fs.writeFile(path, "* One\n* Two", function(err) { | |
| if(err) return; | |
| exec('github-markup ' + path, function (err, stdout, stderr) { | |
| console.log(stdout); | |
| console.log(path); |
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
| // 99% done by @rauri rochford | |
| // http://js1k.com/2012-love/demo/1071 | |
| // i just rAF'd it. | |
| // demo at http://bl.ocks.org/1823634 | |
| e = [];// trails |
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
| ^(?:[\t ]*(?:\r?\n|\r))+ |
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
| function instantiate(element) { | |
| const { type, props } = element; | |
| // Create DOM element | |
| const isTextElement = type === "TEXT ELEMENT"; | |
| const dom = isTextElement | |
| ? document.createTextNode("") | |
| : document.createElement(type); | |
| updateDomProperties(dom, [], props); |
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/ruby | |
| # gem install ruby-dbus | |
| require 'optparse' | |
| require 'optparse/time' | |
| require 'ostruct' | |
| require 'pp' | |
| require 'dbus' | |
| Version = [0, 1, 0] |
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
| rem Maryse_gift bat | |
| echo off | |
| cls | |
| set CLASSPATH=%CLASSPATH%;C:\Program Files\Java\jdk1.7.0_45\lib;%cd%;. | |
| set PATH=%PATH%;C:\Program Files\Java\jdk1.7.0_45\bin | |
| javac Maryse_gift.java | |
| pause | |
| java Maryse_gift | |
| pause |