Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dbleyl

  1. dbleyl

    weighted matching library

    Thanks, I never would have guessed.
  2. dbleyl

    weighted matching library

    I ended up using the Simmetrics and SecondString java libraries , hosted on sourceforge. It would be nice to have something like them available in Ruby.
  3. dbleyl

    eclipse and firefox freezing...

    Not exactly - I ran the pkgdb -f I was prompted to run at first, but wasn't sure how to resolve some of the dependencies of the old linux (non-xorg libraries that didn't appear to have an xorg equivalent).
  4. dbleyl

    weighted matching library

    I'm looking for a library or algorithm that returns a 'score' from a search of one string in another, in order to calculate a best match. Any ideas? Also, been playing with amatch, but I can't find any documentation for it - it has approximate matching capabilities. Any ideas on that one?
  5. dbleyl

    eclipse and firefox freezing...

    Thought I'd post my solution for posterity. Firefox and JDK both had new patches in ports - had to uninstall linux-base_7 and replace it with linux-base_8. Removed packages dependent on 7 and rebuilt firefox and jdk14.
  6. dbleyl

    eclipse and firefox freezing...

    I just cvsup'd ports, portsdb -uU, portversion... after portupgrade firefox and eclipse freeze up. FreeBSD 5.3, eclipse 3.01, firefox 1.0 and all the xorg stuff...xfce is the desktop. mozilla is working fine however... Any ideas?
  7. dbleyl

    Who creates the work breakdown structure?

    Ok, thanks for your input.
  8. dbleyl

    Who creates the work breakdown structure?

    Hi, Does the PM create the work breakdown structure?
  9. dbleyl

    installing port portupgrade fails due to Ruby(?)

    Solution: pkg_remove -a I removed all the packages I had installed, installed autoconf259, and that's all it took.
  10. dbleyl

    installing port portupgrade fails due to Ruby(?)

    >>Have you done 'make deinstall && make reinstall' for Ruby? I hadn't. When I tried this, and I received an error that ruby was not installed. I moved to ruby 1.6 in ports, and did this, and I received an error regarding open-motif. I removed open-motif with pkg_delete, then I ran deinstall...
  11. dbleyl

    installing port portupgrade fails due to Ruby(?)

    Hello, I'm trying to install portupgrade on a FreeBSD 4.10-Stable box. The first error was autoconf was too old, so I installed 2.59. The build fails in Ruby 1.8.2 p2_1: config.status: Creating Makefile Makefile updated, restart. *** Error Code 1 1 Error *** Error Code 2 Any ideas?
  12. dbleyl

    Conferencing Project!! Pls Help

    Perhaps a starting point for your wonderful new application inspired by your elders: http://java.sun.com/products/java-media/jmf/index.jsp
  13. dbleyl

    ArrayList

    Ah, I see you cross-posted this question - I hope that I don't get mod'd for ripping off someone's answer, mine is straight from javadocs ;)
  14. dbleyl

    ArrayList

    You're welcome. The way I understand the javadoc, is that SortedMap imposes the sort order that you choose when you create it (or natural, if you don't specify any). You can provide a Comparator. If you needed to create a map that sorted in the opposite order, you could take the original map...
  15. dbleyl

    ArrayList

    You need to divide your code into methods for clarity and ease of maintenance. You should be using StringBuffer for this kind of work. Here is an example: private void buildCell(final StringBuffer target, final String value){ target.append("<td class=columnwhite>")...

Part and Inventory Search

Back
Top