squashkin
@squashkin@wolfballs.com
- Comment on Notredame, Georgia Guide Stones, Hoover Dam... and now London Bridge... interesting:
what is at all these places, like weird statues? or how do they get on the list?
- Comment on Cheney lost 30 to 66 even w Dems voting for her, then compared herself to Lincoln, lol:
22% of voters who registered as republicans (long term) are RINOs ? Doesn’t make sense
idk about your experience with "conservatives" but that to me seems like a low number, they are pretty liberal / leftist and don't seem to conserve much
my experience with neocons pushed me left for a bit. I was actually surprised numbers are so high against cheney tbh
they mostly seem like neocon rinos to me, I didn't even know we had so many MAGA trump supporters
maybe "we" are the mainstream of the party now and that's the minority that I'm used to identifying "conservatives" with that is fading away
- Submitted 2 hours ago to freeforum@wolfballs.com | 0 comments
- Comment on Cheney lost 30 to 66 even w Dems voting for her, then compared herself to Lincoln, lol:
that 22% is the old swamp of rinos / old guard I reckon
- Comment on Cheney lost 30 to 66 even w Dems voting for her, then compared herself to Lincoln, lol:
delicious
- Comment on Somehow the names are the opposite:
that's what's always done it's just a narketing name to sound attractive
btw was wonderjng if that sunshine act ever passed that ends daylight saving time
- Comment on ~13k Democrats changed sides to vote for Liz.... lolololol:
oof today's a good day
congrats fam
- Comment on Facebook started airing *LOT* of RedPill conservative ads on my burner. This is 6th I've seen *TODAY*. WTF ?:
> uss liberty
- Submitted 17 hours ago to freeforum@wolfballs.com | 1 comment
- Comment on I was right, the bots are AI generated to sound authentic. I hope Elon fucks Twitter in the ass for this:
sounds like they're in trouble for sure
- Comment on Liz Cheney: Trump arch-enemy ousted in Wyoming election:
based
posting in an epic thread
- Comment on Joe Biden has large growth forming on his neck, (tumor, cancer?):
I'll have to say a prayer he recovers
and he corrects some of his errors
- Comment on We have to federate with someone other than fucking Wolfballs if we expect this instance to be taken seriously:
lol wut don't you like about posts over there? It's just conservative leaning, a lot of us like freedom (or like anarcho-capitalism, dunno if any ancaps are here)
also wolfballs instances list or exploding-heads.com might have some instances to federate with
- Comment on Xi is pleased:
"just a coincidence..."
- Submitted 1 day ago to freeforum@wolfballs.com | 0 comments
- Comment on McCarthy says Cheney’s potential primary defeat a ‘referendum’ on Jan. 6 panel:
sayonara soon
- Comment on Don't eat bugs. Chitin is insect exoskeleton. Research points to cancer, inflammation etc from Chitin ingestion...:
I can't imagine this is true of bugs in general
there are some studies linking red meat to cancer too
I think eating bugs is probably ok, and I'm fine with it. I would be willing to eat some if it was cheap enough. will still eat meat too
- Comment on TikTok owner is questioned on large number of employees who once worked for Chinese state media:
honestly the best way to deal with tiktok is we need a better competitor
the format is useful and there are so many users
- Submitted 2 days ago to technews@wolfballs.com | 2 comments
- Submitted 2 days ago to freeforum@wolfballs.com | 2 comments
- Comment on Guys I found how to avoid civil war ! Start dumping Vitamin T into the drinking water !:
get them to consoom lifting weights and eating meat
- Comment on Bye bye commie bitch:
I'm very sad about Notre Dame ("Catholic") University, it's filled with cringe
there was a bit of a leftist takeover of "catholic" academia in the late 60s I think that declared the notre dame university had "academic freedom" to teach whatever, regardless if it contradicted Christian morals: https://www.americamagazine.org/faith/2017/07/11/document-changed-catholic-education-forever
- Comment on Elizabeth Warren claimed people tell her they’d vote for her if she ‘had a penis,’ reporter says:
that's different from us saying women shouldn't be political leaders
- Comment on Anyone Have "Cocoon Mode" Tips?:
monk mode might be the same and more common phrase
- Submitted 4 days ago to freeforum@wolfballs.com | 3 comments
- Comment on Given a matrix of 1s and 0s, return the number of "islands" in the matrix. A 1 represents land and 0 represents water, so an island is a group of 1s that are neighboring whose perimeter is surrounded:
another "real world" way to solve it, I would literally look it up in a search engine.
this post came up with possible solutions: https://www.careercup.com/question?id=5708658983829504
I would then tinker with what other people posted. Or would post to a community like "coding problems" on wolfballs or see if there are posts on reddit
that's pretty meta but I wanted to mention it because I feel like coding problems sometimes are abstract and kind of pointless
what's useful is when new unsolved problems come up in the wild
- Comment on As a former Indian, I can answer your questions. Yes and Yes. Yes Indians are that petty, and Yes courts there suck:
my man ain't getting "gypped" of those rupees
- Comment on Between this and burning coal to run electric cars... the Green brain works in mysterious ways:
that's kind of ok if they just use the tress for some kind of product
they are also pushing planting a trillion trees: https://www.1t.org/
- Comment on Between this and burning coal to run electric cars... the Green brain works in mysterious ways:
I saw a a buzzword on someone's car the other day "partial zero emissions vehicle" (PZEV): https://www.treehugger.com/pzev-partial-zero-emissions-vehicle-85335
I was tihnking, so it just is a "less emissions vehicle" right?
maybe there's a reason they call it that it just sounded like something I thought you guys would roll your eyes at
- Comment on Given a matrix of 1s and 0s, return the number of "islands" in the matrix. A 1 represents land and 0 represents water, so an island is a group of 1s that are neighboring whose perimeter is surrounded:
I feel like this is like playing minesweeper
I don't know the answer, I imagine some math knowledge around matrices might help so if I was really trying to figure this out I would try to look some of that up: https://infogalactic.com/info/Matrix_(mathematics)
otherwise my ugly brute force pseudocode concept is something like analyzing row by row, if 0 ignore, else if 1, see if there is a 1 in the 8 directions around it (diagonals and side to side), if no then +1 on counter, loop, print count. the problem in my pseudocode is how to not double count islands. Another overcomplicated ugly way might be to map them by coordinates and then delete any duplicates. That actually would close the gap but I imagine there is a much better solution to the problem.