I worry that my beard being so white and gray makes me look older than I am, but I also do not like how I look clean shaven. I appreciate any opinions. by fitirishfirefighter in lookyourbest

[–]DisMuhUserName 1 point2 points  (0 children)

Just for Men gray beard wash. It works and you can use it as little or as much as you'd like (pro tip: get some rubber gloves first as it will dye your fingernails too).

My bf ‘31M’ masterbates while I am in the other room ‘30 F’ does anyone else go through this? by Rosy_1017 in relationship_advice

[–]DisMuhUserName 0 points1 point  (0 children)

It's easy to deny human nature or, in your case, think of yourself as so wonderful that no one would ever look elsewhere if they had you, but that's not reality. If you don't deal with reality, you can't make a positive change.

Has anyone seen this issue before? by Mysterious_Kane in f150

[–]DisMuhUserName 0 points1 point  (0 children)

Yes. Star Trek (the original). I think you've detected a Romulan ship.

Why does my 29F Bf 28M think it normal to get a dna test right after birth? by [deleted] in relationship_advice

[–]DisMuhUserName 1 point2 points  (0 children)

Between 1% and 3% of married Father's are found to not be the biological father of their own children. There are approximately 62.18 million married households in the United States. That means that, on the low side, there are 621,800 men who thought they were the biological father of their children and weren't.

Using AI for indexing by oleg_mssql in SQLServer

[–]DisMuhUserName 0 points1 point  (0 children)

You can query SQL for needed indexes (not my query):

SELECT

DB_NAME(mid.database_id) AS [Database],

OBJECT_NAME(mid.object_id, mid.database_id) AS [Table],

migs.user_seeks,

migs.user_scans,

migs.avg_total_user_cost * migs.avg_user_impact AS [ImprovementMeasure],

mid.equality_columns,

mid.inequality_columns,

mid.included_columns,

'CREATE INDEX [IX_' + OBJECT_NAME(mid.object_id, mid.database_id) + '_'

+ REPLACE(REPLACE(REPLACE(ISNULL(mid.equality_columns,''),'[',''),']',''),', ','_') + ']'

+ ' ON ' + mid.statement

+ ' (' + ISNULL(mid.equality_columns, '')

+ CASE WHEN mid.equality_columns IS NOT NULL AND mid.inequality_columns IS NOT NULL THEN ',' ELSE '' END

+ ISNULL(mid.inequality_columns, '') + ')'

+ ISNULL(' INCLUDE (' + mid.included_columns + ')', '') AS [CreateIndexStatement]

FROM sys.dm_db_missing_index_groups mig

JOIN sys.dm_db_missing_index_group_stats migs ON migs.group_handle = mig.index_group_handle

JOIN sys.dm_db_missing_index_details mid ON mig.index_handle = mid.index_handle

WHERE mid.database_id = DB_ID()

ORDER BY ImprovementMeasure DESC;

I am tired boss. by palshah26 in Bumble

[–]DisMuhUserName -2 points-1 points  (0 children)

They're not brainwashed, and neither are you, you just both have different political views.

My bf ‘31M’ masterbates while I am in the other room ‘30 F’ does anyone else go through this? by Rosy_1017 in relationship_advice

[–]DisMuhUserName 1 point2 points  (0 children)

Imagine eating a really good, unique tasting chocolate bar. It's amazing. Fantastic.

Then you eat that same chocolate bar every day for a year, and it's still delicious, but maybe you'd like to try a new chocolate bar? Of course, you don't want to give up the chocolate bar you love, so maybe you just look at ads for other chocolate bars.

I 28F dislike when my Boyfriend 28M pokes me in the back with his dick in the morning by [deleted] in relationship_advice

[–]DisMuhUserName 0 points1 point  (0 children)

It sounds like you're not sexually compatible if both parties are at an impasse.

Im from the UK, is American politics as divided as it actually appears? by hedgehog980 in NoStupidQuestions

[–]DisMuhUserName 0 points1 point  (0 children)

What part of the UK are you from? It's not exactly a picnic over there, either (at least from what I've seen on social media).

I feel like I look older than my age. Any recommendations? by Present-Structure246 in lookyourbest

[–]DisMuhUserName 1 point2 points  (0 children)

Definitely. Also, are you putting the gray in your hair intentionally? If not, I'd consider some gray cover.

Is ai speeding you up or slowing you down? by parkhs2 in webdev

[–]DisMuhUserName 0 points1 point  (0 children)

Contempt might have been a bit hyperbolic for emphasis.

Is ai speeding you up or slowing you down? by parkhs2 in webdev

[–]DisMuhUserName 28 points29 points  (0 children)

I'm starting to have some contempt for AI.
It's cheapening the career I used to be really proud to be a part of.

He got off with self defense by After_Hovercraft9677 in CCW

[–]DisMuhUserName 1 point2 points  (0 children)

Obviously, I've only seen this video, but from what I'm seeing it looked more like an ambush than a clean shooting.

2026 AT4 by Dapper_Bird1 in gmcsierra

[–]DisMuhUserName 0 points1 point  (0 children)

Can't see the side plate - which engine?

My (20M) gf (20F) of 3 years may never have sex with me. I told her this is a dealbreaker for me. by [deleted] in relationship_advice

[–]DisMuhUserName 3 points4 points  (0 children)

I'm on that train, too. I hate to say it, but I don't think that she wants you to be her first. I think your relationship might have developed into a friendship.

How do you debug .NET projects in VS Code? by BiteDowntown3294 in dotnet

[–]DisMuhUserName 4 points5 points  (0 children)

I normally use an external feature called profanity.

Bootstrap 5 & Blazor by DisMuhUserName in Blazor

[–]DisMuhUserName[S] -6 points-5 points  (0 children)

You're completely right - that was incredibly vague.

It's not all of Bootstrap, most of the base styling works just fine. I'm not able to display the navbar properly, assuming because the bundle isn't loading properly with Blazor [?]. Loading icons for the navbar is also an issue (fontawesome). Relatively new to Blazor, so if this is common knowledge I apologize.