Perhaps you’ve typed in a grep command that wasn’t well thought out. Here is how to exit grep and get your terminal to respond again. Make sure the terminal window is active and press the following keys to exit grep and cancel the current command: ctrl + c This gets you back to : and …
Author Archives: Gaspy
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 …
Continue reading “How to use grep in a terminal to find a string in files”
Basic Terminal commands
A terminal is used to communicate commands to your computer. It’s the most basic form of telling it what to do. Practically, when you use a mouse to click on a file to open it, this is simply a Graphic User Interface (GUI) that converts that action into a terminal command in the background. In …
What is Git?
Git helps you synchronize and track changes to a folder with its subfolders. A website is basically a folder on a server somewhere. In the folder are subfolders, images, text documents, databases and such. Git makes it possible to synchronize the content of the folders, take a portion out to fiddle with, and then merge …
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 …
Continue reading “Changing the basic url link address on a WordPress website”
What is the best url slug structure for a website?
In the end, a website is like a living creature. Perhaps like a tree or shrub growing in a well-tended garden. It needs pruning and care, and how you do it depends on what you want to get as a result. Example with the FreshAngle.eu website On this website, I hope to have several points …
Continue reading “What is the best url slug structure for a website?”
Passwords and log-ins developers need
One of the most confusing things of starting off as a developer is the mind-boggling amount of logins and passwords you need to work. The term “google” means lots and lots, and it seems a developer needs about one or two google passwords… It’s largely due to the decentralized nature of the internet. There isn’t …
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 …
Continue reading “Setting Local up for my own WordPress website”
Basic tools to start web development
Just started a website and eager to make it look and work better? Here is the first set of tools you’ll need to start digging through the spaghetti of code that’s hidden behind the back-office interface. The browser I’ve got four that I use for normal work: Firefox, Chrome, Opera, and Tor. I like Firefox …
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 …
Continue reading “Which software is best for a local development server?”