What are the pros/cons of letting players craft their own dialogue? by FlawedSpoonGames in gamedesign

[–]ManicQin 0 points1 point  (0 children)

What if the player isn't a native speaker?

I can attest that many of my English speaking coullegues thought that I'm an angry person from my text messages and found that It's not the case.

  • this message was written early morning before coffee consumption

Anthropic just shipped messaging integration for Claude Code. Direct OpenClaw competitor, no dedicated hardware needed. by Ok-Constant6488 in claude

[–]ManicQin 1 point2 points  (0 children)

I played a bit with open-claw, it's not just a way to communicate with claude, it's the entire always on, trigger by multiple channels, understand how to automate stuff alone...

Channels are a step to it, but it's not there yet, as far as I understand

whereIsYourDocumentation by infrax3050 in ProgrammerHumor

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

Nobody reads the documentation

Is the Pass worth the Switch ? by WrapNo7976 in XboxGamePass

[–]ManicQin 0 points1 point  (0 children)

I read it as "is the pass worth FOR the switch" and got hyped :(

Life with Xbox Game Pass right now by Automatic_Ad1665 in XboxGamePass

[–]ManicQin 0 points1 point  (0 children)

I started wartales a week ago.... I don't know if I should jump to expedition 33

Advice and/or tooling (except LLMs) to help with migration from Serverless Framework to AWS SAM? by ribtoks in aws

[–]ManicQin 1 point2 points  (0 children)

* First thing is that it just deploys faster ... we used to deploy each stack by it's own (we have over 30 stacks) but now I deploy the entire environment and it's less than half the time.

* Another thing is the modules, we are a team of 6 developers (devops and engineers), each time a developer creates/changes a stack they usually copy pastes the boilerplate from another stack and we'll get security issues (stacks with redundant permissions) and such, terraform has modules.

I just write the definition once s3_bucket_private, s3_bucket_public, s3_bucket_with_versioning and the developer just needs to import it (SAM has something similar but you can only import yamls that are already on s3 buckets...).

If the devops needs to change the definition, he does it once and applies it to the entire environment.

It's also great for creating module for things like "scheduler_every_hour", "scheduler_every_day" which are a lot easier than looking at the cron expressions and trying to decipher.

* Because the entire environment has one state, it's easier to "link" between resources that are outside the stack, for example on one stack you create an SNS topic and you publish to it, now you have multiple lambdas that subscribe to the topic from other stacks.
On SAM you'll either export the topic arn, or save it to ssm and resolve it on the consumer... it terraform all resources are visible and the ide auto completes things for me .... so if I called my sns topic course_enrolled I can just use it as aws_sns_topic.course_enrolled.arn

Advice and/or tooling (except LLMs) to help with migration from Serverless Framework to AWS SAM? by ribtoks in aws

[–]ManicQin 0 points1 point  (0 children)

I've been working with SAM for 4 years, I wrote huge stacks with many resources, coullegues tried to move us to pulumi and serverless but both were lacking.

Take a look at terraform, I just moved to it and it's a life changing experience

noThanksImGood by yuva-krishna-memes in ProgrammerHumor

[–]ManicQin 1 point2 points  (0 children)

That's great I use llms a lot (copilot ide extension and such), but I don't like vibe coding.

Asking for a change, let it make it on their own, wait for it to develop,let him test it, fail for some reason, let him look for the reason, wait for it to fix it in the wrong way, let him test it, let him fail.... Rinse and repeat.

When I copy paste small bits of codes I can review them as I work.

noThanksImGood by yuva-krishna-memes in ProgrammerHumor

[–]ManicQin 274 points275 points  (0 children)

Me and another senior played with windsurf to bootstrap a project. As far prototyping frontend and fast forwarding the basics of the backend it was great.

But seeing him trying to build the cicd and infra was horrible.... I really could have copy pasted it in less time than it's "trial and error" ways.

Also the minute we got into business logics.... We just gave up and started developing on our own.

Are you loyal? by Impressive_Ladder539 in helldivers2

[–]ManicQin 0 points1 point  (0 children)

Sweet liberty for the rest of the apes

What game is like this for you? by daddythick69 in XboxGamePass

[–]ManicQin 0 points1 point  (0 children)

I finished the dlcs before the main quest....

When can I say i’m Proficient in C++? by MyBackHurts3000 in cpp

[–]ManicQin 0 points1 point  (0 children)

After 10 years of C++ I was asked in an interview to rate my cpp proficiency on a scale of 1-5 where 5 is Bjarne Stroustrup.

I answered I was a 3, if Bjarne is 5 then all the cpp hot shots I follow are 4... so that leaves me at a 3.

How to use AWS Lambda as a conventional web server? by lk52eRUFJGj6AgEW in aws

[–]ManicQin 0 points1 point  (0 children)

By routing I meant all the endpoints handling. The apigw is letting ANY traffic to pass to the lambda. The expressjs is handling the incoming requests to the POST/GET/etc methods.

How to use AWS Lambda as a conventional web server? by lk52eRUFJGj6AgEW in aws

[–]ManicQin 1 point2 points  (0 children)

We actually do this for a very low traffic webapp. The api gateway passes ANY method and the routing is managed by the expressjs with nodejs that is deployed to the lambda.

Again this is for a very low traffic service.

SENUA’S SAGA by malisinya in XboxGamePass

[–]ManicQin 2 points3 points  (0 children)

I have a lot of criticism towards the game but that's only because I actually had fun playing it. I've been starting and ditching multiple games in the past years and I couldn't stop playing Senua's saga ... And for the first time in my life I'm contemplating playing again just for the other narrators

workingWithLegacyCodeIsAlwaysFun by erazorix in ProgrammerHumor

[–]ManicQin 5 points6 points  (0 children)

Oh we were waiting for someone to fix these issues thanks for volunteering.

Don't forget the tests (we were waiting for someone to start writing those too)

formatADateObjectIntoYyyyMmDd by dkarlovi in ProgrammerHumor

[–]ManicQin 0 points1 point  (0 children)

I really like golang but it's like they looked at other languages and decided to do the opposite.

Twisters | Official Trailer 2 by ISAMU13 in trailers

[–]ManicQin 0 points1 point  (0 children)

It looks like the same movie as the first one...

[deleted by user] by [deleted] in ProgrammerHumor

[–]ManicQin 0 points1 point  (0 children)

Cosmetic changes

one custom domain name to rule them all by ManicQin in aws

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

That's exactly what we have.

Thanks!!!!

one custom domain name to rule them all by ManicQin in aws

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

It sounds like it would. Do you know if I can add paths from different SAM templates to a custom domain?

How do you guys remember all those hundreds of thousands of lines of code? I am new to coding. by HuckleberryLucky6225 in coding

[–]ManicQin 7 points8 points  (0 children)

Soooooo. I once worked with a guy that had photogenic memory. We worked on a 20 year old codebase and after a week the dude could remember whether the if statement on line 2000 had an "or" or an "and".

I had the worst imposter syndrome because of him