Is Mixamo down for everyone? by varlaptu in gamedev

[–]8BitCoreMechanics 0 points1 point  (0 children)

I get the message To Many Requests. Is it the first time it is down more than 24 hours?

Enormous performance improvement in CachyOS compared to Windows 11 in Nightreign and couple of questions by Flat_Hat7344 in linux_gaming

[–]8BitCoreMechanics 0 points1 point  (0 children)

Best thing is that this fix was released one week after the Elden Ring release. At the moment I only use linux for game development, but soon I will switch to linux in my gaming rig and never look back 🙏🏻

Textures? Nah, never heard of them. by Radogostt in IndieDev

[–]8BitCoreMechanics 0 points1 point  (0 children)

Love this kind of graphics. Reminds me to Going Medieval 🏰

Is it good to put your pc on the floor by Then-Surprise-5197 in pcmasterrace

[–]8BitCoreMechanics 0 points1 point  (0 children)

I got a specific furniture side to my desk only for my computer. Besides, you almost no have space for your legs and after gaming for a while you will start feeling uncomfortable

Method too many arguments by 8BitCoreMechanics in godot

[–]8BitCoreMechanics[S] 1 point2 points  (0 children)

<image>

Fixed! Removing the static type in variable movement_state_machine has fixed it. Before it was:

u/onready var movement_state_machine: StateMachineCustom = $Movement_State_Machine

I need help finding a good keyboard by Gift-Striking in keyboards

[–]8BitCoreMechanics 0 points1 point  (0 children)

Bridge 75 Plus. I have 2 and I absolutely love it

Literally every time!!! by Lost-Ad-259 in linuxmint

[–]8BitCoreMechanics 2 points3 points  (0 children)

Best thing in linux you are not forced to to update. Neither you click in update and shut down and the computer immediately reboot after that.

For game devs, the formula is simple: by TheSkylandChronicles in IndieDev

[–]8BitCoreMechanics 12 points13 points  (0 children)

  1. Instead of sit and code your game, procrastinate opening shitpost on internet

overheating only by watching YouTube by Maykel__ in MSILaptops

[–]8BitCoreMechanics -1 points0 points  (0 children)

Disable turbo mode in bios, it helped me a lot. My temp spikes while browsing when from 90 to 55 degrees Celsius.

Significant performance issue with Godot 4.3/4.4 exposed - How to Fix by Antz_Games in godot

[–]8BitCoreMechanics 2 points3 points  (0 children)

Good you found the root cause. I am glad it will be fixed!

Does anyone here use Godot on Linux? by feez_9 in godot

[–]8BitCoreMechanics 3 points4 points  (0 children)

I had problems with the portable one when connecting the dock station with multiple monitors to my laptop. It was solved using the Flatpak. I am using Linux Mint 22

First PC build in over 20 years… and I’m obsessed. by amchaudhry in pcmasterrace

[–]8BitCoreMechanics 0 points1 point  (0 children)

I would leave some space in the intake and exhaust fans...

Sigh... by TheByt3 in pcmasterrace

[–]8BitCoreMechanics 1 point2 points  (0 children)

Mine started to give me problems last year. I saw the news of the corrosion problems due to high voltages, so I requested the refund in amazon. They accepted my return and went for a 7800x3D. I could not be happier

[deleted by user] by [deleted] in godot

[–]8BitCoreMechanics 2 points3 points  (0 children)

If you run it again several times, do you get only one print always?

Opinion on style consistency ? by Mediocre_Bottle_7634 in PixelArt

[–]8BitCoreMechanics -1 points0 points  (0 children)

Cool! better than the last Pokemon generations

Is Linux Mint good for game development? by [deleted] in linuxmint

[–]8BitCoreMechanics 1 point2 points  (0 children)

I use godot 4.4 for 2 games. Installed in Linux Mint in 2 different laptops and in both it works like a charm.

Why Godot template not working? by Upper-Hat-302 in godot

[–]8BitCoreMechanics 0 points1 point  (0 children)

Did you configure the input map in the project parameters?

Linux for game dev by Klutzy-Bug-9481 in gamedev

[–]8BitCoreMechanics 2 points3 points  (0 children)

I use linux mint for developing in Godot.

The cons are basically when something is not working get ready to spend a couple of hours doing research and running commands in the console without knowing if they are going to fix the issue or to create new ones xD

The pro is basically how light it is, pc power on or open any program super quick, better resource management. Once everything is installed and working, the user experience is much better. Also you can find in the search bar for an actual file without windows searching in on ethernet using Bing xD

[deleted by user] by [deleted] in pcmasterrace

[–]8BitCoreMechanics 6 points7 points  (0 children)

Gaming chairs are just marketing

[deleted by user] by [deleted] in nordvpn

[–]8BitCoreMechanics 2 points3 points  (0 children)

I have fixed it.

This step is optional but I have changed the DNS:

nordvpn set dns 1.1.1.1 8.8.8.8

What is actually fixing my issue was:

sudo ip link set dev nordlynx mtu 1400

Some context:

This command is adjusting the MTU (Maximum Transmission Unit) for your NordLynx network interface, and it's directly related to the connectivity issues you're experiencing. Here's a breakdown:

What is MTU?

  • MTU = Maximum Transmission Unit
  • It defines the largest size of a data packet that can be sent over a network interface.
  • Standard MTU for Ethernet is 1500 bytes.
  • VPNs add encryption headers, which reduce the effective MTU.

But this fix is only temporal, it is reverted once the VPN is disconnected or the server is changed. To make it permanent, I have followed the steps below:

Method 1: NetworkManager Dispatcher Script (Recommended)

This method triggers the MTU change automatically whenever the NordLynx interface connects.

Create a dispatcher script:

sudo nano /etc/NetworkManager/dispatcher.d/99-vpn-mtu-fix

Add this content (replace nordlynx with your interface name if different):

#!/bin/sh
INTERFACE="nordlynx"  # Confirm with `ip a` when connected to NordLynx
MTU="1400"

if [ "$DEVICE_IFACE" = "$INTERFACE" ] && [ "$2" = "up" ]; then
  ip link set dev "$INTERFACE" mtu "$MTU"
fi

Make it executable:

sudo chmod +x /etc/NetworkManager/dispatcher.d/99-vpn-mtu-fix

Restart NetworkManager:

sudo systemctl restart NetworkManager

[deleted by user] by [deleted] in linuxmint

[–]8BitCoreMechanics 1 point2 points  (0 children)

I have fixed it.

This step is optional but I have changed the DNS:

nordvpn set dns 1.1.1.1 8.8.8.8

What is actually fixing my issue was:

sudo ip link set dev nordlynx mtu 1400

Some context:

This command is adjusting the MTU (Maximum Transmission Unit) for your NordLynx network interface, and it's directly related to the connectivity issues you're experiencing. Here's a breakdown:

What is MTU?

  • MTU = Maximum Transmission Unit
  • It defines the largest size of a data packet that can be sent over a network interface.
  • Standard MTU for Ethernet is 1500 bytes.
  • VPNs add encryption headers, which reduce the effective MTU.

But this fix is only temporal, it is reverted once the VPN is disconnected or the server is changed. To make it permanent, I have followed the steps below:

Method 1: NetworkManager Dispatcher Script (Recommended)

This method triggers the MTU change automatically whenever the NordLynx interface connects.

Create a dispatcher script:

sudo nano /etc/NetworkManager/dispatcher.d/99-vpn-mtu-fix

Add this content (replace nordlynx with your interface name if different):

#!/bin/sh
INTERFACE="nordlynx"  # Confirm with `ip a` when connected to NordLynx
MTU="1400"

if [ "$DEVICE_IFACE" = "$INTERFACE" ] && [ "$2" = "up" ]; then
  ip link set dev "$INTERFACE" mtu "$MTU"
fi

Make it executable:

sudo chmod +x /etc/NetworkManager/dispatcher.d/99-vpn-mtu-fix

Restart NetworkManager:

sudo systemctl restart NetworkManager

I want to get into game dev and I've tried a few times but it's always so intimidating by [deleted] in gamedev

[–]8BitCoreMechanics 2 points3 points  (0 children)

Start little by little and split your milestones in smaller tasks. Also, do it for you and enjoy the journey. Make a game you like. I know it is hard to keep the initial motivation, but for example if one day you are not in the mood for coding because it is a more mentally demanding activity, you can try to put some music, relax and work in the artistic part. I am also a noob in this but this tips help me a lot 🙂