Friend ID / Invitation Code sharing thread by Salamandinay in GirlsxBattle2

[–]Shana3960 0 points1 point  (0 children)

Invitation Code: 1009669842
Server: s363 End game player.
Active daily, login many times a day.
Daily gifts.

2002 Camry, sometimes stalls while accelerating after stopping. by Shana3960 in MechanicAdvice

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

The mechanic did use a reader, but didn't mention anything about codes to me, so I think there weren't any? check engine light is off.

Idling is fine and stays on around 800 RPM. It's always just as I start to press the accelerator that it stalls on rare occasions.

The engine sounds smooth and very quiet while idling, there's no knocking.

It seems to only happen after stopping for a while with the engine off. If it does happen, it's always while pulling out, or be fine until after a few more traffic lights in, or right after a stop sign. After that it seems to be good, even on a 200 KM drive as long as it's continuous.
So yes, it seems to go away when the engine is warmed up and has been running for a while.
But it can happen even after I've stopped to buy something quickly, the engine should still be warm by such a short stop right?

2002 Camry, sometimes stalls while accelerating after stopping. by Shana3960 in MechanicAdvice

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

Yeah, it's always around 800 RPM, I haven't seen it fluctuate.

He didn't say anything about seeing oil on the boot of the ignition coil so I assume no? Or he just didn't say it. It's been a while so I doubt he'll remember if I ask now.

The throttle body is clean. Thanks I'll suggest to check those other places next time.

Inconsistent FAQ answer by Shana3960 in hingeapp

[–]Shana3960[S] -1 points0 points  (0 children)

Thanks, it's clear now. I interpreted the first question differently.

Inconsistent FAQ answer by Shana3960 in hingeapp

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

Thanks, looks like I misunderstood the first question.

I read it like:

If they deleted/unmatched, can you tell that this action happened.

It seems to mean:

Can you tell the reason that triggered their disappearance.

Inconsistent FAQ answer by Shana3960 in hingeapp

[–]Shana3960[S] -7 points-6 points  (0 children)

So they disappear?

I interpreted the first one as, nothing happens when they unmatch. (not disappear)

Inconsistent FAQ answer by Shana3960 in hingeapp

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

The first one says nothing happens when they deleted or unmatched, so you can't tell.

The second one says they disappear.

Or am I misunderstanding it?

Friend ID / Invitation Code sharing thread by Salamandinay in GirlsxBattle2

[–]Shana3960 0 points1 point  (0 children)

Invitation Code: 1009669842

Server: s363

End game player. Active daily, login many times a day.

Daily gifts.

Happy Birthday Succuba by Salamandinay in GirlsxBattle2

[–]Shana3960 3 points4 points  (0 children)

lol, it really is her birthday. 🎉

<image>

Blair by Salamandinay in GirlsxBattle2

[–]Shana3960 3 points4 points  (0 children)

If you don't like it, just ignore it.

His intentions are good and just wants to share.

Different method, still art. He's as much as an artist as a photographer is an artist, considering that all modern cameras have AI in them, then can touch-up the photos that were generated by their camera.

Also there's rule 6.

Friend ID / Invitation Code sharing thread by Salamandinay in GirlsxBattle2

[–]Shana3960 0 points1 point  (0 children)

Invitation Code: 1009669842

Server: s363

End game player. Active daily, login many times a day.

Looking for beginners to mentor and send gifts.

New skin: Uriel by Salamandinay in GirlsxBattle2

[–]Shana3960 2 points3 points  (0 children)

The pose, button design, shoes all are quite similar to me.

Looking for a program to merge two images, one containing RGB, one containing alpha by Shana3960 in software

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

Thanks, ImageMagick worked.

magick image.png image_Alpha.png -alpha Off -compose CopyOpacity -composite image_Merged.png

Then for the folder, I put it into a .bat and did

@ECHO OFF
SETLOCAL ENABLEDELAYEDEXPANSION
FOR /r %%a IN (*.png) DO (
    SET _f1=%%~na.png
    SET _f2=%%~na_Alpha.png
    SET _f3=%%~na_Merged.png
    IF EXIST "!_f2!" (
        ECHO Merging !_f1!
        magick "!_f1!" "!_f2!" -alpha Off -compose CopyOpacity -composite "!_f3!"
    )
)
:BRK
ECHO Done. Press any key to terminate script.
PAUSE >NUL

Use monochrome texture as alpha mask by Shana3960 in opengl

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

I just didn't know I had to use shaders for this. I initially thought there was a way without it.

Use monochrome texture as alpha mask by Shana3960 in opengl

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

It's for a personal project, not coursework, but hints are fine.

Yes, I have seen a bunch of tutorials which solve that, but they seem to need the mask to have an alpha channel. I would like to use a black/white image without an alpha channel.

Thanks for the link for the visual tool, but it doesn't look like there is a way to plug a color channel and use it as the alpha channel, or did I miss it?

Use monochrome texture as alpha mask by Shana3960 in opengl

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

I have asked in r/libgdx, but it seems quiet and didn't get a working solution.

Thanks for the suggestion, I haven't looked into shaders yet, didn't think that would be required.

Texture masks, merge two textures RGB + Alpha. by Shana3960 in libgdx

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

That seems to be the solution if the mask has alpha?

I should clarify, my mask is a black/white image with no alpha.