Brief Tutorial On Factorial Function In Python

Factorial function in python: Factorial of a number is the product of all the integers from 1 to that number. For example the factorial of 6 (denoted as 6!) is 1*2*3*4*5*6 = 720. In general, the factorial of a number is given by n!=n*(n-1)*(n-2)*….3*2*1. The factorial of 1 is 1 and the factorial of 0 […]

Read Full Article β†’

This is an example of a unit test for the palindrome program developed in java.

package palindrome; import org.junit.Test; import static org.junit.Assert.*; /** * Unit test for simple App. */ public class AppTest { /** * Rigourous Test πŸ™‚ */ @Test public void testApp() { assertTrue( true ); } @Test public void isPalindrome() { // Arrange String strInput = “madam”; boolean expectedResult = true; Palindrome objPalindrome = new Palindrome(); // […]

Read Full Article β†’

Best Practices for post-processing of your figma assets

Figma to HTML: Best Practices for Post-Processing of your Figma Assets This article is the first in a series that will cover how to take your assets from Figma and get them ready to be used on the web. I will cover techniques that help you work more efficiently by bringing together the best practices […]

Read Full Article β†’

How to Use vscode remote ssh to Connect to a Remote System from Linux, Windows and Mac

Visual Studio Code Remote SSH: Tips, Tricks and Troubleshooting This blog post is a tutorial on how to use vscode remote ssh to connect to a remote server. It will cover the basic tips, tricks and troubleshooting techniques. I recently started using Visual Studio Code as my IDE for Python programming. One of the best […]

Read Full Article β†’

A Beginner’s Guide to C++

Have you ever felt overwhelmed by learning how to code? Have you ever been confused by all of the jargon that comes with coding? Have you ever been daunted by all of the different programming languages? If so, “A Beginner’s Guide to C++: An introduction and guide for the new programmer starting out with coding” […]

Read Full Article β†’

Best Practices for Code Best Practices

Best Practices for Code Best Practices I’m of the opinion that code is meant to be read by humans. What a crazy thought, right? If you’re writing code, it should be readable, and it should be easy to understand. This is the most important thing. You shouldn’t need to depend on a friend or colleague […]

Read Full Article β†’

Interview with a Craftsman

I’ve been writing Honeycode for four years now. I started this blog as a way of sharing behind-the-scenes information about my career in advertising. My blog has become a place where I enjoy expressing my opinion on topics that interest me, and it’s also allowed me to meet some incredibly talented people in the industry. […]

Read Full Article β†’

What Are My Risk Tolerance And Portfolio Distribution? You Can Find Out With This Python Script

A blog about the customization of the python script A very small percentage of people are risk takers. They dive head first into anything that sounds interesting and they’re thrilled with the thrill of it all. It’s a risky strategy, but if you’re one of those people, you might enjoy the process itself more than […]

Read Full Article β†’