@ZenXArch

12 Followers
48 Following
650 Posts

Minecraft java modder

https://justmytoots.com/@ZenXArch@mastodon.social

My Session Id053d18a9a9e6ce110f6ecdb47937421e8edf8722f1340e61dded402bf5e32eb531
Modrinthhttps://modrinth.com/user/ZenXArch
Codeberghttps://codeberg.org/ZenXArch
Gitter chathttps://matrix.to/#/#zenxarchs-modding-server:gitter.im

Linux and NTFS compatibility might soon feel less painful.

https://itsfoss.com/ntfsplus/

What is NTFSPlus and Why Does It Matter for Linux Users?

NTFSPlus is a fresh implementation of the classic in-kernel ntfs driver. Can it end the current NTFS woes for Linux users?

It's FOSS

Saw this code on a ai slop project and
this is just hilarious.
(Someone used ai to stole someone else's project, c2me-ocl)

#ai #java #slop

vec2 fbmComp2(vec2 p) {
mat2 f = mat2(
cos(TAU / 16), sin(TAU / 16),
-sin(TAU / 16), cos(TAU / 16)
);
vec2 f0 = noise2(p);
vec2 f1 = noise2(p * f);
vec2 f2 = noise2(p * f * f);
vec2 f3 = noise2(p * f * f * f);

return bmix(f0, f1, f2, f3, 0.5, 0.5);
}

Code:
vec2 p; //pos
ivec2 i = ivec2(floor(p));

// random no. [-1,1] + [-1,1]i
vec2 g0 = grad(i);
vec2 g1 = grad(i + ivec2(1, 0));
vec2 g2 = grad(i + ivec2(0, 1));
vec2 g3 = grad(i + ivec2(1, 1));

vec2 f = fract(p);

// complex mult
vec2 v0 = compMul(g0, f);
vec2 v1 = compMul(g1, f - vec2(1, 0));
vec2 v2 = compMul(g2, f - vec2(0, 1));
vec2 v3 = compMul(g3, f - vec2(1, 1));

// quintic fade
vec2 a = vec2(fade(f.x), fade(f.y));
return bmix(v0, v1, v2, v3, a.x, a.y);
}

Tried making a new kind of noise.

this is the length being presented

Here is code
#glsl #graphics #perlinnoise

The miracles of modern technology

#audio

anyone want to take iserv.com.de (the domain) from me? i have no use for it anymore as school has ended and i only needed it to make my vpn look like something less suspicious. it is already in its grace period so only a few days left.

note that you will have to immediately renew it, but it is very cheap.

boosts appreciated!

@notjustbikes about SUVs that are too dangerous.

In Orlando a lady in a huge monster truck drove her machine on top of a Lamborghini sports car in the parking lot of Crunch Fitness. Because she couldn't see the car.

Not fake, confirmed by journalists. https://www.nu.nl/325970/video/bestuurder-parkeert-pick-uptruck-op-peperdure-lamborghini-in-vs.html

Another angle: https://youtu.be/mR1ojA5tlSs?si=zT_HHZ2TA9WcIJKP

Remember? "Sideloading" is here to stay, and won't go away, they said? Don't be afraid, they said? Something something "we heard you"? Suuuure! Who would ever doubt it!

Attached the copy of a mail developers with apps in the PlayStore CURRENTLY receive. Please, read the text in the red box carefully:

"Apps not registered by September 2026 WILL NO LONGER BE INSTALLABLE ON CERTIFIED ANDROID DEVICES in select countries."

See an exception there? I don't.

#Google #Android #DeveloperCertfication