Re: Java 7, nio, and createFile

2009-10-29 Thread youngblood.carl
Works beautifully. Thank you sir. On Oct 28, 10:40 pm, Alex Osborne wrote: > youngblood.carl wrote: > > When I try and call createFile from clojure: > > (.createFile path) > > > I get an exception that there is no field named createFile. > > If I remember co

Java 7, nio, and createFile

2009-10-28 Thread youngblood.carl
Howdy all, I'm trying to call the createFile method from the Path class specified here: http://java.sun.com/javase/7/docs/api/java/nio/file/Path.html The following text: The following code snippet creates a file with default attributes: Path file = ...; try { file.createFile(); //Create

Shell script

2009-03-30 Thread youngblood.carl
Hey Ya'll, If you're ever wondering where something is defined, I put together this shell script tonight. Just save it, chmod it to be executable, and run ./foo.sh text-to-search-for #!/bin/sh find . -name "*.jar" | xargs -tn1 -I "%" sh -c 'jar tf "%" | grep .clj | xargs -tn1 unzip -p "%" | grep

Re: swank-clojure + slime

2009-03-08 Thread youngblood.carl
Phil, I am much obliged for the detailed help. I downloaded clojure as the archive available from google code rather than using svn. So the docs at http://clojure.org/api are out of date then? Thanks, Carl On Mar 8, 2:15 pm, Phil Hagelberg wrote: > "youngblood.carl" writes: >

Re: swank-clojure + slime

2009-03-08 Thread youngblood.carl
Thanks for linking Clojure Box, that is cool. If anyone wants to try my fix I've branched swank-clojure on github and committed the change. http://github.com/doncarlosx/swank-clojure/tree/master On Mar 8, 9:39 am, christophe turle wrote: > Same problem here. > > my solution : i'm currently usi

Re: swank-clojure + slime

2009-03-08 Thread youngblood.carl
; get lates clojure-mode here -http://github.com/jochu/clojure-mode/tree/master > > I hope you know where to get the latest clojure :) > > On Sun, Mar 8, 2009 at 5:18 AM, youngblood.carl > wrote: > > > > > Howdy all, > > > I'm brand new to this scene (whe

swank-clojure + slime

2009-03-07 Thread youngblood.carl
Howdy all, I'm brand new to this scene (where scene means lisp, closure, linux, and emacs), so apologies if this has been addressed. My goal is to make sure I'm up to date before moving forward. I set up my emacs/slime development environment like various tutorials suggested, except I received t