Posts
If you've made it this far, consider checking out my channel for video versions of these blogs/projects. YouTube
To work with us on upcoming projects:
- follow up with the recent blogs / youtube (project)
- learn about our current projects by dropping a mail
- mail your skills, interests & GitHub id
mail : qxresearch20@gmail.com
youtube : youtube/qxresearch
Computational Thinking Python
Let's learn python and start to think like a programmer. This course seeks to offer students an awareness of the role computing may play in problem solving and to let students, regardless of major, feel justified in their ability to develop simple programs that enable them to accomplish their goals. We'll start with the basics of python and dive deep into core concepts of python along with solving LeetCode problems.Read More →
Can computers generate truly random numbers?
Yes, but not using math.random or random() module. Can we prove it? Yes. To demonstrate how the numbers are not truly random, I undertook few experiments. These numbers are generated by pseudorandom number generator (PRNG), which is a technique for creating data that appears random but is nevertheless repeatable.Read More →
Visualizing unsolved problems in mathematics (python)
Scientists have always questioned anything that cannot be described or understood with the naked eye. One of the most contentious issues, "is there God" has also been proven by logic. However, there are some mathematical problems that remains unsolved.Read More →
Looking behind codes. Let's see how it works. Rational?
The most fundamental and curious nature of the brain is to ask questions. Some are relevant, and some are just useless. To justify this statement, one can introspect their search history. The difference between an ordinary person and a great person lies in the degree of their questioning skills. For example, philanthropists have questioned what we've taken for granted. As a Computer Science student, I asked myself about these.Read More →
Getting started with MySQL
Data is useful as long as we've control over storing, reading, updating and deleting it as per our needs. MySQL is a Database Management System which allows us to use the CRUD(create, read, update, and delete) method.Read More →