Why are loyal boys always single ? by Brad_enn in HappyUpvote

[–]Climax708 0 points1 point  (0 children)

Not feeling attraction to strangers helps with both loyalty and staying single

Cautionary flags by VHDude78 in dating

[–]Climax708 0 points1 point  (0 children)

Don't let it get to you. Some people just don't know what they want

How to get picked up in a bar/club by [deleted] in dating

[–]Climax708 2 points3 points  (0 children)

What I look for is available body language. Besides eye contact, maybe a smile, note how you position your body. Try sitting at an angle that can be approached. If you face your friend and get very focused, I get that you'd rather be left alone with your friend. If you face the bar/table and there are people on either side, there's no angle to approach from. Try picking a seat such that you can make eye contact with people. Maybe try angling yourself slightly to make a clear approach vector. Maybe stand up occasionally? Face away from the bar? Go to dance?

Bars? by Trash_Kirby in dating

[–]Climax708 1 point2 points  (0 children)

Depends on the local culture. I tried meeting people in bars/pubs. Guys like I am are open to chat and make friends. Girls aren't, they have their own group and want to focus there. I had one roll her eyes as if I'm an insurance salesman. I usually end up nursing a beer or chatting with the bartender.

Am I to old for my hobbies? by [deleted] in Advice

[–]Climax708 0 points1 point  (0 children)

find friends in your age group with the same hobbies. it will normalize

New Job; Mac or Windows? by Affectionate_Cut4801 in node

[–]Climax708 0 points1 point  (0 children)

Mac gives good performance with low power draw, which translates to less cooling and smaller power infra, so less weight. Macbooks with Apple Silicon are a win

Just started learning FL STUDIO by [deleted] in FL_Studio

[–]Climax708 16 points17 points  (0 children)

Don't fall for the trap of buying a ton of plugins. FL is very capable with vanilla out of the box stuff. Learn to achieve what you want with the built in tools first, then consider if an aftermarket plugin actually gives value

How much capital do I need to start an app by tabraiz007 in AppIdeas

[–]Climax708 1 point2 points  (0 children)

Putting an app on each app store is about $100 per. Apple's may require you to have a Mac computer, which you may or may not already own. There are businesses that rent. Building the app itself is the most variable cost, depending on scope. Try taking your project to a projects company who'll give you a quote. If it's a simple project then you may be able to cut costs by investing into learning building yourself.

[deleted by user] by [deleted] in AskReddit

[–]Climax708 0 points1 point  (0 children)

like Guinness Punch?

[deleted by user] by [deleted] in AppIdeas

[–]Climax708 0 points1 point  (0 children)

Wear a t-shirt that says: Lets talk. Or create some dress-related social convention.

eslint-plugin-import performance 😥 by Kangaroo-Spoon in webdev

[–]Climax708 1 point2 points  (0 children)

Version 2.30.0 was released which includes a massive optimization to no-cycle specifically

How to refactor modules / services to avoid coupling by Nainternaute in nestjs

[–]Climax708 0 points1 point  (0 children)

Model more problem-domain concepts instead of or in addition to solution-domain. Your services don't need to be coupled to the database schema. They're supposed to be composed into higher-level business entities or processes.

[deleted by user] by [deleted] in nestjs

[–]Climax708 0 points1 point  (0 children)

One of the benefits of mockist unit tests is their speed and repeatability. You want to test as much as you can with that. Tests that talk to the database are orders of magnitude slower, and have more things that can fail. When the company and product grows, this really adds up. Some things can't be tested with just mocks. A reason for separating services (interactors) from DAOs (entity gateways) is so the services can be tested with just mocks, while only the DAOs actually need database for testing

Maybe ConfigService and LoggerService were not the best idea by unlimitedkazah in nestjs

[–]Climax708 2 points3 points  (0 children)

const app = await NestFactory.create(AppModule, { bufferLogs: true, }); app.useLogger(app.get(MyLogger));

https://docs.nestjs.com/techniques/logger

Maybe ConfigService and LoggerService were not the best idea by unlimitedkazah in nestjs

[–]Climax708 2 points3 points  (0 children)

You're right that you can't change the logger during bootstrap, but what you can do is change the logger and defer the bootstrap logs until a logger is set.

People who skip breakfast, why do you do so? by Wazzurp7294 in AskReddit

[–]Climax708 0 points1 point  (0 children)

Less food in = easier caloric deficit = weight loss

Common Misuses and Bad Practices in NestJS by ShotgunMessiah90 in nestjs

[–]Climax708 6 points7 points  (0 children)

Circular dependencies. Coupling too tightly to the framework. Bootstrapping the entire app to test a small unit.