Skip to content

A collection of random notes so I don't forget stuff! :)

Notifications You must be signed in to change notification settings

Fasermaler/coding-notes

Repository files navigation

Coding Notes / Miscellaneous Documentation

Just a collection of random notes because I tend to forget things.


If you like my stuff, I would humbly ask you to drop a star.

Thank you!

Author's Note

I'm unlikely to ever fully cover basics such as C++, Java and etc because I feel that other sites and resources cover them better. For instance, Learn C++ is an excellent site for learning C++ and any attempts by myself to document it would be extremely lengthy and would not do it any justice. If you'd like a python reference, the Digital World Python Cheatsheet might serve as such.

Some documentation might just be notes and troubleshooting methods that I have had to use in the past when dealing with frameworks and thus might not be beginner-centric.

Additional resources to learn these things and more can be found in Additional Materials and Resources

Current Documentation File Tree

Additional Materials

go to top

  • C

    • Book: Computer Systems: A Programmer's Perspective
      • Essential reading for any programmer as it touches on how computer systems actually work and how software can be made more efficient or robust by knowing the underlying systems (software or hardware)
    • Book: Programming in ANSI C
      • Excellent no-frill reference that goes into great detail into the basics as well as intricacies of programming in C.
  • C++

    • Website: Learn C++
    • Thorough step-by-step, topical walk-through of all the major components of C++ programming. Also has lots of pointers for good practices when writing code
    • Website: Codecademy C++
      • Interactive online course to get you started immediately on C++ basics. The good part is that it reduces the initial barrier towards learning C++ as it runs directly on browser.
  • Python

    • Book: Learn Python the Hard Way
      • Learn python the hard way is an excellent book that puts the reader through a myriad of exercises to learn and write python code properly, instilling good coding practices early.
    • Website: Codecademy Python
      • Usually the go-to course for anyone trying to pick up python for the first time. It allows you to get right into the basics in your browser - no frills.
  • OpenCV - Python

    • pyimagesearch
      • Great all around reference with plenty of example code and use cases
      • Has an email openCV course that is actually not garbage
  • Keras

    • Book: Deep Learning with Python
      • This book is literally written by the creator of Keras. It is a (relatively) fast read that goes through Keras functionality through examples as well as explaining Deep Learning concepts from the ground up.

Useful Repositories

  • rlcode
    • Lots of repositories on reinforcement learning and DQNs
    • Plenty of minimal code that can serve as building blocks
    • This person basically lives, breathes and eats reinforcement learning
  • TheAlgorithms
    • Lots of implementations for many many different types of algorithms in all languages
    • A good reference
  • AtsushiSakai's Python Robotics
    • Huge repository of Python implementations of well known robotics algorithms
    • Includes visualizations as well

To-Do

One day, I'll get around to doing these.

  • Gazebo 7 for ROS Kinetic
  • EMACS
  • Basic and advanced Bash + Regex