This file contains 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
curl -s https://gist.githubusercontent.com/thomas15v/c42470bf97106c171dcc3ea08461d53b/raw/18597cb816de04350e0266ae5ab7f37cba18aeb7/install.sh | bash |
This file contains 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: | |
db: | |
image: postgres:9.4 | |
restart: always | |
environment: | |
- POSTGRES_USER=odoo | |
- POSTGRES_PASSWORD=odoo | |
odoo: | |
image: odoo:11 |
This file contains 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: | |
nginx: | |
image: nginx:alpine | |
restart: always | |
labels: | |
- "traefik.enable=true" | |
- 'traefik.frontend.rule=Host:www.website.com' | |
- "traefik.port=80" | |
volumes: |
This file contains 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
plugins { | |
id "org.jetbrains.intellij" version "0.2.15" | |
id "maven" | |
id "de.undercouch.download" version "3.2.0" | |
} | |
task setupPycharm() { | |
if (!new File('.gradle/ide').exists()){ | |
download { | |
src 'https://download.jetbrains.com/python/pycharm-professional-2017.2.tar.gz' | |
dest '.gradle/downloads/py.tar.gz' |
This file contains 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: | |
odoo: | |
image: odoo:10 | |
restart: always | |
links: | |
- db | |
volumes: | |
- ./extra-addons:/mnt/extra-addons | |
db: |
This file contains 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
0 3 * * * ~restart | |
0 13 * * * ~restart | |
This file contains 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
/* | |
* Copyright (C) 2014 Florian Stober | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
This file contains 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
---- Minecraft Crash Report ---- | |
// I just don't know what went wrong :( | |
Time: 09/10/16 08:50 | |
Description: Exception ticking world entities | |
java.lang.NullPointerException: Exception ticking world entities | |
at net.minecraft.item.ItemStack.func_77977_a(ItemStack.java:441) | |
at net.minecraft.entity.item.EntityItem.func_70005_c_(EntityItem.java:480) | |
at mcp.mobius.mobiuscore.monitors.MonitoredEntityList.getName(MonitoredEntityList.java:50) |
This file contains 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/bash | |
apt-get install -y curl unzip | |
mkdir -p /var/lib/consul | |
mkdir -p /usr/share/consul | |
mkdir -p /etc/consul/conf.d | |
wget https://releases.hashicorp.com/consul/0.6.4/consul_0.6.4_linux_amd64.zip | |
unzip consul_0.6.4_linux_amd64.zip | |
mv consul /usr/local/bin/consul |
This file contains 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
plugins { | |
id "com.qixalite.spongestart" version "1.4.6" | |
id "java" | |
} | |
sourceCompatibility = 1.8 | |
repositories { | |
mavenCentral() | |
maven { |
NewerOlder