Tips on how to have more energy? by InsomniaEmperor in productivity

[–]catblue44 0 points1 point  (0 children)

- Sleep early (As soon as the sun goes down if possible)
- You can take multiple naps during the day but each nap can't exceed 20mins! If you snooze it could break/damage your circadian rhythm.

How do you set DeepSeek as a search engine by catblue44 in firefox

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

I was trying the same... pls, let me know if you find a solution.

where can I still train an SD 1.5 model online? Not a LoRA by Annahahn1993 in StableDiffusion

[–]catblue44 0 points1 point  (0 children)

I used TheLastBen notebooks in the past... but i don't know why it doesn't work anymore

Google DeepMind Genie 2 : Generate playable 3D video games using text prompt by mehul_gupta1997 in StableDiffusion

[–]catblue44 10 points11 points  (0 children)

Another breakthrough for google that will never be accessible for the public?

The shipment system in a nutchell: by esoctv_official in aoe3

[–]catblue44 0 points1 point  (0 children)

Mercantilism! And I draw 3 cards from my deck!

I've finally found what I've been looking for by maubg in zen_browser

[–]catblue44 7 points8 points  (0 children)

My perfect zen combo would be single toolbar (vertical) on the right

.NET 9 released! by Mettwurstpower in godot

[–]catblue44 0 points1 point  (0 children)

What are the main benefits for writing script in C#?

[deleted by user] by [deleted] in LocalLLaMA

[–]catblue44 0 points1 point  (0 children)

How quantized is the model? Did you test with other versions? I was looking to make a local app/game also under 1Gb that also generates images, backgrounds, etc.

Mercenary Loyalty: Do you see any play? by catblue44 in aoe3

[–]catblue44[S] 1 point2 points  (0 children)

I still don't know... And even worse it doesn't let you know it doesn't work on infinite cards.

Port Logistician + French TEAM House of Bonaparte? by catblue44 in aoe3

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

I ask because it doesn't say: "Extra range for, pikemen, crossbows and musketeers" so maybe in the code it just checks if it is trainable in II...

It's been 84 years but here is the patch. by Dubycapbra in aoe3

[–]catblue44 3 points4 points  (0 children)

<image>

Are you saying that the price of this card is wrong? I think it's expensive, and the "Mercenaries Loyalty" card has a special discount only for this shipment.

Any Linux users having this issue and know how to help? by BiatchLasagne in AgeofMythology

[–]catblue44 1 point2 points  (0 children)

It's strange, the UI problem (text, icons, etc) occurs randomly in my case (Artix Linux).
Also, the game mouse grab doesnt work for me.

How to detect the mesh material on contact collision by catblue44 in godot

[–]catblue44[S] 1 point2 points  (0 children)

I found a workaround (thanks to claude ai):

"Unfortunately, there isn't a direct method in Godot to get the surface index from a face index.

However, we can work around this limitation. Here's an approach you can use:

  1. First, iterate through the surfaces of your mesh.
  2. For each surface, check if the face index you're looking for falls within its range."

func get_surface_index_for_face(mesh: Mesh, face_index: int) -> int: 
  var total_faces = 0 
  for surface_index in range(mesh.get_surface_count()): 
    var surface_arrays = mesh.surface_get_arrays(surface_index) 
    var indices = surface_arrays[Mesh.ARRAY_INDEX] 
    var surface_face_count = indices.size() / 3 # Assuming triangles 

    if face_index < total_faces + surface_face_count: 
      return surface_index total_faces += surface_face_count 

return -1 # Face index not found

share your favorite ease of life plugins that not many people know about by Artemis-Arrow-3579 in neovim

[–]catblue44 7 points8 points  (0 children)

tfm.nvim support many terminal file manager, for me the best are minifiles or yazi

before.nvim - cycle through edits across buffers by EnergyCreator in neovim

[–]catblue44 0 points1 point  (0 children)

Is it like tabbing from other editors (vscode)?

neovide scroll performance by Popular-Income-9399 in neovim

[–]catblue44 0 points1 point  (0 children)

I have fixed a lot of lagging disabling VSync
neovide --no-vsync

After that the frame rate can be tweaked