:root {
--header-height: 100px;
}
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 | |
# | |
# description: Initialize New Git Repo with Native SFCC Cartridges used on `RedArchGlobal` Demo Site | |
# author: Peter Schmalfeldt <[email protected]> | |
# Base Folder for SFRA Project | |
BASE=sfccdevops_sfra | |
# SFCC GitHub Remote Origin | |
[email protected]:SalesforceCommerceCloud |
Helper Script for Salesforce Commerce Cloud (SFCC) to compress and decompress Objects and Strings. This library uses LZ-String to work around SFCC Character Limits by using Compression, as mentioned in this Trailhead Module:
SFCC Session Limits:
- Strings are limited to 2000 characters
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
/** | |
* Usage: | |
* | |
* const overscroll = new Overscroll(); | |
* overscroll.init('/path/to/image.png'); | |
*/ | |
function Overscroll() { | |
// Check if this is a mobile device that can actually support overscroll | |
var supported = (typeof matchMedia !== 'undefined' && matchMedia('(hover: none)').matches); | |
var $elm; |
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
# This script generates the folder structure for ljspeech-1.1 processing from mimic-recording-studio database | |
# This is a modified version of what was written by Thorsten Müller | |
import glob | |
import sqlite3 | |
import ffmpeg | |
import os | |
from shutil import copyfile | |
from shutil import rmtree |
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 | |
# Backup Important Files on Storage Drive | |
echo -e "\n\033[48;5;22m Starting Storage Backup › Android \033[0m\n" | |
rsync -hrPul /Volumes/Storage/Android /Volumes/Backup/Storage | |
echo -e "\n\033[38;5;34m✓ BACKUP SYNCED\033[0m\n" |
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
extends=smartgit-dark-theme.properties | |
preferredEditorTheme=dark | |
background1=#2d2d2d | |
background2=#1e1e1e | |
selection.background=#0a0a0a | |
composite.background#border=#1e1e1e | |
selection.background.unfocused=#0a0a0a | |
selection.foreground=foreground2 | |
selection.foreground.unfocused=foreground2 | |
toolBar.background.hover=#0a0a0a |
My servers are setup using Digital Ocean using These Instructions.
Then, for the API setup for Nginx, I use this setup for nginx.
NewerOlder