Pages:
Author

Topic: Announcing BPIP - The Bitcointalk Public Information Project! - page 4. (Read 33658 times)

newbie
Activity: 54
Merit: 0
What is Recognition?. How it is calculated?
legendary
Activity: 3696
Merit: 2219
💲🏎️💨🚓
legendary
Activity: 1789
Merit: 2535
Goonies never say die.
Those characters working through the search box is slightly different than what I was correcting in the prior fix(es). That one requires some security changes I'd need to discuss with Vod first to allow those searches through correctly. Smiley
legendary
Activity: 2212
Merit: 3148
₿uy / $ell ..oeleo ;(
Got the OK, so the URL & HTML encoding/decoding should be happening on all profile links now. Profile names with HTML symbols, spaces, or special characters would need to be encoded when they are requested from the profile page:
profile.aspx?p=

Great, than we can test it with those user names I have collected earlier, see below Smiley


BTW writing only bpip.org in a freshly cleaned browser still lead to an error. Sad
Just played a little but with BPIP today and I found that if you search for special characters it returns all the  usernames (I guess) stated with a special character. There is a list below.
Lets try searching for a ★ for example here is the result >


link to image


All the "?" in the resulst are leading to an error page >
https://bpip.org/profile.aspx?p=?

The first profile for example has the username >    £
https://bitcointalksearch.org/user/--25778
?
https://bitcointalksearch.org/user/--72604
×
https://bitcointalksearch.org/user/--366223
µ
https://bitcointalksearch.org/user/--381968

https://bitcointalksearch.org/user/--384875
½
https://bitcointalksearch.org/user/--424060
§
https://bitcointalksearch.org/user/--472845

https://bitcointalksearch.org/user/--477723
ð
https://bitcointalksearch.org/user/d-508072
¡  (this is not i but a up side down "!")
https://bitcointalksearch.org/user/--529210
ø
https://bitcointalksearch.org/user/o-548423
þ
https://bitcointalksearch.org/user/th-548425
?!bennscammed!?
https://bitcointalksearch.org/user/bennscammed-296939
óó.óó
https://bitcointalksearch.org/user/oooo-434371
ðºÞæ
https://bitcointalksearch.org/user/dthae-454255



Archived ones >

•BitSparts
https://bitcointalksearch.org/user/bitsparts-123520
ÑåWtiee Gå
https://bitcointalksearch.org/user/nawtiee-ga-141927
ñongos
https://bitcointalksearch.org/user/nongos-161234
ökmöälm
https://bitcointalksearch.org/user/okmoalm-155264
´ºÏÄÇﶬ
https://bitcointalksearch.org/user/iaci-155400
Éomer
https://bitcointalksearch.org/user/eomer-217110
??WhaT??
https://bitcointalksearch.org/user/what-223882
Ætereo
https://bitcointalksearch.org/user/aetereo-235245
Ástráður
https://bitcointalksearch.org/user/astradur-320234
ÇëÌîдÓû§Ãû
https://bitcointalksearch.org/user/ceiidoaau-317757



After trying with @ ! - ^ $ * ( ) _ are OK
# returns no result
% _ return the ! result

Edited: fixed some typos
legendary
Activity: 1789
Merit: 2535
Goonies never say die.
Got the OK, so the URL & HTML encoding/decoding should be happening on all profile links now. Profile names with HTML symbols, spaces, or special characters would need to be encoded when they are requested from the profile page:
profile.aspx?p=
legendary
Activity: 1789
Merit: 2535
Goonies never say die.
Cannot get an access to users profiles with spaces in nicknames.
Should be good now, appeared to be a typo in the code which was encoding instead of decoding the query string on the profile page.  Smiley

I found a bug with users who have "#" in their username. This URL https://bpip.org/profile.aspx?p=crypto_trader#43xzEXrP points to the wrong profile.
The # should be encoded:  https://bpip.org/profile.aspx?p=crypto_trader%2343xzEXrP

I'm not sure if you are pulling the URL from the search page but I don't believe the search page is encoding urls, I think the space converting to %20 on Veleor was just happening because the browser changes it automatically but that is fixed because the profile page is now decoding the string now.

I'm not sure if this was intended by Vod or not so I'll refrain from making any additional live changes but the search page does not appear to be encoding the url, as well as the reports lists.. so before I change too much I'll wait for Vod Tongue  should be an easy correction applying the urlencode assuming it wasn't done intentionally. (I believe suchmoon mentioned something about this early in the thread)
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
I found a bug with users who have "#" in their username. This URL https://bpip.org/profile.aspx?p=crypto_trader#43xzEXrP points to the wrong profile.

I use PBIP to find userIDs to go with usernames, so this caused my Trust list viewer to link to the wrong account: http://loyce.club/trust/2019-08-17_Sat_05.04h/151153.html
legendary
Activity: 1789
Merit: 2535
Goonies never say die.

The help is appreciated but as I've mentioned in my prior post, a new header is coming which already has a collapsable area which will hide/show the search area/theme settings/extension icon on the mobile view when hitting the + or - (visualization below), although I didn't use a sandwich menu because I liked it as a + or -.  Smiley  I'd recommend troubleshooting or pointing out any design bugs after the next update, I'm sure there will be some to find. Tongue


(did I mention a few new themes also? Wink )

As for the main body/margin issue, the -15px margin you are referring to is built-in to bootstrap's row class, and my understanding is that it is done this way because it is supposed to counteract with the "container" class and its margin settings.. this too has been corrected in the upcoming changes but was related to margin/padding changes I had put into my themes for the container-fluid class which was causing the issue, the correction was essentially:

Code:
.container-fluid {
    /* padding-left: 0; */
    /* padding-right: 0; */
    /* margin-right: 0; */
}
hero member
Activity: 1246
Merit: 588
Now I am certain that there is really a UI problem with the mobile.

Base on this picture you can see that the navigation is overlapping with the body so if you will try to use a wider phone you might see the problem.


picture share


I have tried finding the problem and it seems that it might be because of the negative margin. I did remove it and assign it back to default which is 0 and it seems that it really worked, however it might affect some of the div where the row class was used.
Code:
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -[s]15px[/s] 0;
    margin-left:-[s]15px[/s] 0;
}


picture share


I've never seen the weird cut-off logo that darklus123 is reporting but there is an entirely revised header coming soon with the next update which will reduce the footprint at the top for mobile and make the search/extension icons collapsable.

I can't picture out the revision that you were trying to say but I think that having a burger menu is the best option we can use for the mobile navigation and then sliding out the search button. It will also the "UX" issue of @Timelord

https://codepen.io/darklus123/pen/wvweBjd
legendary
Activity: 1789
Merit: 2535
Goonies never say die.
I've never seen the weird cut-off logo that darklus123 is reporting but there is an entirely revised header coming soon with the next update which will reduce the footprint at the top for mobile and make the search/extension icons collapsable.
legendary
Activity: 3696
Merit: 2219
💲🏎️💨🚓

Mobile is looking very weird as there some UI bugs that I've found from my emulators end. It is however working properly in the real device.

Edit: this is really weird it seems that I am the only one seeing the UI issue   Huh

No, I mentioned it a few pages back...
hero member
Activity: 1246
Merit: 588
I don't know if it is just only in my browser but I've seen some UI bugs that I think needs to be fix.

For the header the logo is not 100% on it's size. plus the theme style is not readable because of getting cut off.
Fixes
Code:

/*Desktop Header*/




@media (min-width: 768px){
a#logoparsing {
    height: 110px !important;
    width: 310px !important;
}
select#tmenu {
    height: 35px !important;
}
}



Header Desktop Issue



Mobile is looking very weird as there some UI bugs that I've found from my emulators end. It is however working properly in the real device.

Edit: this is really weird it seems that I am the only one seeing the UI issue   Huh
full member
Activity: 728
Merit: 169
What doesn't kill you, makes you stronger
Oh it's down! I can't access it at all right now.
Is it down for maintenance? Server upgrade maybe?

I'm sure with my latest activity and half-ass posts to just hit the minimum of posts for the signature payment, I must have fallen quite low in rankings, I just want to see how low I am!
I used to have such a good rate of merit receiving but I've gone busy IRL lately and maybe a little bored of the forums.

Aaand... Ok I'll bite and feed the troll!


this is why I question the OPs motive, is he trying to create rankings (highscores) to boost himself up? Reminds me of those losers that spend all day grinding video games to get virtual skills and items which mean nothing.

It's all about the sense of achievement sir.
Some people feel they have achieved something great when they have gathered large numbers on their bank account (or eWallet), even if sometimes they've acted immorally against others in order to achieve that...
Others feel a sense of achievement when they get a beautiful girlfriend.
Others when they win on a sport tournament.
Others when they have finally got that sweet rare loot on an MMORPG for which they worked hard with their guild and friends.
Others when they are recognized in a forum.

All those mean something to the ones who have worked for it, sure I don't agree that all of the above are great achievements but that's my personal opinion, I don't force it on the face of those who work hard towards those goals.
If you act with that attitude toward others in your real life too, then you'll have problems.
legendary
Activity: 3696
Merit: 2219
💲🏎️💨🚓
[Archive]

Imagine bragging about having the most virtual points on a forum , nice life.

this is why I question the OPs motive, is he trying to create rankings (highscores) to boost himself up? Reminds me of those losers that spend all day grinding video games to get virtual skills and items which mean nothing.

And yet here you are on a virtual forum (as opposed to going to club meetings in your local area face to face with real people) talking about a currency that is exists in a virtual state only.

Irony.
Vod
legendary
Activity: 3668
Merit: 3010
Licking my boob since 1970
this is why I question the OPs motive, is he trying to create rankings (highscores) to boost himself up? Reminds me of those losers that spend all day grinding video games to get virtual skills and items which mean nothing.

As compared to losers who put others down when his word means nothing?   :/

What have you done for the community, loser?
newbie
Activity: 39
Merit: 0
BPIP loads very slow all day long... Is it just for me?
I thought it was offline, but I just have to wait longer for it to load.

Look, I have the Largest Merit Circle now Cheesy That deserves a Personal Text change Cheesy

Imagine bragging about having the most virtual points on a forum , nice life.


this is why I question the OPs motive, is he trying to create rankings (highscores) to boost himself up? Reminds me of those losers that spend all day grinding video games to get virtual skills and items which mean nothing.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
BPIP loads very slow all day long... Is it just for me?
I thought it was offline, but I just have to wait longer for it to load.

Look, I have the Largest Merit Circle now Cheesy That deserves a Personal Text change Cheesy
legendary
Activity: 3500
Merit: 6320
Crypto Swap Exchange
BPIP loads very slow all day long... Is it just for me?
Slow for me too, I actually thought it was my laptop so I didn't say anything.
Slow at home on cable. Slow at work on our fiber run.

-Dave
legendary
Activity: 3080
Merit: 1338
Slava Ukraini!
BPIP loads very slow all day long... Is it just for me?
Pages:
Jump to: