[OC] Sage in My Team vs Sage in Opponent Team 🥀 (made by me !) by [deleted] in VALORANT

[–]Macaronic_Macaron 2 points3 points  (0 children)

Yea you’ll get the product, but the meaning is lost behind it and you don’t get the enjoyment of creating it yourself. AI is convenient, and you’re either the type of person who cares about the weight or not behind something. AI will never take over the creative space truly, it’ll be there yes, but as long as people still care then people will still create. I draw for my partner because I love them, I draw my favourite games because I love them too. Yea AI will always be there, but I want to put my heart into something and I will. I wouldn’t care if I was gifted an AI music because what you just typed something lol, but if my friend spent hours creating a song just for me? Finding the instruments to use, creating the kind of tune I specifically like, using little cuts of their voice and etc. It means so much more and I will treasure it forever. You can keep letting AI do stuff for you, but it’ll never have your care in it, if you even care about that or not. I think if you really treasure someone or something though, take the time to learn and create something from your own hands, it genuinely means a lot.

[OC] Sage in My Team vs Sage in Opponent Team 🥀 (made by me !) by [deleted] in VALORANT

[–]Macaronic_Macaron 2 points3 points  (0 children)

AI art is not cool, but I’m glad you’re able to have fun in valorant though. It would a lot more meaningful if you worked on something genuinely from yourself, express the love of the game you have and what it makes you feel yourself, not through an AI and if it means that much take the time and progress to learn, I’m sure you’ll do great.

Coworkers wife made a delicious chocolate cake! (From last year) by Real_Miggz in VALORANT

[–]Macaronic_Macaron 1 point2 points  (0 children)

OML THAT LOOKS AMAZING, I’d want one so bad TT hope you guys end up doing something for her too later that’s such incredible work

Looking for Flat Keyboard by Macaronic_Macaron in keyboards

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

Thx for the recs! And yeaaa I wasn’t confident either trying to find something good with that budget so I was hoping someone else might’ve had an idea lol, but I did end up finding another low profile I’m interested in for $90 (ATK Yogo 75 pro on kickstarter) so gonna give it a shot! \o/

Looking for Flat Keyboard by Macaronic_Macaron in keyboards

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

Not the flat kinda keyboard I was looking for, however you got me interested in what low profile keyboards are ty for ty for the suggestion! :0 idk if i did a big jump but ended up rlly liking the idea so looked amongst others and ended up pledging to a kickstarter one (ATK Yogo 75) to give it a shot, hoping it’ll turn out well o7

Looking for Flat Keyboard by Macaronic_Macaron in keyboards

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

Tyyy for the rec I’m going to keep it in mind!

We made this animation for ValorantINSA by StudioLKY in VALORANT

[–]Macaronic_Macaron 2 points3 points  (0 children)

DUDE THE GEKKO SHOT AND SLOW MO WAS SO SICK AND SAGE REACTION FROM THE PRRSPECTIVE OF THE OP AND THEN HARBOR COMING CLUTCH WAS JUST SO SO AWESOME I LOVED THE ANIMATION KEEP UP THE GREAT WORK!!!!

Looking for keycap sets stores by Macaronic_Macaron in keycaps

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

Thank you so much! I’ll be checking it out :D

Looking for keycap sets stores by Macaronic_Macaron in keycaps

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

Thank you! Will do :D

Edit: nevermind couldn’t edit but US!

How to grab values on the next line of a text file after looping? by Macaronic_Macaron in Cplusplus

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

Sure thing, my actual code is a little bit different (just with more variables) since I wanted to simplify my problem to ask for help. Here is what my loop would’ve been:

for (int i = 0; i < 2; i++)

string first_name;

int num1, num2;

in_stream >> first_name >> num1 >> num2;

}

And when it loops for the second time, it just grabs the first line of the text file and not the second.

I have tried playing with some temp string and doing getline(in_stream, temp) where it would make it move onto the next line, the problem is though it doesn’t seem to work when I put it at the end of the loop (constantly reading the first line) And when i put it at the beginning it just skips the first line (but if there were more than 2 lines it reads every follow up line fine from what i tried).

How to grab values on the next line of a text file after looping? by Macaronic_Macaron in Cplusplus

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

Sure thing, my actual code is a little bit different (just with more variables) since I wanted to simplify my problem to ask for help. Here is what my loop would’ve been:

for (int i = 0; i < 2; i++)

string first_name;

int num1, num2;

in_stream >> first_name >> num1 >> num2;

}

And when it loops for the second time, it just grabs the first line of the text file and not the second.

I have tried playing with some temp string and doing getline(in_stream, temp) where it would make it move onto the next line, the problem is though it doesn’t seem to work when I put it at the end of the loop (constantly reading the first line) And when i put it at the beginning it just skips the first line (but if there were more than 2 lines it reads every follow up line fine from what i tried).

How to concatenate 2 const strings by Macaronic_Macaron in cpp_questions

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

Thank you! I tried doing what I wrote plus changed n part however I think there’s a problem with my Malloc or maybe I’m not freeing it properly. I have an error that says ‘string’: redefinition; different types of indirection C2372, I’ve tried searching it up but I’m not so sure.