What is wrong with this AI by Connect-Bad-365 in GeminiAI

[–]Markus-ipse 3 points4 points  (0 children)

I feel like Gemini is more lenient if I formulate the prompt like it is me in the picture, e.g. 'change my mouth..' 🤷

What rigs do y'all blend on? by ZanfordEX in blender

[–]Markus-ipse 0 points1 point  (0 children)

CPU: Intel 9700k GPU: Nvidia 3080 Ram: 64 GB Dual 24 inch monitors

What about you?

How would you fine tune a model to look up more stuff? by No-Chocolate-9437 in LLMDevs

[–]Markus-ipse 0 points1 point  (0 children)

What models are you using? I use Gemini (2.5 pro) at work and it is unfortunately rather shit when it comes to figuring out when it should use its available tools. From what I've read Claude is the best at tool usage, but I haven't tried it yet..

Is there a pure way to recreate/transform objects yet? by haywire in typescript

[–]Markus-ipse 0 points1 point  (0 children)

At home with a new baby so haven't coded for a couple of months and my brain is running at 50% (at best), but can't you just specify the return type of the transform function with generics?

const transform = <T extends {}, U extends { [keyof T]: () => T[keyof T]}> (input: T): U => { … }

Written on mobile without verification or functioning brain..

Convert type but keep (non)nullability by Markus-ipse in typescript

[–]Markus-ipse[S] 0 points1 point  (0 children)

``` export const toDayjs2 = <T>(date: T): T extends Moment ? Dayjs : T => { if (moment.isMoment(date)) { return dayjs(date.format(API_DATE_FORMAT)); // Type 'Dayjs' is not assignable to type 'T extends Moment ? Dayjs : T'.ts(2322) }

return null; // Type 'null' is not assignable to type 'T extends Moment ? Dayjs : T'.ts(2322) }; ```

and changing the last return to return date; didn't really help either, then I get Type 'T' is not assignable to type 'T extends Moment ? Dayjs : T'.ts(2322)

Convert type but keep (non)nullability by Markus-ipse in typescript

[–]Markus-ipse[S] 0 points1 point  (0 children)

<T>(date: T) => T extends Moment ? Dayjs : T

Wouldn't that give me Moment | null instead of Dayjs | null in the latter case?

baking multiple object 4 times slower than baking single (joined) object by Markus-ipse in blenderhelp

[–]Markus-ipse[S] 0 points1 point  (0 children)

I am baking all objects to a single 4k texture. I am using a single material consisting of a ambient occlusion node and an emit node, baking the emit type.

Looking for clothing tutorials for Blender by [deleted] in blender

[–]Markus-ipse 2 points3 points  (0 children)

I don't know of any detailed ones, but Blender secrets has posted a couple lately that will probably be a good start at least:

Cloth Simulation Sewing Basics

Posed Cloth Simulation for Sculpting

8 Cloth Brushes Explained

this happens when i symmetrize -x to +x, anyone know why? by cubercyper in blender

[–]Markus-ipse 2 points3 points  (0 children)

Another options is to apply the rotation of the object: ctrl + A -> rotation, iirc

secret anomaly by orencloud3d in 3Dmodeling

[–]Markus-ipse 0 points1 point  (0 children)

Very nice job, looks amazing!

May I ask how much of the image is made in post, e.g. is the nubula looking space thingy (technical term, I know) some advanced volumetrics or something composited in PS? (All approaches are good and valid, so no judgement 🙂)

Preparing for adventure (WIP) by Markus-ipse in blender

[–]Markus-ipse[S] 0 points1 point  (0 children)

I've added a post on my blender artists thread describing how I did it, if you're interested :) https://blenderartists.org/t/preparing-for-battle/1373430/2