This post is by a banned member (hackerman999) - Unhide
OP 30 December, 2020 - 08:46 PM
Reply
Why doesn't anyone write the account checker in C? I think in checkers the performance is essential, but most of the checkers are still in python
and Is it even worth it for me to write account checker in C?
have a good day gentlemen
This post is by a banned member (imber) - Unhide
31 December, 2020 - 02:40 AM
Reply
Most people don't want to go through the effort of writing a checker in C that they won't use as much, not to mention C is hard to wrap your head around for some people. If you want to write a robust code base for checking, hell go for it.
But does your use-case justify it enough?
This post is by a banned member (GetRichOrDieTrying) - Unhide
31 December, 2020 - 04:12 AM
Reply
Well, this question has a simple answer. Python has many libraries which make coding easier. But C on the other hand has a lot less than Python. Probably because including libraries is way harder and coding complex libraries is very time consuming in low level languages such as C.
This post is by a banned member (hackerman999) - Unhide
OP 31 December, 2020 - 10:50 AM
Reply
(31 December, 2020 - 04:12 AM)GetRichOrDieTrying Wrote: Show MoreWell, this question has a simple answer. Python has many libraries which make coding easier. But C on the other hand has a lot less than Python. Probably because including libraries is way harder and coding complex libraries is very time consuming in low level languages such as C.
Yes, i know. Python sacrifices the speed of the program whereas C sacrifices development time. in this instance performance is the key. so are people just lazy and stupid to code performance dependent program in python or there is other reason... cuz development time really doesn't matter in this instance
This post is by a banned member (imber) - Unhide
31 December, 2020 - 02:35 PM
Reply
(31 December, 2020 - 10:50 AM)hackerman999 Wrote: Show More (31 December, 2020 - 04:12 AM)GetRichOrDieTrying Wrote: Show MoreWell, this question has a simple answer. Python has many libraries which make coding easier. But C on the other hand has a lot less than Python. Probably because including libraries is way harder and coding complex libraries is very time consuming in low level languages such as C.
Yes, i know. Python sacrifices the speed of the program whereas C sacrifices development time. in this instance performance is the key. so are people just lazy and stupid to code performance dependent program in python or there is other reason... cuz development time really doesn't matter in this instance
Surely dev time always matters, you don't want to be spending 3-6 months making a checker when it could be done in 1-2 weeks...
This post is by a banned member (hackerman999) - Unhide
OP 01 January, 2021 - 12:01 AM
Reply
(31 December, 2020 - 02:35 PM)imber Wrote: Show More (31 December, 2020 - 10:50 AM)hackerman999 Wrote: Show More (31 December, 2020 - 04:12 AM)GetRichOrDieTrying Wrote: Show MoreWell, this question has a simple answer. Python has many libraries which make coding easier. But C on the other hand has a lot less than Python. Probably because including libraries is way harder and coding complex libraries is very time consuming in low level languages such as C.
Yes, i know. Python sacrifices the speed of the program whereas C sacrifices development time. in this instance performance is the key. so are people just lazy and stupid to code performance dependent program in python or there is other reason... cuz development time really doesn't matter in this instance
Surely dev time always matters, you don't want to be spending 3-6 months making a checker when it could be done in 1-2 weeks...
well yes. but you have to be fucking stupid, for it to take 6 months. if it takes 3-6 months you might as well become a wordpress "developer"
This post is by a banned member (LenoreBeadsman) - Unhide
01 January, 2021 - 03:52 PM
(This post was last modified: 01 January, 2021 - 03:53 PM by LenoreBeadsman.)
Reply
(01 January, 2021 - 12:01 AM)hackerman999 Wrote: Show More (31 December, 2020 - 02:35 PM)imber Wrote: Show More (31 December, 2020 - 10:50 AM)hackerman999 Wrote: Show MoreYes, i know. Python sacrifices the speed of the program whereas C sacrifices development time. in this instance performance is the key. so are people just lazy and stupid to code performance dependent program in python or there is other reason... cuz development time really doesn't matter in this instance
Surely dev time always matters, you don't want to be spending 3-6 months making a checker when it could be done in 1-2 weeks...
well yes. but you have to be fucking stupid, for it to take 6 months. if it takes 3-6 months you might as well become a wordpress "developer"
Can see it happening with multi-module checkers with obfuscation.
This post is by a banned member (TheDebianGuy) - Unhide
10 January, 2021 - 02:28 PM
Reply
Checkers are being written in python and c# because the people who write checkers are not so skilled or are lazy to build own library for something like WebClient.DownloadString() (which is in c#). Web scraping in c/c++ is pain in the ass, however you could use some system calls or tools like curl or wget to download the webpage content, but then comes the data filtering and again simple thing like split() isn't in these low level languages (anyways you could just copy code from stackoverflow). The main point is that c/c++ has alot better performance, but when 90% of the code are network requests it doesnt matter at all.
|