Blog

REST and PHP
Introduction In the previous post we saw what REST services are, along with some examples of how they can be invoked using Postman. In this article, we will see how to create services for basic operations (CRUD: Create, Read, Update, Delete) for ...

Introduction to REST services
What is REST REST, which stands for REpresentational State Transfer, is an established architecture for creating Web APIs. REST services can use the HTTP protocol (as well as other ...

PowerShell examples - 2
PowerShell Script Examples - 2 Displaying a Message Box With PowerShell, it's possible to display information through windows, for example using a message box. With the following ...

PowerShell examples
PowerShell script examples Version To display the PowerShell version installed on the computer, you can use: `$PSVersionTable` Online help The command: `Get-Help` Example: ...

Introduction to PowerShell
What is PowerShell PowerShell is a command-line tool (CLI) for configuring and automating the operating system, its components and other technologies such as SQL Server, Exchange, AWS and Google Cloud. It is cross-platform: available for Windows, Linux and macOS. ...

Comparing database structures
How to Compare Database Structures In the previous article, we saw how to use INFORMATION_SCHEMA to get information about a database's metadata. Now we'll see how to use this tool to ...

Introduction to INFORMATION_SCHEMA
Introduction to INFORMATION_SCHEMA INFORMATION_SCHEMA is a set of standard ANSI views, and as such, we find it both in Microsoft SQL Server and in all other SQL engines that adhere to ...

Integration with PHP
Introduction In the previous articles, we've seen how to design a website using Gatsby, a React-based framework. We've focused on the visual aspect of the project, that is the front end, leaving aside what concerns the processing ...

Site layout
Working on the Layout In this article, we'll see how to make our blog a bit more appealing by working on the layout. We'll add a header, footer, navigation bar, and in general, we'll see how to create reusable components ...

Site customization
Introduction In the previous article we created the structure of our blog. It's very basic: it has only one page, the home page, whose content includes only text. In this article, ...

Introduction to Markdown
What is Markdown? It's a language through which you can define the layout of a web page. Text written using Markdown syntax can be converted to HTML and many other formats. The Markdown language maintains almost unchanged readability ...

Building a site with Gatsby
In the previous article we saw what Gatsby is and what prerequisites need to be installed in the development environment. In this article, we'll see how to build ...

Introduction to Gatsby
What is Gatsby It is a front-end framework for building websites: it is fast, secure and scalable and provides the tools to make the site accessible to everyone ...