How To Write Your First PHP Program
The “Hello, World!” program is a classic and time-honored tradition in computer programming. This tutorial will walk you through writing a “Hello, World!” program in PHP.
The “Hello, World!” program is a classic and time-honored tradition in computer programming. This tutorial will walk you through writing a “Hello, World!” program in PHP.
このPython 3のチュートリアルでは、数値、文字列、タプル、リストなどのデータ型の変換方法について説明し、さまざまなユースケースを理解するための例も紹介します。
In this tutorial, you’ll build an application with AdonisJs using the CLI. You’ll create routes, controllers, models, and views within your application and you’ll carry out form validations. The example in this tutorial will be an inspirational quote application in which a user can sign up and log in to create an inspirational quote. This demo application will give you the opportunity to carry out CRUD (Create, Read, Update, and Delete) operations.
In this tutorial, you’ll implement authentication in a Nuxt.js app using the Auth module. For the purpose of this tutorial we’ll be using JWT for authentication.
Decorators are a way to decorate members of a class, or a class itself, with extra functionality. This tutorial covers creating decorators in TypeScript for classes and class members, and also how to use them.
Having access to the Twitter API can help you manage your social media accounts, and allow you to mine social media for data. This can be useful for brand promotion if you represent a business or an organization, and it can be enjoyable and entertaining for individual users…
Discord is a chat application that allows millions of users across the globe to message and voice chat online in communities called guilds or servers. In this tutorial, you will build a Discord bot from scratch, using Node.js and the Discord.js library, which allows users to directly interact with the Discord API. You’ll set up a profile for a Discord bot, get authentication tokens for the bot, and program the bot with the ability to process commands, with arguments, from users.
JSON — short for JavaScript Object Notation — is a format for sharing data. As its name suggests, JSON is derived from the JavaScript programming language, but it’s available for use by many languages. This informational guide will get you up to speed with the data you can use in JSON files, and the general structure and syntax of this format.
En el tutorial anterior de esta serie, “Cómo realizar cambios en el DOM”, abordamos la forma…
This tutorial covers what variables are, how to declare and name them, and also take a closer look at the difference between var, let, and const. It also goes over the effects of hoisting and the significance of global and local scope to a variable’s behavior.