How to Write a Palindrome Using Java

import java.util.Scanner; public class Palindrome { public static void main(String[] args) { Scanner in = new Scanner(System.in); System.out.print(“Enter a word to check whether it is a palindrome or not: “); String word = in.nextLine(); int length = word.length(); int i, begin, end, middle; begin = 0; end = length – 1; middle = (begin + […]

Read Full Article β†’

Five Steps to Save The Leap Second in 2016

The world is in a battle over the leap second. The leap second is a little extra second added to Coordinated Universal Time (UTC) as needed to keep clocks in sync with the Earth’s rotation. Every few years, there is a proposal before the International Telecommunications Union Radiocommunication Sector (ITU-R) to abolish the leap second […]

Read Full Article β†’

How To Become A Software Engineer

To become a software engineer is not easy. You have to go through many phases to achieve your career goal. Below are some of the phases you will go through. 1. Start Programming: Learn how to program in any language. 2. Software Engineering: Learn software engineering and computer science basics. 3. Data Structures & Algorithms: […]

Read Full Article β†’

why code 2?

Why Code 2? There are far more programming languages in the world than most people realize. The vast majority of them are just variations on other languages, or are only appropriate for very narrow use cases. As an aspiring programmer, you can ignore nearly all of them. After nearly two decades of teaching and research […]

Read Full Article β†’

honeycode at Github

honeycode at Github: A blog on github with code samples. I will be posting a series of articles highlighting all the useful things that can be done using Google Spreadsheets and its Apps Script. This site contains all the code samples used in the articles, and is made available under the GNU Affero General Public […]

Read Full Article β†’

The best ways to unminify CSS

The best ways to unminify CSS: a blog about how to speed up your website by compressing your css. The best ways to unminify CSS: a blog about how to speed up your website by compressing your css. The best ways to unminify CSS: a blog about how to speed up your website by compressing […]

Read Full Article β†’

How To Build a C

We all want to build a compiler, at least once in our lifetime. I am here to tell you that it is not very hard to do so. All you need is a bit of time, some determination and the C C: How to Program, 7/e introduces the fundamentals of C Programming for a beginner, […]

Read Full Article β†’

Introducing Python support in Visual Studio Code

Today we are announcing the general availability of Python support in Visual Studio Code, as announced at Microsoft Connect(); this follows our preliminary release last month. Visual Studio Code’s code editing features are constantly getting better with each monthly release. We’ve received a lot of great feedback from the Python community and know that Python […]

Read Full Article β†’