Skip to content

Instantly share code, notes, and snippets.

View maxjf1's full-sized avatar
๐Ÿ 
Working from home

Maxwell maxjf1

๐Ÿ 
Working from home
View GitHub Profile
@maxjf1
maxjf1 / docker-compose.yml
Last active May 21, 2020 20:54
Docker Compose for WordPress Development
version: "3.1"
services:
wordpress:
image: wordpress
restart: unless-stopped
ports:
- 8080:80
environment:
WORDPRESS_DB_HOST: db
@peter-schmalfeldt
peter-schmalfeldt / convertStringToEmoji.js
Created October 26, 2023 04:07
Convert String to Emoji for SFCC XML Site Imports
/**
* Convert String to Emoji
* Most emoji's start with �
* If you have these in your SFCC Site Import XML File, you might get an import error.
*
* @usage convertStringToEmoji('��') => ๐Ÿ™‚
* @param {String} str Raw URL Encoded String
*/
function convertStringToEmoji(str) {
// Regex matching either a surrogate or a character.