home.social

#soundex — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #soundex, aggregated by home.social.

fetched live
  1. The Soundex Algorithm in Python

    This algorithm assigns identical codes to words or names which it thinks are pronounced the same. It's not brilliant but coding it in Python is an interesting project.

    codedrome.substack.com/p/sound

    #python #pythonprogramming #programming #soundex #algorithms

  2. We now have over thirty-four thousand crowdsourced entries on @openbenches.org !

    Here's how I used #SOUNDEX to discover all the duplicates.

    shkspr.mobi/blog/2020/11/using

  3. Needed to do some fuzzy matches in #Laravel with a 5000+ row array to account for differently spelled company names across two APIs. Played with #Levenshtein, #SoundEx and #similar_text in #PHP. Found similar_text worked best by far for this perhaps. Ended up using array_walk to accomplish this with ease. Would love to hear others experiences in doing fuzzy matches between arrays.