Skip to content

Instantly share code, notes, and snippets.

View mgrbyte's full-sized avatar

Matt Russell mgrbyte

View GitHub Profile
@dkozma
dkozma / inspect.clj
Last active August 13, 2017 22:38
Clojure->Chrome Inspector
(ns inspect
(:require [cheshire.core :refer [generate-string]]
[clojure.java.io :as io])
(:import (java.net Socket)
(def host "localhost")
(def port 9000)
(defn cinspect [data]
(with-open [sock (Socket. host port)
@regebro
regebro / sanetizing_plone_views.rst
Last active December 15, 2015 21:29
Overview over ways to create views in Zope, and some opinions on their future.

Sanetizing Plone Views

(Pun intended)

There are too many ways of createing views in Plone. This needs fixing. It's a job that is too much for any one person, so we need a plan. This is an attempt to look at the situation and asses things so that we can make a plan, which can then be made into a PLIP and worked on.