Using The Sass migrator
Recent Posts
How To Install AWS Cloud Development Kit
- Installation
# Install AWS CLI on CentOs >= 7 sudo dnf install awscli # Create Default Profile to login with AWS CLI Tools aws configure # Install CDK and Required Tools npm install -g aws-cdk n...
CDK Unit Tests using Jest and GitHub Actions
Simple Test for CDK Stack looks so such
import * as cdk from 'aws-cdk-lib';
import { Template } from 'aws-cdk-lib/assertions';
import * as InfrastructureAsCode from '../lib/infrastructure_as_code-stack'...
Create New Angular Project on Vagrant Shared Folder
When you use vagrant machine for development and your host machine is Windows and your guest machine is Linux, You cannot create sym links on shared folder,
then if you run `ng new <project-id>` , You will get errors. The solution is to...
Bridge in PHP
The Bridge design pattern allows you to separate the abstraction from the implementation. It is a structural design pattern.
There are 2 parts in Bridge design pattern :
- Abstraction
- Im...
1
2