Conferences

Clojure Exchange 2014

45 thoughts
last posted Dec. 5, 2014, 5:43 p.m.
0
get stream as: markdown or atom
0

Fork-join shows contention on high numbers of cores (48).

0

Aphyr: Non-determinism is evil, but where our power comes from

0

Tesser allows distributed system calculations that pipe together reducers and combiners.

Many data operations can be combined together into a single traversal.

0

Transducers use state for some of the traversals. E.g. take and partition.

0

You can buy a ticket to Clojure Exchange 2015 for just £95

0

Aphyr just formed a monoid hug with audience participation.

Also the video of this talk is going to record some truly terrible accents.

0

Interesting talk on Lenses that was slightly more humane than previous talks on the topic I've attended.

Lenses offer the ability to hold a focus on multiple points in a data structure and apply operations to them.

This becomes more relevant where, for good reasons, we want a single data structure to represent the whole of the applications data.

0

I feel like I'm being trolled with boredom. Like there's some weird challenge in how bored you can be before you walk out.

0

Meta talk about talks.

0

GDS service manual has good definition of project phases

0

Project had a classic frontend/backend split.

Frontend prototype iterated and varied far more than anticipated. Little value in trying to link the many variants in an actual app.

Templates reloading was hard as resource changes don't trigger reloads, ended up touching the namespace file to reload the associated templates.

0

Amusing story about Donald Michie and Alan Turing about failing to find Turing's buried silver after the war.

0

By not providing an identity service the government is avoiding collecting user data but has created the problem of which private company you trust to represent your identity.

0

Direct testing of ring handlers with Kerodon

Complex journeys (such as off-site authentication) can be wrapped as a single function in the journey description.

Thanks Glen Mailer, for fixing a redirect bug in the library.

0

Project used the reloaded pattern rather than strict Component architecture, interesting.

Did consider switching to Component half-way through the project but didn't feel it was the right thing to do.

0

Your hobby code is always exciting and great because you don't have to share your product direction with others and if you get stuck you can just ditch the project with no consequences.

Good point from Philip Potter.

0

Gov.UK Verify uses an Identity Hub to indirect the service you are trying to access and the identity provider.

The project was experimenting with OpenID Connect.

0

You can give the Scala developer Clojure but you can't take the Scala out of their code.

0

Modular Juxt's attempt to take the boilerplate out of Component.

0

I don't think you can do remote CSP without knowing about the nodes in the channel. I think the speaker might confusing core.async and Erlang.

0

Some more love for the Component architecture but also dependency injection...

0

Carmine a Redis client library

0

Both of the MixRadio talks have been interesting and have had a strong Devops influence, the first on infrastructure and deployment and the second on performance tuning.

Again though we're learning to RTFM.

Lots of praise for YouKit.

0

James Henderson has slipped a load of Haskell-inspired monads passed the crowd here in his talk about Flow.

0

Slightly odd closing keynote from Bodil who was taking a perspective of someone who considers herself "outside" the community now.

There was praise for the community but acknowledgement that it is still mostly white men. There was a lot of funny pictures and back-handed compliments.

There was a lot of praise for Erlang, which seems to have been one of the themes of the first day of the conference. I'd be the first to acknowledge the strengths of Erlang but I honestly think there is a massive difference between the core competencies of Clojure and Erlang and both actually scale in their own ways but there are things that both are going to shine at and I suspect then Venn diagram of those things don't intersect much.

Bodil also name-checked Racket another really interesting language worthy of attention.

She also mentioned core.typed and her disappointment that it hasn't really taken off but I don't think you're really going to get a lot of type lovers in a Clojure crowd.

0

Ctries: linear access, can reconstitute a structure from the history of its operations. Source coming soon on Github.

Transient data (or mutable by another name) that you can make immutable snapshots from in O(1)

Deref creates independent mutable structures based on the original

Designed for safe concurrent modification.

0

DataScript is an in-memory datastore with a DataLog query interface.

It can be used to model the state of a SPA in a powerful way where queries can be used to generate views.

0

Amazonica a comprehensive AWS service client.

0

Tentacles library for interacting with the Github configuration

0

Conch a library for executing shell commands

0

Faraday a Clojure library for interacting with AWS DynamoDB

0

DPP is a kind of presentational chameleon, this time he's completely adopted Bodil's pony-style.

0

This is not really a talk about performance testing but about an arrogant development team.

0

Okay this is really bad, apparently people are selecting * from multiple relational tables and joining in memory. That's a serious cultural problem, not really an issue with the technology itself.

0

Over-engineered code is slow, shocker!
Cached data is fast, double-plus shocker!

0

Korny Sietsma is kind of making Malcom Spark's point about Ring and Jetty not being suitable for modern Clojure web development.

0

If you remove laziness from a Clojure program you tank performance as you realise all structures.

0

Robert Hooke allows you to attach a function to another function

0

Why would you use a macro in Compojure to measure performance instead of Ring middleware? Why? Why?!

0

There seems to be a ThoughtWorks disease of creating web apps with performance issues. Presumably because they build and then deliver on on timeline rather than building iteratively into a requirement or perhaps because they don't externalise scalability into the platform.

0

Speaker is trolling the audience with Cathode app.

0

Nick Rothwell has two open-source projects: a scene-graph renderer and a timeline automation

0

There is quite a strong showing of Clojurians from Bristol, Glasgow and other user groups here.

0

This nice thing about a single-track conference is that you don't have to choose and everyone is in the same conversation.

The venue is packed though, at the limits of what the Skillsmatter building can hold.

0

Arrived a bit late on a very cold, foggy and drizzily day. The first talk I caught actually ended up with the speaker recommending the use of Erlang.

I kind of agree: there's a set of distributed low-level problems where building a fake Erlang on top of the JVM is a poor fit.