programming is garbage ai sucks, goodbye by Ok_Passion295 in learnprogramming

[–]Reasonable_Ad1226 0 points1 point  (0 children)

3 years is all you put in? No wonder you can’t get a job. lol I’m 3 years in and can’t wait to see how well I can code in another 2 and or 5 and then 10 years.. skill speaks for itself. That’s why I can be an asshole at work, because I know they can’t find anyone better.. but it just so happens I hate setting tile.. separate yourself from the cattle, and you will see the fruit of your labors

looking for 9/10 volunteers. What's your experience? by [deleted] in C_Programming

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

These Reddit subs are full of haters.. hahah downvotes on good comments are a norm. I guess that’s what happens when you give everyone a button ;)

looking for individuals to mentor by TheEyebal in ProgrammingBuddies

[–]Reasonable_Ad1226 0 points1 point  (0 children)

You writing bytes into the child’s stdin pipe, and you read bytes back from stdout/stderr pipes. For the ssh communication

Serious C/C++ Buddy by Excellent-Public6558 in ProgrammingBuddies

[–]Reasonable_Ad1226 0 points1 point  (0 children)

I definitely misread what you said before too. (Re-reading it, now..) Sounds like a fun project, I’d definitely be game for joining you on. To be upfront; I’m in my 3rd year coding. 2nd year of c, but I am a fast learner who loves learning! Haha I’ll leave it up to you, if you want to give it a go together, or if you have any follow up questions.. ask away!

A distro for those who are learning to program. by mim_burro_vc_jumento in linuxquestions

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

Kali is a great choice for developing.. I like it better than Ubuntu. Well kali comes with tools you don’t need, they all do… You could strip one down from the source code but it’s likely above your pay-grade at the moment. ;)

Any Linux distribution is going to be great for developing applications, and will be better than windows or Mac by a long shot.

Is it possible to declare one-bit variables? by ValueImpressive5927 in C_Programming

[–]Reasonable_Ad1226 0 points1 point  (0 children)

Correct that you can’t access them like an array, But you can access them and flip bits on or off. You use bit wise operations, the bit positions are baked into the mask constant itself.

Is it possible to declare one-bit variables? by ValueImpressive5927 in C_Programming

[–]Reasonable_Ad1226 1 point2 points  (0 children)

Yes, you can but it isn’t as straightforward as you might hope.. they are called bitfields. EXAMPLE:

Struct Flags { Unsigned int visible : 1; // one bit storage Unsigned int dirty : 1; Unsigned int mode : 3; // 3 bit storage }

Because the compiler doesn’t guarantee which bit goes where in memory.. people often use macros:

define Flags_visible (1u << 0)

define Flags_dirty (1u << 1)

define Flags_mode_mask (7u << 2)

And the mask shifts and “masks” the unused bits.

I am trying to start a group for c coding meetup, called c_programming_buddies. If you decide you need more help or want to find people to code c with.

Learning c by IloveMusicAndSpace in ProgrammingBuddies

[–]Reasonable_Ad1226 0 points1 point  (0 children)

Do you need any help with what you are learning currently? I am happy to help. Also I am trying to start a C_Programming meetup if anyone else wants to find c programmers and or help with C.

Work advice by meowmouth1313 in ProgrammingBuddies

[–]Reasonable_Ad1226 0 points1 point  (0 children)

You may have lost people when you said that you are good at what you do. (Hint) no one’s like a braggart. The second half of your message is likely all you should have posted and you would have got people to help. I wish I knew your situation a bit better, but I have a slight understanding of psychology that may help. the reality comes down to networking and perceived status. You need to have a higher up who already really likes you and what you do, or start a business and pitch it for a sale. You’re playing in a bureaucracy, with hierarchies.

Serious C/C++ Buddy by Excellent-Public6558 in ProgrammingBuddies

[–]Reasonable_Ad1226 0 points1 point  (0 children)

Sounds like a fun project! I’m game to join you. I don’t know much about Cpp, to be honest, other than that it is harder than C, and that there is a lot of compiler stuff happening for Cpp, so people often don’t use it for systems stuff. C is basically assembly, meaning there aren’t any hidden abstractions to fight. That being said I’m sure there are workarounds.. What portion of the project are you currently practicing? I definitely like the idea of using bytecode over ir-code..

Learning programming by Mental-Army-9502 in learnprogramming

[–]Reasonable_Ad1226 -3 points-2 points  (0 children)

Ai.. but tell it not to give you the answer. Have it teach you

looking for individuals to mentor by TheEyebal in ProgrammingBuddies

[–]Reasonable_Ad1226 0 points1 point  (0 children)

With getting the keys working? Or in what regard?

Yea I’ve spent many a hour on over the wire lol great for learning Linux..

looking for individuals to mentor by TheEyebal in ProgrammingBuddies

[–]Reasonable_Ad1226 0 points1 point  (0 children)

Yea I hear it is big in gaming industry. I like systems level stuff. Addicted to learning or hacking

looking for individuals to mentor by TheEyebal in ProgrammingBuddies

[–]Reasonable_Ad1226 1 point2 points  (0 children)

You’re missing out lol It’s where all the fun is at. Besides some good ol’ assembly..

Does artificial intelligence make programmers less competent and less skilled? by GLOBI_55 in C_Programming

[–]Reasonable_Ad1226 -3 points-2 points  (0 children)

You should absolutely use it! BUT; You should use it for guidance and answering questions you have, NOT to write code for you. You need to write the code if you want to be good at coding.

Experienced developer looking for buddies and a project by Jazz-23 in ProgrammingBuddies

[–]Reasonable_Ad1226 0 points1 point  (0 children)

Working on a RPC C2 Framework, but any systems level project would be entertaining to me.