I hereby claim:
- I am archtaqi on github.
- I am archtaqi (https://keybase.io/archtaqi) on keybase.
- I have a public key ASBwJMzs-zmtEWu1UtXE27xXBzk9mILNnZB_vGxNFbpNeAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
We are building a vacation management system where different types of vacations (Paid Vacation, Sick Leave, and Work From Home) need to be created dynamically based on user input.
Below is an incomplete PHP code snippet. Your task is to complete the VacationFactory class so that it properly creates instances of different vacation types using the Factory Pattern.
Use any online compiler to write code;
<?php | |
// Usage example: | |
$calculator = new Calculator(); | |
$result = $calculator->setValue(5)->add(3)->multiply(2)->getResult(); | |
?> |
<?php | |
function showDeveloperList(array $developers): void | |
{ | |
foreach ($developers as $developer) { | |
$expectedSalary = $developer->calculateExpectedSalary(); | |
$experience = $developer->getExperience(); | |
$githubLink = $developer->getGithubLink(); | |
$data = [$expectedSalary, $experience, $githubLink]; |
#!/bin/bash | |
# Known working on a vanilla Ubuntu 20.04 install | |
# as of November 12 2021. | |
# Usage: | |
# $ sudo chmod +x ./SolanaToolchainInstaller.sh | |
# $ ./SolanaToolchainInstaller.sh | |
TIMESRUN=0 |
https://www.linuxcapable.com/install-wordpress-with-nginx-mariadb-php-on-ubuntu-22-04-lts/
sudo apt update && sudo apt upgrade -y
sudo apt install curl git wget unzip -y
sudo add-apt-repository ppa:ondrej/nginx -y
sudo apt update
sudo apt install nginx-core nginx-common nginx nginx-full
did:3:kjzl6cwe1jw14azyi4uyhe4229bfga6dgnzqxg5s82ulz1c6x52hw8aoikrfhjm |
In this tutorial, I will be going over to how to deploy a Django app from start to finish using AWS and EC2. Recently, my partner Tu and I launched our app Hygge Homes (a vacation home rental app for searching and booking vacation homes based off Airbnb) and we wanted to share with other developers some of the lessons we learned along the way.
Following this tutorial, you will have an application that has: