
u/Solomoncjy

How to block parfrent/grandparent dlement?
site: https://pastpapers.co/caie
i know i can target the `ins` elemt using a css selector, but that does noting. insted i want to be able to target the div that is 2 layers above. how can i make a filter to do that? i am using UBO
User who reposted a post not showing up in reposters list?
So i was doing a giveaway where one of the criteria was to like and repost a tweet, but when i was verifying them i could not find their acc in the repost list but they keep insisting they reposed and even sent me a screen shot proving it. Should i assume they are lying or is this a bug/shadowban?
This is disgusting from the discord.
I was banned from the discord for telling another player who has e0 welt and e4 bronya to "not select welt with your selector, save it incase bronya novaflares one day, her e4 could be as good as welts" and turns out that was leaking and I was banned.
funny thing is they ignored my appeal for 4 days (the limit was 3) then didnt read my appeal, admitted to not reading my appeal and then banned me. Now I'm not even allowed to appeal my ban and its completely permanent. This is the scummiest practice I've ever seen.
welp guys if you ever say "saving for elio" "saving for screwlum" "saving for limited welt" you'll also be banned for "leaking" despite all this being in the name of fun. Btw i didnt state when she'd get a novaflare or what it would do. I simply stated "dont waste your selector she might get one some day" btw speculation based on confirmed content (confirmed content being that other standard characters have novaflared proving it could happen to others) is allowed. Its stated in the servers rules and yet the admin lied to me and said only facts are allowed, I sent a screenshot of the rules and they banned me. So what do I do...
fighting over merch be like:
This gotta be the fakest thing released by the devs
Real players run conduit manifolds
EDIT: There was a new sub pac this update. Dint yall make a temp liquid zir factory?!
Play store abbout to let 3rd party stores into google play. Fdroid and aptoide might be directly instabble now without having to do the sideload dance with google
youtube.comHow would you clean up this section?
excrpt from https://youtu.be/4tEahtV5nls?t=270
wanted to ask if there was a tidier way to note alternating "loudness"
Colombina plays a rock cover of the Nod-Krai Main Theme (by MaruPiano)
neverness to everness failes to start in linux
Fedora 44
steam version of game
Proton GE 11.1
protondb reports "platinum" b ut games still keeps on crashing for me
log file: https://files.catbox.moe/96rrf4.7z ( extract it. the log file is 50 MB)
Why does everyone use an unordered set/hashmap for "jewels-and-stones" problem
google jewels-and-stones on the leet site. sorry cant give a link as reddit for reason wont allow me to post this as "I'm beaking rule 1"
Tldr: given 2 character lists, find all character in List 2 that are in List 1
All the "solutions" for this question seem to be only using sets but,
We can observe that the list is only limited to ASCII character, thus only having 256 possible character
Thus we initialize a fixed size array of 256 elements and just set the elements whose index matches to the filter characters to true
then we walk the list we and to check and just ask , "is the character true in our array?"
example implmentation
#include <string>
#include <array>
int numJewelsInStones(std::string jewels, std::string stones) {
std::array<char, 256> jewels_set = {};
for (const char &i : jewels) {
jewels_set[(unsigned char)i] = true;
}
int count = 0;
for (const char &i : stones) {
if (jewels_set[(unsigned char)i]) {
count++;
}
}
return count;
}
i dont get it. unordered set/hasmap has the overhead of hashing the elements, and the hash is usually less space efficient that just creating a 256 array holding all possible representations of the filter