Show Search Options
Blacklisted
In response to blip #133858

dba_afish said:
EDIT: I will say that this function seems like it causes hella lag, in some situations though, so it might be best to use it sparingly, and not just on all svg like I did here.

this actually might just be some bits of svg in general causing the problem. zooming in on the icons on the homepage and scrolling around causes my FPS to drop far below 60. it seems like it's slightly worse with the drop shadows on, but it's still not great without. it might just be that the topology of those star and fire icons are crazy or something.

In response to blip #133857

SNPtheCat said:
Probably a bit too early to ask you for help again, but any idea on how to make a decent-ish stroke for svg icons? text-shadow doesn't work (obviously) and drop-shadow doesn't accommodate fractional pixels :(. And of course the magnifying glass icon for the search is a stroke itself, so that's not nice

are you sure drop-shadow dosn't support non-whole numbers? because with my testing it seems like it does:

svg, .nav-logo a.nav-logo-link { filter: drop-shadow(var(--color-section) -.66px -.66px 0) drop-shadow(var(--color-section) -.66px .66px 0) drop-shadow(var(--color-section) .66px -.66px 0) drop-shadow(var(--color-section) .66px .66px 0); }

EDIT: I will say that this function seems like it causes hella lag, in some situations though, so it might be best to use it sparingly, and not just on all svg like I did here.

In response to blip #133854

dba_afish said:
I don't think it would be, the only place that seems to actually contain the forum's index number is part of the reply box way at the bottom of the page. even if there were possible to display the text it'd be a pseudo element so you wouldn't be able to select the text to copy it or anything.

you can get the individual forum post IDs to display at the bottom of each one with:

.forum-post::before { content: "\a forum #" attr(data-forum-post-id); }

but agian, it's not super useful since you can't select the text.

Not particularly interested in selecting the text, so that's not much of a concern for me. Thanks for the help

Probably a bit too early to ask you for help again, but any idea on how to make a decent-ish stroke for svg icons? text-shadow doesn't work (obviously) and drop-shadow doesn't accommodate fractional pixels :(. And of course the magnifying glass icon for the search is a stroke itself, so that's not nice

In response to blip #133852

Daleport996 said:
Interesting how the official Sims 2 re-release by EA is missing the IKEA stuff pack. There's a quite popular but unofficial repack on the high seas that suspiciously shares this similarity.

It's also interesting how apparently the re-release runs well on Steam Deck, even though its entry on WineHQ rated it as "Garbage". Makes me think that the only thing stopping it from running on Linux this whole time was SecuROM.

Nothing would be surprising about that to me.
Nothing beats a classic buttfucking from DRM. I love Sony's Rootkit uwu
I love SuckUROM
mmmhh baby fill me up with denuvo.
Denuvo? More like denugofuckurself aaayyyy

Lol

In response to blip #133850

I don't think it would be, the only place that seems to actually contain the forum's index number is part of the reply box way at the bottom of the page. even if there were possible to display the text it'd be a pseudo element so you wouldn't be able to select the text to copy it or anything.

you can get the individual forum post IDs to display at the bottom of each one with:

.forum-post::before { content: "\a forum #" attr(data-forum-post-id); }

but agian, it's not super useful since you can't select the text.

Interesting how the official Sims 2 re-release by EA is missing the IKEA stuff pack. There's a quite popular but unofficial repack on the high seas that suspiciously shares this similarity.

It's also interesting how apparently the re-release runs well on Steam Deck, even though its entry on WineHQ rated it as "Garbage". Makes me think that the only thing stopping it from running on Linux this whole time was SecuROM.

In response to blip #133838

Critical_Stiban said:
I think if I were able to make one change to the website it would be one more toggle. Being able to move the profile stuff from the left to the right. At least on desktop. I'd like all my stuff in one spot basically and it would be where the account stuff was originally. All I ask now is that.
Surprisingly I wont bitch about mobile because finally. A decent fucking UI. Where was this all that time?

Try adding this to your custom css

/*modify the number for what you want*/
.nav-controls > a > span {position:relative; right:900px}

You meant right to left right?

In response to blip #133843

Cinder said:
How about I meet you in the middle.
I'll add a new profile button to the left of the "Artists" in the navbar that is hidden by default, and you can re-enable it using some custom CSS.

uhh... while you're at it, could you also add that same thing to the inside of the dropdown on mobile? it's not a big deal, I just I kinda liked having it in there rather than on the header.

In response to blip #133838

Critical_Stiban said:
I think if I were able to make one change to the website it would be one more toggle. Being able to move the profile stuff from the left to the right. At least on desktop. I'd like all my stuff in one spot basically and it would be where the account stuff was originally. All I ask now is that.
Surprisingly I wont bitch about mobile because finally. A decent fucking UI. Where was this all that time?

It's genuinely kinda difficult to do.
With the wiki excerpt and forum notifications, it's fairly straightforward: if it's disabled in the settings, then just don't display it.
With the profile button... well, a bunch of stuff has to get moved around.

How about I meet you in the middle.
I'll add a new profile button to the left of the "Artists" in the navbar that is hidden by default, and you can re-enable it using some custom CSS.

okay, since I'm the Sonic nerd, (even though I fairly rarely actually talk about Sonic on here) I want to talk about that new Sonic Racing game trailer that came out today

not like, extreme gear, or having Racing Transformed mechanics, or characters returning, or any of that mundane boring shit everyone in the comments is talking about...

they put Dinosaur Jungle from Secret Rings in this game and they show it off before literally anything else (other than like super basic kart racing stuff). like-- what? also, why? it's one of the worst levels from one of the worst recived games in the series...

...

is that fucking Pirate Storm at the end? why does this game refrence _two_ Secret Rings stages? and why'd they show off both in the trailer? like, half of the stages they showed off were Secret Rings, why? what is going on?

I think if I were able to make one change to the website it would be one more toggle. Being able to move the profile stuff from the left to the right. At least on desktop. I'd like all my stuff in one spot basically and it would be where the account stuff was originally. All I ask now is that.
Surprisingly I wont bitch about mobile because finally. A decent fucking UI. Where was this all that time?

OH THEY MADE THE FORUM DOT AND WIKI EXCERPTS TOGGLES! Thank you for listening to the feedback! I sorta forgive you guys!

In response to blip #133814

SNPtheCat said:
You've only added

/*make the buttons in the last two sections of site nav less big*/
.nav-tools, .nav-help { gap:.5rem; padding:.5rem }
}

right?

  • in general site tweaks:
    • /* make font-awesome icons not yellow */ has been changed to /* make icons match normal link/text colors */ and the elements it's applied to has expanded to include svg drawings
  • in mobile site fixes/tweaks:
    • the contents of /* make primary and secondary nav menu elements the same height */ has been changed to account for changes to the search box font size
      • I actually updated this again just now.
    • /* make header way shorter [...] */ now includes the new elements.

Super Bowl was decently insane. Even though those two words contradict each other.

From insane play, to unexpected boo’s at certain people… :p

If non-furries make "Jamie Hyneman is a walrus" jokes, does that mean furries get to make "walruses are Jamie Hyneman" jokes.