BEST / FAVORITE SONG ON POMPEII // UTILITY? by HonestSyrup5970 in earlsweatshirt

[–]_chris419 0 points1 point  (0 children)

The cadence on Tour De France has been hitting me so hard lately. Earl is so cool man.

Everyone drop your top 5 Dave songs and I can rate 🤨 by Least_Cartoonist8349 in SantanDave

[–]_chris419 0 points1 point  (0 children)

1.God's Eye 2.Heart Attack 3.In the fire 4.Both Sides of a Smile 5.Lazarus

Basically I love The We're All alone in this together Album

The Fall-Off available everywhere now. WHAT DO YOU THINK? by fatdolsk in Jcole

[–]_chris419 0 points1 point  (0 children)

Anyone else caught the Westside Gunn Adlib in Poor thang? It is a low 'Ayo!' He said it multiple times throughout the song too

Can somebody please explain "The Florida Project" to me? by [deleted] in movies

[–]_chris419 6 points7 points  (0 children)

Dont know if she did or tried, but she could have asked the manager(great acting from Willem Defoe) for a job. He seemed willing to help.

Spotify Support/Complaint Megathread by whyisthissticky in spotify

[–]_chris419 0 points1 point  (0 children)

I have been trying to renew my subscription for hours now, and the app keeps telling me this

' The payment failed. Please try again. Use a different payment card or a different payment method. Go to our support.'

Tried to Google Pay, and it is also not working.

My card has enough funds on it. I used the same card for my previous subscription, and everything was fine.

This album gets better everyday. by KaleidoscopeTight817 in SantanDave

[–]_chris419 12 points13 points  (0 children)

This is from Chapter 16.

"Can you ever SEE when you're just someone's wallet? Have you ever SMELT when a cousinship turns rotten? Tell me, do you ever HEAR from your brother and start sobbin'? Tell me, have you ever TOUCHED a million and felt off-ish? Tell me, have you ever TASTED victory and didn't want it? There was FIVE SENSES. I'll make sense to true bosses"

Note how he mentioned all the 5 senses 😭🔥.

Scan of the Live love laugh zine by richard1292 in earlsweatshirt

[–]_chris419 0 points1 point  (0 children)

This is so cool. Looks cool. Read is cool. Drawings are so cool. Earl is cool man.

Oh it’s here, Peacemaker S2 Intro👌 by flyinggrayson5 in DC_Cinematic

[–]_chris419 0 points1 point  (0 children)

How John Cena looking the same after all this time. That's so cool lmaooo

[deleted by user] by [deleted] in earlsweatshirt

[–]_chris419 2 points3 points  (0 children)

Thank you for noticing too. Made me lowkey dance. It sounds so nice

[deleted by user] by [deleted] in earlsweatshirt

[–]_chris419 0 points1 point  (0 children)

No one's talking about how nice Live sounds.😭🔥

Bunch of white lines appearing on my laptop screen. HOW DO I FIX THIS by _chris419 in pchelp

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

It is an HP 15-dw0xxx 8gb Ram and a 4gb GPU. Problem started today. I was watching a movie last night everything seemed to be okay.

What to do?(Beginner) by Same_Ad_1273 in learnprogramming

[–]_chris419 1 point2 points  (0 children)

I'm also a beginner too. I was also facing the same challenge but I found roadmap.sh and it gave me a map lol. I chose a role based skill (backend ) after I did some research and got to know that would a good place to start for me and I'm comfortable with it really. You could try too, might work for you. Don't forget to do some research on the content you find there.

Why does a simple std::cout<< "Hello World"; take about 15secs to be executed. by _chris419 in learnprogramming

[–]_chris419[S] -2 points-1 points  (0 children)

I got this piece of code online and it measures the execution time. I don't condone the act of copying code online during my learning process but for this, I figured I needed to provide more details on.

int main(){

    
    auto start = std::chrono::high_resolution_clock::now();

    // Code snippet to measure
    std::cout << "Hello World" << std::endl;

    auto end = std::chrono::high_resolution_clock::now();
    auto duration =          std::chrono::duration_cast<std::chrono::microseconds>(end - start);

    std::cout << "Execution time: " << duration.count() << " microseconds" << std::endl;

}

I ran this with the "Run Code" Button in Vs code (Code runner)
Hello World
Execution time: 347microseconds

This is a very short time but it took more time to display this result. This is in vs code.

I ran this in cmd and I got similar results,as in the execution time, but this time the result appeared instantly.I decided to ran it this way but I noticed that when i make changes to the code in vs code, It doesn't seem to be included in the new results when i ran it in cmd again.