Re: Adding debug traces to expressions

2017-06-03 Thread Bill Piel
Hi lvh, Author of sayid here. Couple questions: - would you want the debug traces to be available only during development? Or does this need to run in production too? - what editor are you using? or does the solution need to be editor-agnostic? Also, FWIW, Sayid does have features that allow

Re: Sayid Pro - Transparency for Clojure Production Environments (kickstarter)

2017-05-08 Thread Bill Piel
: > > Thanks for the clarifications and answers! Interested to see what Emacs > integration looks like. I'm surprised most developers want web interfaces > for this stuff but can't argue with the data if it means more licenses sold > for you. > > On Monday, May 8, 2017 at 1:10:3

Re: Sayid Pro - Transparency for Clojure Production Environments (kickstarter)

2017-05-08 Thread Bill Piel
packages in the Emacs world, etc. Why not take that approach, which will > lead to a product that integrates well with a developers existing tooling. > > On Monday, May 8, 2017 at 10:35:00 AM UTC-4, Bill Piel wrote: >> >> Today I launched a kickstarter for Sayid Pro. >> &

Sayid Pro - Transparency for Clojure Production Environments (kickstarter)

2017-05-08 Thread Bill Piel
Today I launched a kickstarter for Sayid Pro. https://www.kickstarter.com/projects/1269641244/sayid-pro-transparency-for-clojure-production-envi Maybe you've heard of Sayid, a clojure debugger and profiler, that I wrote and then presented at Conj 2016. After my talk, a lot of people asked me if

Re: New to Clojure - productivity and debugging with Emacs

2017-01-12 Thread Bill Piel
but it > is unclear to me how you make this happen. If you have the time, please > elaborate. It would be very helpful to me to be able to log http requests > originating from curl or a browser. > > Den mandag den 9. januar 2017 kl. 13.24.26 UTC+1 skrev Bill Piel: >> &

Re: New to Clojure - productivity and debugging with Emacs

2017-01-09 Thread Bill Piel
ahawk, I've been using clojure for years, but can still relate to the issues you are facing, which is why I wrote a debugging/development tool to help. It's called sayid. It can be used directly from the repl, but has an emacs/cider integration that makes it much more powerful.

Incanter rendering a blank window

2015-03-28 Thread Bill Piel
I decided to try out incanter. Following the instructions, I ran this in the repl: *user= (view (histogram (sample-normal 1000)))* A blank, grey window popped up. I can right-click and save it to a png. The png shows the graph as expected. I get the same results for other commands. I googled

Re: Incanter rendering a blank window

2015-03-28 Thread Bill Piel
This worked for me: *export _JAVA_AWT_WM_NONREPARENTING=1* source: https://wiki.haskell.org/Xmonad/Frequently_asked_questions#Problems_with_Java_applications.2C_Applet_java_console On Sunday, March 29, 2015 at 12:48:56 AM UTC-4, Bill Piel wrote: I tried floating/tiling, hide/showing

Re: Incanter rendering a blank window

2015-03-28 Thread Bill Piel
/ expose events the apps expect) or a bug in the lib. On Saturday, March 28, 2015 at 6:44:07 PM UTC-7, Bill Piel wrote: I decided to try out incanter. Following the instructions, I ran this in the repl: *user= (view (histogram (sample-normal 1000)))* A blank, grey window popped up. I can

Re: [ANN] Sweet Liberty: Set Your Data Free with Clojure and REST

2015-02-23 Thread Bill Piel
implementations. Your example would be a perfect use case. Bill On Saturday, February 21, 2015 at 11:43:11 AM UTC-5, Andy Chambers wrote: On Tuesday, February 17, 2015 at 11:24:48 AM UTC-5, Bill Piel wrote: Blog post: https://blog.rjmetrics.com/2015/02/15/sweet-liberty-set-your-data-free

Re: Library (or libraries) for translating REST queries to database queries?

2015-02-19 Thread Bill Piel
, Bill Piel wrote: I want to use clojure to build a web service with a RESTful API that exposes resources stored in a relational database (mysql in this case). I'd like to use a library that, given a specification of the db schema, would translate incoming requests to db queries, or korma

[ANN] Sweet Liberty: Set Your Data Free with Clojure and REST

2015-02-17 Thread Bill Piel
Blog post: https://blog.rjmetrics.com/2015/02/15/sweet-liberty-set-your-data-free-with-clojure-and-rest/ Sweet-Liberty is a library for building database-backed RESTful services using Clojure. You can think of it as a means to build and configure components that translate between REST and

Library (or libraries) for translating REST queries to database queries?

2013-09-24 Thread Bill Piel
I want to use clojure to build a web service with a RESTful API that exposes resources stored in a relational database (mysql in this case). I'd like to use a library that, given a specification of the db schema, would translate incoming requests to db queries, or korma constructs. Examples