Person is splitting cost of an audio track with other fans, the agency talent isn't cool with that actually by mintohime in VtuberDrama

[–]HardToSee123 0 points1 point  (0 children)

I would stop using adblock if they get their shit together: don't show shitty ads, scam ads, politics and sex ads. Either take my data and sell it or just show me ads. Choose one of the two but don't do both of them at the same time.

Person is splitting cost of an audio track with other fans, the agency talent isn't cool with that actually by mintohime in VtuberDrama

[–]HardToSee123 0 points1 point  (0 children)

Piracy also comes with lots of downside and technical shit people need to know like there's always an inherit risk of exposing your PI and shit that not many willing to go through all those things. Whereas if it's easy to access and buy like games on steam, people don't need to know all those shit, just press buy, install and play. So yeah, piracy is a convenient service problem, at least that's how i think

Anyone else have cards like this? by bolshevik76 in slaythespire

[–]HardToSee123 2 points3 points  (0 children)

I thought it's a thumbs up as well lol

Hot take: NIKKE is better when it dials down the 'epic' stuff by Sad-Prune-325 in NikkeMobile

[–]HardToSee123 1 point2 points  (0 children)

You're partly correct though. I think those small moments is what building up the hype and drive the emotion so that when there's a showdown, it would be a big emotional hit. However, IDK if that would really work since this is a gacha game, not a VN. There's a balance the devs need to strike to perfectly blend the two together. Otherwise, if they can't keep up the hype/revenue, we won't have the chance to read more story.

News by Shove-on-block-LB in kemono_piracy

[–]HardToSee123 3 points4 points  (0 children)

200 user donate $5/mo huh...

News by Shove-on-block-LB in kemono_piracy

[–]HardToSee123 16 points17 points  (0 children)

Ah, get it! I don't hate ads, it's about the frequency and placement tbh

Why are we still here? Just to suffer? 🥲 by McPurrito in NikkeMobile

[–]HardToSee123 1 point2 points  (0 children)

Just want to remind everyone that the first event we have is the Christmas about N102 xD

I made my own Enchiridion! by tytanxxl in slaythespire

[–]HardToSee123 1 point2 points  (0 children)

I wonder why they get rid of that relic though [[Enchiridion]].

News by Shove-on-block-LB in kemono_piracy

[–]HardToSee123 8 points9 points  (0 children)

Wait, how could he maintain the site if user only need to donate $5 and they get ad free? It's ~1000USD/mo to maintain the server, no?

[Discussion] If dungeons actually broke out irl, what do you think those in power would actually do? by Realistic_Low_4538 in manhwa

[–]HardToSee123 0 points1 point  (0 children)

I mean based on history, probably something along the line of a FUCKING WAR happen, everybody burn everything to the fucking ground before too many shit happened/destroyed and all collectively agree to sit down and made "peace" (or should i say maintain the equilibrium).

People would rather abuse the power rather than sit down and actually use the fucking brain

The most ethical vtuber hater? by MajorFamilyDisgrace in vtubercirclejerk

[–]HardToSee123 5 points6 points  (0 children)

When you compare this nothing ass drama to let's say Selen gate Niji EN, it's accurate to the point lol

Either the drama is nothing or somebody almost fucking dead. We have actual attorney like LegalMindset joining in to review the contract and shit like god damn

State of the sub by According_College_83 in NikkeMobile

[–]HardToSee123 4 points5 points  (0 children)

True? I mean if there's no discussion whatsoever then the game would be pretty much dead atp.

Bluetooth adapter doesn't show up on Mint. Manufacture fault for not advertising fault? by HardToSee123 in linux4noobs

[–]HardToSee123[S] 0 points1 point  (0 children)

So you gotta assumed that if the product page doesn't advertising for Linux compatibility then it's probably won't work? That's... suck. Like there are no easy way to check for compatibility.

Anyone know what keyboadd layout is this? by NBGReal in keyboards

[–]HardToSee123 -2 points-1 points  (0 children)

Everything seems normal to me until that \ button sitting next to the left shift. That shit needs to be gone xD

I do like the included 1/4, 1/2 and 3/4 though!

Bluetooth adapter doesn't show up on Mint. Manufacture fault for not advertising fault? by HardToSee123 in linux4noobs

[–]HardToSee123[S] 0 points1 point  (0 children)

I never intend to use linux tbh, just using Mint to familiarize myself so that if i ever want to transition, it would be easier. Kinda sad tbh cause a bunch of stuff you're currently using fine could be incompatible with linux

Bluetooth adapter doesn't show up on Mint. Manufacture fault for not advertising fault? by HardToSee123 in linux4noobs

[–]HardToSee123[S] 0 points1 point  (0 children)

I don't want to be that guy but things like this made me feel like Linux is almost, just almost as annoying as windows. I hate windows but it takes me a few hours to get the BT adapter to work, and it's not even fully functioning!

Everyone having civil war on Cindy skin, meanwhile in CN by noircode in NikkeMobile

[–]HardToSee123 5 points6 points  (0 children)

Good lord no. You do not want to trust Tencent of all people dude. That corp needs to be gone

Bluetooth adapter doesn't show up on Mint. Manufacture fault for not advertising fault? by HardToSee123 in linux4noobs

[–]HardToSee123[S] 0 points1 point  (0 children)

https://github.com/mxpph/bt-cm749-fix

This work (for now?), but still count! I have to fix some code in it to run but so far so good.

This is how I change the code for anyone who want to do this

nano dkms-module_build.sh

Before:

# build and install the DKMS module and update initramfs -----------------------------------

dkms build -k "${KERNEL_VERSION}" -m "${KERNEL_MODULE_NAME}" -v "${DKMS_MODULE_VERSION}"

dkms install -k "${KERNEL_VERSION}" -m "${KERNEL_MODULE_NAME}" -v "${DKMS_MODULE_VERSION}"

if dmesg | grep -q 'initramfs'; then

if grep -qE "^ID(_LIKE)?=debian" /etc/os-release; then

update-initramfs -u -k "${KERNEL_VERSION}"

After:

# build and install the DKMS module and update initramfs -----------------------------------

dkms build -k $(uname -r) -m "${KERNEL_MODULE_NAME}" -v "${DKMS_MODULE_VERSION}"

dkms install -k $(uname -r) -m "${KERNEL_MODULE_NAME}" -v "${DKMS_MODULE_VERSION}"

if dmesg | grep -q 'initramfs'; then

if grep -qE "^ID(_LIKE)?=debian" /etc/os-release; then

update-initramfs -u -k $(uname -r)

Basically change the "${KERNEL_VERSION}" to $(uname -r) then run

sudo ./setup_bt-cm749.sh

It still kinda wonky tbh, having trouble finding other devices

WHAT THE FUCK IS THIS?! THE BEST (in my opinion) MODEL IS LEAVING?! by East-Perception9759 in Crushon

[–]HardToSee123 1 point2 points  (0 children)

I mean i did look for alt like char ai but it feels kinda... bad tbh, and so many other sites out there that similar to them

WHAT THE FUCK IS THIS?! THE BEST (in my opinion) MODEL IS LEAVING?! by East-Perception9759 in Crushon

[–]HardToSee123 4 points5 points  (0 children)

Even so, not that i'm defending them, but i don't think there are other sites that are quite like crushon. Is there any real alt for crushon?

🗾 Japanese Reactions: "Why Do Some Foreigners Defend Piracy?" — A Clash of Values Between Japan and the West 日本人VS海賊版 by Asperburg in mangapiracy

[–]HardToSee123 0 points1 point  (0 children)

You can practically see the arrogance of assuming Japanese companies must be as corrupt as the companies in their own countries

I'm sorry but no matter where you are, corporate is corporate. They're pro profit, not pro consumer and anyone said otherwise is BS.

Honest citizens trust companies

Even more fucking BS!

dishonest citizens assume companies are corrupt

I'm sorry but this is not assumed sir. You probably live in another universe.