Pages:
Author

Topic: [BETA] BPIP Extension - user info add-on / extension for Firefox, Chrome, et al - page 8. (Read 8458 times)

legendary
Activity: 3570
Merit: 1959
I'm noticing ACTIVE/INACTIVE/BANNED status is not working for me in Chrome but can't figure out why... Huh

It should be working. Do you have the "banned/inactive/archived" option enabled in the settings?

If it still doesn't work give me an example of a user profile that is not showing correctly.

I do. I tried enabling and disabling, and clearing all data but I've not restarted chrome yet...

it's not showing for any profiles, but I can see the element on inspection, like your profile says:

Code:


I have to run out for a few hours, but when I get back I'll give it a restart (too many windows open I need atm / bad timing!)

Thanks for the fast reply/help! Wink

legendary
Activity: 3654
Merit: 8909
https://bpip.org
I'm noticing ACTIVE/INACTIVE/BANNED status is not working for me in Chrome but can't figure out why... Huh

It should be working. Do you have the "banned/inactive/archived" option enabled in the settings?

If it still doesn't work give me an example of a user profile that is not showing correctly.
legendary
Activity: 3570
Merit: 1959
Hi, is this still in development/active?

I'm noticing ACTIVE/INACTIVE/BANNED status is not working for me in Chrome but can't figure out why... Huh

Anyone?

thank you! Smiley
legendary
Activity: 1456
Merit: 5874
light_warrior ... 🕯️
Not that it bothers me much, but maybe the BPIP Extension developers should consider adding a new feature? In the context of hiding topics by keywords. Although, maybe I'm wrong and the guys have more important tasks ... for example, the implementation of the previous proposal. Cool

I'm not aware of any feature on Bitcointalk that allows you to filter out topics by title name. As for the userscript, enjoy (may contain bugs, use at your own risk, license: MIT license):

Code:
// ==UserScript==
// @name         Bitcointalk Board De-Musk-ifier
// @namespace    mprep
// @version      0.2
// @description  Attempts to filter out topics related to Elon Musk (or any other terms in the blacklist)
// @author       mprep
// @match        https://bitcointalk.org/index.php?board=*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    ////////////////////////////////////////////// Blacklisted terms  //////////////////////////////////////////////////////
    //                   (add or remove terms to update blacklist; save the userscript after doing so)                    //
    //                            (must be lowercased, only letters, numbers and underscore)                              //

    let blacklist = ["elon", "musk", "tesla"];

    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////


    let allTopics = document.querySelectorAll("[id^='topic_'] [id^='msg_'] a");
    for (let i = 0; i < allTopics.length; i++)
    {
        let topicTitleWords = allTopics[i].innerText.replace(/[^\w\s]/gi, '').toLowerCase().split(' ');
        for (let u = 0; u < blacklist.length; u++)
        {
            if (topicTitleWords.includes(blacklist[u]))
            {
                allTopics[i].closest("tr").remove();
                break;
            }
        }
    }
})();
legendary
Activity: 3542
Merit: 3625
Crypto Swap Exchange
How about adding a "Refresh Profile"-button (just like the button on BPIP.org) to the extension?

How about adding a "bump power" info? if it is possible to present as value.
this could show the strength of the account.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
How about adding a "Refresh Profile"-button (just like the button on BPIP.org) to the extension?
legendary
Activity: 3668
Merit: 6382
Looking for campaign manager? Contact icopress!
We can't update 3 million users instantly so the priority is for users who conducted some sort of activity

OK, so it's just an optimization of resources and the status update can be sometimes delayed. I can live with that  Wink
All good then; I feared it's something worse, glad it wasn't.
legendary
Activity: 3654
Merit: 8909
https://bpip.org
I guess that this is a bug:

Kind of. This user had not posted anything since 2018 until today. We can't update 3 million users instantly so the priority is for users who conducted some sort of activity, e.g. made new posts or sent merits, which we can detect by fetching patrol pages and recent merit list. Inactive users have the lowest priority and we can't detect when the last activity timestamp has changed on the profile page, but once they make a post it will clear the inactive status, which I think has already happened for this particular user.
legendary
Activity: 1456
Merit: 5874
light_warrior ... 🕯️
I guess that this is a bug:
I think this is really a bug ... in the sense that first of all I thought that the incorrect display could be due to the fact that the user actually appeared on the network, but BPIP did not have time to update the status of this user. But I checked the data for this account in seclog and found nothing, (although I don't know how often the update happens).
legendary
Activity: 3668
Merit: 6382
Looking for campaign manager? Contact icopress!
I guess that this is a bug:



It's the same on user profile too.
legendary
Activity: 3654
Merit: 8909
https://bpip.org
The API issue has been fixed. Thanks for reporting and sorry for the lengthy downtime.
legendary
Activity: 3542
Merit: 3625
Crypto Swap Exchange
I noticed a bug in the BPIP extension today. Earned Merits and BPIP rank are blank, just like in the image below. All profiles in all posts in my computer are like that

I'm aware and trying to fix... looks like some unrelated updates broke the API because I failed to merge the code many months ago.

DT1 and DT2 badges are also not displayed. I believe it is for the same reason
legendary
Activity: 3654
Merit: 8909
https://bpip.org
I noticed a bug in the BPIP extension today. Earned Merits and BPIP rank are blank, just like in the image below. All profiles in all posts in my computer are like that

I'm aware and trying to fix... looks like some unrelated updates broke the API because I failed to merge the code many months ago.
legendary
Activity: 2352
Merit: 6089
bitcoindata.science
I noticed a bug in the BPIP extension today. Earned Merits and BPIP rank are blank, just like in the image below. All profiles in all posts in my computer are like that



I don't know if it is a temporary bug due to some database update... but the bpip website is working fine here.

I am using Microsoft Edge 89, BPIP version 2.2.5. I am using uBlock and Privacy Badger extensions.
legendary
Activity: 1456
Merit: 5874
light_warrior ... 🕯️
sm & ib, I would like to add one more suggestion for improving the BPIP extension ... I recently came across a thread called "Enhanced merit UI", and since I'm not a fan of installing multiple extensions for the same site, I'd rather see this feature in an extension I'm already used to.

This is a very simple userscript that allows you to add merit without leaving the page. Click on the "+Merit" link to open/close the popup.



Hopefully duplicating one of the sentences won't be too intrusive (it seemed to me that this proposal went unnoticed).

Quoting feedback looks great, I've used this feature several times already. It would be great if the default bbcode was copied using [2xhr] (as shown in the second example).
Vod
legendary
Activity: 3668
Merit: 3010
Licking my boob since 1970
Not sure, if it is a bug. I use the following date format: DD.MM.YYYY, HH:MM:SS

Human bug.   Wink  How can a system tell if you mean Feb 3 or Mar 2?  Why not use the international standard?   YY-MM-DD HH:MM:SS
legendary
Activity: 3696
Merit: 2219
💲🏎️💨🚓
Hi again,

just a quick heads up to let you know that I've been able to install BPIP in Tor Ver 10.0.11 - the previous few versions of Tor wouldn't permit the instillation.  I've been trying it out with just about every featured toggled to on and the information seems to load fairly quickly.
legendary
Activity: 3654
Merit: 8909
https://bpip.org
Oh okay. I guess you programmed to extension in Javascript. Isn't there a lib or something that converts any kind of date format into a timestamp? From time to time I code in Python and there is such a lib you can use.

I'm sure there is one but using 3rd party libraries in extensions is frowned upon and I think it would still have a problem automatically figuring out if 2.3.2021 is February 3rd or March 2nd.
tyz
legendary
Activity: 3360
Merit: 1533
But dealing with custom ones is a bit tricky so I'm not even trying.

Oh okay. I guess you programmed the extension in Javascript. Isn't there a lib or something that converts any kind of date format into a timestamp? From time to time I code in Python and there is such a lib you can use.
legendary
Activity: 3654
Merit: 8909
https://bpip.org
Not sure, if it is a bug.

Kind of. I have implemented all predefined date formats:

Loading...

But dealing with custom ones is a bit tricky so I'm not even trying. For example I can't automatically determine if it's d.m.y or m.d.y. I'll try to think of something. Maybe I should at least attempt it if there is a 4 digit year and one of the other numbers is >12. There is also some inference possible from the fact that ratings are sorted by date.
Pages:
Jump to: