Codelybrary
My collection of useful facts and experiences.
I am also active at:
Kaggle
HackerEarth
HackerRank
stackoverflow
Medium
YouTube
GitHub
GeeksforGeeks
Quora
Sunday, April 29, 2018
Digital Circuits: Combinational and Sequential Circuits
Video resources on Digital Circuits:
1. Digital Circuits : IIT Madras Lectures
Programming x86: Assembly Language Programming
Some video resources:
1. x86 programming
2. x86 Architecture
3. Microprocessor 8086
4. x86 in Hindi
Discrete Mathematics: Propositional Logic
Excellent lectures on Propositional logic from IIT Madras
1. Discrete Mathematics : IIT Madras Lectures
Friday, April 13, 2018
Mastering C++ : Advanced piece of Codes in C++
Here are some links to master C++
1. Sanfoundry.com/1000-cpp-algorithms-problems-programming-examples/
2. https://developers.google.com/edu/c++/cpp-in-depth
3. https://www.geeksforgeeks.org/c-tricks-competitive-programming-c-11/
4. C++ : When and Why it is used
5. Github C++ Repository
Start contributing in Open Source projects : Why and how?
Here are the links:
1. How-do-I-start-contributing-in-Open-Source-projects
2. How-do-I-as-a-student-start-contributing-to-open-source
3. SummerOfCodeWithGoogle
4. OpenHatch
5. Mozilla
Skills of a Software Developer
Hi read this :
What-are-the-skills-in-demand-for-software-developers
Thursday, April 12, 2018
All programmers must read this
Hi
Do read this
How-to-think-like-a-programmer
Saturday, April 7, 2018
Best place to learn C++
Best place to learn C++
http://www.cplusplus.com
Good bye OOPs
Some useful insights about OOPs:
Good bye OOPs
The pursuit of status: Avoid chasing the wrong things
Here is something we all need to think upon
the-pursuit-of-status-how-to-avoid-chasing-the-wrong-things
Friday, April 6, 2018
What type of questions are asked by big companies
Here is :
Why-do-big-companies-like-Facebook-Google-etc-ask-unrealistic-programming-questions-not-work-related-in-their-software-engineering-interviews
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)
Machine Learning certification course
A certification course in ML by Code Basics
IT Full Forms
Acronym Full Form AJAX Asynchronous JavaScript and XML API Application Programming Interface APK Android Application Package ASP Activ...
C program : To check whether M is an exact multiple of N
#include<stdio.h> int main() { int M,N,q; scanf("%i %i",&M, &N); if((M%N)!=0) {printf("0...
Interview Tips
"A good company understands that problem solving ability and the ability to learn new things are far more important than knowledge o...