back
user profile
AlexeyBrin
11,535karma·1,345submissions·January 25, 2013
recent activity (1,345 total)
comment
Can you give some suggestions of good articles/books about de-warpping live video from a fisheye camera, sounds fascinating. Thanks.
comment
I think pikuma.com has a course about implementing a 3D rasterizer from scratch in C.
comment
The soon to be released VisionFive 2 board seems like a good match https://www.starfivetech.com/en/site/boards …
comment
C++ is not a superset of C, there are plenty of legal C constructs that will trigger errors when compiled with a C++ compiler.
comment
Depends on your style of learning, but most people learn best by implementing something in a new language. Here are a few examples: a Brainfuck interpreter, a raytracer, even command line tools like l…
comment
A possible approach for restricted books - put them on a machine (or VM) that can be remotely accessed by all your team members and allocate time slices for potential readers. Instead of borrowing the…
comment
Hands-On Network Programming with C by Lewis Van Winkle is a really good intro book for network programming with C.
comment
I found the first book in a second hand shop a few years ago, but unfortunately it didn't came with the diskette. Any change you can upload the code from the diskette somewhere or point me to whe…
comment
"Learn to program" by Chris Pine https://pragprog.com/titles/ltp3/learn-to-program-third-edit... is a good book for beginners.…
comment
Second part of "Crafting Interpreters" shows how to write a bytecode interpreter in C. But the book assumes you know some C.