Skip to content

Instantly share code, notes, and snippets.

View DenzelCode's full-sized avatar
🎯
Focusing

Denzel Giraldo DenzelCode

🎯
Focusing
View GitHub Profile
@DenzelCode
DenzelCode / countries.js
Last active March 6, 2024 09:10
JavaScript countries array with name, country code, mobile code, utc, timezone, and currency code
const COUNTRIES = [
{
name: 'United States',
code: 'US',
timezone: 'Pacific Standard Time',
utc: 'UTC-08:00',
mobileCode: '+1',
currencyCode: 'USD',
},
{
@stancl
stancl / deploy.sh
Last active September 16, 2024 02:39
Deploy using GitHub actions and SSH to a VPS
#!/bin/sh
set -e
vendor/bin/phpunit
npm run prod
git add .
(git commit -m "Build frontend assets for deployment to production") || true
(git push) || true