AskMeCode
The Journal
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 […]
What is figma to html and How Can it Help Me? A blog around the new figma to html technology.
What is figma to html and How Can it Help Me? A blog around the new figma to html technology. It’s been around for a while, but few people know exactly what it is. What if we could create web designs from our favorite design tool? With figma to html, now we can! In a […]
Create a Social App for free! prismjs is your easy to use and free social chat plugin
prismjs is your easy to use and free social chat plugin: A blog about how you can use this wonderful open source software by using it in your current or future project. If you want to create a social app for free, you can use prismjs to help you. Prismjs is an open source software […]
5 Easy Ways To Become A Better Programmer in 2017
5 Easy Ways To Become A Better Programmer in 2017 1. Read more code Human beings are terrible at reading code. There is way too much of it, it’s generally not very well commented, and there is a lot of “technical debt” to wade through. As a result, we tend to just skip over the […]
What is your first impression when you come across ssh a connection protocol? Apart from the port numbers and computer programs, this connection protocol has a number of good features.
The first impression you get when you come across ssh is that it has been developed by a computer programmer. It is a connection protocol that allows you to connect to any machine through the internet. The problem with using ssh is the lack of security. This means that if your computer gets hacked you […]