|
You are here |
ceronman.com | ||
| | | | |
3.70.187.24
|
|
| | | | | [AI summary] The article compares Python and C by implementing simple socket communication examples in both languages, highlighting their strengths and use cases. | |
| | | | |
atilaoncode.blog
|
|
| | | | | I'll lead with a file: // stdlib.dpp #include #include void main() { printf("Hello world\n".ptr); enum numInts = 4; auto ints = cast(int*) malloc(int.sizeof * numInts); scope(exit) free(ints); foreach(int i; 0 .. numInts) { ints[i] = i; printf("ints[%d]: %d ".ptr, i, ints[i]); } printf("\n".ptr); } The keen eye will notice that, except for the... | |
| | | | |
niemczuk.tech
|
|
| | | | | Everyone should be familiar with the concept of brute forcing. In short it is an action of trying every possible combination till succeeding. Most often used in password hacking / hash guessing. | |
| | | | |
cardinalguzman.wordpress.com
|
|
| | | Encyclopedia Miscellaneous - 'quality' blogging since August 2011 | ||