Skip to content

Instantly share code, notes, and snippets.

View dazeb's full-sized avatar
:octocat:
chatgippity

Darren Bennett dazeb

:octocat:
chatgippity
View GitHub Profile
@dazeb
dazeb / vmwk17key.txt
Created April 19, 2024 21:47 — forked from PurpleVibe32/vmwk17key.txt
Free VMware Workstation Pro 17 full license keys
Install VMWare Workstation PRO 17 (Read it right. PRO!)
Also, these keys might also work with VMWare Fusion 13 PRO. Just tested it.
Sub to me on youtube pls - PurpleVibe32
if you want more keys - call my bot on telegram. @purector_bot (THE BOT WONT REPLY ANYMORE) - Or: https://cdn.discordapp.com/attachments/1040615179894935645/1074016373228978277/keys.zip - the password in the zip is 102me.
---
This gist can get off at any time.
PLEASE, DONT COPY THIS. IF YOU FORK IT, DONT EDIT IT.
*If you have a problem comment and people will try to help you!
*No virus
@dazeb
dazeb / cheatsheet.md
Created March 20, 2024 16:03
A Cheatsheet for Cheatsheets

A cheatsheet for your cheatsheets.

#!/bin/bash

#===============================================================================
# Bash Cheatsheet
# Author: Claude (AI Language Model)
# Date: 2023-06-13
#===============================================================================
@dazeb
dazeb / bash_cheatsheet.sh
Last active March 20, 2024 16:06
BASH Ultimate Cheatsheet
#!/bin/bash
#===============================================================================
# Bash Cheatsheet
# Author: Claude (AI Language Model)
# Date: 2023-06-13
#===============================================================================
#===============================================================================
# Table of Contents
@dazeb
dazeb / laravel-server.sh
Created March 9, 2024 21:33
Laravel server setup with user input and error handling.
#!/bin/bash
# Define color variables
GREEN='\033[1;32m'
RED='\033[0;31m'
NC='\033[0m' # No Color
echo -e "${GREEN}Updating APT package manager repository...${NC}"
sudo apt update && sudo apt upgrade -y || {
echo -e "${RED}Failed to update APT package manager repository.${NC}"
@dazeb
dazeb / Install Dockge using Docker Compose - Script.md
Created February 27, 2024 02:32
This script installs a tool called Dockge by creating directories, downloading a configuration file, and then using Docker Compose to bring up the Dockge application. It provides feedback on the success or failure of the installation.

Install Dockge using Docker Compose - Script

Preview:
#!/bin/bash

# Install Docker and Docker Compose (same as before)

# Install Dockge
echo -e "\n\nInstalling Dockge..."
mkdir -p /opt/{dockge,stacks}
@dazeb
dazeb / dazeb.md
Created February 22, 2024 16:01
This code snippet is a configuration file for the Dazeb project. It specifies various settings such as theme, color customizations, text files, font family, and language information to be used in different languages (Cascadia Code, Droid Sans Mono), including default

dazeb

Preview:
{"name":"dazeb","settings":"{\"settings\":\"{\\n  \\\"workbench.iconTheme\\\": \\\"vscode-icons\\\",\\n  \\\"vsicons.associations.file.Default.file\\\": \\\"object\\\",\\n  \\\"vsicons.dontShowNewVersionMessage\\\": true,\\n  \\\"workbench.colorCustomizations\\\": {},\\n  \\\"workbench.editor.defaultBinaryEditor\\\": \\\"default\\\",\\n  \\\"editor.formatOnPaste\\\": true,\\n  \\\"editor.formatOnSave\\\": true,\\n  \\\"diffEditor.codeLens\\\": true,\\n  \\\"editor.minimap.autohide\\\": true,\\n  \\\"editor.minimap.enabled\\\": false,\\n  \\\"editor.acceptSuggestionOnEnter\\\": \\\"smart\\\",\\n  \\\"files.autoGuessEncoding\\\": true,\\n  \\\"files.enableTrash\\\": false,\\n  \\\"files.associations\\\": {\\n    \\\"*.ts\\\": \\\"typescript\\\",\\n    \\\"*.js\\\": \\\"javascript\\\"\\n  },\\n  \\\"files.insertFinalNewline\\\": true,\\n  \\\"telemetry.telemetryLevel\\\": \\\"crash\\\",\\n  \\\"security.workspace.trust.untrustedFiles\\\": \\\"open\\\",\\n  \\\"security.workspace.t
@dazeb
dazeb / files.and.folders.txt
Last active February 11, 2024 17:29
File and folder layout
# coolify
* [.tinkerwell/](.\coolify\.tinkerwell)
* [snippets/](.\coolify\.tinkerwell\snippets)
* [DeleteUser.php](.\coolify\.tinkerwell\snippets\DeleteUser.php)
* [SendEmail.php](.\coolify\.tinkerwell\snippets\SendEmail.php)
* [app/](.\coolify\app)
* [Actions/](.\coolify\app\Actions)
* [Application/](.\coolify\app\Actions\Application)
* [StopApplication.php](.\coolify\app\Actions\Application\StopApplication.php)
@dazeb
dazeb / docker-all.sh
Created February 4, 2024 12:40
Docker, Docker Compose, Dockge & Portainer 4in1 BASH
#!/bin/bash
# Check for curl and wget
if ! command -v curl &> /dev/null; then
echo "curl could not be found, please install curl."
exit 1
fi
if ! command -v wget &> /dev/null; then
echo "wget could not be found, please install wget."
@dazeb
dazeb / docker-repo-install.sh
Created January 28, 2024 13:45
Install Docker using repo
#!/bin/bash
# Ensure the script is run as root
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root" 1>&2
exit 1
fi
# Update the package index
echo "Updating package index..."
@dazeb
dazeb / install-docker-and-compose-traditional-method.sh
Created January 27, 2024 17:26
Docker and Compose V2 BASH Installer
#!/bin/bash
# Update and Upgrade the System
echo "Updating and upgrading your system..."
sudo apt-get update && sudo apt-get upgrade -y
# Install required packages
echo "Installing packages required for Docker installation..."
sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common lsb-release gnupg