How to Maximize the Efficiency of a Digital User Interface
The binary number system is a base 2 number system that uses only the numerals 0 and 1 to represent “off” and “on”, respectively. So, in decimal, the number 1 is 0001 in binary, 2 is 0010 in binary, 3 is 0011 in binary, 4 is 0100 in binary, and so on. The decimal equivalent […]
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 […]
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(); // […]
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 […]
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 […]
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” […]
Stay Alert and Get Stuff Done with These Productivity Tools
Stay Alert and Get Stuff Done with These Productivity Tools The human body is only capable of so much. You may have found yourself staring at your computer screen for hours on end, not really able to get anything done. I’ve been there, and it’s a place you don’t want to be. To help you […]
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 […]
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. […]
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 […]
