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 | |
RFC1918=('10.0.0.0/8' '172.16.0.0/12' '192.168.0.0/16') | |
IPTCHAINS=('OUTPUT') | |
format () { echo -e "${1}${2}\033[0m"; } | |
ask () { format '\033[1;34m' "$1"; } | |
success () { format '\033[0;32m' "$1"; } | |
warn () { format '\033[1;33m' "$1"; } | |
danger () { format '\033[0;31m' "$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
import CommandPalette from "@/app/_global/command-palette"; | |
// noinspection JSUnusedGlobalSymbols | |
import NavBar from "@/app/_global/navbar"; | |
import Settings from "@/app/_global/settings"; | |
import Sidebar from "@/app/_global/sidebar"; | |
import SVGGradient from "@/components/icons/SVGGradient"; | |
import { ChildrenProps } from "@/interfaces/next"; | |
import "@/styles/globals.css"; | |
import "@/styles/notiflix.css"; |
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
'use client'; | |
import { | |
Dialog, | |
DialogClose, | |
DialogContent, | |
DialogDescription, | |
DialogFooter, | |
DialogHeader, | |
DialogTitle, | |
DialogTrigger, |
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
* text=auto | |
# Unreal Engine file types. | |
*.uasset filter=lfs diff=lfs merge=lfs -text | |
*.umap filter=lfs diff=lfs merge=lfs -text | |
# Anything in `/RawContent` dir. | |
/RawContent/**/* filter=lfs diff=lfs merge=lfs -text | |
#Asset files |
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 | |
export MODULE_NAME="$(basename $(git rev-parse --show-toplevel))" | |
if [ -z "${MODULE_NAME}" ]; then | |
echo "No module name available" | |
fi | |
# Replace file names | |
find . -name '*MyPlugin*' -printf "%d %p\n" | sort -r | cut -d' ' -f2 | xargs -I{} sh -c 'mv -v {} $(echo {} | sed "s/MyPlugin/$MODULE_NAME/g")' | |
# Replace content |
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
* text=auto | |
# Unreal Engine file types. | |
*.uasset filter=lfs diff=lfs merge=lfs -text | |
*.umap filter=lfs diff=lfs merge=lfs -text | |
# Anything in `/RawContent` dir. | |
/RawContent/**/* filter=lfs diff=lfs merge=lfs -text | |
#Asset files |
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
schema: | |
- squid-schema.graphql | |
- schema.graphql |
OlderNewer