Skip to content

Instantly share code, notes, and snippets.

View philandstuff's full-sized avatar

Philip Potter philandstuff

View GitHub Profile
@philandstuff
philandstuff / lists-of-countries.md
Created September 1, 2015 11:20
Lists of countries and geographical locations
@philandstuff
philandstuff / standalone-mapit.org
Last active August 29, 2015 14:23
standalone mapit experience
(function() {
var jQuery = window.$;
var OpenRegister = function(endpoint) {
this.endpoint = endpoint;
};
OpenRegister.prototype.buildURL = function(path) {
return this.endpoint + path + ".json";
};
@philandstuff
philandstuff / data-model.org
Created June 1, 2015 11:09
data modelling for registers

data model

needs

  • fetch a particular version of a record (permalink)
  • fetch the latest version of a record
  • view all (current) records
  • export whole register inc history
  • export last N versions of history
    • update my local copy of register with changes (streaming)
2015-05-19T14:12:14.514559+00:00 app[web.1]: [error] c.j.b.ConnectionHandle - Database access problem. Killing off this connection and all remaining connections in the connection pool. SQL State = 57P01
2015-05-19T14:12:14.762639+00:00 app[web.1]: [error] application -
2015-05-19T14:12:14.762643+00:00 app[web.1]:
2015-05-19T14:12:14.762646+00:00 app[web.1]: ! @6m7idhci3 - Internal server error, for (GET) [/] ->
2015-05-19T14:12:14.762647+00:00 app[web.1]:
2015-05-19T14:12:14.762651+00:00 app[web.1]: play.api.Application$$anon$1: Execution exception[[RuntimeException: java.lang.RuntimeException: org.postgresql.util.PSQLException: FATAL: terminating connection due to administrator command]]
2015-05-19T14:12:14.762653+00:00 app[web.1]: at play.api.Application$class.handleError(Application.scala:296) ~[com.typesafe.play.play_2.11-2.3.8.jar:2.3.8]
2015-05-19T14:12:14.762655+00:00 app[web.1]: at play.api.DefaultApplication.handleError(Application.scala:402) [com.typesafe.play.play_2.11-2.3.8.jar:2.3.8]
2015-05-19
@philandstuff
philandstuff / README.org
Last active August 29, 2015 14:20
spike

datomic-spike

A spike into using datomic to model data registers.

Usage

You need Datomic. If you agree to the Datomic Free License you can install it using homebrew: brew install datomic.

analysis

@philandstuff
philandstuff / clojurex-2014.org
Last active June 30, 2017 21:39
Clojure eXchange 2014

Korny Sietsma, Pragmatic Performance Testing

quotes

  • “we don’t care about perf”
  • “clojure should be fast”
  • “we’re using mongo!”
  • “clojure might not be fast enough, we should use type hints”

JMeter

@philandstuff
philandstuff / codemesh2014.org
Last active July 5, 2022 13:29
Code Mesh 2014

Codemesh 2014, London

keynote: complexity is outside the code

when I started programming:

  • architecture was always:
    • box - box - cylinder
  • then layers:
    • ideally:
module FizzBuzz where
import Data.Foldable (fold)
whenDivisible :: Integral a => a -> b -> a -> Maybe b
whenDivisible d x n = if n `rem` d == 0 then Just x else Nothing
fizzbuzz :: (Show a, Integral a) => a -> String
fizzbuzz n = maybe (show n) id tagStr
where tagStr = fold [fizz n, buzz n]
fizz = whenDivisible 3 "Fizz"