Skip to content

Instantly share code, notes, and snippets.

View bmatthews68's full-sized avatar
🎯
Focusing

Brian Matthews bmatthews68

🎯
Focusing
View GitHub Profile
@npryce
npryce / property-based-testing-tools.md
Last active September 18, 2025 20:18
Property-Based Testing Tools

If you're coming to the Property-Based TDD As If You Meant It Workshop, you will need to bring a laptop with your favourite programming environment, a property-based testing library and, depending on the language, a test framework to run the property-based-tests.

Any other languages or suggestions? Comment below.

.NET (C#, F#, VB)

Python:

@bmatthews68
bmatthews68 / ra.xml
Created December 22, 2011 17:41
Customized ra.xml used to deploy Jackrabbit on WebSphere 6.1
<?xml version="1.0" encoding="UTF-8"?>
<connector
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/connector_1_5.xsd"
version="1.5" >
<display-name> Apache Jackrabbit JCR Adapter</display-name>
<vendor-name> The Apache Software Foundation</vendor-name>
@jugglebird
jugglebird / gexf.xml
Created November 16, 2011 18:55
D3 Loading a GEXF XML file
<?xml version="1.0" encoding="utf-8"?><gexf version="1.1"
xmlns="http://www.gexf.net/1.1draft" xmlns:viz="http://www.gexf.net/
1.1draft/viz" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/2001/XMLSchema-instance">
<graph defaultedgetype="directed" mode="static">
<nodes>
<node id="A" label="A" />
<node id="B" label="B" />
</nodes>
<edges>