AskMeCode
The Journal
A Guide To Go About Using the vscode java Plugin
The vscode java plugin is a very good plugin to use. It has a lot of features and helps with productivity. It is a bit hard to use at first and requires some skill but once you get the hang of it, it becomes a lot easier to write code. A good IDE can improve […]
Java Classes to Code Better. Visual Java is a comprehensive guide on everything related to the Java programming language and other important concepts such as Object Oriented programming or OOP.
Java Classes to Code Better. Visual Java is a comprehensive guide on everything related to the Java programming language and other important concepts such as Object Oriented programming or OOP. In this book you will learn how to create your own classes, work with primitives and objects and use the built-in classes of Java. If […]
Java is a Family of 8 Programming Languages
Java is a Family of 8 Programming Languages Java is a family of eight programming languages. The Java language used to write Android apps is not the same as the Java that runs on servers. This blog is an informative piece that explains how Java has been used in so many different ways. It’s written […]
What Are The Benefits of Using A Deck Contractor?
The Benefits of Using A Deck Contractor If you have a deck that is in need of some TLC, it is always a good idea to get help from an experienced deck contractor. The last thing you want to do is create more problems than you already have. This is especially true if you are […]
Your Java Programmers Are Here
package com.journaldev.util; public class Palindrome { public static boolean isPalindrome(String str) { if (str == null) return false; StringBuilder strBuilder = new StringBuilder(str); strBuilder.reverse(); return strBuilder.toString().equals(str); } public static void main(String[] args) { System.out.println(“Is aba palindrome? ” + Palindrome.isPalindrome(“aba”)); System.out.println(“Is abc palindrome? ” + Palindrome.isPalindrome(“abc”));}} import java.util.Scanner; public class Palindrome { public static void main(String[] […]
What is Google Blockly? – Our Unique Approach to Code
What is Google Blockly? Google Blockly is a client-side, visual programming editor and language. Here’s a simple example: Blockly provides an interface to write programs without having to know a text-based programming language. Instead of writing lines of code, you can drag blocks together and run your program by pressing the play button. Blockly has […]
GitHub and Technical Writing
GitHub and Technical Writing is a blog about why technical writers need to learn and understand GitHub. Apostle Paul’s Epistles, which are the foundation of today’s Christian theology, were written to the early churches in Rome, Corinth, Galatia, Ephesus, Philippi, Colossae and Thessaloniki. In his epistles Paul is addressing specific issues that were a cause […]
Using Ruby on Rails For Your Next Project
In this tutorial, I will help you to setup a new blog on the Ruby on Rails platform. If you have never used any blogging software before, I hope this will be helpful. If you are an experienced blogger, I hope you’ll learn something new too. I’ve used the Ruby on Rails framework in the […]
Learning to Code, No Matter Your Age
I’ve been a software engineer for over 30 years, and I’m here to tell you, learning to code is hard. Especially if you’re starting from scratch. I mean, we’re talking about completely new concepts that most people have never experienced before. And then, on top of that, there’s the challenge of finding the time. I […]
Smart Decorators Use Three When Creating Code
Walking down the halls of our office, you will hear a lot of conversations about code. We are a team of software engineers that love to talk about technology and share information. In this blog, we will explore the three most effective ways to create clean, maintainable code by using smart decorators. A decorator is […]
Using Sentence Cases to anonymize data
Sentence cases are a good way to anonymize data. It might be useful to anonymize certain pieces of data. If you have a web scraper that you want to give access to your users, it might be a good idea to remove email addresses, phone numbers, and other sensitive information before storing it in the […]
Java Palindrome Program
Java Palindrome Program This Java palindrome program lets the user enter any positive integer and then it will check whether the number is a palindrome or not using the while loop. In this article, I have explained the list of all alphabet pattern programs in c programming language. Here, I have used the while loop […]