Open Source Software

Open-source software (OSS) is a type of computer software in which source code is released under a license in which the copyright holder grants users the rights to study, change, and distribute the software to anyone and for any purpose.Open-source software may be developed in a collaborative public manner.

View details »

Competitive Coding

Competitive programming is a mind sport usually held over the Internet or a local network, involving participants trying to program according to provided specifications. Contestants are referred to as sport programmers. Competitive programming is recognized and supported by several multinational software and Internet companies, such as Google and Facebook.

View details »

Real world projects

Technically, a project is a short-term endeavor to create a unique product or service. In practical terms, it is an assignment or undertaking to create a deliverable that satisfies the mission of the project customers. A project is a set of activities to create something that is outside of your day-to-day operations

View details »


A.I. is far more dangerous than nukes. It’ll blow your mind.

et it be said, we’ve been warned. Remember back in March of 2018, when a younger Elon Musk addressed a crowd at SXSW by stating, “Mark my words—AI is far more dangerous than nukes.” SEE ALSO: How a New AI Breakthrough Could Undermine the Financial Industry Yes, a more youthful Musk, even went so far as to call those who push back against his warnings “fools,” being they don’t have insight or oversight that everyone is safely developing artificial intelligence (AI), particularly when it comes to weapons. True. We can’t even confirm the complete safety that a hacked light bulb connected to the Wi-Fi might lead to your bank account being drained, let alone what catastrophic scenarios might implode with this generation of autonomous weapons that go by the moniker: killer robots. Yes, killer robots. Just another thing to put on the worry list of your daily existence.


Footprinting. See for yourself.

Mainstream competitiveness and international development analyses pay little attention to the significance of a country’s resource security for its economic performance. Data used for the analysis stem from Global Footprint Network’s 2018 edition of its National Footprint and Biocapacity Accounts. This analysis is then contrasted with a financial assessment of those countries. The juxtaposition reveals a paradox: Financial assessments seem to contradict assessments based on biophysical trends. The paper offers a way to reconcile this paradox, which also elevates the significance of biophysical country assessments for shaping successful economic policies.


Asynchronous Programming in Python: A Walkthrough

When we talk about program execution, “asynchronous” means that the program doesn’t wait for a particular process to complete, but carries on regardless. An example of asynchronous programming is a program writing to a log file: Although it’s possible it might fail , most times it doesn’t, and you can write your program to call the log routines asynchronously. Asynchronous execution means the main program runs a little faster. Your logging code should be written so that if it does fill the disk, it just stops logging rather than crashing.

View more... »