don't forget to run chmod +x zip-project.sh
first
✅ Exclude dev dependencies (default)
./zip-project.sh 8.1
(Runs composer install --no-dev by default)
{ | |
"_id": "nama_dan_link_toko_201_205", | |
"startUrl": [ | |
"https://shopee.co.id/Wardah-Lightening-Series-Day-Night-Cream-Toner-Face-Wash-Serum-i.44016624.10244925936?sp_atk=92b1169a-edfd-45e2-8ff7-df8b3adaa9e3&xptdk=92b1169a-edfd-45e2-8ff7-df8b3adaa9e3", | |
"https://shopee.co.id/%E2%9D%A4%EF%B8%8FCitraCosmetic%E2%9D%A4%EF%B8%8F-Wardah-Colorfit-Perfect-Glow-Cushion-Series-i.131118527.16337015932?sp_atk=b811caf9-99b2-41a9-846f-1a65d2290233&xptdk=b811caf9-99b2-41a9-846f-1a65d2290233", | |
"https://shopee.co.id/-4-PCS-WARDAH-Paket-Perfect-Bright-i.39943822.24462868104?sp_atk=97889ea4-34c7-4da8-a1a0-ea66d81207fd&xptdk=97889ea4-34c7-4da8-a1a0-ea66d81207fd", | |
"https://shopee.co.id/%E2%9C%A8-SUMBER-AYU-%E2%9C%A8-WARDAH-C-DEFENSE-SERIES-i.119147007.19147578201?sp_atk=b6ba4509-5632-43c0-beaa-59048c5e36c3&xptdk=b6ba4509-5632-43c0-beaa-59048c5e36c3", | |
"https://shopee.co.id/Wardah-Lightening-Series-Paket-Perawatan-Wajah-Mencerahkan-Gentle-Wash-Serum-Toner-Day-Night-Micellar-Water-Whip-Foam-Clay-Mask-Exfol |
{ | |
"_id": "nama_dan_link_toko", | |
"startUrl": [ | |
"https://shopee.co.id/Emina-Bright-Stuff-Face-Wash-Sabun-Muka-Emina-i.38076091.24300493094?sp_atk=9aaf3b0f-2c07-43b0-9b6f-4576267ba971&xptdk=9aaf3b0f-2c07-43b0-9b6f-4576267ba971", | |
"https://shopee.co.id/Emina-Bright-Stuff-Loose-Powder-55gr-i.34547959.2627369477?sp_atk=b0ae1f55-fd4c-4ed1-8f98-cb33b99772a4&xptdk=b0ae1f55-fd4c-4ed1-8f98-cb33b99772a4", | |
"https://shopee.co.id/MAKE-OVER-Powerstay-Total-Cover-Liquid-Concealer-6.5-ml-Concealer-Liquid-TnT-Beauty-Shop-i.744873.2239118237?sp_atk=efb633fb-0be3-4e85-9e10-06a17355539c&xptdk=efb633fb-0be3-4e85-9e10-06a17355539c", | |
"https://shopee.co.id/Wardah-Acnederm-Pure-Foaming-Cleanser-60ml-TnT-Beauty-Shop-i.744873.7620275253?sp_atk=bd89751f-d365-4c22-a9c8-9e43a8bbc00c&xptdk=bd89751f-d365-4c22-a9c8-9e43a8bbc00c", | |
"https://shopee.co.id/Wardah-Renew-You-Anti-Aging-Facial-Wash-100ml-i.370122939.19395046874?sp_atk=8d631e6e-ef43-4151-a217-1e605d1b15b0&xptdk=8d631e6e-ef43-4151-a217-1e605d1b15b0", | |
"https://s |
{{-- located in views/resources/component/toast.blade.php --}} | |
<div class="relative w-auto h-auto" x-data> | |
<template x-teleport="body"> | |
<ul | |
x-data="{ | |
toasts: [], | |
toastsHovered: false, | |
expanded: false, | |
layout: 'default', | |
position: 'top-center', |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Dashboard</title> | |
@vite('resources/css/app.css') | |
</head> |
@props(['options', 'name', 'placeholder' => 'Select an option', 'value' => null, 'emptyOptionsMessage' => 'No results match your search.']) | |
<div class="mx-auto"> | |
<div | |
x-data="select({ data: {{ json_encode($options) }}, name: '{{ $name }}', placeholder: '{{ $placeholder }}', value: '{{ $value }}', emptyOptionsMessage: '{{ $emptyOptionsMessage }}' })" | |
x-init="init()" | |
@click.away="closeListbox()" | |
@keydown.escape="closeListbox()" | |
class="relative" | |
> | |
<input type="hidden" x-model="value" name="{{ $name }}"> |
function sendEmails() { | |
const sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet(); | |
const dataRange = sheet.getRange("A3:B40"); | |
const data = dataRange.getValues(); | |
for (let i = 0; i < data.length; i++) { | |
const row = data[i]; | |
const emailAddress = row[0]; | |
const name = row[1]; | |
const subject = `Informasi terkait Program Google Arcade Fasilitator 2024 oleh fasilitator` |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteRule ^(.*)$ public/$1 [L] | |
</IfModule> |
#!/bin/bash | |
# Update the system | |
sudo apt update | |
sudo apt upgrade -y | |
# Install PHP dependencies | |
sudo apt install -y software-properties-common | |
# Add the ondrej/php repository for PHP 8.2 |