Execute a subprocess that takes input e.g. emacs

2013-02-03 Thread Gabriel Horner
Hi, Is there a straightforward way to invoke an editor within clojure e.g. (clojure.java.shell/sh emacs some-file)? I've taken a look at popular shell libraries like conch and stevedore but found nothing helpful. If you're curious why I want to do it, it's to open a lein dependency in emacs

Re: Execute a subprocess that takes input e.g. emacs

2013-02-04 Thread Gabriel Horner
On Feb 3, 2013, at 2:30 PM, Gabriel Horner wrote: Hi, Is there a straightforward way to invoke an editor within clojure e.g. (clojure.java.shell/sh emacs some-file)? I've taken a look at popular shell libraries like conch and stevedore but found nothing helpful. If you're curious why I want

ANN: lein-open and lein-grep 0.1.0

2013-02-04 Thread Gabriel Horner
Announcing two leiningen plugins: lein-open, http://github.com/cldwalker/lein-open, opens a local jar in an editor easily e.g. `lein open compojure`. By default it opens dependencies in your project.clj but if you specify a full name and version that works as well e.g. `lein open

[ANN] emoji 0.1.0 (initial release) - a library to emojify a ring app or pedestal service

2013-03-28 Thread Gabriel Horner
emoji is a library that provides ring middleware and pedestal interceptorware to replace a response containing emoji names with bundled emoji images. To use as an interceptor for a pedestal service: (require '[io.pedestal.service.interceptor :refer [defon-response]]) (require '[emoji.core

[ANN] table 0.4.0

2013-04-20 Thread Gabriel Horner
Hi everyone, Releasing table 0.4.0, https://github.com/cldwalker/table#readme. table is a smart ascii table renderer. It's similar to clojure.pprint/print-table but more powerful. Changes since the last release: * Works with emacs nrepl * Add :fields option to control field ordering * Add

[ANN] A github issues app/bot to better serve users

2013-04-25 Thread Gabriel Horner
Hi, I thought I'd share a github issues app/bot I wrote to make my life easier as an author and hopefully my users: https://github.com/cldwalker/gh-active-issues#readme The app does two main things: * It lists issues the maintainer considers active. See my list at

Re: [ANN] hamelito - bringing haml to enlive

2013-04-26 Thread Gabriel Horner
Nice work! Happy to see you exercising haml-spec. Will definitely be using this next time I reach for a templating library. On Friday, April 26, 2013 10:46:32 AM UTC-4, Ragnar Dahlén wrote: Hello, I'd like to announce the availability of hamelito, a clojure library allowing you to use a

How do you determine terminal/console width in `lein repl`?

2012-07-23 Thread Gabriel Horner
Hi, For a clojar I'm writing http://github.com/cldwalker/table, I'd like to know a user's terminal width so I can resize output appropriately. All the following techniques, which work fine in a ruby repl, don't work in leiningen2: $ lein repl user= (System/getenv COLUMNS) nil user=

Re: How do you determine terminal/console width in `lein repl`?

2012-07-23 Thread Gabriel Horner
issue - http://stackoverflow.com/a/1286677/83510. I'm curious why `tput cols` doesn't work but that's for another day. On Monday, July 23, 2012 12:01:17 PM UTC-4, Gabriel Horner wrote: Hi, For a clojar I'm writing http://github.com/cldwalker/table, I'd like to know a user's terminal width

[ANN] table 0.3.0 release - ascii tables that fit in your terminal

2012-07-23 Thread Gabriel Horner
Hi, Announcing a new version of table, https://github.com/cldwalker/table, a clojar that prints ascii tables for almost any data structure. This release allows tables to automatically fit your terminal's width. Thanks, Gabriel -- You received this message because you are subscribed to the

Re: [ANN] table 0.3.0 release - ascii tables that fit in your terminal

2012-07-24 Thread Gabriel Horner
, searching datomic on clojars make the web page break: https://clojars.org/search?q=datomic). Cheers, Denis On Tue, Jul 24, 2012 at 7:37 AM, Gabriel Horner gabriel.hor...@gmail.comwrote: Hi, Announcing a new version of table, https://github.com/cldwalker/table, a clojar that prints ascii

[ANN] Initial release of rubydoc!

2012-07-24 Thread Gabriel Horner
Hi All, There's doc, clojuredocs and javadoc - all handy repl tools. rubydoc, http://github.com/cldwalker/rubydoc, is another such tool but specifically for comparing ruby and clojure equivalents. The goal of this project is to become a community resource for comparing these two languages

[ANN] rubydoc 0.3.0

2012-09-09 Thread Gabriel Horner
rubydoc https://github.com/cldwalker/rubydoc is a project aimed at helping rubyists find clojure equivalents. There are now over 200+ ruby-clojure comparisons. 0.3.0 comes with some new features: * A comparison is not just limited to functions/methods. With the introduction of a :type field,

Re: [ANN] rubydoc 0.3.0

2012-09-12 Thread Gabriel Horner
On Monday, September 10, 2012 7:24:15 AM UTC-4, Denis Labaye wrote: On Mon, Sep 10, 2012 at 4:10 AM, Gabriel Horner gabriel...@gmail.comjavascript: wrote: rubydoc https://github.com/cldwalker/rubydoc is a project aimed at helping rubyists find clojure equivalents. There are now over

[ANN] table - Display ascii tables for almost any data structure with ease

2012-06-28 Thread Gabriel Horner
Hi Clojuristas, I'm announcing my first clojar - table, https://github.com/cldwalker/table. table handles rendering combinations of maps, vecs, lists and sets nested in one another as ascii tables. Four ascii table styles exist and more welcome: plain, org, unicode and github markdown. See the

[ANN] lein-spell: Spell check your clojure docstrings and library docs

2013-07-02 Thread Gabriel Horner
Introducing lein-spell, https://github.com/cldwalker/lein-spell - a library to quickly and easily spell check your clojure libraries. Usage - lein-spell prints misspelled words, one per line to STDOUT. By default your library's docstrings and markdown/txt docs are searched: $ lein-spell

Re: [ANN] lein-spell: Spell check your clojure docstrings and library docs

2013-07-03 Thread Gabriel Horner
. It would be good to have an option to *not* pick up parameter names; I often refer to these in doc strings, and they are not always spelling mistakes. Phil Gabriel Horner gabriel.hor...@gmail.com writes: Introducing lein-spell, https://github.com/cldwalker/lein-spell - a library

Re: [ANN] Pedestal-app Tutorial has been released

2013-07-09 Thread Gabriel Horner
Having gone through the tutorial from end to end (before it's release), I can't recommend it enough. If you have any curiosity about dataflow web programming and/or pedestal-app, give yourself a day to go through this. Awesome work Brenton! On Tuesday, July 9, 2013 12:03:58 PM UTC-4, Ryan

[JOB] Clojure(Script) jobs at Reify Health | U.S Remote or Boston

2018-04-09 Thread Gabriel Horner
Hi, Reify Health is building clinical trial software using Clojure and ClojureScript. We are looking for experienced developers who are knowledgeable in our stack or eager to learn it. We care about building meaningful products, providing delightful user experiences