- help customers interact with clients
- chat deletes after 24 hrs
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
<html> | |
<head> | |
<!-- REDACTED --> | |
</head> | |
<body> | |
<video id="player"></video> | |
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
rem ffmpeg | |
rem flip an image on the x (horizontal axis) | |
for %%f in (*.png) do ffmpeg -i "%%f" -vf hflip -c:a copy "Flip-%%f" | |
rem flip an image on the y (vertical axis) | |
for %%f in (*.png) do ffmpeg -i "%%f" -vf vflip -c:a copy "Flip-%%f" | |
rem imagemagick |
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
@echo off | |
setlocal EnableDelayedExpansion | |
mkdir split | |
mkdir flip | |
mkdir join | |
for %%h in ("*.png") do ( |
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
#!/data/data/com.termux/files/usr/bin/bash | |
# NOTE: this file script should be placed at .git/hooks/pre-commit | |
# for linux users, this script should be made executable using the | |
# command: | |
# chmod +x .git/hooks/pre-commit | |
STAGED_FILES="$(git diff --name-only --staged)" | |
FILES_TO_LINT="" | |
EXCLUDED_FILES=".gitignore yarn.lock" |
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 | |
# compresses a file/folder to a tape archive (.tar) file | |
tar -cvf <compressed-name>.tar <file/folder-to-compress> | |
# decompresses a tape archive (.tar) file to a file/folder | |
tar -xvf <compressed-name>.tar <file/folder-to-decompress> | |
# uploads a file to a remote ssh host | |
scp <local-file> <remote-ssh-host> |
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 | |
source "~/.bashrc" | |
PROJECT_NAME="changenow-store" | |
DEPLOYMENT_PATH="~/tools/express-server/apps/$PROJECT_NAME" | |
BRANCH="main" | |
function initNodeApp () { | |
local folderExisted=$1 |
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
{ | |
"data": [ | |
{ | |
"id": "prod_kpnNwAyOzZwmXB", | |
"created": 1638621569, | |
"updated": 1677444253, | |
"active": true, | |
"permalink": "essential-vitamins", | |
"name": "Essential Vitamins", | |
"description": "<p>Boost your immune system and protect your body against infections.</p><p></p><p>Contains </p><ul><li><p>Multivitamins</p><ul><li><p>Vitamin C</p></li><li><p>Vitamin D</p></li><li><p>Vitamin E</p></li></ul></li><li><p>Zinc</p></li></ul>", |
OlderNewer