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 + […]
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 […]
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: […]
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 […]
Need to hire a programmer? Hereβs How to Find and Hire the Best One
Here are a few tips to help you find and hire the best programmers for your projects. They don’t need to be full-time employees. If youβre looking for an all-star programmer, you donβt need to hire them full-time. Your company may not have enough work to support a full-time position. Or, maybe you need a […]
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 […]
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 […]
The Complete Python 3 Bootcamp Tutorial For Beginners – Learn Python in One Day
This is the best Python course available online and it’s designed for people who are looking to learn how to program using Python. This is not a tutorial but it’s a complete course to master Python 3. In this course you’ll learn how to install Python 3 and also you will learn how to use […]
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, […]
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 […]
