I hereby claim:
- I am brimworks on github.
- I am bmaher (https://keybase.io/bmaher) on keybase.
- I have a public key whose fingerprint is DFD2 9E51 3F65 4C79 1E76 3833 DB9B 9FF1 153F 2817
To claim this, I am signing this object:
"Refine Me" by Jennifer Knapp | |
From "Kansas", Gotee 1997 | |
Words and music by Kim Bontrager | |
Copyright © 1997 Gotee Music (BMI) | |
jenniferknapp.com | |
Transcribed by [email protected] http://ccws.net/t-rev | |
Open in D on a standard-tuned six-string acoustic. |
diff --git a/Makefile b/Makefile | |
index b4fef80..59bd580 100644 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -58,8 +58,8 @@ ${GENDIR}: | |
${LUADIR}/src/libluajit.a: | |
git submodule update --init ${LUADIR} | |
- sed -e "s/#XCFLAGS+= -DLUAJIT_ENABLE_LUA52COMPAT/XCFLAGS+= -DLUAJIT_ENABLE_LUA52COMPAT/" -i deps/luajit/src/Makefile | |
- sed -e "s/#XCFLAGS+= -DLUA_USE_APICHECK/XCFLAGS+= -DLUA_USE_APICHECK/" -i deps/luajit/src/Makefile |
#!/usr/bin/env lua | |
-- "Quick" hack to generate rail road diagrams. | |
-- | |
local cairo = require("lcairo") | |
-- reverse ipairs(): | |
local function ripairs(t) | |
local function ripairs_it(t,i) | |
local v=t[i] | |
if v==nil then return v end |
local uv = require("uv") | |
local ffi = require("ffi") | |
local PIPE_NAME = "Windows" == ffi.os and "\\\\.\\pipe\\luv-bug" or "luv-bug" | |
local function mkresume() | |
local thread = coroutine.running() | |
return function(...) | |
coroutine.resume(thread, ...) | |
end | |
end |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash -e | |
# | |
# Usage: grep-r PATTERN [ GREP-ARGS ] [ -- [ DIRECTORIES ] [ FIND-ARGS ] ] | |
# | |
# PATTERN - The pattern to grep within files for | |
# GREP-ARGS - A list of arguments to pass to grep, for example -E for extended regex | |
# DIRECTORIES - A list of directories to seach (may not begin with `-`) | |
# FIND-ARGS - A list of arguments to pass to find, for example `-regex '.*/[fF]ile.txt'` | |
# | |
# Defaults: |
abstract class Ragel extends DefaultTask { | |
@InputFile | |
abstract File inputFile | |
@OutputFile | |
abstract File outputFile | |
@TaskAction | |
void execute(InputChanges inputChanges) { | |
project.exec { | |
commandLine "ragel", "-J", "-o", outputFile, inputFile |
Copyright 2020 Brian Maher | |
Permission is hereby granted, free of charge, to any person obtaining | |
a copy of this software and associated documentation files (the | |
Software"), to deal in the Software without restriction, including | |
without limitation the rights to use, copy, modify, merge, publish, | |
distribute, sublicense, and/or sell copies of the Software, and to | |
permit persons to whom the Software is furnished to do so, subject to | |
the following conditions: |
package io.nats.client.channels; | |
import java.io.IOException; | |
import java.nio.ByteBuffer; | |
import java.nio.channels.ByteChannel; | |
import java.nio.channels.ClosedChannelException; | |
import java.nio.channels.GatheringByteChannel; | |
import java.util.concurrent.TimeUnit; | |
import java.util.concurrent.locks.Lock; | |
import java.util.concurrent.locks.ReentrantLock; |