Skip to content

Instantly share code, notes, and snippets.

View fommil's full-sized avatar
😽
having a fantastic day not writing any scala

>>= fommil

😽
having a fantastic day not writing any scala
View GitHub Profile
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)
@fommil
fommil / .bintray.credentials
Created March 5, 2016 16:01
silence bintray during sbt dev
realm = Bintray API Realm
host = api.bintray.com
user =
password =
@fommil
fommil / CC-BY-SA.md
Last active January 17, 2016 09:58
cla-ccsa

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.

@fommil
fommil / etc_init_drone.conf
Created January 15, 2016 22:00
drone upstart config
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.

@fommil
fommil / cla-gpl.md
Last active August 22, 2017 20:27
CLA GPL

I, the contributor, agree to licence my contributions to this project under the terms of the GPL 3.0 or any later version.

@fommil
fommil / cla-ensime-server.md
Last active August 22, 2017 20:29
CLA ensime-server

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).

@fommil
fommil / gist:91b4097c0130b7ffa13d
Created July 8, 2015 13:18
Example sbt-native-packager RPM
// 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._
#!/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.