Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Shells Virtual Desktop
BMail.ag - Secure Email Service
Server.net
CPLicense.net
VPS Server
Buy VPN
Vultr
VMs for AI
HostDare
HostDare
ReliableSite White-Label Dedicated Hosting for Resellers
InterServer VPS
BMail.ag - Secure Email Service
Best VPN
High-Performance Bare Metal Server Solutions
Karvl.com
Server Mania Cloud Hosting
DataWagon Hosting
AlphaVPS Hosting
Evoxt.com
Clouvider
VPS Hosting with NVMe
Residential IPs in the US & 4G Mobile Proxies in EU & US with Unlimited Bandwidth
ReliableSite White-Label Dedicated Hosting for Resellers
Rabisu - Hosting Solutions
Shells Virtual Desktop
Home β€Ί Offers
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

-- B L A C K F R I D A Y -- by LETs #1 TOP PROVIDER RackNerd! - HUNDREDS OF GIVEAWAYS! COME GET SOME

1195196198200201855

Comments

  • @DeadlyChemist said:

    @Xrmaddness said:

    @DeadlyChemist said:

    @codelock said:
    πŸ₯‘πŸžπŸ«”πŸ₯―πŸ₯‘

    @codelock said:
    πŸ’¦πŸ†πŸ˜πŸ₯²πŸ˜˜

    @codelock said:
    β›΅πŸšŸπŸš‘πŸ‡°πŸ‡Ώβ™ΎοΈ

    this is why we need a filter

    Okay, now this I can certainly get behind. I have a hard time trying to justify how this follows the note from the participation post:

    For posts to be eligible and counted -- they should be generally helpful and neighborly towards the community.

    https://lowendtalk.com/discussion/comment/3753740/#Comment_3753740

    3rd bf here
    never has anyone been disqualified
    either way it's a bad situtaion for all of us

    Same here! Looks like we joined LET around the same time. I know the threads have had this same discussion pretty much every time, at some point, and, like you've mentioned, no one to my knowledge has ever been disqualified. I'm sure action would be taken if anything ever became too ridiculous.

    Dustin does have a stipulation in the OP:

    It’s our goal for this to be fun for everyone and it’s community-focused, meaning we’re all among friends - therefore we reserve the right to disregard posts that are naughty or just not nice!

    So obviously it's up to his discretion.

  • Towards page 200

  • Anyway, I'm off to bed. I hope you all have a wonderful day or night, whichever it is currently wherever you are. Remember to try to keep it fun, that's what this is all about. Well, that and RackNerd services ;)

    Take care :)

  • @Xrmaddness said:
    Anyway, I'm off to bed. I hope you all have a wonderful day or night, whichever it is currently wherever you are. > @MrEd said:

    @Xrmaddness said: At any rate, did I miss a post where you explained or even shared the exact code that you're using to determine the difference between a unique and non-unique post? I'd say that's quite important for anyone to determine for themselves if your tracking is even valid.

    >

    @MrEd said:

    @Arjun42 said:
    Thanks! Hopefully it's easier to deal with than Levenshtein Distance.

    I will though implement some other "similarity" measure, because currently it is 90% according to the length of the message... This doesn't fire on messages "Page 123" and "Page 124", because difference is 1 for these messages, they are clearly similar, but because message itself is short (8 characters), similarity is only 87.5%, and it doesn't fall into similar messages category. I guess I will have to add a check "if difference is less than 3" for example, then ignore the percentage :) This will definitely increase the number of similar comments, maybe we will have less 0% members :)

    I did explain it here. I hope it is clear enough how it works, but as mentioned in the comment, it has its flaws which I will try to get around (maybe with distance < 3 == similar)

    Thanks for drudging up your previous post, I had figured you already explained it, but there are far too many pages. I appreciate it, thank you.

    I'm not sure if you share your code publicly anywhere, but I'd love to have a look, at least for this part of it. I'm just genuinely curious, it's an interesting problem to solve. It sounds like you're still making adjustments to it?

    No, the code is on my private SVN (I know, its not GIT, I am old enough to use old technologies :D )

    But for this exact problem its easy:

    private LevenshteinDistance distance = new LevenshteinDistance();
    
    ...
    
    int dist = userComments.stream().map(uc -> distance.apply(uc.getBody(), commentBody)).min(Integer::compareTo).orElse(Integer.MAX_VALUE);
    double similarity = (commentBody.length() - dist) / (double) commentBody.length();
    if (similarity > 0.9d) {
      counter.setSimilar(counter.getSimilar() + 1);
    }
    

    I already mentioned, that I am using LevenshteinDistance from apache common-text library.

    Thanked by 1Xrmaddness
  • @Xrmaddness said:
    Anyway, I'm off to bed. I hope you all have a wonderful day or night, whichever it is currently wherever you are. > @MrEd said:

    @Xrmaddness said: At any rate, did I miss a post where you explained or even shared the exact code that you're using to determine the difference between a unique and non-unique post? I'd say that's quite important for anyone to determine for themselves if your tracking is even valid.

    >

    @MrEd said:

    @Arjun42 said:
    Thanks! Hopefully it's easier to deal with than Levenshtein Distance.

    I will though implement some other "similarity" measure, because currently it is 90% according to the length of the message... This doesn't fire on messages "Page 123" and "Page 124", because difference is 1 for these messages, they are clearly similar, but because message itself is short (8 characters), similarity is only 87.5%, and it doesn't fall into similar messages category. I guess I will have to add a check "if difference is less than 3" for example, then ignore the percentage :) This will definitely increase the number of similar comments, maybe we will have less 0% members :)

    I did explain it here. I hope it is clear enough how it works, but as mentioned in the comment, it has its flaws which I will try to get around (maybe with distance < 3 == similar)

    Thanks for drudging up your previous post, I had figured you already explained it, but there are far too many pages. I appreciate it, thank you.

    I'm not sure if you share your code publicly anywhere, but I'd love to have a look, at least for this part of it. I'm just genuinely curious, it's an interesting problem to solve. It sounds like you're still making adjustments to it?

    i'd include ai to verify the messages....

  • @codelock said:
    😡😣😰😡🀑πŸ₯Έ

    @codelock said:
    Page 197 welcome

    i feel like he's a bot

  • @DeadlyChemist said:

    @codelock said:
    😡😣😰😡🀑πŸ₯Έ

    @codelock said:
    Page 197 welcome

    i feel like he's a bot

    Nope I am not

  • All emojis have some hidden meaning but none of you @FrankZ are trying to find it

  • @MrEd said:

    @Xrmaddness said:
    Anyway, I'm off to bed. I hope you all have a wonderful day or night, whichever it is currently wherever you are. > @MrEd said:

    @Xrmaddness said: At any rate, did I miss a post where you explained or even shared the exact code that you're using to determine the difference between a unique and non-unique post? I'd say that's quite important for anyone to determine for themselves if your tracking is even valid.

    >

    @MrEd said:

    @Arjun42 said:
    Thanks! Hopefully it's easier to deal with than Levenshtein Distance.

    I will though implement some other "similarity" measure, because currently it is 90% according to the length of the message... This doesn't fire on messages "Page 123" and "Page 124", because difference is 1 for these messages, they are clearly similar, but because message itself is short (8 characters), similarity is only 87.5%, and it doesn't fall into similar messages category. I guess I will have to add a check "if difference is less than 3" for example, then ignore the percentage :) This will definitely increase the number of similar comments, maybe we will have less 0% members :)

    I did explain it here. I hope it is clear enough how it works, but as mentioned in the comment, it has its flaws which I will try to get around (maybe with distance < 3 == similar)

    Thanks for drudging up your previous post, I had figured you already explained it, but there are far too many pages. I appreciate it, thank you.

    I'm not sure if you share your code publicly anywhere, but I'd love to have a look, at least for this part of it. I'm just genuinely curious, it's an interesting problem to solve. It sounds like you're still making adjustments to it?

    No, the code is on my private SVN (I know, its not GIT, I am old enough to use old technologies :D )

    But for this exact problem its easy:

    private LevenshteinDistance distance = new LevenshteinDistance();
    
    ...
    
    int dist = userComments.stream().map(uc -> distance.apply(uc.getBody(), commentBody)).min(Integer::compareTo).orElse(Integer.MAX_VALUE);
    double similarity = (commentBody.length() - dist) / (double) commentBody.length();
    if (similarity > 0.9d) {
      counter.setSimilar(counter.getSimilar() + 1);
    }
    

    I already mentioned, that I am using LevenshteinDistance from apache common-text library.

    im tempted to add AI to it, i have access to deepai their chatgpt model... need to check MY pricing but i think it''s affordable enough

  • I use a ====VPS RACKNERD==== gift party :)

  • @MrEd said:

    @Xrmaddness said:
    Anyway, I'm off to bed. I hope you all have a wonderful day or night, whichever it is currently wherever you are. > @MrEd said:

    @Xrmaddness said: At any rate, did I miss a post where you explained or even shared the exact code that you're using to determine the difference between a unique and non-unique post? I'd say that's quite important for anyone to determine for themselves if your tracking is even valid.

    >

    @MrEd said:

    @Arjun42 said:
    Thanks! Hopefully it's easier to deal with than Levenshtein Distance.

    I will though implement some other "similarity" measure, because currently it is 90% according to the length of the message... This doesn't fire on messages "Page 123" and "Page 124", because difference is 1 for these messages, they are clearly similar, but because message itself is short (8 characters), similarity is only 87.5%, and it doesn't fall into similar messages category. I guess I will have to add a check "if difference is less than 3" for example, then ignore the percentage :) This will definitely increase the number of similar comments, maybe we will have less 0% members :)

    I did explain it here. I hope it is clear enough how it works, but as mentioned in the comment, it has its flaws which I will try to get around (maybe with distance < 3 == similar)

    Thanks for drudging up your previous post, I had figured you already explained it, but there are far too many pages. I appreciate it, thank you.

    I'm not sure if you share your code publicly anywhere, but I'd love to have a look, at least for this part of it. I'm just genuinely curious, it's an interesting problem to solve. It sounds like you're still making adjustments to it?

    No, the code is on my private SVN (I know, its not GIT, I am old enough to use old technologies :D )

    But for this exact problem its easy:

    private LevenshteinDistance distance = new LevenshteinDistance();
    
    ...
    
    int dist = userComments.stream().map(uc -> distance.apply(uc.getBody(), commentBody)).min(Integer::compareTo).orElse(Integer.MAX_VALUE);
    double similarity = (commentBody.length() - dist) / (double) commentBody.length();
    if (similarity > 0.9d) {
      counter.setSimilar(counter.getSimilar() + 1);
    }
    

    I already mentioned, that I am using LevenshteinDistance from apache common-text library.

    How do you differentiate between images? A lot of images and gifs posted that might not always have same link

  • @codelock said:

    @DeadlyChemist said:

    @codelock said:
    😡😣😰😡🀑πŸ₯Έ

    @codelock said:
    Page 197 welcome

    i feel like he's a bot

    Nope I am not

    kay (not)

  • @markz said:
    I use a ====VPS RACKNERD==== gift party :)

    Welcome to the party

  • Discuss everything you want but even most useless comment pushes this thread to top so is helping them

  • @DeadlyChemist said:

    @MrEd said:

    @Xrmaddness said:
    Anyway, I'm off to bed. I hope you all have a wonderful day or night, whichever it is currently wherever you are. > @MrEd said:

    @Xrmaddness said: At any rate, did I miss a post where you explained or even shared the exact code that you're using to determine the difference between a unique and non-unique post? I'd say that's quite important for anyone to determine for themselves if your tracking is even valid.

    >

    @MrEd said:

    @Arjun42 said:
    Thanks! Hopefully it's easier to deal with than Levenshtein Distance.

    I will though implement some other "similarity" measure, because currently it is 90% according to the length of the message... This doesn't fire on messages "Page 123" and "Page 124", because difference is 1 for these messages, they are clearly similar, but because message itself is short (8 characters), similarity is only 87.5%, and it doesn't fall into similar messages category. I guess I will have to add a check "if difference is less than 3" for example, then ignore the percentage :) This will definitely increase the number of similar comments, maybe we will have less 0% members :)

    I did explain it here. I hope it is clear enough how it works, but as mentioned in the comment, it has its flaws which I will try to get around (maybe with distance < 3 == similar)

    Thanks for drudging up your previous post, I had figured you already explained it, but there are far too many pages. I appreciate it, thank you.

    I'm not sure if you share your code publicly anywhere, but I'd love to have a look, at least for this part of it. I'm just genuinely curious, it's an interesting problem to solve. It sounds like you're still making adjustments to it?

    No, the code is on my private SVN (I know, its not GIT, I am old enough to use old technologies :D )

    But for this exact problem its easy:

    private LevenshteinDistance distance = new LevenshteinDistance();
    
    ...
    
    int dist = userComments.stream().map(uc -> distance.apply(uc.getBody(), commentBody)).min(Integer::compareTo).orElse(Integer.MAX_VALUE);
    double similarity = (commentBody.length() - dist) / (double) commentBody.length();
    if (similarity > 0.9d) {
      counter.setSimilar(counter.getSimilar() + 1);
    }
    

    I already mentioned, that I am using LevenshteinDistance from apache common-text library.

    im tempted to add AI to it, i have access to deepai their chatgpt model... need to check MY pricing but i think it''s affordable enough

    nvm i can spam ai picutres but the chat is expensive for my account :(

  • 😘πŸ₯ΈπŸ€

  • @codelock said:

    @markz said:
    I use a ====VPS RACKNERD==== gift party :)

    Welcome to the party

    Tynk, waiting hour by hour, but haven't been lucky yet, hahaha

  • @codelock said:

    @MrEd said:

    @Xrmaddness said:
    Anyway, I'm off to bed. I hope you all have a wonderful day or night, whichever it is currently wherever you are. > @MrEd said:

    @Xrmaddness said: At any rate, did I miss a post where you explained or even shared the exact code that you're using to determine the difference between a unique and non-unique post? I'd say that's quite important for anyone to determine for themselves if your tracking is even valid.

    >

    @MrEd said:

    @Arjun42 said:
    Thanks! Hopefully it's easier to deal with than Levenshtein Distance.

    I will though implement some other "similarity" measure, because currently it is 90% according to the length of the message... This doesn't fire on messages "Page 123" and "Page 124", because difference is 1 for these messages, they are clearly similar, but because message itself is short (8 characters), similarity is only 87.5%, and it doesn't fall into similar messages category. I guess I will have to add a check "if difference is less than 3" for example, then ignore the percentage :) This will definitely increase the number of similar comments, maybe we will have less 0% members :)

    I did explain it here. I hope it is clear enough how it works, but as mentioned in the comment, it has its flaws which I will try to get around (maybe with distance < 3 == similar)

    Thanks for drudging up your previous post, I had figured you already explained it, but there are far too many pages. I appreciate it, thank you.

    I'm not sure if you share your code publicly anywhere, but I'd love to have a look, at least for this part of it. I'm just genuinely curious, it's an interesting problem to solve. It sounds like you're still making adjustments to it?

    No, the code is on my private SVN (I know, its not GIT, I am old enough to use old technologies :D )

    But for this exact problem its easy:

    private LevenshteinDistance distance = new LevenshteinDistance();
    
    ...
    
    int dist = userComments.stream().map(uc -> distance.apply(uc.getBody(), commentBody)).min(Integer::compareTo).orElse(Integer.MAX_VALUE);
    double similarity = (commentBody.length() - dist) / (double) commentBody.length();
    if (similarity > 0.9d) {
      counter.setSimilar(counter.getSimilar() + 1);
    }
    

    I already mentioned, that I am using LevenshteinDistance from apache common-text library.

    How do you differentiate between images? A lot of images and gifs posted that might not always have same link

    If the links is different, it is considered as different content, I don't parse the images themselves

    Thanked by 1Xrmaddness
  • @DeadlyChemist said:

    @DeadlyChemist said:

    @MrEd said:

    @Xrmaddness said:
    Anyway, I'm off to bed. I hope you all have a wonderful day or night, whichever it is currently wherever you are. > @MrEd said:

    @Xrmaddness said: At any rate, did I miss a post where you explained or even shared the exact code that you're using to determine the difference between a unique and non-unique post? I'd say that's quite important for anyone to determine for themselves if your tracking is even valid.

    >

    @MrEd said:

    @Arjun42 said:
    Thanks! Hopefully it's easier to deal with than Levenshtein Distance.

    I will though implement some other "similarity" measure, because currently it is 90% according to the length of the message... This doesn't fire on messages "Page 123" and "Page 124", because difference is 1 for these messages, they are clearly similar, but because message itself is short (8 characters), similarity is only 87.5%, and it doesn't fall into similar messages category. I guess I will have to add a check "if difference is less than 3" for example, then ignore the percentage :) This will definitely increase the number of similar comments, maybe we will have less 0% members :)

    I did explain it here. I hope it is clear enough how it works, but as mentioned in the comment, it has its flaws which I will try to get around (maybe with distance < 3 == similar)

    Thanks for drudging up your previous post, I had figured you already explained it, but there are far too many pages. I appreciate it, thank you.

    I'm not sure if you share your code publicly anywhere, but I'd love to have a look, at least for this part of it. I'm just genuinely curious, it's an interesting problem to solve. It sounds like you're still making adjustments to it?

    No, the code is on my private SVN (I know, its not GIT, I am old enough to use old technologies :D )

    But for this exact problem its easy:

    private LevenshteinDistance distance = new LevenshteinDistance();
    
    ...
    
    int dist = userComments.stream().map(uc -> distance.apply(uc.getBody(), commentBody)).min(Integer::compareTo).orElse(Integer.MAX_VALUE);
    double similarity = (commentBody.length() - dist) / (double) commentBody.length();
    if (similarity > 0.9d) {
      counter.setSimilar(counter.getSimilar() + 1);
    }
    

    I already mentioned, that I am using LevenshteinDistance from apache common-text library.

    im tempted to add AI to it, i have access to deepai their chatgpt model... need to check MY pricing but i think it''s affordable enough

    nvm i can spam ai picutres but the chat is expensive for my account :(

    I invite you to post them 24*7 without boting your account, for entire month hopefully you don't have other things in your life

    Thanked by 1FrankZ
  • @DeadlyChemist said:

    @MrEd said:

    @Xrmaddness said:
    Anyway, I'm off to bed. I hope you all have a wonderful day or night, whichever it is currently wherever you are. > @MrEd said:

    @Xrmaddness said: At any rate, did I miss a post where you explained or even shared the exact code that you're using to determine the difference between a unique and non-unique post? I'd say that's quite important for anyone to determine for themselves if your tracking is even valid.

    >

    @MrEd said:

    @Arjun42 said:
    Thanks! Hopefully it's easier to deal with than Levenshtein Distance.

    I will though implement some other "similarity" measure, because currently it is 90% according to the length of the message... This doesn't fire on messages "Page 123" and "Page 124", because difference is 1 for these messages, they are clearly similar, but because message itself is short (8 characters), similarity is only 87.5%, and it doesn't fall into similar messages category. I guess I will have to add a check "if difference is less than 3" for example, then ignore the percentage :) This will definitely increase the number of similar comments, maybe we will have less 0% members :)

    I did explain it here. I hope it is clear enough how it works, but as mentioned in the comment, it has its flaws which I will try to get around (maybe with distance < 3 == similar)

    Thanks for drudging up your previous post, I had figured you already explained it, but there are far too many pages. I appreciate it, thank you.

    I'm not sure if you share your code publicly anywhere, but I'd love to have a look, at least for this part of it. I'm just genuinely curious, it's an interesting problem to solve. It sounds like you're still making adjustments to it?

    No, the code is on my private SVN (I know, its not GIT, I am old enough to use old technologies :D )

    But for this exact problem its easy:

    private LevenshteinDistance distance = new LevenshteinDistance();
    
    ...
    
    int dist = userComments.stream().map(uc -> distance.apply(uc.getBody(), commentBody)).min(Integer::compareTo).orElse(Integer.MAX_VALUE);
    double similarity = (commentBody.length() - dist) / (double) commentBody.length();
    if (similarity > 0.9d) {
      counter.setSimilar(counter.getSimilar() + 1);
    }
    

    I already mentioned, that I am using LevenshteinDistance from apache common-text library.

    im tempted to add AI to it, i have access to deepai their chatgpt model... need to check MY pricing but i think it''s affordable enough

    It would be interesting to try to do something with AI, but that would be out of scope of "quick and dirty" changes :) Already half of my work day has passed and I didn't find a timeframe to make small changes I already intended :)

  • @markz said:

    @codelock said:

    @markz said:
    I use a ====VPS RACKNERD==== gift party :)

    Welcome to the party

    Tynk, waiting hour by hour, but haven't been lucky yet, hahaha

    @dustinc becomes active around 8 pm ist , there are also giveaways during 7 am ist but right now he is probably sleeping

  • Time mentioned is in ist aka Indian standard time don't know what time that is at other places

  • @codelock said:

    @DeadlyChemist said:

    @DeadlyChemist said:

    @MrEd said:

    @Xrmaddness said:
    Anyway, I'm off to bed. I hope you all have a wonderful day or night, whichever it is currently wherever you are. > @MrEd said:

    @Xrmaddness said: At any rate, did I miss a post where you explained or even shared the exact code that you're using to determine the difference between a unique and non-unique post? I'd say that's quite important for anyone to determine for themselves if your tracking is even valid.

    >

    @MrEd said:

    @Arjun42 said:
    Thanks! Hopefully it's easier to deal with than Levenshtein Distance.

    I will though implement some other "similarity" measure, because currently it is 90% according to the length of the message... This doesn't fire on messages "Page 123" and "Page 124", because difference is 1 for these messages, they are clearly similar, but because message itself is short (8 characters), similarity is only 87.5%, and it doesn't fall into similar messages category. I guess I will have to add a check "if difference is less than 3" for example, then ignore the percentage :) This will definitely increase the number of similar comments, maybe we will have less 0% members :)

    I did explain it here. I hope it is clear enough how it works, but as mentioned in the comment, it has its flaws which I will try to get around (maybe with distance < 3 == similar)

    Thanks for drudging up your previous post, I had figured you already explained it, but there are far too many pages. I appreciate it, thank you.

    I'm not sure if you share your code publicly anywhere, but I'd love to have a look, at least for this part of it. I'm just genuinely curious, it's an interesting problem to solve. It sounds like you're still making adjustments to it?

    No, the code is on my private SVN (I know, its not GIT, I am old enough to use old technologies :D )

    But for this exact problem its easy:

    private LevenshteinDistance distance = new LevenshteinDistance();
    
    ...
    
    int dist = userComments.stream().map(uc -> distance.apply(uc.getBody(), commentBody)).min(Integer::compareTo).orElse(Integer.MAX_VALUE);
    double similarity = (commentBody.length() - dist) / (double) commentBody.length();
    if (similarity > 0.9d) {
      counter.setSimilar(counter.getSimilar() + 1);
    }
    

    I already mentioned, that I am using LevenshteinDistance from apache common-text library.

    im tempted to add AI to it, i have access to deepai their chatgpt model... need to check MY pricing but i think it''s affordable enough

    nvm i can spam ai picutres but the chat is expensive for my account :(

    I invite you to post them 24*7 without boting your account, for entire month hopefully you don't have other things in your life

    check previous posts to understand it
    also, says a guy spamming emojis lol

  • 😹😹😹😹

  • @MrEd said:

    @DeadlyChemist said:

    @MrEd said:

    @Xrmaddness said:
    Anyway, I'm off to bed. I hope you all have a wonderful day or night, whichever it is currently wherever you are. > @MrEd said:

    @Xrmaddness said: At any rate, did I miss a post where you explained or even shared the exact code that you're using to determine the difference between a unique and non-unique post? I'd say that's quite important for anyone to determine for themselves if your tracking is even valid.

    >

    @MrEd said:

    @Arjun42 said:
    Thanks! Hopefully it's easier to deal with than Levenshtein Distance.

    I will though implement some other "similarity" measure, because currently it is 90% according to the length of the message... This doesn't fire on messages "Page 123" and "Page 124", because difference is 1 for these messages, they are clearly similar, but because message itself is short (8 characters), similarity is only 87.5%, and it doesn't fall into similar messages category. I guess I will have to add a check "if difference is less than 3" for example, then ignore the percentage :) This will definitely increase the number of similar comments, maybe we will have less 0% members :)

    I did explain it here. I hope it is clear enough how it works, but as mentioned in the comment, it has its flaws which I will try to get around (maybe with distance < 3 == similar)

    Thanks for drudging up your previous post, I had figured you already explained it, but there are far too many pages. I appreciate it, thank you.

    I'm not sure if you share your code publicly anywhere, but I'd love to have a look, at least for this part of it. I'm just genuinely curious, it's an interesting problem to solve. It sounds like you're still making adjustments to it?

    No, the code is on my private SVN (I know, its not GIT, I am old enough to use old technologies :D )

    But for this exact problem its easy:

    private LevenshteinDistance distance = new LevenshteinDistance();
    
    ...
    
    int dist = userComments.stream().map(uc -> distance.apply(uc.getBody(), commentBody)).min(Integer::compareTo).orElse(Integer.MAX_VALUE);
    double similarity = (commentBody.length() - dist) / (double) commentBody.length();
    if (similarity > 0.9d) {
      counter.setSimilar(counter.getSimilar() + 1);
    }
    

    I already mentioned, that I am using LevenshteinDistance from apache common-text library.

    im tempted to add AI to it, i have access to deepai their chatgpt model... need to check MY pricing but i think it''s affordable enough

    It would be interesting to try to do something with AI, but that would be out of scope of "quick and dirty" changes :) Already half of my work day has passed and I didn't find a timeframe to make small changes I already intended :)

    true true

  • Nobodywelcomed new page 198

  • 😰😰😰😣πŸ₯²

  • β™ΎοΈβ™ΎοΈβ™ΎοΈπŸ‡°πŸ‡Ώ

This discussion has been closed.