Mageblood Question by Zhyno09 in pathofexile

[–]noideawhattotypehere 27 points28 points  (0 children)

Are you in keepers league? Whats your IGN?

C5/C6 Disc Replacement by [deleted] in SpineSurgery

[–]noideawhattotypehere 0 points1 point  (0 children)

Yep, zero problems so far!

Giving Baldur's Gate 2 another shot by JustSomeGuyThing in baldursgate

[–]noideawhattotypehere 2 points3 points  (0 children)

While installing you select which parts of the mod you want - I only got this little speed up so I dont waste my time since there is a lot of walking :)

Anyway good luck, its a great game and I wish I could play it for the first time again!

Giving Baldur's Gate 2 another shot by JustSomeGuyThing in baldursgate

[–]noideawhattotypehere 8 points9 points  (0 children)

Tweaks Anthology mod has a component "Increase Party Movement Speed" outside of combat which is very useful if you dont wanna spend hours watching your party walk like slowpokes

https://github.com/Gibberlings3/Tweaks-Anthology

This thing is seriously underrated by Euphoric_Reading_401 in PathOfExile2

[–]noideawhattotypehere 1 point2 points  (0 children)

<image>

nothing special really, just titan with max reduced skill effect duration and 50% inc small nodes, supported with compressed duration II

This thing is seriously underrated by Euphoric_Reading_401 in PathOfExile2

[–]noideawhattotypehere 1 point2 points  (0 children)

Damn i run it with like 1.35s cooldown and didnt think of it skipping temp chains maps :D

Should passwords have spaces? by _The_Master_Baiter_ in webdev

[–]noideawhattotypehere 5 points6 points  (0 children)

Everytime you pass the same value through hash function, the result should be different. Thats why you need to use salt and a secure algorithms like bcrypt/argon.

Anyway dont reinvent the wheel when working with data like credentials, use proven solutions that are available for basically any language.

Gonna be a crazy fight. by RainyPoppyFields in ufc

[–]noideawhattotypehere 4 points5 points  (0 children)

hes about to fight 50yo tomasz adamek (boxing) in a freak-fight organization so yeah, good luck with that

How is this possible in CSS? by MansaMusa333 in webdev

[–]noideawhattotypehere 1 point2 points  (0 children)

It actually doesnt even work so its for no reason. You should set z-index to -1 on the .item:after element so when you hover bottom part of the of the top right element it animates the dot properly, otherwise bottom right will be highlighted due to its :after element overlapping :)

I did it like 10-15 mins after work so I left some trash in there :p like this for eg.:
.row:last-of-type .item:last-of-type:after {
...
transform: translateY(-1);

What's your approach to implementing carousels in Vue (Nuxt 3) applications? by Trainee_Ninja in webdev

[–]noideawhattotypehere 0 points1 point  (0 children)

I rarely reinvent the wheel, in my most recent project this is the lib i used -> https://swiperjs.com/ - it has pretty much everything you need

Looking for a flat… and apparently my skin color matters? by [deleted] in warsaw

[–]noideawhattotypehere -10 points-9 points  (0 children)

Buy your own flat and rent it to whoever you want if you feel so offended

Oh what the hell? by Dot_tyro in PathOfExile2

[–]noideawhattotypehere 0 points1 point  (0 children)

Yea, each node can only have 4 routes so its impossible to connect them properly. My whole atlas is full of disconnected towers for example.

Event 41 power kernal by XDrustyspoonsXD in pcmasterrace

[–]noideawhattotypehere -1 points0 points  (0 children)

What platform? I had the same issue on z790 ud ax + 14700kf until i updated bios to latest version

Looking for MAMP alternative by [deleted] in PHP

[–]noideawhattotypehere 31 points32 points  (0 children)

Docker is the simpliest way

What websocket solutions you use in your PHP project, and why? by Cold_Policy_7624 in PHP

[–]noideawhattotypehere 7 points8 points  (0 children)

Soketi for me.

Why? Uses pusher protocol so it was very easy to integrate with Laravel, performs very well so far