How to use grep in a terminal to find a string in files

“grep” is a command you can use in a terminal to find sequences of characters. It can search through entire folders and find matches. If you use the right parameters, it will display all the matches it finds. Before simply typing the command, however, you should know it might need a long time to comb …

Changing the basic url link address on a WordPress website

I just started this website a short while ago and the default URL “slug” is was ugly: I’d expected it to be something much simpler, but that’s not what the default is. It isn’t too difficult to change this, though. Here’s the ideal url slug structure I’m aiming for: language category – /speak/ (no, that’s …

Setting Local up for my own WordPress website

Local is WordPress’s answer to developers seeking to set up a local server on their computer. A local server is needed to perform the server’s tasks when a webpage is called up on the computer’s browser. So since I’ve been going about learning web development all backwards (after tweaking websites with the “inspect mode”, my …

Which software is best for a local development server?

Several different software packages make it possible to open and run a local server on your computer for you to test website development on. XAMPP, MAMP, Wamp, and others are available. Most are free but paying unlocks more features. XAMPP has probably been around for longest. New ones include VVV, which somehow is directly related …

How to set up a git repository between a website server and a local computer?

This are the steps to set up a repository between a website hosted on a server and a folder on your local computer. First, git must be set up on both the server and the local computer On the local computer, it’s easy, I just installed Github and that was it. I had created a …