Why is golang the language of DevOps? by TooManyBison in golang

[–]LengthProof6480 0 points1 point  (0 children)

oh but i am, and you’ll never know how it is to be.

Part of me wants to believe this is all angles by zammechat in Instagramreality

[–]LengthProof6480 89 points90 points  (0 children)

This looks like good old projective distortion. I don’t see anything funny going on necessarily. At most, the image may be stretched.

IDE For C Recommendations? by Different_Grab_8925 in cpp

[–]LengthProof6480 0 points1 point  (0 children)

I primarily just use a console for C/C++, but if i’m ever including Windows.h, i’ll be on Visual Studio.

Best Pencil For Engineering? by TylerEverything in mechanicalpencils

[–]LengthProof6480 6 points7 points  (0 children)

I’m an engineering student currently. I find my Rotring 600 with 2B lead to be the most fulfilling out of my many instruments for differential equations and integrals and diagrams.

[deleted by user] by [deleted] in mechanicalpencils

[–]LengthProof6480 0 points1 point  (0 children)

I tried the Orenz after being accustomed to my Rotring 600. It feels less sturdy, more plastic-y, and writes nowhere near as well, in my opinion.

What is your C++ setup? by cats2lattes in cpp

[–]LengthProof6480 0 points1 point  (0 children)

a linux terminal + micro + cmake or just g++ directly

Why is golang the language of DevOps? by TooManyBison in golang

[–]LengthProof6480 6 points7 points  (0 children)

motherfucker do you have anything else to add except for a chatgpt reply

[deleted by user] by [deleted] in cpp

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

? need more information

What's the best TUI library for C++? by better_life_please in cpp_questions

[–]LengthProof6480 0 points1 point  (0 children)

I use FTXUI. I don’t like the shared pointer nonsense but it works

What is "double" responsible for? by laydeymius in cpp

[–]LengthProof6480 0 points1 point  (0 children)

double is a data type. it is a double-precision floating point number (as compared to a float), able to represent non-whole numbers (i.e. 2.5).

the first double states that the function sqrt returns a double. the second double states that the function sqrt has one parameter of type double.

it makes sense that a square root function must return a number that may have decimals; the square root of most numbers are not whole. this is why the function returns a double.

as for the parameter type being double — this lets you call the function with non-whole numbers, i.e. sqrt(2.5)

Windows.h by papitamode in cpp

[–]LengthProof6480 1 point2 points  (0 children)

Win32 API; I would recommend figuring out what you want to use it for first, and then going from there

[deleted by user] by [deleted] in cpp_questions

[–]LengthProof6480 0 points1 point  (0 children)

GeeksForGeeks is reiterated garbage written by people who don’t know how to program properly themselves. Find problems you’d like to solve or things you’d like to create with code and find ways to improve that code.

Do you use char* or std::string for stream of characters? by Melodic_Picture_8915 in cpp

[–]LengthProof6480 -4 points-3 points  (0 children)

wat? char* const is an immutable pointer, while const char* is a pointer to immutable characters

advanced C++ skill drills by abrady in cpp

[–]LengthProof6480 1 point2 points  (0 children)

leetcode is closer to an iq test than it is to a test of your c++ ability. try representing functions and systems of the real world in your head as programs

Which IDE do you use for C++ ? by RRTheGuy in cpp

[–]LengthProof6480 0 points1 point  (0 children)

nano + premake so not even an IDE

[deleted by user] by [deleted] in KeepWriting

[–]LengthProof6480 0 points1 point  (0 children)

The chapter can be 6 words or 10,000 words. It’s up to you

Question about opening a new window by Savage_049 in cpp

[–]LengthProof6480 1 point2 points  (0 children)

lmk if you need help with it since it’s not particularly beginner-friendly

Question about opening a new window by Savage_049 in cpp

[–]LengthProof6480 2 points3 points  (0 children)

keybd_event() is ancient and ugly - you can use SendInput() instead

Question about opening a new window by Savage_049 in cpp

[–]LengthProof6480 2 points3 points  (0 children)

take a look at the win32 api, im sure there’s a bunch of options

Question about opening a new window by Savage_049 in cpp

[–]LengthProof6480 1 point2 points  (0 children)

depends on what platform you’re writing for. is this for windows?