Today I want to show you how to set up Magento on your Windows machine via XAMP. 1. Download and install XAMP 2. Create database for Magento 3. Download and Setup Magento 4. Deploy static content What is XAMP? XAMPP is a completely free, easy to install Apache distribution containing MariaDB, PHP and Perl. The…Continue Reading “Magento 2 – How to setup Magento with XAMP on Windows”
I do have a side project running there I developed a Node.js backend and came accross private routes. My implementation in the backend works like a charm. So I asked myself if there is any possibility in Angular to do the same thing with router links. There is and it called Rotuer Guards. Let´s dive…Continue Reading “Angular 6 – Implement Auth Guard to your project”
I wanted to publish my project to the web, messed arround with github pages for like 4 hours and still did not manage to deploy my Angular 6 app on Github. So I searched for other possibilties and found firebase. With firebase it worked in 10 minutes later. So I decided to leave a tutorial…Continue Reading “Deploy your Angular 6 app into the Web with Firebase”
You look at someone´s other code and aks yourself how the fuck am I supposed to understand what he is doing with all those Promises chaning. You wonder how can that be done better and most of all better to read but also understand. Async/Await is here to save the day for you. Async/Await is…Continue Reading “Stop Promise chaning with async/await”
In this blog post I´d like to tell you what I learned in the course I´m taking about NodeJS. I decided to document every Section what I learned. In section 3 of my NodeJS course I came accross Promises in javascript, I´d like to know more about Promises. So I decided to write a blog…Continue Reading “Understanding Promises in Javascript”
In this blog post I´d like to tell you what I learned in the course I´m taking about NodeJS. I decided to document every Section what I learned. This Section is dedicated to Asynchronous Node.js. Let´s start of by learning more about the synchronous and asynchronous operations in NodeJs. 1. Synchrounous and Aysnchronous operations 2. What…Continue Reading “Aysnchronous Operations – Call Stack – Promises in NodeJs”
I recently started a new course about learning NodeJs on Udemy so I decided to document the things I learn in this course. All Credits are going to Andrew. This is going to be a new blog series about NodeJs. A few weeks ago I already wrote a blog post about NodeJs and what it…Continue Reading “Why you should use NodeJs”
What is Stress Testing? Load testing is a type of non-functional testing and kind of a Performance Testing and is used to observe the stability of the application or server. The main purpose of this testing is to identify the breaking point of the system. It defines the upper limit of the application by increasing…Continue Reading “Software Testing Methods – What is Stress Testing?”
Today I want to expand the Software Testing Blog Series with the Load Test. In this blog post I want to learn what load testing does and why its here. Hope you guys are also hyped to learn a new Software Testing Method, now let´s begin with a little overview what Load Testing particular is….Continue Reading “Software Testing Methods – What is Load Testing?”
I´m doing a blog Series about Software Testing Methods and Types. Last Week I finished doing all blog posts about Functional Testing Methods. This week I move on with Non-Functional Testing Methods starting with Performance Testing. First let´s clear out what Performance Testing is. What is performance Testing? Software performance testing is the practice of…Continue Reading “Software Testing Methods – What is Performance Testing?”