This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GH | 가나 | GHANA | |
---|---|---|---|
GA | 가봉 | GABON | |
GY | 가이아나 | GUYANA | |
GM | 감비아 | GAMBIA | |
GG | 건지 섬 | GUERNSEY | |
GP | 과들루프 | GUADELOUPE | |
GT | 과테말라 | GUATEMALA | |
GU | 괌 | GUAM | |
GD | 그레나다 | GRENADA | |
GR | 그리스 | GREECE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#GUN | |
(G)I-DLE | |
015B | |
100% | |
10cm | |
10X10 | |
14U | |
1PUNCH | |
1Set | |
1TEAM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ Magento v2.4.6 PHP extension Requirement ] | |
ext-bcmath | |
ext-ctype | |
ext-curl | |
ext-dom | |
ext-fileinfo | |
ext-filter | |
ext-gd | |
ext-hash | |
ext-iconv |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -eu | |
Key='YourAPIKEY' | |
SnapshotLimit=7 | |
SnapshotCount=$(curl -s -H "API-Key: $Key" https://api.vultr.com/v1/snapshot/list | grep -o SNAPSHOTID | wc -l) | |
Fields=$(curl -s -H "API-Key: $Key" https://api.vultr.com/v1/snapshot/list | grep -o '"' | wc -l) | |
LastSnapshotField=$((Fields - 24)) | |
LastSnapshotID=$(curl -s -H "API-Key: $Key" https://api.vultr.com/v1/snapshot/list | grep '"' | cut -d '"' -f $LastSnapshotField) | |
if [ "$SnapshotCount" -eq "$SnapshotLimit" ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if ! [ -x "$(command -v docker-compose)" ]; then | |
echo 'Error: docker-compose is not installed.' >&2 | |
exit 1 | |
fi | |
domains=(example.org www.example.org) | |
rsa_key_size=4096 | |
data_path="./data/certbot" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
## 파라미터가 없으면 종료 | |
if [ "$#" -lt 2 ]; then | |
echo "$# is Illegal number of parameters." | |
echo "Usage: $0 https://www.example.com example.com" | |
exit 1 | |
fi | |
wget \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
/usr/local/bin/n98-magerun2.phar --root-dir=/var/www/magento --skip-root-check "$@" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Vundle | |
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" let Vundle manage Vundle, required | |
Plugin 'VundleVim/Vundle.vim' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AF:AFG | |
AX:ALA | |
AL:ALB | |
DZ:DZA | |
AS:ASM | |
AD:AND | |
AO:AGO | |
AI:AIA | |
AQ:ATA | |
AG:ATG |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// contributed by supplify.com | |
error_reporting(E_ALL); | |
ini_set('display_errors', 1); | |
require_once '../curl/Zebra_cURL.php'; | |
require_once '../app/Mage.php'; | |
Mage::app(); | |
class action extends Zebra_cURL{ |