To compile with Homebrew-installed LLVM:
PATH=/usr/local/opt/llvm/bin:$PATH crystal build crystal-tags.cr
| // ==UserScript== | |
| // @name Expose Clickhole Quizzes | |
| // @namespace http://rynftz.gr | |
| // @include *clickhole.com* | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| $('#quiz .question .prompt').append( | |
| $('<a href="#" class="expose-answers" style="font-size: 12px; display: block">Show Answers</a>') |
| #!/usr/bin/env python | |
| import pynvim, os, re, sys, time | |
| # Get a list of buffers that haven't been deleted. `nvim.buffers` includes | |
| # buffers that have had `:bdelete` called on them and aren't in the buffer | |
| # list, so we have to filter those out. | |
| def get_listed_buffers(nvim): | |
| return set(buf.number for buf in nvim.buffers \ | |
| if nvim.eval('buflisted(%d)' % buf.number)) |
| scalaVersion := "2.11.8" | |
| resolvers += "Sonatype" at "https://oss.sonatype.org/content/repositories/releases" | |
| resolvers += "Twitter" at "https://maven.twttr.com/" | |
| libraryDependencies ++= Seq( | |
| "asm" % "asm" % "3.1", | |
| "org.abstractj.kalium" % "kalium" % "0.4.0" | |
| ) |
To compile with Homebrew-installed LLVM:
PATH=/usr/local/opt/llvm/bin:$PATH crystal build crystal-tags.cr
| node_modules/ |