In this part of tutorial, we will see together, how to make Bearer authentication. What’s Bearer Authentication Bearer authentication (also called token authentication) is an HTTP authentication scheme that involves security tokens called bearer tokens. The name “Bearer authentication” can be understood as “give access to the bearer of this token.” The bearer token is a cryptic string, usually […]
Author: AlphaTechStudios
Xamarin Forms – Login Form
In this part of tutorial, we ‘ll see how to made Xamarin Forms – Login Page. You can find in the last post the introduction to Xamarin Forms Tutorial – Prism. Creating LoginPage First of all, let’s create a new ContentPage called LoginPage.xaml.You can see that Visual Studio creates a new file under ViewModels forlder […]
Angular 8 with ASP.Net Core Tutorial part 5 Login Form
In this part of Tutorial, we will learn how to make: Login Form. Email and Password Validations. Login action Web API You can find the code source on GitHub:– Web API: https://github.com/AlphaTechstudios/Forms.WebAPI/tree/angular_tuto_part_5– Angular: https://github.com/AlphaTechstudios/Forms/tree/Angular_tuto_part_5 Add Login Form Last time, we have already created the sign-in component. Let’s navigate to sign-in.component.html and add 2 fields for […]
Xamarin Forms – Android Bottom bar
In this part of tutorial, we will see how to make Navigation Bottom bar on Android using XAML . Creating project. Let’s create a new project called Bottom Bar. Under the views folder, create 2 new ContentPage item called FirstPage and SecondPage. In the MainPage.xaml, we need to change the page type from ContentPage to […]
Xamarin Forms Tutorial – Prism
In this series of tutorial, we ‘ll learn together cross-platform mobile application development thanks to Xamarin forms. We’ll use Forms WebAPI project created in Angular 8 tutorial series.You can download the source code from GitHub. Xamarin history: Lest’s take a look to the Xamarin history from Wikipedia: Xamarin is a Microsoft-owned San Francisco-based software company founded in […]
Unity RPG Zombies Killer Part 3
In this video you will learn how to make RPG game: NavMesh agent Enemy movement Enemy Shooting Enemy movement In this part of tutorial, we will use NavMeshAgent. This component is attached to a mobile character in the game to allow it to navigate the Scene using the NavMesh. The NavMesh is a class can be […]
Angular 8 with ASP.Net Core Tutorial part 4 Form Validations
In this part of Tutorial, we will learn how to make form validations. Source code: https://github.com/AlphaTechstudios/Forms/tree/Angular_tuto_part_4 Disable Sign Up button when submit Disable the signup button after submit to avoid registering the same user multiple times with the same email. We will see in the next tutorial how make this check in C# code also. […]
Angular 8 with ASP.Net Core Tutorial part 3 Sign Up Form
In this videos, you will learn how to: Install bootstrap Using router DI Custom services Using HttpClient Reactive Forms Sign Up Form Send Data from Angular to WebAPI GhitHub: Angular source WebAPI source Installing Bootstrap: Fist of all, we need to install Bootstrap package by running the command: Put the reference of bootstrap CSS file […]
Angular 8 with ASP.Net Core Tutorial part 2 Web API
Creation Web API solution First of All, we need to create a new .NET Core application project witch called “Forms.WebAPI”. After that, we add the different concerns in this solution: In this videos, you will learn how to: Create Asp.NET Core web API. Entity Framework Code First. Using Swagger framework. GitHub code BLL (Solution Folder) […]
Angular 8 with ASP.Net Core Tutorial part 1 install angular 8
Now, we need to create a workspace and initialize a new application.Fist of all, let’s create a new workspace (“Forms”) and initial starter app by running this command: In this videos, you will learn how to: Install Nodejs for Windows. Install Visual Studio Code IDE Install Angular 8 CLI. 1) Install NodeJs for Windows : […]
Unity RPG Zombies Killer Part 2
In this video you will learn how to make RPG game:– Right joystick (Turn player and Fire)– Capsule TurnPlayer method: In this part of tutorial, we add the Right Joystick, it’s responsible for making player turn and fire. So, it has priority over the Left Joystick to manage player rotation. Player Shooting: Let’s add “Fire” […]
Unity RPG Zombies Killer Part 1
In this video you will learn how to make RPG game:– Terrains– Player Animation (Idle, Running).– Joystick movement (Player movement and rotation) Player movement: In this part of unity tutorial, we will user this free package of Soldier from Unity assets store. Let’s add “PlayerMovement.cs” script attached to Soldier Prefab: In “Update” method, we used […]