Pandas Eating Bamboo is sooooooo cute… Pandas are very fascinating animals, there are so many interesting facts about them. Though they appear harmless the Red Panda is a carnivore that eats birds, eggs and small animals. Here are some of the most intriguing panda facts

Pandas Eating Bamboo is sooooooo cute Pandas are very fascinating animals, there are so many interesting facts about them. Though they appear harmless the Red Panda is a carnivore that eats birds, eggs and small animals. Here are some of the most intriguing panda facts: a blog about fascinating facts about pandas. Giant pandas have […]

Read Full Article β†’

Python Exit Program – Making You Exit the Program Okay

Python Exit Program – Making You Exit the Program Okay: A blog around exit codes in python. You’re writing a script and want to make sure it exits cleanly with the correct exit code. Natively, python does not have great support for this but there are a number of libraries out there that can help […]

Read Full Article β†’

5 Things You Should Know before you Beautify your code

Before you run your code through the beautifier, there are a few things you should consider. First, you need to know what programming language you’re using. This might sound obvious, but it’s important to make sure that the language of your code is supported by the beautifier. There are many different languages that can be […]

Read Full Article β†’

Advanced Machine Learning Techniques for Coders Image classification with transfer learning

This classifier is the workhorse of many AI and ML applications. It takes an image, analyzes its content and classifies it into different classes (e.g. Dog, Cat, Banana). In this article I’ll show you how to create your own image classifier using Google’s Cloud AutoML platform and a python library called turicreate. If you want […]

Read Full Article β†’

vscode ssh – vscode ssh tunnel via ssh

VSCode SSH With VSCode SSH, you can directly ssh to remote servers. This means you can use the editor on your local machine and run processes on the remote server. It’s like a GUI SSH client that runs inside vscode. Requirements: – Windows 7 / Windows 2008 R2 or later (should work on Win7, but […]

Read Full Article β†’

What You Should Know Before Getting Started With Python Each of the languages has its own nuances.

What You Should Know Before Getting Started With Python Each of the languages has its own nuances. Python is an interpreted language, meaning that it acts as a virtual machine, emulating a physical computer. For this reason, Python is platform-independent. The same code can run on any computer, regardless of architecture or operating system. Each […]

Read Full Article β†’

A Step By Step Guide To Using the Github API

A Step By Step Guide To Using the Github API: A blog about the basics of using the Github API. Github allows you to pull data from their site, and the GitHub API makes it relatively simple to do so. The GitHub API is a RESTful interface that lets you access data on thousands of […]

Read Full Article β†’

When and How to Use AND and OR to your Advantage

When and How to Use AND and OR to your Advantage: A blog on improving your coding skills. AND is a logical operator, meaning that it can only be used with boolean statements. It returns true if both of the statements are true and returns false otherwise. Let’s look at the following example: if (age […]

Read Full Article β†’

Latex basics and Why you should know them ?

Latex code: %&LaTeX \documentclass[11pt,a4paper]{article} \usepackage[utf8]{inputenc} \usepackage[english]{babel} \usepackage[T1]{fontenc} \usepackage{amsmath, amsthm, amssymb} \author{John Doe} \begin{document} \title{\LaTeX } \maketitle \tableofcontents \section{Introduction to $\LaTeX$ } $\LaTeX$ is a markup language. It’s used to write academic papers in computer science and math. It’s a powerful tool for writing documents with mathematical formulas. \section{Why should I learn it ?} Learning \LaTeX […]

Read Full Article β†’