How To Install WordPress in Windows

WordPress is a popular, open-source content management system (CMS) allowing users to create, edit, and manage websites and blogs quickly. WordPress is known for its user-friendly interface, extensive customization options, and vast plugins and themes, enabling users to add functionality and design elements to their websites without needing extensive coding knowledge. The platform is used for various websites, including personal blogs, business websites, e-commerce sites, online portfolios, and more. There are two main versions of WordPress: ...

February 8, 2022 · 3 min · Chris Achinga

Reading Data From Files Using Python

Hi There! Welcome to Data 101. In this article, I will take you through reading files using Python as you prepare to analyze them. I will be using Google’s Colaboratory tool as my IDE. You don’t have to install or set up anything on your laptop/computer to use it, simply go to https://research.google.com/colaboratory/ and create a new notebook. Reading CSV Files You’ll need to upload a data file. To do so, click on the folder icon on the far left of the Notebook: ...

October 5, 2021 · 2 min · Chris Achinga

GitHub REST API

Most of us use GitHub services frequently if not on a daily basis. If you are a student, GitHub offers student packages with great tools and freebies you could use. Check my article on Github’s Developer Pack for students. In this article, I will take you through using GitHub REST API to display your repos on your portfolio website. I will use postman to test the API. GitHub REST API Documentation. Playing With The API I’ll use postman to show you what the API can offer for your own personal use. For this, I’ll be using the endpoint to fetch a user’s repositories. ...

July 15, 2021 · 3 min · Chris Achinga

C#(Dotnet) Setup in Ubuntu with VSCode

C# is a general-purpose, multi-paradigm programming language encompassing static typing, strong typing, lexically scoped, imperative, declarative, functional, generic, object-oriented, and component-oriented programming disciplines. In this article, I will take you through installing and setting up C#(c-sharp) environment on a Ubuntu OS(Operating System). Requirements: Ubuntu OS (20.0 and above) Internet Connection (For Installation) Command Line Skills (for the obvious LOL) Visual Studio Code Note that .NET is a C# library Installing .NET (Csharp) Start your terminal on Ubuntu; ...

June 18, 2021 · 2 min · Chris Achinga

Using Markdown In Hashnode: Beginners Guide

@Hashnode is by far my best Developer blogging platform. One of the things making me love it is the use of markdown in writing and editing articles. If you just created a @Hashnode blog or thinking of creating one, then this is the best article for you. In few words, I will demonstrate how you can use markdown to create your articles. Join Hashnode Markdown, what is it? 👀 Markdown is a very simple mark-up language using plain text. (very simple 😁😁) ...

June 11, 2021 · 3 min · Chris Achinga

10 Developer YouTube Channels You Should Visit

Learning never ends, especially for developers. That is why we have a lot of people who have sacrificed a lot to create great content for the developers’ ecosystem. In as much as most content can be gotten for free, we should be aware of vague content and/or resources that will make you think twice about your career. I have made a list of 10 developer channels that I highly recommend if you’d love to learn and keep yourself updated. ...

June 6, 2021 · 3 min · Chris Achinga

How To Display JSON data on an HTML page using Vanilla JavaScript

This is a hands-on code tutorial on how to fetch data using plain JavaScript and Displaying data on a simple HTML web page. When creating websites, there is a possibility that you’ll be getting data from an API. The data is in JSON, in most cases. How do I display the JSON is my HTML page using vanilla JS? Let’s do that in a few steps. JS has a built-in function called .fetch() that is used to ‘fetch’ data from external files or resources. ...

May 28, 2021 · 5 min · Chris Achinga

Great Podcasts for Developers

As Spotify says, “Listening is everything”. That’s it, after watching tutorials and reading articles, it’s a perfect chill zone to be on your headphones and listen to some developers talk on various topics. This is my playlist on my podcast library, it may help you keep up with all the daily updates on the dev zone… The StackOverflow Podcast It’s one of the most trusted podcasts trusted by developers worldwide. ...

May 16, 2021 · 3 min · Chris Achinga

Getting Started With strapi

Using Strapi https://strapi.io/ What is Strapi Strapi is a headless CMS A headless content management system, or headless CMS, is a back-end-only content management system that acts primarily as a content repository. A headless CMS makes content accessible via an API for display on any device, without a built-in front-end or presentation layer A list of headless cms - https://jamstack.org/headless-cms/ Creating a simple blog CMS with strapi Setup strapi project: Requirements Need to have nodejs(Version 10 and above) and npm. ...

May 10, 2021 · 4 min · Chris Achinga

5 JavaScript Console Methods you should Know

All web developers are probably familiar with using the web console as their debugging tool. The most common way is using the famous console.log tool that JavaScript provides. The console has more than just the .log() method that could be helpful. Check out some of the methods you could use: 1. console.log() This is the most used method of all It outputs messages to the web console. The message may be of any data type. can also pass in variables and functions as parameters. ...

April 29, 2021 · 2 min · Chris Achinga