Skip to content

Instantly share code, notes, and snippets.

View biesnecker's full-sized avatar

biesnecker

  • Orlando, FL
  • 04:08 (UTC -04:00)
View GitHub Profile
Resolving dependencies...
Build profile: -w ghc-9.4.2 -O1
In order, the following will be built (use -v for more details):
- rdf4h-5.0.1 (lib) (first run)
- rdf4h-5.0.1 (exe:rdf4h) (first run)
Configuring library for rdf4h-5.0.1..
Preprocessing library for rdf4h-5.0.1..
Building library for rdf4h-5.0.1..
[ 1 of 30] Compiling Data.RDF.BlankNode ( src/Data/RDF/BlankNode.hs, /Users/jbiesnecker/projects/rdf4h/dist-newstyle/build/aarch64-osx/ghc-9.4.2/rdf4h-5.0.1/build/Data/RDF/BlankNode.o, /Users/jbiesnecker/projects/rdf4h/dist-newstyle/build/aarch64-osx/ghc-9.4.2/rdf4h-5.0.1/build/Data/RDF/BlankNode.dyn_o )
[ 2 of 30] Compiling Data.RDF.IRI ( src/Data/RDF/IRI.hs, /Users/jbiesnecker/projects/rdf4h/dist-newstyle/build/aarch64-osx/ghc-9.4.2/rdf4h-5.0.1/build/Data/RDF/IRI.o, /Users/jbiesnecker/projects/rdf4h/dist-newstyle/build/aarch64-osx/ghc-9.4.2/rdf4h-5.0.1/build/Data/RDF/IRI.dyn_o )
version: 2.0
jobs:
build:
docker:
- image: cibuilds/hugo:latest
working_directory: ~/hugo
environment:
HUGO_BUILD_DIR: public/
steps:
- run:
/** @jsx React.DOM */
var GameStatus = {
NOTSTARTED: 0,
FINISHED: 1,
INPROGRESS: 2
}
var Suits = ['H', 'D', 'C', 'S'];
var Cards = [];

Keybase proof

I hereby claim:

  • I am biesnecker on github.
  • I am biesnecker (https://keybase.io/biesnecker) on keybase.
  • I have a public key ASDIAATTVmqkniBe9VTfvAZW2groMGBcueN_jZr1iBUi0Ao

To claim this, I am signing this object:

# Reference makefile:
# https://gist.github.com/anonymous/b469f85762e93ea1b51f0f0f97e19acc
# All the flags created by configure
OPT = [
"-DNDEBUG",
"-g",
"-fwrapv",
"-O3",
"-Wall",
/** @jsx React.DOM */
var SVGComponent = React.createClass({
render: function() {
return this.transferPropsTo(
<svg>{this.props.children}</svg>
);
}
});
import asyncio
import functools
import random
class Message(object):
def __init__(self, message, payload={}):
self.message = message
self.payload = payload
self.result = None
@biesnecker
biesnecker / jetty.xml
Created August 17, 2011 23:18
Jetty configuration
<?xml version="1.0"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
<!-- =============================================================== -->
<!-- Configure the Jetty Server -->
<!-- -->
<!-- Documentation of this file format can be found at: -->
<!-- http://wiki.eclipse.org/Jetty/Reference/jetty.xml_syntax -->
<!-- -->
<!-- Additional configuration files are available in $JETTY_HOME/etc -->
<form method="GET" action="http://amazinggirls.s3-website-us-east-1.amazonaws.com/bib.svg">
<p>Name: <input name="name" type="text"><input type="submit"></p>
</form>
@biesnecker
biesnecker / the_internets_twitter.md
Created July 22, 2016 16:15
The Internet's Twitter

The internet's twitter

In response to Dave Winer's post.

I think the short answer is "something like XMPP." XMPP has a lot of things going for it:

  • It's an open standard (we can all build our own implementations and fork our own features and at a base level it will remain compatible as long as we're not dorks and break the interface).
  • It's federated (I can choose who I trust, and I don't have to pay for everyone to use my server).

It needs payloads and doesn't need arbitrary length limits.