Just Finished c programming ,Starting C#

shizzledizzleeee

Regular Member
Joined
Jan 3, 2013
Messages
407
Reaction score
83
Hey i have just finished learning c programming language i want to make http web bots multithreaded with c# what are some of things i should know ? i have seen few things on stack overflow like httpwebrequest response request what else should i focus on to be successful on bot programming?
 
Hi shizzledizzleeee, I'd like to give some opinions.

If this is the first time you experiment with programming I'd start off with a language that is a little bit higher-level than C. I'd recommend Python which will get you going much faster.
By bots I assume you mean social media bots, right? Roughly there are two stages in the SM bot biz; making them and controlling them.
The hard part would be to make them, since SM sites will do everything in their power to stop you.
Once you've made and organized them it will be 'easy' to control them, and make them do what you want (like, follow, etc.).

I won't go into any more detail since this is actually pretty advanced stuff, but here's one useful library you should check out: cURL.

Sincerely,
Grozzy
 
Depends if you want to sell the bots or not. If you want to sell them go with c#. If you found c++ ok you'll find c# easy :-)
 
Hi shizzledizzleeee, I'd like to give some opinions.

If this is the first time you experiment with programming I'd start off with a language that is a little bit higher-level than C. I'd recommend Python which will get you going much faster.
By bots I assume you mean social media bots, right? Roughly there are two stages in the SM bot biz; making them and controlling them.
The hard part would be to make them, since SM sites will do everything in their power to stop you.
Once you've made and organized them it will be 'easy' to control them, and make them do what you want (like, follow, etc.).

I won't go into any more detail since this is actually pretty advanced stuff, but here's one useful library you should check out: cURL.

Sincerely,
Grozzy
Thanks for the tip , i cant see your url - cURL.
 
Thanks for the tip , i cant see your url - cURL.
That's because I didn't send an URL ;)
cURL is a library used in many languages and basically lets you programmatically act as a web client, making HTTP requests easier.
You'll have to Google and research to learn more.
 
That's because I didn't send an URL ;)
cURL is a library used in many languages and basically lets you programmatically act as a web client, making HTTP requests easier.
You'll have to Google and research to learn more.
Thanks man
 
Becoming thorough with the C programming basic concepts, can help you to step in forward learning more advanced languages. Even you can switch towards learning C sharp programming from scratch.
 
C# has very useful libraries for http requests - async HttpClient - as reequest should be made with async way. If you want made bots for nonjs sites you can use than htmlagilitypack to parse, if you want to parse all pages than you should use browser library: geckofx, awesomium etc
 
  • Like
Reactions: Toz
If you are thorough with the basic C programming concepts, then there's no issue to step in learning C sharp programming. C # programming language depends on the concepts used in C language.
 
Back
Top