Re: [Jprogramming] A simple bloom filter

2015-11-02 Thread Devon McCormick
Is there a good aspect to reporting false positives? On Mon, Nov 2, 2015 at 10:31 AM, 'Jon Hough' via Programming < programm...@jsoftware.com> wrote: > > I thought I would have a go at creating a very simple bloom filter in J. I > used a boolean array as the backing data structure. It seems to wo

Re: [Jprogramming] auto completion

2015-11-02 Thread Alex Shroyer
The trailing space is a compiled-in feature of the readline library. It's annoying. Some python folks found a solution by recompiling readline from source after changing the default "rl_completion_append_character" from ' ' (space) to '\0

[Jprogramming] A simple bloom filter

2015-11-02 Thread 'Jon Hough' via Programming
I thought I would have a go at creating a very simple bloom filter in J. I used a boolean array as the backing data structure. It seems to work ok: Bloom filters are nice data structures for holding lossy information about items you stick in them. You can't retrieve the items but you can perform

Re: [Jprogramming] auto completion

2015-11-02 Thread Joe Bogner
for #3 - I cobbled together a way to do this in JHS http://www.jsoftware.com/pipermail/programming/2014-May/037244.html Here's a gist of the code (since lines get wrapped in email) https://gist.github.com/joebo/612de85bd0718601b98a tested on Windows Chrome On Mon, Nov 2, 2015 at 3:10 AM, Ryan

Re: [Jprogramming] auto completion

2015-11-02 Thread bill lam
1. not sure, it depends on external shared object. 2 & 3. no. unless you compile from source and change some option and perhaps some further modification. On Nov 2, 2015 4:10 PM, "Ryan Eckbo" wrote: > I have 3 questions on auto completion: > > 1. In jconsole you can tab complete file paths, e.g.

[Jprogramming] auto completion

2015-11-02 Thread Ryan Eckbo
I have 3 questions on auto completion: 1. In jconsole you can tab complete file paths, e.g. dir'./software ' NB. 'soft' completes to 'software ' However, it ends with a trailing space, which means I'm hitting backspace after every tab complete. Is there a way to configure J to not add this tr