I, the contributor, agree to licence my content contributions to this project under the terms of the CC BY-SA 3.0 licence and my theme modifications under the terms of the Apache 2.0 licence.
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
Case COOLERMASTER ELITE 311 BLUE CASE | |
Processor (CPU) Intel® Core™i7 Quad Core Processor i7-6700k (4.0GHz) 8MB Cache | |
Motherboard Gigabyte Z170X Gaming 3 ATX, LG1151, USB 3.1, SATA 6GBs | |
Memory (RAM) 64GB HyperX PREDATOR QUAD-DDR4 3000MHz X.M.P (4 x 16GB) | |
Graphics Card 8GB AMD RADEON™ R9 390X - DVI, HDMI, DP - DX® 12 | |
1st PCI-E SSD Drive 1.2TB INTEL® 750 SERIES PCIe SSD (upto 2400MB/sR | 1200MB/sW) | |
Power Supply CORSAIR 650W CS SERIES™ MODULAR 80 PLUS® GOLD, ULTRA QUIET | |
Processor Cooling Corsair H55 Hydro Cooler w/ PCS Liquid Series Ultra Quiet Fans | |
Thermal Paste ARCTIC MX-4 EXTREME THERMAL CONDUCTIVITY COMPOUND | |
Sound Card ONBOARD 6 CHANNEL (5.1) HIGH DEF AUDIO (AS STANDARD) |
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
realm = Bintray API Realm | |
host = api.bintray.com | |
user = | |
password = |
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
description "Drone docker container" | |
start on filesystem and started docker | |
stop on runlevel [!2345] | |
kill timeout 20 | |
pre-start script | |
docker stop drone || true | |
docker rm drone || true |
I, the contributor, agree to licence my contributions to this project under the terms of the Expat (aka MIT) licence.
I, the contributor, agree to licence my contributions to this project under the terms of the Apache 2.0.
I, the contributor, agree to licence my contributions to this project under the terms of the GPL 3.0 or any later version.
I, the contributor, agree to license my contributions to the ensime-server
project under the terms of the GPL 3.0 (or any later version), except for changes to:
- the
api
module which is under the terms of the Apache 2.0, and - the
s-express
module which is under the terms of the LGPL 3.0 (or any later version).
I confirm that my contributions are either my own original creation or I have fullfilled the obligations of the third party source code (i.e. included their GPL-compatible license).
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
// plugins | |
import com.typesafe.sbt.packager.archetypes.JavaServerAppPackaging | |
import com.typesafe.sbt.packager.rpm.RpmPlugin | |
// the things that are available by magic in .sbt files | |
import com.typesafe.sbt.SbtNativePackager._ | |
import com.typesafe.sbt.SbtNativePackager.autoImport.NativePackagerKeys._ | |
// additional helpers | |
import com.typesafe.sbt.packager.linux.Mapper._ |
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/bash | |
# This script is the reference implementation of how to start the | |
# ENSIME server given an ENSIME config file, bootstrapping via sbt[1]. | |
# It is not intended to be portable across operating systems, or | |
# efficient at caching the results of previous invocations. | |
# Typically it is best to take the basic concepts of this script and | |
# to port it to the natural language of the extensible editor that | |
# intends to support ENSIME. |