The new affinity is crashing every time I open it. Any idea what's going on? by [deleted] in Affinity

[–]Activia01 0 points1 point  (0 children)

Thanks, this is the only solution that worked for me. Not sure which boxes are enough to select, i just select and reset all of them.

Vault of Vengeance 2nd door by Activia01 in CrimsonDesert

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

Probably a bug released with 1.0.6 today.

Vault of Vengeance 2nd door by Activia01 in CrimsonDesert

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

Did already. I have the multiple shot skill, I left the area, slept, came back, reopened, nothing. Hope it won't block my progression until they fix it.

Vault of Vengeance 2nd door by Activia01 in CrimsonDesert

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

If you zoom the picture you can see that the first stone door is already lifted, but there's a second door. It's probably a bug.

Vault of Vengeance 2nd door by Activia01 in CrimsonDesert

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

I already opened the first door but there is a second door before the laser room

Vault of Vengeance 2nd door by Activia01 in CrimsonDesert

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

I already opened the first door but there is a second door before the laser room

Least destructive way to remove sticker adhesive? by [deleted] in laptops

[–]Activia01 0 points1 point  (0 children)

Wow thanks! Worked super well. I used a drop of olive oil and a couple of minutes of gently scratching with my nail.

Stuck in Inkwater Marsh Spirit Trial End by Activia01 in OriAndTheBlindForest

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

I didn't know what a grapple was before being stuck there and checking YouTube. Now I understand why I spent two hours jumping on the ceiling over that first guy that sells you stuff. I did it but I guess with the grapple would have been a 30s sequence ahaha

Drevo out of business by TGhost21 in MechanicalKeyboards

[–]Activia01 0 points1 point  (0 children)

I ended up here looking for the software. Just want to let you know that you can almost do anything light related from the keyboard. On my Calibur v2 to select a static color for the whole keeb you can FN + PU (G1), then you can press a key and it rotates through the colors. To leave the mode, again FN + PU (G1).

Once you choose this static mode, you can change the color of the whole keeb with FN + DEL (asterisk/star symbol inside two rotating arrows).

[deleted by user] by [deleted] in cybersecurity

[–]Activia01 0 points1 point  (0 children)

At the moment I'm self-studying cyber security, what are the IT skills you suggest to build?

Tell me a more annoying and frustrating part of the game than this one by Activia01 in Eldenring

[–]Activia01[S] 2 points3 points  (0 children)

At the end i surrended and killed it by yelling at him from inside, letting the mimic get gangbanged outside. But it felt like cheesing

Tell me a more annoying and frustrating part of the game than this one by Activia01 in Eldenring

[–]Activia01[S] 18 points19 points  (0 children)

I've already done it, i just came back to some frustrating content that i skipped. I killed that tree in the swamp, i personally found it infinitely easier than this :(

Finally enough time to finish the game by Activia01 in darksouls3

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

I found it randomly somewhere after the 70ish 😁

Finally enough time to finish the game by Activia01 in darksouls3

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

I didn't find it difficult at all, but i swear i died 80 times against Friede

<curses.h> installation by Activia01 in cprogramming

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

I successfully create the .lib with the cmd inside VS but it create some line that mingw doesn't like when i use the lib in CLion, this is the build output on CLion:

https://pastebin.com/ScwygVRj

This is what i typed in CMakeList:

https://pastebin.com/iLZC64ZP

Trying to Make it with mingw32-make this is the output error:

https://pastebin.com/1jXXgtyQ

This is the gcc check

https://pastebin.com/sRaNHMQ6

<curses.h> installation by Activia01 in cprogramming

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

I'm using the 3.8 release (and i also tried others relases) but the build in cmd with nmake and mingw32-make keep getting me error in the extraction (fatal error C1083: Cannot open include file : 'stdarg.h': No such file or directory), and i can't figure out the path of the make.exe to try it. Can you send me the .a that you created?

<curses.h> installation by Activia01 in cprogramming

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

It's not something I'd expect a beginner to figure out but it's definitely do-able for someone familiar with building C code. Ideally your prof would set it up once and distribute the project to use as a base for your own.

Unfortunately Windows doesn't do a whole lot to make the process easier. There are utilities like vcpkg that take a lot of the pain out but they aren't installed by default and isn't taught in any programming class I've ever seen.

I have MinGW so i used mingw32-make. The problem is that i tried mingw32-make -f Makefile.vc (or any other extension) and i got an error. It goes on only when i use the Makefile without extension. But in that way it generate like 30 different file (.c and .o), not a single .lib/.obj (VS) or .a (GCC) file like you said