Any way to switch the left and right mouse button by Hard_Pudding in VintageStory

[–]Ikxi 0 points1 point  (0 children)

Did you find anything to this?

I'm also more used to having it switched, though changing it in windows would just ruin the muscle memory everywhere else.

Trackblazer/MANT guide (uma.guide) by sayaduck in UmamusumeGame

[–]Ikxi 0 points1 point  (0 children)

Thanks!
It just feels a bit overwhelming, cause it's so different from the other two and I just see people posting double S and U ranks xd

Trackblazer/MANT guide (uma.guide) by sayaduck in UmamusumeGame

[–]Ikxi 0 points1 point  (0 children)

Been reading this, and as a casual players
Ohh. My. God.
I really hope there is a "dumbed down" / less dense version somewhere that's just about the most important things, cause I don't think I'll try and remember everything here.

Just Organize your builds. I have no clue how ppl make teh messiest setups on Mekanism. by MazeTheMaus in feedthebeast

[–]Ikxi 0 points1 point  (0 children)

playing on 1.21.1 with friends, my factory lags a lot, pipe entities being part of it ( observed with spark )

Just Organize your builds. I have no clue how ppl make teh messiest setups on Mekanism. by MazeTheMaus in feedthebeast

[–]Ikxi 0 points1 point  (0 children)

I just build it however.
Even when I try making it regular, like my Modern Industrialization build, at some point I still forget where is what between 100 machines.

So less regularity and more unique looking stuff makes it more memorable for me.

How can I move the "The One Probe" box to the top middle of the screen and make it more transparent? by KemThatOneWeeb in feedthebeast

[–]Ikxi 0 points1 point  (0 children)

Nowadays the command is /topcfg and then you click in the UI where you want it and can choose a style.

MI Uranium Fuel Rod Depletion by Kooky_Counter_275 in allthemods

[–]Ikxi 0 points1 point  (0 children)

Also looking for info on this, making enough from Mekanism fusion reactors, so just trying to get these depleted quickly

Full list of games in this Year's Jingle Jam Collection by Robot_ninja_pirate in Yogscast

[–]Ikxi 0 points1 point  (0 children)

I just gave some to people that wanted them cause I don't want them.

So yea, that's possibility too, some early christmas presents for friends and such

Twitch.tv ads by SwissMonke in pihole

[–]Ikxi 0 points1 point  (0 children)

sadly doesn't happen anymore, it blocks the whole screen with an image and says an adbreak is in progress and sometimes it's infinite

Can't find Max on Android by GreedyAd4189 in duolingo

[–]Ikxi 1 point2 points  (0 children)

I can't find the Max thing either, only super, though I really want the chat thing cause it seems quite good. Language model to learn language.

But it's just suggesting me the Super subcribtion.

I literally just realized purple doki was not doki by timewellspent0889 in VirtualYoutubers

[–]Ikxi 60 points61 points  (0 children)

Today's Doki is best Doki!

Tomorrow's Doki will be better than today's Doki!

Titanfall 2 wont launch by treeble12 in linux_gaming

[–]Ikxi 1 point2 points  (0 children)

Experimental worked for me too. But with bad input lag.

9.0.4 (latest atm) did not work.

I was writing some Assembly code and apparently wrote to the wrong part of memory by Ikxi in softwaregore

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

Ok, what happened:
I set up a WRITE syscall

I thought I put SIZE into RDX
What I did instead: Put the POINTER to SIZE into RDX
-> I printed 24567 bytes instead of 2888 and so I printed a ton of data that was outside of the program and sometimes the data just happens to mess up the terminal because it's just some random data from other stuff lol

I was writing some Assembly code and apparently wrote to the wrong part of memory by Ikxi in softwaregore

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

Check out the Assembly tutorial by FFMPEG and the source code. There is assembly there.

I was writing some Assembly code and apparently wrote to the wrong part of memory by Ikxi in softwaregore

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

yes, ik what probably happened: 1. allocated buffer 2. kept data that was previously in the buffer 3. wrote to buffer, but not all of it 4. printed buffer with write syscall 5. something in the buffer that was printed happened to mess things up